Skip to content
Open
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 @@ -502,7 +502,7 @@ The Session class has the following fields, which can be set through the constru
| `useSSL` | `boolean` | Whether to enable SSL |
| `trustStore` | `String` | Path to the trust store |
| `trustStorePwd` | `String` | Password for the trust store |
| `queryTimeoutInMs` | `long` | Query timeout in milliseconds |
| `queryTimeoutInMs` | `long` | Query timeout in milliseconds. Default value: -1. A negative value means the server default configuration is used, and 0 disables query timeout. |
| `enableRPCCompression` | `boolean` | Whether to enable RPC compression |
| `connectionTimeoutInMs` | `int` | Connection timeout in milliseconds |
| `zoneId` | `ZoneId` | Time zone setting for the session |
Expand Down Expand Up @@ -620,4 +620,4 @@ The Session class has the following fields, which can be set through the constru
| -------------------------- | ----------------------------------------- | ------------------------------------------ |
| `getBackupConfiguration()` | Get backup configuration information | No parameters |
| `fetchAllConnections()` | Get information of all active connections | No parameters |
| `getSystemStatus()` | Get the system status | Deprecated, returns `SystemStatus.NORMAL` |
| `getSystemStatus()` | Get the system status | Deprecated, returns `SystemStatus.NORMAL` |
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ The Session class has the following fields, which can be set through the constru
| `useSSL` | `boolean` | Whether to enable SSL |
| `trustStore` | `String` | Path to the trust store |
| `trustStorePwd` | `String` | Password for the trust store |
| `queryTimeoutInMs` | `long` | Query timeout in milliseconds |
| `queryTimeoutInMs` | `long` | Query timeout in milliseconds. Default value: -1. A negative value means the server default configuration is used, and 0 disables query timeout. |
| `enableRPCCompression` | `boolean` | Whether to enable RPC compression |
| `connectionTimeoutInMs` | `int` | Connection timeout in milliseconds |
| `zoneId` | `ZoneId` | Time zone setting for the session |
Expand Down Expand Up @@ -622,4 +622,4 @@ The Session class has the following fields, which can be set through the constru
| -------------------------- | ----------------------------------------- | ------------------------------------------ |
| `getBackupConfiguration()` | Get backup configuration information | No parameters |
| `fetchAllConnections()` | Get information of all active connections | No parameters |
| `getSystemStatus()` | Get the system status | Deprecated, returns `SystemStatus.NORMAL` |
| `getSystemStatus()` | Get the system status | Deprecated, returns `SystemStatus.NORMAL` |
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ The Session class has the following fields, which can be set through the constru
| `useSSL` | `boolean` | Whether to enable SSL |
| `trustStore` | `String` | Path to the trust store |
| `trustStorePwd` | `String` | Password for the trust store |
| `queryTimeoutInMs` | `long` | Query timeout in milliseconds |
| `queryTimeoutInMs` | `long` | Query timeout in milliseconds. Default value: -1. A negative value means the server default configuration is used, and 0 disables query timeout. |
| `enableRPCCompression` | `boolean` | Whether to enable RPC compression |
| `connectionTimeoutInMs` | `int` | Connection timeout in milliseconds |
| `zoneId` | `ZoneId` | Time zone setting for the session |
Expand Down Expand Up @@ -620,4 +620,4 @@ The Session class has the following fields, which can be set through the constru
| -------------------------- | ----------------------------------------- | ------------------------------------------ |
| `getBackupConfiguration()` | Get backup configuration information | No parameters |
| `fetchAllConnections()` | Get information of all active connections | No parameters |
| `getSystemStatus()` | Get the system status | Deprecated, returns `SystemStatus.NORMAL` |
| `getSystemStatus()` | Get the system status | Deprecated, returns `SystemStatus.NORMAL` |
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ The Session class has the following fields, which can be set through the constru
| `useSSL` | `boolean` | Whether to enable SSL |
| `trustStore` | `String` | Path to the trust store |
| `trustStorePwd` | `String` | Password for the trust store |
| `queryTimeoutInMs` | `long` | Query timeout in milliseconds |
| `queryTimeoutInMs` | `long` | Query timeout in milliseconds. Default value: -1. A negative value means the server default configuration is used, and 0 disables query timeout. |
| `enableRPCCompression` | `boolean` | Whether to enable RPC compression |
| `connectionTimeoutInMs` | `int` | Connection timeout in milliseconds |
| `zoneId` | `ZoneId` | Time zone setting for the session |
Expand Down Expand Up @@ -622,4 +622,4 @@ The Session class has the following fields, which can be set through the constru
| -------------------------- | ----------------------------------------- | ------------------------------------------ |
| `getBackupConfiguration()` | Get backup configuration information | No parameters |
| `fetchAllConnections()` | Get information of all active connections | No parameters |
| `getSystemStatus()` | Get the system status | Deprecated, returns `SystemStatus.NORMAL` |
| `getSystemStatus()` | Get the system status | Deprecated, returns `SystemStatus.NORMAL` |
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ Session具有如下的字段,可以通过构造函数或Session.Builder方式
| `useSSL` | `boolean` | 是否启用 SSL |
| `trustStore` | `String` | 信任库路径 |
| `trustStorePwd` | `String` | 信任库密码 |
| `queryTimeoutInMs` | `long` | 查询的超时时间,单位毫秒 |
| `queryTimeoutInMs` | `long` | 查询的超时时间,单位毫秒。默认值-1。负数代表采用服务器默认配置,0 代表关闭查询超时功能。 |
| `enableRPCCompression` | `boolean` | 是否启用 RPC 压缩 |
| `connectionTimeoutInMs` | `int` | 连接超时时间,单位毫秒 |
| `zoneId` | `ZoneId` | 会话的时区设置 |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ Session具有如下的字段,可以通过构造函数或Session.Builder方式
| `useSSL` | `boolean` | 是否启用 SSL |
| `trustStore` | `String` | 信任库路径 |
| `trustStorePwd` | `String` | 信任库密码 |
| `queryTimeoutInMs` | `long` | 查询的超时时间,单位毫秒 |
| `queryTimeoutInMs` | `long` | 查询的超时时间,单位毫秒。默认值-1。负数代表采用服务器默认配置,0 代表关闭查询超时功能。 |
| `enableRPCCompression` | `boolean` | 是否启用 RPC 压缩 |
| `connectionTimeoutInMs` | `int` | 连接超时时间,单位毫秒 |
| `zoneId` | `ZoneId` | 会话的时区设置 |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ Session具有如下的字段,可以通过构造函数或Session.Builder方式
| `useSSL` | `boolean` | 是否启用 SSL |
| `trustStore` | `String` | 信任库路径 |
| `trustStorePwd` | `String` | 信任库密码 |
| `queryTimeoutInMs` | `long` | 查询的超时时间,单位毫秒 |
| `queryTimeoutInMs` | `long` | 查询的超时时间,单位毫秒。默认值-1。负数代表采用服务器默认配置,0 代表关闭查询超时功能。 |
| `enableRPCCompression` | `boolean` | 是否启用 RPC 压缩 |
| `connectionTimeoutInMs` | `int` | 连接超时时间,单位毫秒 |
| `zoneId` | `ZoneId` | 会话的时区设置 |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ Session具有如下的字段,可以通过构造函数或Session.Builder方式
| `useSSL` | `boolean` | 是否启用 SSL |
| `trustStore` | `String` | 信任库路径 |
| `trustStorePwd` | `String` | 信任库密码 |
| `queryTimeoutInMs` | `long` | 查询的超时时间,单位毫秒 |
| `queryTimeoutInMs` | `long` | 查询的超时时间,单位毫秒。默认值-1。负数代表采用服务器默认配置,0 代表关闭查询超时功能。 |
| `enableRPCCompression` | `boolean` | 是否启用 RPC 压缩 |
| `connectionTimeoutInMs` | `int` | 连接超时时间,单位毫秒 |
| `zoneId` | `ZoneId` | 会话的时区设置 |
Expand Down
Loading