Skip to content

Commit 6560afe

Browse files
authored
Add new attribute duckdbExtensions (SchemaStore#4712)
* relocate incoming files definition and rename attributesDesc to attributes in tasks * remove Duration and add ability to have loader specified in the connection * Support connections specific to load and/or transforms * Improve expectations * Update expectations in load section also * Code spell fix * Add DATAFRAME option * Add new attribute duckdbExtensions * fix typo * apply prettier
1 parent a35172f commit 6560afe

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/schemas/json/starlake.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -954,6 +954,13 @@
954954
"$ref": "#/definitions/ConvertibleToString",
955955
"description": "free text"
956956
},
957+
"streams": {
958+
"type": "array",
959+
"description": "attach streams to table (Snowflake only)",
960+
"items": {
961+
"$ref": "#/definitions/ConvertibleToString"
962+
}
963+
},
957964
"presql": {
958965
"type": "array",
959966
"description": "Reserved for future use.",
@@ -1137,6 +1144,13 @@
11371144
"$ref": "#/definitions/ConvertibleToString",
11381145
"description": "Main SQL request to execute (do not forget to prefix table names with the database name to avoid conflicts)"
11391146
},
1147+
"streams": {
1148+
"type": "array",
1149+
"description": "attach streams to task (Snowflake only)",
1150+
"items": {
1151+
"$ref": "#/definitions/ConvertibleToString"
1152+
}
1153+
},
11401154
"database": {
11411155
"$ref": "#/definitions/ConvertibleToString",
11421156
"description": "Output Database (refer to a project id in BigQuery). Default to SL_DATABASE env var if set."
@@ -2266,6 +2280,10 @@
22662280
"type": "boolean",
22672281
"description": "is duckdb mode active"
22682282
},
2283+
"duckdbExtensions": {
2284+
"type": "string",
2285+
"description": "Comma separated list of duckdb extensions to load. Default is spatial, json, httpfs"
2286+
},
22692287
"duckdbPath": {
22702288
"$ref": "#/definitions/ConvertibleToString",
22712289
"description": "Where to store duckdb files if not using default"

0 commit comments

Comments
 (0)