@cubejs-backend/base-driver
Advanced tools
Comparing version 0.30.70 to 0.30.72
@@ -6,2 +6,13 @@ # Change Log | ||
## [0.30.72](https://github.com/cube-js/cube.js/compare/v0.30.71...v0.30.72) (2022-09-18) | ||
### Features | ||
* strategy without creating temp table ([#5299](https://github.com/cube-js/cube.js/issues/5299)) ([8e8f500](https://github.com/cube-js/cube.js/commit/8e8f500216e85676a971b62b57c5af0e48c6a9f9)) | ||
## [0.30.70](https://github.com/cube-js/cube.js/compare/v0.30.69...v0.30.70) (2022-09-14) | ||
@@ -8,0 +19,0 @@ |
@@ -1,2 +0,2 @@ | ||
import { CreateTableIndex, DownloadQueryResultsOptions, DownloadQueryResultsResult, DownloadTableCSVData, DownloadTableData, DownloadTableMemoryData, DriverInterface, ExternalDriverCompatibilities, IndexesSQL, QueryOptions, TableColumn, TableQueryResult, TableStructure } from './driver.interface'; | ||
import { CreateTableIndex, DownloadQueryResultsOptions, DownloadQueryResultsResult, DownloadTableCSVData, DownloadTableData, DownloadTableMemoryData, DriverInterface, ExternalDriverCompatibilities, IndexesSQL, QueryOptions, TableColumn, TableQueryResult, TableStructure, DriverCapabilities } from './driver.interface'; | ||
export declare abstract class BaseDriver implements DriverInterface { | ||
@@ -37,5 +37,5 @@ protected logger: any; | ||
release(): Promise<void>; | ||
capabilities(): ExternalDriverCompatibilities; | ||
capabilities(): DriverCapabilities; | ||
nowTimestamp(): number; | ||
} | ||
//# sourceMappingURL=BaseDriver.d.ts.map |
@@ -79,2 +79,5 @@ /// <reference types="node" /> | ||
} | ||
export interface DriverCapabilities extends ExternalDriverCompatibilities { | ||
unloadWithoutTempTable?: true; | ||
} | ||
export declare type StreamOptions = { | ||
@@ -95,4 +98,9 @@ highWaterMark: number; | ||
}; | ||
declare type UnloadQuery = { | ||
sql: string; | ||
params: unknown[]; | ||
}; | ||
export declare type UnloadOptions = { | ||
maxFileSize: number; | ||
query?: UnloadQuery; | ||
}; | ||
@@ -123,4 +131,5 @@ export declare type QueryOptions = { | ||
release(): Promise<void>; | ||
capabilities(): ExternalDriverCompatibilities; | ||
capabilities(): DriverCapabilities; | ||
} | ||
export {}; | ||
//# sourceMappingURL=driver.interface.d.ts.map |
@@ -5,3 +5,3 @@ { | ||
"author": "Cube Dev, Inc.", | ||
"version": "0.30.70", | ||
"version": "0.30.72", | ||
"repository": { | ||
@@ -66,3 +66,3 @@ "type": "git", | ||
}, | ||
"gitHead": "c93d411cc3e76fb03381e7bbfea5333e72bee3d3" | ||
"gitHead": "b58e0c6e2e2aeacaf1595b7082a6e3f9819dcf19" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
54998
521