drop_col¶
Type of operation: Projection
Description¶
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
.
Usage¶
drop_col columnname ...
Argument |
Type |
Required |
Multiple |
---|---|---|---|
columnname |
fieldref |
Required |
Can be multiple |
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.
Aliases¶
coldrop
(deprecated)