use of org.apache.flink.table.operations.command.ShowJarsOperation in project flink by apache.
the class SqlToOperationConverterTest method testShowJars.
@Test
public void testShowJars() {
final String sql = "SHOW JARS";
Operation operation = parse(sql, SqlDialect.DEFAULT);
assertThat(operation).isInstanceOf(ShowJarsOperation.class);
final ShowJarsOperation showModulesOperation = (ShowJarsOperation) operation;
assertThat(showModulesOperation.asSummaryString()).isEqualTo("SHOW JARS");
}
Aggregations