You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/integrations/engines/doris.md
+6-18Lines changed: 6 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -87,7 +87,7 @@ MODEL (
87
87
88
88
## Table Properties
89
89
90
-
The Doris adapter supports a comprehensive set of table properties that can be configured in the `physical_properties` section of your model. These properties are processed by the `_build_table_properties_exp` method.
90
+
The Doris adapter supports a comprehensive set of table properties that can be configured in the `physical_properties` section of your model.
91
91
92
92
### Core Table Properties
93
93
@@ -96,7 +96,7 @@ The Doris adapter supports a comprehensive set of table properties that can be c
96
96
| `unique_key` | `Tuple[str]` or `str` | Defines unique key columns for UNIQUE model | `('user_id')` or `'user_id'` |
97
97
| `duplicate_key` | `Tuple[str]` or `str` | Defines key columns for DUPLICATE model | `('user_id', 'event_time')` |
98
98
| `distributed_by` | `Dict` | Distribution configuration | See Distribution section |
99
-
| `partitioned_by_expr` | `Tuple[str]` or `str` | Custom partition expression | `'FROM ("2000-11-14") TO ("2099-11-14") INTERVAL 1 MONTH'` |
99
+
| `partitions` | `Tuple[str]` or `str` | Custom partition expression | `'FROM ("2000-11-14") TO ("2099-11-14") INTERVAL 1 MONTH'` |
100
100
101
101
### Distribution Configuration
102
102
@@ -139,16 +139,16 @@ MODEL (
139
139
140
140
### Partitioning
141
141
142
-
Doris supports range partitioning to improve query performance. SQLMesh automatically translates partitioning into Doris's `PARTITION BY RANGE` syntax.
142
+
Doris supports range partitioning and list partitioning to improve query performance.
0 commit comments