File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ export default class DBSQLSession implements IDBSQLSession {
202202 ...getArrowOptions ( clientConfig ) ,
203203 canDownloadResult : options . useCloudFetch ?? clientConfig . useCloudFetch ,
204204 parameters : getQueryParameters ( options . namedParameters , options . ordinalParameters ) ,
205- canDecompressLZ4Result : ( options . useLZ4Compression ?? clientConfig . useLZ4Compression ) && Boolean ( LZ4 ) ,
205+ canDecompressLZ4Result : clientConfig . useLZ4Compression && Boolean ( LZ4 ) ,
206206 } ) ;
207207 const response = await this . handleResponse ( operationPromise ) ;
208208 const operation = this . createOperation ( response ) ;
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ export type ExecuteStatementOptions = {
1717 runAsync ?: boolean ;
1818 maxRows ?: number | bigint | Int64 | null ;
1919 useCloudFetch ?: boolean ;
20- useLZ4Compression ?: boolean ;
2120 stagingAllowedLocalPath ?: string | string [ ] ;
2221 namedParameters ?: Record < string , DBSQLParameter | DBSQLParameterValue > ;
2322 ordinalParameters ?: Array < DBSQLParameter | DBSQLParameterValue > ;
You can’t perform that action at this time.
0 commit comments