Пример #1
0
 public bool RefreshSchema(string keyspace = null, string table = null)
 {
     _controlConnection.SubmitSchemaRefresh(keyspace, table);
     if (keyspace == null && table == null)
     {
         return(_controlConnection.RefreshHosts());
     }
     return(true);
 }