File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6189,12 +6189,12 @@ listExtensions(const char *pattern)
6189
6189
printfPQExpBuffer (& buf ,
6190
6190
"SELECT e.extname AS \"%s\", "
6191
6191
"e.extversion AS \"%s\", ae.default_version AS \"%s\","
6192
- "n.nspname AS \"%s\", c .description AS \"%s\"\n"
6192
+ "n.nspname AS \"%s\", d .description AS \"%s\"\n"
6193
6193
"FROM pg_catalog.pg_extension e "
6194
6194
"LEFT JOIN pg_catalog.pg_namespace n ON n.oid = e.extnamespace "
6195
- "LEFT JOIN pg_catalog.pg_description c ON c .objoid = e.oid "
6195
+ "LEFT JOIN pg_catalog.pg_description d ON d .objoid = e.oid "
6196
6196
"LEFT JOIN pg_catalog.pg_available_extensions() ae(name, default_version, comment) ON ae.name = e.extname "
6197
- "AND c .classoid = 'pg_catalog.pg_extension'::pg_catalog.regclass\n" ,
6197
+ "AND d .classoid = 'pg_catalog.pg_extension'::pg_catalog.regclass\n" ,
6198
6198
gettext_noop ("Name" ),
6199
6199
gettext_noop ("Version" ),
6200
6200
gettext_noop ("Default version" ),
You can’t perform that action at this time.
0 commit comments