Skip to content

Commit cf7e7f2

Browse files
committed
fix: pg table detail
1 parent 692f93f commit cf7e7f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/modules/src/main/java/org.jumpserver.chen.modules/postgresql/PostgresqlActionHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public EventEmitter onDatabaseProperties(TreeNode node) throws SQLException {
5757
}
5858

5959

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

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

0 commit comments

Comments
 (0)