mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-22 22:46:01 +00:00
48 lines
1.7 KiB
JavaScript
48 lines
1.7 KiB
JavaScript
const { createBulkInsertStreamBase } = global.DBGATE_PACKAGES['dbgate-tools'];
|
|
const _ = require('lodash');
|
|
|
|
/**
|
|
*
|
|
* @param {import('dbgate-types').EngineDriver} driver
|
|
*/
|
|
function createOracleBulkInsertStream(driver, stream, dbhan, name, options) {
|
|
const fullNameQuoted = name.schemaName
|
|
? `${driver.dialect.quoteIdentifier(name.schemaName)}.${driver.dialect.quoteIdentifier(name.pureName)}`
|
|
: driver.dialect.quoteIdentifier(name.pureName);
|
|
|
|
const writable = createBulkInsertStreamBase(driver, stream, dbhan, name, {
|
|
...options,
|
|
// this is really not used, send method below is used instead
|
|
commitAfterInsert: true,
|
|
});
|
|
|
|
writable.send = async () => {
|
|
const dmp = driver.createDumper();
|
|
dmp.putRaw(`INSERT INTO ${fullNameQuoted} (`);
|
|
dmp.putCollection(',', writable.columnNames, col => dmp.putRaw(driver.dialect.quoteIdentifier(col)));
|
|
dmp.putRaw(')\n VALUES (\n');
|
|
dmp.put(
|
|
'%,s',
|
|
writable.columnNames.map((c, i) => {
|
|
if (writable.columnDataTypes?.[c]?.toLowerCase() == 'timestamp') {
|
|
return `CASE WHEN :C${i} IS NULL THEN NULL ELSE TO_TIMESTAMP(:C${i}, 'YYYY-MM-DD"T"HH24:MI:SS') END`;
|
|
}
|
|
if (writable.columnDataTypes?.[c]?.toLowerCase() == 'date') {
|
|
return `CASE WHEN :C${i} IS NULL THEN NULL ELSE TO_DATE(:C${i}, 'YYYY-MM-DD"T"HH24:MI:SS') END`;
|
|
}
|
|
|
|
return `:C${i}`;
|
|
})
|
|
);
|
|
dmp.putRaw(')');
|
|
|
|
const rows = writable.buffer.map(row => _.mapKeys(row, (v, k) => `c${writable.columnNames.indexOf(k)}`));
|
|
await dbhan.client.executeMany(dmp.s, rows, { autoCommit: true });
|
|
writable.buffer = [];
|
|
};
|
|
|
|
return writable;
|
|
}
|
|
|
|
module.exports = createOracleBulkInsertStream;
|