File tree Expand file tree Collapse file tree
packages/cubejs-cubestore-driver/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ const CubeStoreCapabilityMinVersion = {
2828} satisfies Record < string , string > ;
2929type CubeStoreCapability = keyof typeof CubeStoreCapabilityMinVersion ;
3030
31-
3231const GenericTypeToCubeStore : Record < string , string > = {
3332 string : 'varchar(255)' ,
3433 text : 'varchar(255)' ,
@@ -136,7 +135,7 @@ export class CubeStoreDriver extends BaseDriver implements DriverInterface {
136135 withEntries . push ( `delimiter = '${ options . delimiter } '` ) ;
137136 }
138137 if ( options . disableQuoting ) {
139- withEntries . push ( ` disable_quoting = true` ) ;
138+ withEntries . push ( ' disable_quoting = true' ) ;
140139 }
141140 if ( options . buildRangeEnd ) {
142141 withEntries . push ( `build_range_end = '${ options . buildRangeEnd } '` ) ;
Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ export class WebSocketConnection {
270270 httpParameterValueOffset
271271 ) ;
272272 } else {
273- throw new Error ( ` Parameter with type: object is not supported` ) ;
273+ throw new Error ( ' Parameter with type: object is not supported' ) ;
274274 }
275275 }
276276 case 'boolean' :
You can’t perform that action at this time.
0 commit comments