Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
688cf75
Add support for configuring HTTP connection pool size
gopalldb Feb 12, 2025
2e6bfaa
Changes for default value
gopalldb Feb 12, 2025
8ee0fa1
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Feb 21, 2025
5f7d0c1
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Feb 24, 2025
2e28c9e
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Feb 25, 2025
a720802
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Feb 25, 2025
e88657b
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Feb 26, 2025
2670e43
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Mar 1, 2025
c4925ee
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Mar 2, 2025
5a5f1de
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Mar 4, 2025
bf41453
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Mar 5, 2025
b81f4ad
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Mar 6, 2025
1e790a4
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Mar 6, 2025
5ed0c08
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Mar 17, 2025
73029b4
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Mar 19, 2025
ffc2aae
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Mar 27, 2025
7cf9cc8
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Mar 30, 2025
f55ca04
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Apr 2, 2025
ceb2fcb
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Apr 7, 2025
77552fc
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Apr 7, 2025
0690dea
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Apr 7, 2025
638a11a
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Apr 10, 2025
5da3b1e
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Apr 25, 2025
8dbee51
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb Apr 30, 2025
5c72ef9
Merge branch 'main' of github.com:databricks/databricks-jdbc
gopalldb May 8, 2025
93d3aa0
.
gopalldb May 8, 2025
939aec0
.
gopalldb May 8, 2025
0f59b09
.
gopalldb May 8, 2025
a3ac2c8
.
gopalldb May 8, 2025
2557354
.
gopalldb May 8, 2025
4e523f8
add updated files
gopalldb May 8, 2025
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 @@ -269,16 +269,6 @@ struct TSparkArrowResultLink {
5: required i64 bytesNum
6: optional map<string, string> httpHeaders
}
struct TDBSqlCloudResultFile {
1: optional string filePath
2: optional i64 startRowOffset
3: optional i64 rowCount
4: optional i64 uncompressedBytes
5: optional i64 compressedBytes
6: optional string fileLink
7: optional i64 linkExpiryTime
8: optional map<string, string> httpHeaders
}
struct TRowSet {
1: required i64 startRowOffset
2: required list<TRow> rows
Expand All @@ -288,59 +278,6 @@ struct TRowSet {
0x501: optional list<TSparkArrowBatch> arrowBatches;
0x502: optional list<TSparkArrowResultLink> resultLinks;
}
struct TDBSqlTempView {
1: optional string name
2: optional string sqlStatement
3: optional map<string, string> properties
4: optional string viewSchema
}
struct TDBSqlSessionCapabilities {
1: optional bool supportsMultipleCatalogs
}
struct TExpressionInfo {
1: optional string className
2: optional string usage
3: optional string name
4: optional string extended
5: optional string db
6: optional string arguments
7: optional string examples
8: optional string note
9: optional string group
10: optional string since
11: optional string deprecated
12: optional string source
}
struct TDBSqlConfValue {
1: optional string value
}
struct TSQLVariable {
1: optional TIdentifier catalogName
2: optional TIdentifier schemaName
3: optional TIdentifier variableName
4: optional string defaultExpressionSQL
5: optional string variableDataType
6: optional string currentValue
}
struct TDBSqlSessionConf {
1: optional map<string, string> confs
2: optional list<TDBSqlTempView> tempViews
3: optional string currentDatabase
4: optional string currentCatalog
5: optional TDBSqlSessionCapabilities sessionCapabilities
6: optional list<TExpressionInfo> expressionsInfos
7: optional map<string, TDBSqlConfValue> internalConfs
8: optional list<TSQLVariable> tempVariables
}
enum TOperationIdempotencyType {
UNKNOWN,
NON_IDEMPOTENT,
IDEMPOTENT
}
enum TOperationTimeoutLevel {
CLUSTER,
SESSION
}
enum TStatusCode {
SUCCESS_STATUS,
SUCCESS_WITH_INFO_STATUS,
Expand Down Expand Up @@ -507,11 +444,6 @@ struct TSparkArrowTypes {
4: optional bool intervalTypesAsArrow
5: optional bool nullTypeAsArrow
}
enum TResultPersistenceMode {
ONLY_LARGE_RESULTS,
ALL_QUERY_RESULTS,
ALL_RESULTS
}
struct TExecuteStatementReq {
1: required TSessionHandle sessionHandle
2: required string statement
Expand All @@ -529,9 +461,6 @@ struct TExecuteStatementReq {
0x509: optional i64 maxBytesPerBatch
0x510: optional TStatementConf statementConf
}
struct TDBSqlStatement {
1: optional string statement
}
union TSparkParameterValue {
1: string stringValue
2: double doubleValue
Expand Down Expand Up @@ -700,11 +629,6 @@ struct TCancelOperationReq {
struct TCancelOperationResp {
1: required TStatus status
}
enum TDBSqlCloseOperationReason {
NONE,
COMMAND_INACTIVITY_TIMEOUT,
CLOSE_SESSION
}
struct TCloseOperationReq {
1: required TOperationHandle operationHandle
}
Expand All @@ -731,20 +655,6 @@ enum TCacheLookupResult {
REMOTE_CACHE_HIT,
CACHE_MISS
}
enum TCloudFetchDisabledReason {
ARROW_SUPPORT,
CLOUD_FETCH_SUPPORT,
PROTOCOL_VERSION,
REGION_SUPPORT,
BLOCKLISTED_OPERATION,
SMALL_RESULT_SIZE,
CUSTOMER_STORAGE_SUPPORT,
UNKNOWN,
METADATA_OPERATION
}
enum TDBSqlManifestFileFormat {
THRIFT_GET_RESULT_SET_METADATA_RESP
}
enum TFetchOrientation {
FETCH_NEXT,
FETCH_PRIOR,
Expand All @@ -753,12 +663,6 @@ enum TFetchOrientation {
FETCH_FIRST,
FETCH_LAST
}
enum TDBSqlFetchDisposition {
DISPOSITION_UNSPECIFIED,
DISPOSITION_INLINE,
DISPOSITION_EXTERNAL_LINKS,
DISPOSITION_INTERNAL_DBFS
}
struct TFetchResultsReq {
1: required TOperationHandle operationHandle
2: required TFetchOrientation orientation = TFetchOrientation.FETCH_NEXT
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading