mirror of
https://github.com/zsh-users/zsh-completions.git
synced 2026-09-17 16:00:19 +00:00
Fix typo -- "oin" should be "oid".
This commit is contained in:
+1
-1
@@ -84,7 +84,7 @@ _pgsql_tables () {
|
|||||||
local _pgsql_table_sql
|
local _pgsql_table_sql
|
||||||
_pgsql_table_sql="select n.nspname || '.' || c.relname \
|
_pgsql_table_sql="select n.nspname || '.' || c.relname \
|
||||||
from pg_catalog.pg_class c \
|
from pg_catalog.pg_class c \
|
||||||
left join pg_catalog.pg_namespace n on n.oin = c.relnamespace \
|
left join pg_catalog.pg_namespace n on n.oid = c.relnamespace \
|
||||||
where c.relkind in ('r', '') \
|
where c.relkind in ('r', '') \
|
||||||
and n.nspname <> 'pg_catalog' \
|
and n.nspname <> 'pg_catalog' \
|
||||||
and n.nspname <> 'information_schema' \
|
and n.nspname <> 'information_schema' \
|
||||||
|
|||||||
Reference in New Issue
Block a user