Skip to content

Commit

Permalink
Fix issue when initializing DB based resource group manager
Browse files Browse the repository at this point in the history
Surround reserved keyword `schema` with backticks
  • Loading branch information
imjalpreet authored and tdcmeehan committed Jun 4, 2024
1 parent c18caf9 commit 86b3136
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public interface ResourceGroupsDao
" client_tags VARCHAR(512),\n" +
" selector_resource_estimate VARCHAR(1024),\n" +
" client_info_regex VARCHAR(1024),\n" +
" schema VARCHAR(1024),\n" +
" `schema` VARCHAR(1024),\n" +
" principal_regex VARCHAR(1024),\n" +
" id BIGINT NOT NULL AUTO_INCREMENT,\n" +
" PRIMARY KEY (id),\n" +
Expand Down

0 comments on commit 86b3136

Please sign in to comment.