Skip to content

Commit

Permalink
Remove unused/cleanup from databricks driver
Browse files Browse the repository at this point in the history
  • Loading branch information
KSDaemon committed Sep 25, 2024
1 parent b64ce0a commit 5c9c31b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 13 deletions.
3 changes: 0 additions & 3 deletions packages/cubejs-databricks-jdbc-driver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@
"bin"
],
"dependencies": {
"@aws-sdk/client-s3": "^3.49.0",
"@aws-sdk/s3-request-presigner": "^3.49.0",
"@azure/storage-blob": "^12.9.0",
"@cubejs-backend/base-driver": "^0.36.0",
"@cubejs-backend/jdbc-driver": "^0.36.0",
"@cubejs-backend/schema-compiler": "^0.36.2",
Expand Down
19 changes: 9 additions & 10 deletions packages/cubejs-databricks-jdbc-driver/src/DatabricksDriver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,20 @@
* @license Apache-2.0
* @fileoverview The `DatabricksDriver` and related types declaration.
*/
/* eslint-disable camelcase */

import {
getEnv,
assertDataSource,
} from '@cubejs-backend/shared';
import { S3, GetObjectCommand } from '@aws-sdk/client-s3';
import { getSignedUrl } from '@aws-sdk/s3-request-presigner';
import {
BlobServiceClient,
StorageSharedKeyCredential,
ContainerSASPermissions,
SASProtocol,
generateBlobSASQueryParameters,
} from '@azure/storage-blob';
import { DriverCapabilities, QueryColumnsResult, QueryOptions, QuerySchemasResult, QueryTablesResult, UnloadOptions, GenericDataBaseType } from '@cubejs-backend/base-driver';
DriverCapabilities,
QueryColumnsResult,
QueryOptions,
QuerySchemasResult,
QueryTablesResult,
UnloadOptions,
GenericDataBaseType
} from '@cubejs-backend/base-driver';
import {
JDBCDriver,
JDBCDriverConfiguration,
Expand Down

0 comments on commit 5c9c31b

Please sign in to comment.