diff options
author | Teodor Sigaev <teodor@sigaev.ru> | 2016-03-28 19:17:28 +0300 |
---|---|---|
committer | Teodor Sigaev <teodor@sigaev.ru> | 2016-03-28 19:17:28 +0300 |
commit | dabd255d584785c61b1187f10b7bdbf99022ae2d (patch) | |
tree | e5f83285b36aa046feb2fceb054aa1ec0533b47e /src | |
parent | 4c46f83386a7e3556856d1e4c9f0c294d16b0dcc (diff) | |
download | postgresql-dabd255d584785c61b1187f10b7bdbf99022ae2d.tar.gz postgresql-dabd255d584785c61b1187f10b7bdbf99022ae2d.zip |
Fix comment in pg_dump.
It was missed in 473b93287040b20017cc25a157cffdc5b978c254,
CREATE ACCESS METHOD
Alexander Korotkov
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/pg_dump.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index ad4b4e5135e..77bf8acd9fb 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -4157,10 +4157,7 @@ getAccessMethods(Archive *fout, int *numAccessMethods) /* Make sure we are in proper schema */ selectSourceSchema(fout, "pg_catalog"); - /* - * Select only user-defined access methods assuming all built-in access - * methods have oid < 10000. - */ + /* Select all access methods from pg_am table */ appendPQExpBuffer(query, "SELECT tableoid, oid, amname, amtype, " "amhandler::pg_catalog.regproc AS amhandler " "FROM pg_am"); |