Skip to content

Commit ce8f7c0

Browse files
Updating !current_version in yamsql files to 4.3.6.0
1 parent 1ff6daf commit ce8f7c0

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

yaml-tests/src/test/resources/disabled-planner-rewrites/sql-functions.yamsql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ test_block:
188188
test_block:
189189
name: parenthesis-less-function-calls
190190
options:
191-
supported_version: !current_version
191+
supported_version: 4.3.6.0
192192
connection_options:
193193
DISABLE_PLANNER_REWRITING: true
194194
tests:

yaml-tests/src/test/resources/disabled-planner-rewrites/standard-tests.yamsql

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,10 @@ test_block:
211211
-
212212
- query: select * from T1 where (COL1 = 20 OR COL1 = 10) AND (COL1 = 20 OR COL1 = 10)
213213
- explain: "COVERING(I1 [EQUALS promote(@c9 AS LONG)] -> [COL1: KEY[0], ID: KEY[2]]) ⊎ COVERING(I1 [EQUALS promote(@c13 AS LONG)] -> [COL1: KEY[0], ID: KEY[2]]) | DISTINCT BY PK | FETCH"
214-
- initialVersionLessThan: !current_version
215-
# Prior to !current_version, there was an error that would result in this query failing due to an illegal argument exception
214+
- initialVersionLessThan: 4.3.6.0
215+
# Prior to 4.3.6.0, there was an error that would result in this query failing due to an illegal argument exception
216216
# The error is currently not propagated as a SQLException, so we can't even assert on the error code
217-
- initialVersionAtLeast: !current_version
217+
- initialVersionAtLeast: 4.3.6.0
218218
- unorderedResult: [
219219
{ID: 1, COL1: 10, COL2: 1},
220220
{ID: 2, COL1: 10, COL2: 2},
@@ -233,10 +233,10 @@ test_block:
233233
-
234234
- query: select * from T1 where (COL1 = 20 OR COL1 = 10) AND (COL1 = 20 OR COL1 = 10) ORDER BY COL1
235235
- explain: "ISCAN(I1 [EQUALS promote(@c9 AS LONG)]) ∪ ISCAN(I1 [EQUALS promote(@c13 AS LONG)]) COMPARE BY (_.COL1, recordType(_), _.ID)"
236-
- initialVersionLessThan: !current_version
237-
# Prior to !current_version, there was an error that would result in this query failing due to an illegal argument exception
236+
- initialVersionLessThan: 4.3.6.0
237+
# Prior to 4.3.6.0, there was an error that would result in this query failing due to an illegal argument exception
238238
# The error is currently not propagated as a SQLException, so we can't even assert on the error code
239-
- initialVersionAtLeast: !current_version
239+
- initialVersionAtLeast: 4.3.6.0
240240
- result: [
241241
{ID: 1, COL1: 10, COL2: 1},
242242
{ID: 2, COL1: 10, COL2: 2},

yaml-tests/src/test/resources/literal-tests.yamsql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
---
2121
options:
22-
supported_version: !current_version
22+
supported_version: 4.3.6.0
2323
---
2424
schema_template:
2525
create table B(b1 integer, b2 string, b3 bigint, primary key(b1))

yaml-tests/src/test/resources/sql-functions.yamsql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ test_block:
185185
test_block:
186186
name: parenthesis-less-function-calls
187187
options:
188-
supported_version: !current_version
188+
supported_version: 4.3.6.0
189189
tests:
190190
-
191191
- query: select * from f5;

yaml-tests/src/test/resources/standard-tests.yamsql

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -208,10 +208,10 @@ test_block:
208208
-
209209
- query: select * from T1 where (COL1 = 20 OR COL1 = 10) AND (COL1 = 20 OR COL1 = 10)
210210
- explain: "COVERING(I1 [EQUALS promote(@c9 AS LONG)] -> [COL1: KEY[0], ID: KEY[2]]) ⊎ COVERING(I1 [EQUALS promote(@c13 AS LONG)] -> [COL1: KEY[0], ID: KEY[2]]) | DISTINCT BY PK | FETCH"
211-
- initialVersionLessThan: !current_version
212-
# Prior to !current_version, there was an error that would result in this query failing due to an illegal argument exception
211+
- initialVersionLessThan: 4.3.6.0
212+
# Prior to 4.3.6.0, there was an error that would result in this query failing due to an illegal argument exception
213213
# The error is currently not propagated as a SQLException, so we can't even assert on the error code
214-
- initialVersionAtLeast: !current_version
214+
- initialVersionAtLeast: 4.3.6.0
215215
- unorderedResult: [
216216
{ID: 1, COL1: 10, COL2: 1},
217217
{ID: 2, COL1: 10, COL2: 2},
@@ -230,10 +230,10 @@ test_block:
230230
-
231231
- query: select * from T1 where (COL1 = 20 OR COL1 = 10) AND (COL1 = 20 OR COL1 = 10) ORDER BY COL1
232232
- explain: "ISCAN(I1 [EQUALS promote(@c9 AS LONG)]) ∪ ISCAN(I1 [EQUALS promote(@c13 AS LONG)]) COMPARE BY (_.COL1, recordType(_), _.ID)"
233-
- initialVersionLessThan: !current_version
234-
# Prior to !current_version, there was an error that would result in this query failing due to an illegal argument exception
233+
- initialVersionLessThan: 4.3.6.0
234+
# Prior to 4.3.6.0, there was an error that would result in this query failing due to an illegal argument exception
235235
# The error is currently not propagated as a SQLException, so we can't even assert on the error code
236-
- initialVersionAtLeast: !current_version
236+
- initialVersionAtLeast: 4.3.6.0
237237
- result: [
238238
{ID: 1, COL1: 10, COL2: 1},
239239
{ID: 2, COL1: 10, COL2: 2},

0 commit comments

Comments
 (0)