@clickhouse/client
Version:
Official JS client for ClickHouse DB - Node.js implementation
24 lines • 2.51 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TupleParam = exports.isException = exports.isRow = exports.isProgressRow = exports.SimpleColumnTypes = exports.parseColumnType = exports.SettingsMap = exports.ClickHouseLogLevel = exports.parseError = exports.ClickHouseError = exports.drainStream = exports.ResultSet = exports.createClient = exports.ClickHouseClient = void 0;
var client_1 = require("./client");
Object.defineProperty(exports, "ClickHouseClient", { enumerable: true, get: function () { return client_1.NodeClickHouseClient; } });
var client_2 = require("./client");
Object.defineProperty(exports, "createClient", { enumerable: true, get: function () { return client_2.createClient; } });
var result_set_1 = require("./result_set");
Object.defineProperty(exports, "ResultSet", { enumerable: true, get: function () { return result_set_1.ResultSet; } });
var stream_1 = require("./connection/stream");
Object.defineProperty(exports, "drainStream", { enumerable: true, get: function () { return stream_1.drainStream; } });
/** Re-export @clickhouse/client-common types */
var client_common_1 = require("@clickhouse/client-common");
Object.defineProperty(exports, "ClickHouseError", { enumerable: true, get: function () { return client_common_1.ClickHouseError; } });
Object.defineProperty(exports, "parseError", { enumerable: true, get: function () { return client_common_1.parseError; } });
Object.defineProperty(exports, "ClickHouseLogLevel", { enumerable: true, get: function () { return client_common_1.ClickHouseLogLevel; } });
Object.defineProperty(exports, "SettingsMap", { enumerable: true, get: function () { return client_common_1.SettingsMap; } });
Object.defineProperty(exports, "parseColumnType", { enumerable: true, get: function () { return client_common_1.parseColumnType; } });
Object.defineProperty(exports, "SimpleColumnTypes", { enumerable: true, get: function () { return client_common_1.SimpleColumnTypes; } });
Object.defineProperty(exports, "isProgressRow", { enumerable: true, get: function () { return client_common_1.isProgressRow; } });
Object.defineProperty(exports, "isRow", { enumerable: true, get: function () { return client_common_1.isRow; } });
Object.defineProperty(exports, "isException", { enumerable: true, get: function () { return client_common_1.isException; } });
Object.defineProperty(exports, "TupleParam", { enumerable: true, get: function () { return client_common_1.TupleParam; } });
//# sourceMappingURL=index.js.map