Skip to content

Commit

Permalink
minor fix for h2
Browse files Browse the repository at this point in the history
  • Loading branch information
artur rocks committed Jul 15, 2024
1 parent e196165 commit 5f1ff67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ public void resolveConflictsNative(String datasetName) {

@Override
public List<String> listDatasets() {
return List.of();
return List.of("default");
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public List getPropertyValueTimeStampDistribution(String property, FilterCriteri
"select property, CASE " +
"WHEN property_value = 'CONFLICT' THEN property_value " +
"ELSE SUBSTRING(property_value,1,4) " +
"END as value, count(property) as number " +
"END, count(property) as number " +
"from characterisationresultview " +
"where %s property = '%s' group by property, CASE " +
"WHEN property_value = 'CONFLICT' THEN property_value " +
Expand Down

0 comments on commit 5f1ff67

Please sign in to comment.