Skip to content

Commit

Permalink
Fix broken IT due to test data change
Browse files Browse the repository at this point in the history
Signed-off-by: Chen Dai <[email protected]>
  • Loading branch information
dai-chen committed Sep 22, 2023
1 parent 7c433b4 commit 10df29e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ class FlintSparkSkippingIndexITSuite extends FlintSparkSuite {
sql(s"""
| INSERT INTO $testTable
| PARTITION (year=2023, month=4)
| VALUES ('Hello', 35, 'Vancouver')
| VALUES (TIMESTAMP '2023-04-21 20:30:00', 'Hello', 35, 'Vancouver')
| """.stripMargin)

withHybridScanEnabled {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ trait FlintSparkSuite
s"""
| INSERT INTO $testTable
| PARTITION (year=2023, month=4)
| VALUES (TIMESTAMP '2023-09-21 16:30:00', 'Hello', 30, 'Seattle')
| VALUES (TIMESTAMP '2023-04-01 16:30:00', 'Hello', 30, 'Seattle')
| """.stripMargin)

sql(
s"""
| INSERT INTO $testTable
| PARTITION (year=2023, month=5)
| VALUES (TIMESTAMP '2023-09-21 17:15:00', 'World', 25, 'Portland')
| VALUES (TIMESTAMP '2023-05-01 17:15:00', 'World', 25, 'Portland')
| """.stripMargin)
}
}

0 comments on commit 10df29e

Please sign in to comment.