Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2025 05:00 AM
Dear Team!
I want to prevent at a certain table that the schema is automatically updated. With plain strucutred streaming I can do the following:
silver_df.writeStream \
.format("delta") \
.option("mergeSchema", "false") \
.option("checkpointLocation", checkpoint_path) \
.outputMode("append") \
.table("silver_table")How can I set mergeSchema=false with Declarative Pipelines?