Skip to content

Commit

Permalink
[DataFactory]Support partition of SAP HANA (#7860)
Browse files Browse the repository at this point in the history
  • Loading branch information
TinaHu1 authored and ArcturusZhang committed Dec 3, 2019
1 parent 1a9f8e3 commit f424db6
Showing 1 changed file with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1462,6 +1462,33 @@
"packetSize": {
"type": "object",
"description": "The packet size of data read from SAP HANA. Type: integer(or Expression with resultType integer)."
},
"partitionOption": {
"description": "The partition mechanism that will be used for SAP HANA read in parallel.",
"type": "string",
"enum": [
"None",
"PhysicalPartitionsOfTable",
"SapHanaDynamicRange"
],
"x-ms-enum": {
"name": "SapHanaPartitionOption",
"modelAsString": true
}
},
"partitionSettings": {
"description": "The settings that will be leveraged for SAP HANA source partitioning.",
"$ref": "#/definitions/SapHanaPartitionSettings"
}
}
},
"SapHanaPartitionSettings": {
"description": "The settings that will be leveraged for SAP HANA source partitioning.",
"type": "object",
"properties": {
"partitionColumnName": {
"type": "object",
"description": "The name of the column that will be used for proceeding range partitioning. Type: string (or Expression with resultType string)."
}
}
},
Expand Down

0 comments on commit f424db6

Please sign in to comment.