Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support ParquetReadSettings In DataFactory And Synapse For Bug Fix #26384

Merged
merged 3 commits into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -1271,6 +1271,21 @@
}
}
},
"ParquetReadSettings": {
"description": "Parquet read settings.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/FormatReadSettings"
}
],
"properties": {
"compressionProperties": {
"$ref": "#/definitions/CompressionReadSettings",
"description": "Compression settings."
}
}
},
"DelimitedTextReadSettings": {
"description": "Delimited text read settings.",
"type": "object",
Expand Down Expand Up @@ -1555,6 +1570,10 @@
"$ref": "#/definitions/StoreReadSettings",
"description": "Parquet store settings."
},
"formatSettings": {
"$ref": "#/definitions/ParquetReadSettings",
"description": "Parquet format settings."
},
"additionalColumns": {
"type": "object",
"description": "Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects)."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -992,6 +992,21 @@
}
}
},
"ParquetReadSettings": {
"description": "Parquet read settings.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/FormatReadSettings"
}
],
"properties": {
"compressionProperties": {
"$ref": "#/definitions/CompressionReadSettings",
"description": "Compression settings."
}
}
},
"DelimitedTextReadSettings": {
"description": "Delimited text read settings.",
"type": "object",
Expand Down Expand Up @@ -1262,6 +1277,10 @@
"$ref": "#/definitions/StoreReadSettings",
"description": "Parquet store settings."
},
"formatSettings": {
"$ref": "#/definitions/ParquetReadSettings",
"description": "Parquet format settings."
},
"additionalColumns": {
"type": "object",
"description": "Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects)."
Expand Down