Skip to content

Commit d73830d

Browse files
Add YAML support for ANALYZE settings (#163)
1 parent cc35eb3 commit d73830d

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.helm/templates/crd-microsoft-synapse.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,23 @@ spec:
175175
default:
176176
batchThreshold: 60
177177
retentionThreshold: 6h
178+
analyzeSettings:
179+
type: object
180+
description: Settings for running ANALYZE on target.
181+
properties:
182+
batchThreshold:
183+
type: integer
184+
default: 60
185+
description: Number of batches to accumulate before running the ANALYZE query.
186+
includedColumns:
187+
type: array
188+
description: Columns to include in the ANALYZE query. If empty, ALL columns will be included.
189+
items:
190+
type: string
191+
default: []
192+
default:
193+
batchThreshold: 60
194+
includedColumns: []
178195
targetTableName:
179196
type: string
180197
description: Name for the target Iceberg table.

0 commit comments

Comments
 (0)