2021-10-02 23:45:17 +03:00
|
|
|
// CockroachDB Client
|
|
|
|
|
// -------
|
|
|
|
|
const Client_PostgreSQL = require('../postgres');
|
|
|
|
|
const Transaction = require('../postgres/execution/pg-transaction');
|
2021-10-10 01:33:20 +03:00
|
|
|
const QueryCompiler = require('./crdb-querycompiler');
|
2021-10-15 18:02:55 +03:00
|
|
|
const TableCompiler = require('./crdb-tablecompiler');
|
2021-10-02 23:45:17 +03:00
|
|
|
|
|
|
|
|
// Always initialize with the "QueryBuilder" and "QueryCompiler"
|
|
|
|
|
// objects, which extend the base 'lib/query/builder' and
|
|
|
|
|
// 'lib/query/compiler', respectively.
|
|
|
|
|
class Client_CockroachDB extends Client_PostgreSQL {
|
|
|
|
|
transaction() {
|
|
|
|
|
return new Transaction(this, ...arguments);
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-10 01:33:20 +03:00
|
|
|
queryCompiler(builder, formatter) {
|
|
|
|
|
return new QueryCompiler(this, builder, formatter);
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-15 18:02:55 +03:00
|
|
|
tableCompiler() {
|
|
|
|
|
return new TableCompiler(this, ...arguments);
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-02 23:45:17 +03:00
|
|
|
_parseVersion(versionString) {
|
|
|
|
|
return versionString.split(' ')[2];
|
|
|
|
|
}
|
2021-10-10 20:15:47 +03:00
|
|
|
|
|
|
|
|
async cancelQuery(connectionToKill) {
|
2021-10-15 18:02:55 +03:00
|
|
|
try {
|
|
|
|
|
return await this._wrappedCancelQueryCall(null, connectionToKill);
|
|
|
|
|
} catch (err) {
|
|
|
|
|
this.logger.warn(`Connection Error: ${err}`);
|
|
|
|
|
throw err;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_wrappedCancelQueryCall(emptyConnection, connectionToKill) {
|
2021-10-11 19:36:50 +03:00
|
|
|
// FixMe https://github.com/cockroachdb/cockroach/issues/41335
|
2021-10-15 18:02:55 +03:00
|
|
|
if (
|
|
|
|
|
connectionToKill.activeQuery.processID === 0 &&
|
|
|
|
|
connectionToKill.activeQuery.secretKey === 0
|
|
|
|
|
) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return connectionToKill.cancel(
|
|
|
|
|
connectionToKill,
|
|
|
|
|
connectionToKill.activeQuery
|
|
|
|
|
);
|
2021-10-10 20:15:47 +03:00
|
|
|
}
|
2021-10-02 23:45:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Object.assign(Client_CockroachDB.prototype, {
|
|
|
|
|
// The "dialect", for reference elsewhere.
|
|
|
|
|
driverName: 'cockroachdb',
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
module.exports = Client_CockroachDB;
|