mirror of
https://github.com/knex/knex.git
synced 2025-07-08 01:21:05 +00:00
18 lines
286 B
JavaScript
18 lines
286 B
JavaScript
'use strict';
|
|
|
|
// MySQL Pool
|
|
// ------
|
|
module.exports = function(client) {
|
|
|
|
var inherits = require('inherits');
|
|
var Pool = require('../../pool');
|
|
|
|
function Pool_MySQL() {
|
|
this.client = client;
|
|
Pool.apply(this, arguments);
|
|
}
|
|
inherits(Pool_MySQL, Pool);
|
|
|
|
client.Pool = Pool_MySQL;
|
|
|
|
}; |