refactor: use new column_name API

pull/24376/head
Edd Robinson 2021-02-22 12:24:21 +00:00 committed by kodiakhq[bot]
parent cd83fcbfdb
commit cb335810e2
1 changed files with 7 additions and 1 deletions

View File

@ -339,7 +339,13 @@ impl PartitionChunk for DBChunk {
let chunk_ids = &[chunk_id];
let names = db
.column_names(partition_key, table_name, chunk_ids, rb_predicate)
.column_names(
partition_key,
table_name,
chunk_ids,
rb_predicate,
Selection::All,
)
.context(ReadBufferChunk { chunk_id })?;
Ok(names)