knex/lib/dialects/oracle/functionhelper.js

14 lines
337 B
JavaScript
Raw Normal View History

'use strict';
2014-08-11 12:25:39 +02:00
module.exports = function(client) {
var FunctionHelper = require('../../functionhelper');
var FunctionHelper_Oracle = Object.create(FunctionHelper);
FunctionHelper_Oracle.client = client;
// Assign the newly extended `FunctionHelper` constructor to the client object.
client.FunctionHelper = FunctionHelper_Oracle;
};