mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-25 16:03:13 +00:00
15 lines
415 B
JavaScript
15 lines
415 B
JavaScript
const helper = require('../test-helper')
|
|
|
|
const suite = new helper.Suite()
|
|
|
|
suite.testAsync('it sets search_path on connection', async () => {
|
|
const client = new helper.pg.Client({
|
|
options: '--search_path=foo',
|
|
})
|
|
await client.connect()
|
|
const { rows } = await client.query('SHOW search_path')
|
|
assert.strictEqual(rows.length, 1)
|
|
assert.strictEqual(rows[0].search_path, 'foo')
|
|
await client.end()
|
|
})
|