Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/data-engineering/delta-optimization-and-v-order.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,11 @@ CREATE TABLE person (id INT, name STRING, age INT) USING parquet TBLPROPERTIES("
> [!IMPORTANT]
> When the table property is set to true, INSERT, UPDATE, and MERGE commands behave as expected and perform the write-time optimization. If the V-Order session configuration is set to true or the spark.write enables it, then the writes are V-Order even if the TBLPROPERTIES is set to false.


Enable or disable V-Order by altering the table property:

> [!NOTE]
> You need to have 'spark.databricks.delta.allowArbitraryProperties.enabled' set to 'true'.
```sql
%%sql
ALTER TABLE person SET TBLPROPERTIES("delta.parquet.vorder.default" = "true");
Expand Down