Commit dabd255d authored by Teodor Sigaev's avatar Teodor Sigaev

Fix comment in pg_dump.

It was missed in 473b9328,
CREATE ACCESS METHOD

Alexander Korotkov
parent 4c46f833
...@@ -4157,10 +4157,7 @@ getAccessMethods(Archive *fout, int *numAccessMethods) ...@@ -4157,10 +4157,7 @@ getAccessMethods(Archive *fout, int *numAccessMethods)
/* Make sure we are in proper schema */ /* Make sure we are in proper schema */
selectSourceSchema(fout, "pg_catalog"); selectSourceSchema(fout, "pg_catalog");
/* /* Select all access methods from pg_am table */
* Select only user-defined access methods assuming all built-in access
* methods have oid < 10000.
*/
appendPQExpBuffer(query, "SELECT tableoid, oid, amname, amtype, " appendPQExpBuffer(query, "SELECT tableoid, oid, amname, amtype, "
"amhandler::pg_catalog.regproc AS amhandler " "amhandler::pg_catalog.regproc AS amhandler "
"FROM pg_am"); "FROM pg_am");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment