Skip to content

Commit

Permalink
In the JMH benchmarking env these flags being null was triggering 'IN…
Browse files Browse the repository at this point in the history
…VALID_T_F_FLAG: "%1" - Must be either T or F.'
  • Loading branch information
rma-rripken committed Apr 11, 2024
1 parent 6e38c61 commit 05db828
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,10 @@ public TimeSeries getTimeseries(String page, int pageSize, String names, String
Long beginTimeMilli = beginTime.toInstant().toEpochMilli();
Long endTimeMilli = endTime.toInstant().toEpochMilli();
String trim = OracleTypeMap.formatBool(shouldTrim);
String startInclusive = null;
String endInclusive = null;
String previous = null;
String next = null;
String startInclusive = "T";
String endInclusive = "T";
String previous = "F";
String next = "F";
Long versionDateMilli = null;
String maxVersion = null;

Expand Down

0 comments on commit 05db828

Please sign in to comment.