How can I alter a pipeline to add a new table column to the pipeline definition? I do not think dropping and recreating is best option if all the files will be reloaded again.
1 Like
Hi @ryan.lacjak, thanks for using pipelines!
You can run CREATE OR REPLACE PIPELINE <pipeline_name> ...
with the new definition. It has the same semantics as ALTER and will not reload data that’s already been process by the pipeline.