Skip to content

Commit

Permalink
[Hotfix][Jdbc] Fix dameng catalog query table sql (#6141)
Browse files Browse the repository at this point in the history
  • Loading branch information
hailin0 authored Jan 11, 2024
1 parent 543d2c5 commit 413fa74
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ public class DamengCatalog extends AbstractJdbcCatalog {
+ "ON COLUMNS.OWNER = COMMENTS.SCHEMA_NAME "
+ "AND COLUMNS.TABLE_NAME = COMMENTS.TABLE_NAME "
+ "AND COLUMNS.COLUMN_NAME = COMMENTS.COLUMN_NAME "
+ "WHERE COLUMNS.OWNER = ? "
+ "AND COLUMNS.TABLE_NAME = ? "
+ "WHERE COLUMNS.OWNER = '%s' "
+ "AND COLUMNS.TABLE_NAME = '%s' "
+ "ORDER BY COLUMNS.COLUMN_ID ASC";

public DamengCatalog(
Expand Down

0 comments on commit 413fa74

Please sign in to comment.