This is an automated email from the ASF dual-hosted git repository.
gian pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git
The following commit(s) were added to refs/heads/master by this push:
new e4f3008f112 fix: TableInputSpec serialized two intervals fields.
(#19264)
e4f3008f112 is described below
commit e4f3008f112f59d7804b8705ed5e21284003fcf3
Author: Gian Merlino <[email protected]>
AuthorDate: Tue Apr 14 20:58:50 2026 -0700
fix: TableInputSpec serialized two intervals fields. (#19264)
TableInputSpec has a getIntervalsForSerialization method whose purpose
is to omit the "intervals" field when the query interval is ONLY_ETERNITY.
However, this was not wired up correctly, so actually what happened is
when intervals did exist, both "intervals" and "intervalsForSerialization"
would be written. This patch adjusts the Jackson annotations to match
the original intent.
---
.../druid/msq/input/table/TableInputSpec.java | 3 +-
.../msq1.iq | 3 +-
.../msqJoinHint.iq | 18 ++----
.../msqNestedJoinHint.iq | 27 +++------
.../qaArray/sql_explain.msq.iq | 66 ++++++++--------------
.../funcs_and_sql_func_json_keys.03.msq.iq | 9 +--
.../funcs_and_sql_func_json_object.03.msq.iq | 6 +-
.../funcs_and_sql_func_json_paths.03.msq.iq | 3 +-
.../funcs_and_sql_func_json_query.04.msq.iq | 9 +--
.../funcs_and_sql_func_json_value.04.msq.iq | 3 +-
.../funcs_and_sql_func_parse_json.02.msq.iq | 3 +-
.../funcs_and_sql_func_to_json_string.02.msq.iq | 3 +-
.../funcs_and_sql_func_try_parse_json.02.msq.iq | 3 +-
.../qaUnnest/array_sql_explain.msq.iq | 9 +--
.../qaUnnest/mv_sql_explain.msq.iq | 9 +--
.../qaWin/sql_explain.msq.iq | 12 ++--
16 files changed, 62 insertions(+), 124 deletions(-)
diff --git
a/multi-stage-query/src/main/java/org/apache/druid/msq/input/table/TableInputSpec.java
b/multi-stage-query/src/main/java/org/apache/druid/msq/input/table/TableInputSpec.java
index a7e88578110..40c43b26962 100644
---
a/multi-stage-query/src/main/java/org/apache/druid/msq/input/table/TableInputSpec.java
+++
b/multi-stage-query/src/main/java/org/apache/druid/msq/input/table/TableInputSpec.java
@@ -78,13 +78,12 @@ public class TableInputSpec implements InputSpec
return dataSource;
}
- @JsonProperty
public List<Interval> getIntervals()
{
return intervals;
}
- @JsonProperty
+ @JsonProperty("intervals")
@JsonInclude(JsonInclude.Include.NON_NULL)
@Nullable
private List<Interval> getIntervalsForSerialization()
diff --git
a/multi-stage-query/src/test/quidem/org.apache.druid.msq.quidem.MSQQuidemTest/msq1.iq
b/multi-stage-query/src/test/quidem/org.apache.druid.msq.quidem.MSQQuidemTest/msq1.iq
index cea0ddfa84a..f31f7a3a975 100644
---
a/multi-stage-query/src/test/quidem/org.apache.druid.msq.quidem.MSQQuidemTest/msq1.iq
+++
b/multi-stage-query/src/test/quidem/org.apache.druid.msq.quidem.MSQQuidemTest/msq1.iq
@@ -22,8 +22,7 @@ order by 1;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "wikipedia",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "wikipedia"
} ],
"processor" : {
"type" : "groupByPreShuffle",
diff --git
a/multi-stage-query/src/test/quidem/org.apache.druid.msq.quidem.MSQQuidemTest/msqJoinHint.iq
b/multi-stage-query/src/test/quidem/org.apache.druid.msq.quidem.MSQQuidemTest/msqJoinHint.iq
index 1de39db46fc..6121c1b8df9 100644
---
a/multi-stage-query/src/test/quidem/org.apache.druid.msq.quidem.MSQQuidemTest/msqJoinHint.iq
+++
b/multi-stage-query/src/test/quidem/org.apache.druid.msq.quidem.MSQQuidemTest/msqJoinHint.iq
@@ -12,8 +12,7 @@ where w1.cityName='New York';
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "wikipedia",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "wikipedia"
} ],
"processor" : {
"type" : "scan",
@@ -80,8 +79,7 @@ where w1.cityName='New York';
"id" : "<taskId>_1",
"input" : [ {
"type" : "table",
- "dataSource" : "wikipedia",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "wikipedia"
} ],
"processor" : {
"type" : "scan",
@@ -246,8 +244,7 @@ LogicalJoin:[[broadcast inheritPath:[0, 0]]]
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "wikipedia",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "wikipedia"
} ],
"processor" : {
"type" : "scan",
@@ -314,8 +311,7 @@ LogicalJoin:[[broadcast inheritPath:[0, 0]]]
"id" : "<taskId>_1",
"input" : [ {
"type" : "table",
- "dataSource" : "wikipedia",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "wikipedia"
} ],
"processor" : {
"type" : "scan",
@@ -481,8 +477,7 @@ LogicalJoin:[[sort_merge inheritPath:[0, 0]]]
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "wikipedia",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "wikipedia"
} ],
"processor" : {
"type" : "scan",
@@ -549,8 +544,7 @@ LogicalJoin:[[sort_merge inheritPath:[0, 0]]]
"id" : "<taskId>_1",
"input" : [ {
"type" : "table",
- "dataSource" : "wikipedia",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "wikipedia"
} ],
"processor" : {
"type" : "scan",
diff --git
a/multi-stage-query/src/test/quidem/org.apache.druid.msq.quidem.MSQQuidemTest/msqNestedJoinHint.iq
b/multi-stage-query/src/test/quidem/org.apache.druid.msq.quidem.MSQQuidemTest/msqNestedJoinHint.iq
index b71933ba6dc..64ba0313e67 100644
---
a/multi-stage-query/src/test/quidem/org.apache.druid.msq.quidem.MSQQuidemTest/msqNestedJoinHint.iq
+++
b/multi-stage-query/src/test/quidem/org.apache.druid.msq.quidem.MSQQuidemTest/msqNestedJoinHint.iq
@@ -15,8 +15,7 @@ where w1.cityName='New York';
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "wikipedia",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "wikipedia"
} ],
"processor" : {
"type" : "scan",
@@ -77,8 +76,7 @@ where w1.cityName='New York';
"id" : "<taskId>_1",
"input" : [ {
"type" : "table",
- "dataSource" : "wikipedia",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "wikipedia"
} ],
"processor" : {
"type" : "scan",
@@ -142,8 +140,7 @@ where w1.cityName='New York';
"id" : "<taskId>_2",
"input" : [ {
"type" : "table",
- "dataSource" : "wikipedia",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "wikipedia"
}, {
"type" : "stage",
"stage" : 0
@@ -266,8 +263,7 @@ LogicalJoin:[[sort_merge inheritPath:[0]]]
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "wikipedia",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "wikipedia"
} ],
"processor" : {
"type" : "scan",
@@ -331,8 +327,7 @@ LogicalJoin:[[sort_merge inheritPath:[0]]]
"id" : "<taskId>_1",
"input" : [ {
"type" : "table",
- "dataSource" : "wikipedia",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "wikipedia"
} ],
"processor" : {
"type" : "scan",
@@ -393,8 +388,7 @@ LogicalJoin:[[sort_merge inheritPath:[0]]]
"id" : "<taskId>_2",
"input" : [ {
"type" : "table",
- "dataSource" : "wikipedia",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "wikipedia"
} ],
"processor" : {
"type" : "scan",
@@ -578,8 +572,7 @@ where w1.cityName='New York';
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "wikipedia",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "wikipedia"
} ],
"processor" : {
"type" : "scan",
@@ -640,8 +633,7 @@ where w1.cityName='New York';
"id" : "<taskId>_1",
"input" : [ {
"type" : "table",
- "dataSource" : "wikipedia",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "wikipedia"
}, {
"type" : "stage",
"stage" : 0
@@ -716,8 +708,7 @@ where w1.cityName='New York';
"id" : "<taskId>_2",
"input" : [ {
"type" : "table",
- "dataSource" : "wikipedia",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "wikipedia"
} ],
"processor" : {
"type" : "scan",
diff --git
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaArray/sql_explain.msq.iq
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaArray/sql_explain.msq.iq
index 01f31cb3308..0bad5e3b41c 100644
---
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaArray/sql_explain.msq.iq
+++
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaArray/sql_explain.msq.iq
@@ -39,8 +39,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -128,8 +127,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -217,8 +215,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -317,8 +314,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -420,8 +416,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -509,8 +504,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -609,8 +603,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -712,8 +705,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -801,8 +793,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -901,8 +892,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -1004,8 +994,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -1093,8 +1082,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -1193,8 +1181,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -1296,8 +1283,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -1385,8 +1371,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -1485,8 +1470,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -1588,8 +1572,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -1677,8 +1660,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -1777,8 +1759,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -1880,8 +1861,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -1969,8 +1949,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
@@ -2069,8 +2048,7 @@ FROM test_array;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_array",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_array"
} ],
"processor" : {
"type" : "scan",
diff --git
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_keys.03.msq.iq
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_keys.03.msq.iq
index 788359f319f..69c8cf168b2 100644
---
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_keys.03.msq.iq
+++
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_keys.03.msq.iq
@@ -656,8 +656,7 @@ FROM test_json_cols;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_json_cols",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_json_cols"
} ],
"processor" : {
"type" : "scan",
@@ -751,8 +750,7 @@ FROM test_json_cols;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_json_cols",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_json_cols"
} ],
"processor" : {
"type" : "scan",
@@ -846,8 +844,7 @@ FROM test_json_cols;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_json_cols",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_json_cols"
} ],
"processor" : {
"type" : "scan",
diff --git
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_object.03.msq.iq
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_object.03.msq.iq
index ac7adb76703..422e53a77e0 100644
---
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_object.03.msq.iq
+++
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_object.03.msq.iq
@@ -650,8 +650,7 @@ FROM test_json_cols;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_json_cols",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_json_cols"
} ],
"processor" : {
"type" : "scan",
@@ -749,8 +748,7 @@ FROM test_json_cols;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_json_cols",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_json_cols"
} ],
"processor" : {
"type" : "scan",
diff --git
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_paths.03.msq.iq
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_paths.03.msq.iq
index 66d3f32bdd4..6b3a4c21cc4 100644
---
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_paths.03.msq.iq
+++
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_paths.03.msq.iq
@@ -25,8 +25,7 @@ FROM test_json_cols;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_json_cols",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_json_cols"
} ],
"processor" : {
"type" : "scan",
diff --git
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_query.04.msq.iq
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_query.04.msq.iq
index c9c6164297e..2301a0d52a3 100644
---
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_query.04.msq.iq
+++
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_query.04.msq.iq
@@ -587,8 +587,7 @@ FROM test_json_cols;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_json_cols",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_json_cols"
} ],
"processor" : {
"type" : "scan",
@@ -687,8 +686,7 @@ FROM test_json_cols;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_json_cols",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_json_cols"
} ],
"processor" : {
"type" : "scan",
@@ -790,8 +788,7 @@ FROM test_json_cols;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_json_cols",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_json_cols"
} ],
"processor" : {
"type" : "scan",
diff --git
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_value.04.msq.iq
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_value.04.msq.iq
index 5c52e4ca727..735cb7940c3 100644
---
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_value.04.msq.iq
+++
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_json_value.04.msq.iq
@@ -339,8 +339,7 @@ FROM test_json_cols;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_json_cols",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_json_cols"
} ],
"processor" : {
"type" : "scan",
diff --git
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_parse_json.02.msq.iq
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_parse_json.02.msq.iq
index 8f85301bfb4..e09e951f40a 100644
---
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_parse_json.02.msq.iq
+++
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_parse_json.02.msq.iq
@@ -86,8 +86,7 @@ FROM test_json_cols;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_json_cols",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_json_cols"
} ],
"processor" : {
"type" : "scan",
diff --git
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_to_json_string.02.msq.iq
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_to_json_string.02.msq.iq
index 996b5e93d14..499710c7a15 100644
---
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_to_json_string.02.msq.iq
+++
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_to_json_string.02.msq.iq
@@ -167,8 +167,7 @@ FROM test_json_cols;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_json_cols",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_json_cols"
} ],
"processor" : {
"type" : "scan",
diff --git
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_try_parse_json.02.msq.iq
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_try_parse_json.02.msq.iq
index 71d7cf0e5a5..727a69b0dcd 100644
---
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_try_parse_json.02.msq.iq
+++
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaJsonCols/funcs_and_sql_func_try_parse_json.02.msq.iq
@@ -129,8 +129,7 @@ FROM test_json_cols;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_json_cols",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_json_cols"
} ],
"processor" : {
"type" : "scan",
diff --git
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaUnnest/array_sql_explain.msq.iq
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaUnnest/array_sql_explain.msq.iq
index 7ecb7c0bda2..ca9dd7c0d3e 100644
---
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaUnnest/array_sql_explain.msq.iq
+++
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaUnnest/array_sql_explain.msq.iq
@@ -47,8 +47,7 @@ FROM test_unnest,
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_unnest",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_unnest"
} ],
"processor" : {
"type" : "scan",
@@ -154,8 +153,7 @@ FROM
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_unnest",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_unnest"
} ],
"processor" : {
"type" : "scan",
@@ -288,8 +286,7 @@ GROUP BY c;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_unnest",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_unnest"
} ],
"processor" : {
"type" : "groupByPreShuffle",
diff --git
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaUnnest/mv_sql_explain.msq.iq
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaUnnest/mv_sql_explain.msq.iq
index 4d322ee76c3..b8bddbe1999 100644
---
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaUnnest/mv_sql_explain.msq.iq
+++
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaUnnest/mv_sql_explain.msq.iq
@@ -65,8 +65,7 @@ FROM test_unnest,
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_unnest",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_unnest"
} ],
"processor" : {
"type" : "scan",
@@ -188,8 +187,7 @@ FROM
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_unnest",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_unnest"
} ],
"processor" : {
"type" : "scan",
@@ -327,8 +325,7 @@ GROUP BY c;
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_unnest",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_unnest"
} ],
"processor" : {
"type" : "groupByPreShuffle",
diff --git
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaWin/sql_explain.msq.iq
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaWin/sql_explain.msq.iq
index 9891f57e668..2490614917b 100644
---
a/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaWin/sql_explain.msq.iq
+++
b/quidem-ut/src/test/quidem/org.apache.druid.quidem.QTest/qaWin/sql_explain.msq.iq
@@ -65,8 +65,7 @@ WHERE client_ip IN ('107.13.54.103',
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_win",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_win"
} ],
"processor" : {
"type" : "groupByPreShuffle",
@@ -718,8 +717,7 @@ WHERE client_ip IN ('107.13.54.103',
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_win",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_win"
} ],
"processor" : {
"type" : "groupByPreShuffle",
@@ -1365,8 +1363,7 @@ GROUP BY server_ip,
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_win",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_win"
} ],
"processor" : {
"type" : "groupByPreShuffle",
@@ -1995,8 +1992,7 @@ GROUP BY server_ip,
"id" : "<taskId>_0",
"input" : [ {
"type" : "table",
- "dataSource" : "test_win",
- "intervals" : [
"-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z" ]
+ "dataSource" : "test_win"
} ],
"processor" : {
"type" : "groupByPreShuffle",
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]