We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b29432d commit 10f81b0Copy full SHA for 10f81b0
1 file changed
ppl/src/test/java/org/opensearch/sql/ppl/calcite/CalcitePPLExpandTest.java
@@ -0,0 +1,22 @@
1
+/*
2
+ *
3
+ * * Copyright OpenSearch Contributors
4
+ * * SPDX-License-Identifier: Apache-2.0
5
6
+ */
7
+
8
+package org.opensearch.sql.ppl.calcite;
9
10
+import org.apache.calcite.test.CalciteAssert;
11
+import org.junit.Test;
12
13
+public class CalcitePPLExpandTest extends CalcitePPLAbstractTest {
14
+ public CalcitePPLExpandTest() {
15
+ super(CalciteAssert.SchemaSpec.SCOTT_WITH_TEMPORAL);
16
+ }
17
18
+ @Test
19
+ public void testExpand() {
20
+ String ppl = "source=EMP | expand JOB";
21
22
+}
0 commit comments