Skip to content

Commit

Permalink
Remove toLowerCase
Browse files Browse the repository at this point in the history
  • Loading branch information
dmgaldi committed Apr 3, 2024
1 parent fefad26 commit 7e9e9dc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ private List<VDIDatasetReference> queryVisibleDatasets(long userID) {
final String schema = getWdkModel().getProperties().get(VDI_CONTROL_SCHEMA_KEY);
String sql = String.format(
"SELECT user_dataset_id, type, name, description FROM %s.AvailableUserDatasets da WHERE da.user_id = ?",
schema.toLowerCase(Locale.ROOT)
schema
);
return new SQLRunner(getWdkModel().getAppDb().getDataSource(), sql)
.executeQuery(new Object[] { userID }, rs -> {
Expand Down

0 comments on commit 7e9e9dc

Please sign in to comment.