Skip to content

Commit

Permalink
Merge pull request #116 from raymondchen-byte/main
Browse files Browse the repository at this point in the history
System table fields updated
  • Loading branch information
hantmac authored Dec 13, 2023
2 parents 29a0c81 + 36619b5 commit bc20cfe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ public String getIdentifierQuoteString()
public String getSQLKeywords()
throws SQLException {
ArrayList<String> keywords = new ArrayList<>();
try (ResultSet rs = select("SELECT word FROM information_schema.keywords")) {
try (ResultSet rs = select("SELECT keywords FROM information_schema.keywords")) {
rs.next();
keywords.add(rs.getString(1));
}
Expand Down

0 comments on commit bc20cfe

Please sign in to comment.