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