Пример #1
0
  // process "show tables" statement
  private void executeShowTables(CommonTree ast) throws TException {
    if (!CliMain.isConnected()) return;

    List<String> tables = thriftClient_.get_string_list_property("keyspaces");
    for (String table : tables) {
      css_.out.println(table);
    }
  }