This is an automated email from the ASF dual-hosted git repository. francischuang pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/calcite-avatica-go.git
commit db79861b7b39be6eb36bb1a739a07701ab7f8412 Author: Francis Chuang <[email protected]> AuthorDate: Mon Oct 10 09:35:31 2022 +1100 Fix formatting in documentation --- site/_docs/go_client_reference.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/site/_docs/go_client_reference.md b/site/_docs/go_client_reference.md index 4da4923..e77e5a0 100644 --- a/site/_docs/go_client_reference.md +++ b/site/_docs/go_client_reference.md @@ -134,8 +134,8 @@ The `maxRowsTotal` parameter sets the maximum number of rows to return for a giv The `frameMaxSize` parameter sets the maximum number of rows to return in a frame. Depending on the number of rows returned and subject to the limits of `maxRowsTotal`, a query result set can contain rows in multiple frames. These -additional frames are then fetched on a as-needed basis. `frameMaxSize` allows you to control the number of rows -in each frame to suit your application's performance profile. By default this is set to `-1`, so that there is no limit +additional frames are then fetched on an as-needed basis. `frameMaxSize` allows you to control the number of rows +in each frame to suit your application's performance profile. By default, this is set to `-1`, so that there is no limit on the number of rows in a frame. <strong><a name="transactionIsolation" href="#transactionIsolation">transactionIsolation</a></strong> @@ -149,7 +149,7 @@ we recommend setting it to `4`, which is the maximum isolation level supported. The supported values for `transactionIsolation` are: | Value | JDBC Constant | Description | -| :-----| :----------------------------- | :------------------------------------------------------------------------------- | +|:------|:-------------------------------|:---------------------------------------------------------------------------------| | 0 | none | Transactions are not supported | | 1 | `TRANSACTION_READ_UNCOMMITTED` | Dirty reads, non-repeatable reads and phantom reads may occur. | | 2 | `TRANSACTION_READ_COMMITTED` | Dirty reads are prevented, but non-repeatable reads and phantom reads may occur. | @@ -221,6 +221,6 @@ fmt.Println(perr.Name) // Prints: table_undefined ## Version Compatibility -| Driver Version | Phoenix Version | Calcite-Avatica Version | -| :-------------- | :---------------- | :---------------------- | -| 3.x.x | >= 4.8.0 | >= 1.11.0 | +| Driver Version | Phoenix Version | Calcite-Avatica Version | +|:---------------|:----------------|:------------------------| +| 3.x.x | >= 4.8.0 | >= 1.11.0 |
