Esempio n. 1
0
 Update(TableMetadata table) {
   super(table);
   this.keyspace = table.getKeyspace().getName();
   this.table = table.getName();
   this.assignments = new Assignments(this);
   this.where = new Where(this);
   this.usings = new Options(this);
 }
Esempio n. 2
0
 Insert(TableMetadata table) {
   super(table);
   this.keyspace = table.getKeyspace().getName();
   this.table = table.getName();
   this.usings = new Options(this);
 }