You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
428 B
20 lines
428 B
var common = require('../../common');
|
|
var connection = common.createConnection();
|
|
var assert = require('assert');
|
|
|
|
connection.connect();
|
|
|
|
var got_drain = false;
|
|
|
|
connection.on('drain', function() {
|
|
got_drain = true;
|
|
});
|
|
|
|
connection.query("SELECT 1", function(err) {
|
|
assert.equal(got_drain, false);
|
|
assert.ok(!err);
|
|
process.nextTick(function() {
|
|
assert.equal(got_drain, true);
|
|
connection.end();
|
|
});
|
|
});
|