Skip to content

Commit 6305564

Browse files
committed
fix
1 parent b31d125 commit 6305564

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/duckdb/DuckDBDatabaseMetaData.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -689,8 +689,8 @@ public ResultSet getCatalogs() throws SQLException {
689689
public ResultSet getSchemas() throws SQLException {
690690
Statement statement = conn.createStatement();
691691
statement.closeOnCompletion();
692-
return statement.executeQuery("SELECT schema_name AS 'TABLE_SCHEM', catalog_name AS 'TABLE_CATALOG' FROM " +
693-
"information_schema.schemata ORDER BY \"TABLE_CATALOG\", \"TABLE_SCHEM\"");
692+
return statement.executeQuery(
693+
"SELECT schema_name AS 'TABLE_SCHEM', catalog_name AS 'TABLE_CATALOG' FROM information_schema.schemata ORDER BY \"TABLE_CATALOG\", \"TABLE_SCHEM\"");
694694
}
695695

696696
@Override

0 commit comments

Comments
 (0)