You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
ht.put("SCHEMAS","c.relkind = 'r' AND n.nspname = 'pg_catalog'");
2095
-
ht.put("NOSCHEMAS","c.relkind = r' AND c.relname LIKE 'pg\\\\_%' AND c.relname NOT LIKE 'pg\\\\_toast\\\\_%' AND c.relname NOT LIKE 'pg\\\\_temp\\\\_%'");
2095
+
ht.put("NOSCHEMAS","c.relkind ='r' AND c.relname LIKE 'pg\\\\_%' AND c.relname NOT LIKE 'pg\\\\_toast\\\\_%' AND c.relname NOT LIKE 'pg\\\\_temp\\\\_%'");
2096
2096
ht =newHashtable();
2097
2097
tableTypeClauses.put("SYSTEM TOAST TABLE",ht);
2098
2098
ht.put("SCHEMAS","c.relkind = 'r' AND n.nspname = 'pg_toast'");
2099
-
ht.put("NOSCHEMAS","c.relkind = r' AND c.relname LIKE 'pg\\\\_toast\\\\_%'");
2099
+
ht.put("NOSCHEMAS","c.relkind ='r' AND c.relname LIKE 'pg\\\\_toast\\\\_%'");
2100
2100
ht =newHashtable();
2101
2101
tableTypeClauses.put("SYSTEM TOAST INDEX",ht);
2102
2102
ht.put("SCHEMAS","c.relkind = 'i' AND n.nspname = 'pg_toast'");