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.
17 lines
394 B
17 lines
394 B
var common = require('../../common');
|
|
var connection = common.createConnection();
|
|
var assert = require('assert');
|
|
|
|
var err;
|
|
connection.connect(function() {
|
|
connection.destroy();
|
|
|
|
connection.query('SELECT 1', function(_err) {
|
|
err = _err;
|
|
});
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(err.fatal, false);
|
|
assert.equal(err.code, 'PROTOCOL_ENQUEUE_AFTER_DESTROY');
|
|
});
|