Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 8da1538

Browse files
committed
doc: remove unnecessary INNER keyword
A join that was added in commit 9b2009c that did not use the INNER keyword but the existing query used it. It was cleaner to remove the existing INNER keyword. Reported-by: Peter Eisentraut Discussion: https://postgr.es/m/a1ffbfda-59d2-5732-e5fb-3df8582b6434@2ndquadrant.com Backpatch-through: 9.5
1 parent c713dc2 commit 8da1538

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/sgml/pgbuffercache.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149

150150
<screen>
151151
regression=# SELECT n.nspname, c.relname, count(*) AS buffers
152-
FROM pg_buffercache b INNER JOIN pg_class c
152+
FROM pg_buffercache b JOIN pg_class c
153153
ON b.relfilenode = pg_relation_filenode(c.oid) AND
154154
b.reldatabase IN (0, (SELECT oid FROM pg_database
155155
WHERE datname = current_database()))

0 commit comments

Comments
 (0)