use of io.prestosql.sql.tree.ShowCache in project hetu-core by openlookeng.
the class TestSqlParser method testShowCache.
@Test
public void testShowCache() {
assertStatement("SHOW CACHE", new ShowCache(Optional.empty(), Optional.empty()));
assertStatement("SHOW CACHE a", new ShowCache(new NodeLocation(0, 0), QualifiedName.of("a")));
}
Aggregations