This is an automated email from the ASF dual-hosted git repository.
stoty pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/phoenix.git
The following commit(s) were added to refs/heads/master by this push:
new 1f41375259 PHOENIX-6835 Flakey
RowTimestampIT.testAutomaticallySettingRowTimestampWithDate
1f41375259 is described below
commit 1f41375259c3b40b4c9f38d693234610cfdd19f2
Author: Istvan Toth <[email protected]>
AuthorDate: Thu Nov 24 08:49:30 2022 +0100
PHOENIX-6835 Flakey
RowTimestampIT.testAutomaticallySettingRowTimestampWithDate
---
phoenix-core/src/it/java/org/apache/phoenix/end2end/RowTimestampIT.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/RowTimestampIT.java
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/RowTimestampIT.java
index b9b0eb4503..4795f16c01 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/RowTimestampIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/RowTimestampIT.java
@@ -260,7 +260,7 @@ public class RowTimestampIT extends ParallelStatsDisabledIT
{
// the data in this query.
PreparedStatement stmt =
conn.prepareStatement("SELECT KV1, KV2, PK2 FROM " +
tableName
- + " WHERE PK1 = ? AND PK2 > ? AND PK2 < ? ");
+ + " WHERE PK1 = ? AND PK2 >= ? AND PK2 <= ? ");
stmt.setString(1, "PK1");
stmt.setDate(2, new Date(startTime));
stmt.setDate(3, new Date(endTime));