-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for new, flexible wire protocol (V4):
The previous protocol is still supported for communication with servers that do not yet support V4. The version negotation is internal and automatic; however, use of V4 features will fail at runtime when attempted with an older server. Failure may be an empty or undefined result or an exception if the request cannot be serviced at all. The following new features or interfaces depend on the new protocol version: - added Durability to QueryRequest for queries that modify data - added pagination information to TableUsageResult and TableUsageRequest - added shard percent usage information to TableUsageResult - added IndexInfo.FieldTypes to return the type information on an index on a JSON field - added the ability to ask for and receive the schema of a query using * PrepareRequest.GetQuerySchema * PreparedStatement.GetQuerySchema - Cloud only: added use of ETags, DefinedTags and FreeFormTags in TableRequest and TableResult
- Loading branch information
1 parent
e779c76
commit 4e26107
Showing
25 changed files
with
4,833 additions
and
1,630 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
{ | ||
"version": "1.3.2", | ||
"tablePrefix": "Go", | ||
"reCreateTables": true, | ||
"dropTablesOnTearDown": true, | ||
"clientConfig": { | ||
"mode": "cloudsim", | ||
"endpoint": "http://localhost:8080" | ||
} | ||
} | ||
"version": "21.2.19", | ||
"tablePrefix": "Go", | ||
"reCreateTables": true, | ||
"verbose": true, | ||
"dropTablesOnTearDown": true, | ||
"clientConfig": { | ||
"mode": "cloudsim", | ||
"endpoint": "http://localhost:8080", | ||
"rateLimitingEnabled": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.