knex/lib/dialects/oracle/functionhelper.js
2014-08-14 18:01:27 -04:00

12 lines
322 B
JavaScript

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;
};