Skip to content

Commit

Permalink
Merge pull request mtxr#213 from mtxr/fix-postgresql-v11-compatibility
Browse files Browse the repository at this point in the history
Fix compatibility issue with PostgreSQL v11 (func)
  • Loading branch information
tkopets authored Apr 4, 2019
2 parents d1345e0 + b594b91 commit ec27f2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SQLTools.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
"options": ["--tuples-only", "--no-psqlrc"]
},
"functions": {
"query": "select quote_ident(n.nspname) || '.' || quote_ident(f.proname) || '(' || pg_get_function_identity_arguments(f.oid) || ')' as funname from pg_catalog.pg_proc as f inner join pg_catalog.pg_namespace as n on n.oid = f.pronamespace where f.proisagg = false and n.nspname not in ('pg_catalog', 'information_schema');",
"query": "select quote_ident(n.nspname) || '.' || quote_ident(f.proname) || '(' || pg_get_function_identity_arguments(f.oid) || ')' as funname from pg_catalog.pg_proc as f inner join pg_catalog.pg_namespace as n on n.oid = f.pronamespace where n.nspname not in ('pg_catalog', 'information_schema');",
"options": ["--tuples-only", "--no-psqlrc"]
}
}
Expand Down

0 comments on commit ec27f2e

Please sign in to comment.