drop_col
Aliases: coldrop (deprecated).
drop_col [columnname: col storable]+
Exclude one or more columns from the input dataset to the output dataset.
Primary key and time columns may not be dropped.
See also pick_col.
Categories
Accelerable
drop_col is always accelerable if the input is accelerable. A dataset that only uses accelerable verbs can be accelerated, making queries on the dataset respond faster.
Examples
drop_col debug_info, status_code
Exclude the columns 'debug_info' and 'status_code' from the data passed downstream.
Updated 8 days ago