Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit5fc32fb

Browse files
author
Dave Cramer
committed
fixed missing apostrophe
1 parent4e9b159 commit5fc32fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/interfaces/jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2092,11 +2092,11 @@ public java.sql.ResultSet getTables(String catalog, String schemaPattern, String
20922092
ht =newHashtable();
20932093
tableTypeClauses.put("SYSTEM TABLE",ht);
20942094
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\\\\_%'");
20962096
ht =newHashtable();
20972097
tableTypeClauses.put("SYSTEM TOAST TABLE",ht);
20982098
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\\\\_%'");
21002100
ht =newHashtable();
21012101
tableTypeClauses.put("SYSTEM TOAST INDEX",ht);
21022102
ht.put("SCHEMAS","c.relkind = 'i' AND n.nspname = 'pg_toast'");

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp