Ejemplo 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);
 }
Ejemplo n.º 2
0
 Insert(TableMetadata table) {
   super(table);
   this.keyspace = table.getKeyspace().getName();
   this.table = table.getName();
   this.usings = new Options(this);
 }