Skip to content

Commit

Permalink
fix: pg table detail
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron3S committed Dec 26, 2024
1 parent 692f93f commit cf7e7f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public EventEmitter onDatabaseProperties(TreeNode node) throws SQLException {
}


private static final String SQL_SELECT_TABLE_DETAIL = "SELECT table_name,table_schema,table_type FROM information_schema.tables WHERE table_name = '?";
private static final String SQL_SELECT_TABLE_DETAIL = "SELECT table_name,table_schema,table_type FROM information_schema.tables WHERE table_name = '?'";

public EventEmitter onTableProperties(TreeNode node) throws SQLException {
return this.onShowObjectProperties("table", SQL_SELECT_TABLE_DETAIL, node);
Expand Down

0 comments on commit cf7e7f2

Please sign in to comment.