@cubejs-backend/native
Advanced tools
Comparing version 0.35.66 to 0.35.67
@@ -89,2 +89,3 @@ export interface BaseMeta { | ||
export declare const execSql: (instance: SqlInterfaceInstance, sqlQuery: string, stream: any, securityContext?: any) => Promise<void>; | ||
export declare const buildSqlAndParams: (cubeEvaluator: any) => String; | ||
export interface PyConfiguration { | ||
@@ -91,0 +92,0 @@ repositoryFactory?: (ctx: unknown) => Promise<unknown>; |
@@ -6,3 +6,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.NativeInstance = exports.pythonLoadConfig = exports.execSql = exports.shutdownInterface = exports.registerInterface = exports.isFallbackBuild = exports.setupLogger = exports.isSupported = exports.loadNative = void 0; | ||
exports.NativeInstance = exports.pythonLoadConfig = exports.buildSqlAndParams = exports.execSql = exports.shutdownInterface = exports.registerInterface = exports.isFallbackBuild = exports.setupLogger = exports.isSupported = exports.loadNative = void 0; | ||
/* eslint-disable import/no-dynamic-require,global-require */ | ||
@@ -228,2 +228,7 @@ const fs_1 = __importDefault(require("fs")); | ||
exports.execSql = execSql; | ||
const buildSqlAndParams = (cubeEvaluator) => { | ||
const native = loadNative(); | ||
return native.buildSqlAndParams(cubeEvaluator); | ||
}; | ||
exports.buildSqlAndParams = buildSqlAndParams; | ||
function simplifyExpressRequest(req) { | ||
@@ -230,0 +235,0 @@ // Req is a large object, let's simplify it |
{ | ||
"name": "@cubejs-backend/native", | ||
"version": "0.35.66", | ||
"version": "0.35.67", | ||
"author": "Cube Dev, Inc.", | ||
@@ -46,4 +46,4 @@ "description": "Native module for Cube.js (binding to Rust codebase)", | ||
"dependencies": { | ||
"@cubejs-backend/cubesql": "^0.35.66", | ||
"@cubejs-backend/shared": "^0.35.63", | ||
"@cubejs-backend/cubesql": "^0.35.67", | ||
"@cubejs-backend/shared": "^0.35.67", | ||
"@cubejs-infra/post-installer": "^0.0.7" | ||
@@ -98,3 +98,3 @@ }, | ||
}, | ||
"gitHead": "315aae3baf1a45a18b575e23de2d76b244309b77" | ||
"gitHead": "3525525018cc6d2b6921aa577cc80f9dbb1aa666" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
45694
417