Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: fix flaky test #16945

Merged
merged 2 commits into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ changes default snapshot at the first insertion end the deletion
changes append_only snapshot at the first insertion
3 3 INSERT false
not find end point
Error: APIError: ResponseError with 2013: No historical data found at given point
Error: APIError: QueryFailed: [2013]No historical data found at given point
changes default timestamp at the first insertion end the deletion
1 1 DELETE false
2 1 DELETE true
2 2 INSERT true
changes append_only timestamp at the first insertion
3 3 INSERT false
change tracking is disabled
Error: APIError: ResponseError with 2733: Change tracking is not enabled on table 'default'.'t12_0005'
Error: APIError: QueryFailed: [2733]Change tracking is not enabled on table 'default'.'t12_0005'
change tracking has been missing for the time range requested
Error: APIError: ResponseError with 2733: Change tracking has been missing for the time range requested on table 'default'.'t12_0005'
Error: APIError: QueryFailed: [2733]Change tracking has been missing for the time range requested on table 'default'.'t12_0005'
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ true
checking that after flashback to the first snapshot, there should be only 1 snapshot visible
true
flash back to snapshot id that not exist should report error 1105
Error: APIError: ResponseError with 2013: No historical data found at given point
Error: APIError: QueryFailed: [2013]No historical data found at given point
flash back to timestamp that not exist should report error 1105
Error: APIError: ResponseError with 2013: No historical data found at given point
Error: APIError: QueryFailed: [2013]No historical data found at given point
flash back to point that does not visible to the current snapshot should report error 1105
Error: APIError: ResponseError with 2013: No historical data found at given point
Error: APIError: QueryFailed: [2013]No historical data found at given point
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Error: APIError: ResponseError with 1301: table option snapshot_location is invalid for alter table statement
Error: APIError: ResponseError with 1301: table option snapshot_loc is invalid for alter table statement
Error: APIError: ResponseError with 1301: table option extrenal_location is invalid for alter table statement
Error: APIError: ResponseError with 1301: table option abc is invalid for alter table statement
Error: APIError: ResponseError with 1301: invalid block_per_segment option, can't be over 1000
Error: APIError: ResponseError with 1301: can't change storage_format for alter table statement
Error: APIError: ResponseError with 1006: Unable to get field named "b". Valid fields: ["a"]
Error: APIError: ResponseError with 1301: Unsupported data type 'Decimal(4, 2)' for bloom index
Error: APIError: QueryFailed: [1301]table option snapshot_location is invalid for alter table statement
Error: APIError: QueryFailed: [1301]table option snapshot_loc is invalid for alter table statement
Error: APIError: QueryFailed: [1301]table option extrenal_location is invalid for alter table statement
Error: APIError: QueryFailed: [1301]table option abc is invalid for alter table statement
Error: APIError: QueryFailed: [1301]invalid block_per_segment option, can't be over 1000
Error: APIError: QueryFailed: [1301]can't change storage_format for alter table statement
Error: APIError: QueryFailed: [1006]Unable to get field named "b". Valid fields: ["a"]
Error: APIError: QueryFailed: [1301]Unsupported data type 'Decimal(4, 2)' for bloom index
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ c INT NO 0
a FLOAT NO 0
b VARCHAR NO ''
c INT NO 0
Error: APIError: ResponseError with 1006: fail to auto cast column a (String) to column a (Float32)
Error: APIError: QueryFailed: [1006]fail to auto cast column a (String) to column a (Float32)
invalid float literal while evaluating function `to_float32('a')` in expr `to_float32(a)`
Error: APIError: ResponseError with 1058: Cannot find column b
Error: APIError: ResponseError with 1006: null value in column `a` of table `c` violates not-null constraint
Error: APIError: QueryFailed: [1058]Cannot find column b
Error: APIError: QueryFailed: [1006]null value in column `a` of table `c` violates not-null constraint
0 1
Error: APIError: ResponseError with 1006: invalid float literal while evaluating function `to_float32('a')` in expr `to_float32('a')`
Error: APIError: QueryFailed: [1006]invalid float literal while evaluating function `to_float32('a')` in expr `to_float32('a')`
0 1
0 1
1.2 2
Expand All @@ -26,7 +26,7 @@ begin test default column
not 2
begin test not NULL column
1 1
Error: APIError: ResponseError with 1006: null value in column `a` of table `f` violates not-null constraint
Error: APIError: QueryFailed: [1006]null value in column `a` of table `f` violates not-null constraint
1 1
2
a VARCHAR NO ''
Expand Down
Loading