Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
some fix
  • Loading branch information
Haoran Sun committed Aug 21, 2019
commit 1046d64800e04fc05afb508f013249e4ebd15ee8
Original file line number Diff line number Diff line change
Expand Up @@ -1025,6 +1025,10 @@
"nestingSeparator": {
"type": "object",
"description": "Nested properties separator. Type: string (or Expression with resultType string)."
},
"queryTimeout": {
"type": "object",
"description": "Query timeout. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9]))."
}
}
},
Expand Down Expand Up @@ -1870,7 +1874,7 @@
"type": "object",
"allOf": [
{
"$ref": "#/definitions/TabularSource"
"$ref": "#/definitions/CopySource"
}
],
"properties": {
Expand All @@ -1885,6 +1889,10 @@
"batchSize": {
"type": "object",
"description": "Specifies the number of documents to return in each batch of the response from MongoDB instance. In most cases, modifying the batch size will not affect the user or the application. This property's main purpose is to avoid hit the limitation of response size. Type: integer (or Expression with resultType integer)."
},
"queryTimeout": {
"type": "object",
"description": "Query timeout. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9]))."
}
}
},
Expand All @@ -1893,7 +1901,7 @@
"type": "object",
"allOf": [
{
"$ref": "#/definitions/TabularSource"
"$ref": "#/definitions/CopySource"
}
],
"properties": {
Expand All @@ -1908,6 +1916,10 @@
"batchSize": {
"type": "object",
"description": "Specifies the number of documents to return in each batch of the response from MongoDB instance. In most cases, modifying the batch size will not affect the user or the application. This property's main purpose is to avoid hit the limitation of response size. Type: integer (or Expression with resultType integer)."
},
"queryTimeout": {
"type": "object",
"description": "Query timeout. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9]))."
}
}
},
Expand Down