@@ -146,7 +146,7 @@ public void testExtractTimestampTzMillisDateComparison()
146146 Map .of (timestampTzColumnSymbol , columnHandle ))))
147147 .isEqualTo (TupleDomain .withColumnDomains (Map .of (
148148 columnHandle ,
149- Domain .create (ValueSet .ofRanges (Range .range (columnType , startOfDateUtc , true , startOfNextDateUtc , false )), true ))));
149+ Domain .create (ValueSet .ofRanges (Range .range (columnType , startOfDateUtc , true , startOfNextDateUtc , false )), false ))));
150150 }
151151
152152 /**
@@ -216,7 +216,7 @@ public void testExtractTimestampTzMicrosDateComparison()
216216 Map .of (timestampTzColumnSymbol , columnHandle ))))
217217 .isEqualTo (TupleDomain .withColumnDomains (Map .of (
218218 columnHandle ,
219- Domain .create (ValueSet .ofRanges (Range .range (columnType , startOfDateUtc , true , startOfNextDateUtc , false )), true ))));
219+ Domain .create (ValueSet .ofRanges (Range .range (columnType , startOfDateUtc , true , startOfNextDateUtc , false )), false ))));
220220 }
221221
222222 /**
@@ -302,7 +302,7 @@ public void testExtractDateTruncTimestampTzMillisComparison()
302302 Map .of (timestampTzColumnSymbol , columnHandle ))))
303303 .isEqualTo (TupleDomain .withColumnDomains (Map .of (
304304 columnHandle ,
305- Domain .create (ValueSet .ofRanges (Range .range (columnType , startOfDateUtc , true , startOfNextDateUtc , false )), true ))));
305+ Domain .create (ValueSet .ofRanges (Range .range (columnType , startOfDateUtc , true , startOfNextDateUtc , false )), false ))));
306306 }
307307
308308 /**
@@ -388,7 +388,7 @@ public void testExtractDateTruncTimestampTzMicrosComparison()
388388 Map .of (timestampTzColumnSymbol , columnHandle ))))
389389 .isEqualTo (TupleDomain .withColumnDomains (Map .of (
390390 columnHandle ,
391- Domain .create (ValueSet .ofRanges (Range .range (columnType , startOfDateUtc , true , startOfNextDateUtc , false )), true ))));
391+ Domain .create (ValueSet .ofRanges (Range .range (columnType , startOfDateUtc , true , startOfNextDateUtc , false )), false ))));
392392 }
393393
394394 /**
@@ -461,7 +461,7 @@ public void testExtractYearTimestampTzMicrosComparison()
461461 Map .of (timestampTzColumnSymbol , columnHandle ))))
462462 .isEqualTo (TupleDomain .withColumnDomains (Map .of (
463463 columnHandle ,
464- Domain .create (ValueSet .ofRanges (Range .range (columnType , startOfYearUtc , true , startOfNextDateUtc , false )), true ))));
464+ Domain .create (ValueSet .ofRanges (Range .range (columnType , startOfYearUtc , true , startOfNextDateUtc , false )), false ))));
465465 }
466466
467467 /**
@@ -534,7 +534,7 @@ public void testExtractYearTimestampTzMillisComparison()
534534 Map .of (timestampTzColumnSymbol , columnHandle ))))
535535 .isEqualTo (TupleDomain .withColumnDomains (Map .of (
536536 columnHandle ,
537- Domain .create (ValueSet .ofRanges (Range .range (columnType , startOfYearUtc , true , startOfNextDateUtc , false )), true ))));
537+ Domain .create (ValueSet .ofRanges (Range .range (columnType , startOfYearUtc , true , startOfNextDateUtc , false )), false ))));
538538 }
539539
540540 @ Test
0 commit comments