private final byte[][] getCols;
CsChunkTable(CassandraDatabase db) {
this.db = db;
this.colChunk = new ColumnMatcher("chunk");
this.colIndex = new ColumnMatcher("index");
this.colMeta = new ColumnMatcher("meta");
this.getCols = new byte[][] { colChunk.name(),
colIndex.name(),
colMeta.name(),
};
}