Skip to content

Commit 10f81b0

Browse files
committed
WIP: add unit tests for expand command
Signed-off-by: Yuanchun Shen <yuanchu@amazon.com>
1 parent b29432d commit 10f81b0

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)