├── .eslintrc ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── bench ├── index.js └── leaks.js ├── index.js ├── lib ├── build-result.js └── copy-stream.js ├── package.json └── test ├── array-mode.js ├── async-workflow.js ├── cancel.js ├── connection-errors.js ├── connection.js ├── copy-from.js ├── copy-to.js ├── custom-types.js ├── domains.js ├── empty-query.js ├── huge-query.js ├── index.js ├── load.js ├── many-connections.js ├── many-errors.js ├── mocha.opts ├── multiple-queries.js ├── multiple-statement-results.js ├── notify.js ├── prepare.js ├── query-async.js ├── query-sync.js └── version.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/README.md -------------------------------------------------------------------------------- /bench/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/bench/index.js -------------------------------------------------------------------------------- /bench/leaks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/bench/leaks.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/index.js -------------------------------------------------------------------------------- /lib/build-result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/lib/build-result.js -------------------------------------------------------------------------------- /lib/copy-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/lib/copy-stream.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/package.json -------------------------------------------------------------------------------- /test/array-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/array-mode.js -------------------------------------------------------------------------------- /test/async-workflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/async-workflow.js -------------------------------------------------------------------------------- /test/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/cancel.js -------------------------------------------------------------------------------- /test/connection-errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/connection-errors.js -------------------------------------------------------------------------------- /test/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/connection.js -------------------------------------------------------------------------------- /test/copy-from.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/copy-from.js -------------------------------------------------------------------------------- /test/copy-to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/copy-to.js -------------------------------------------------------------------------------- /test/custom-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/custom-types.js -------------------------------------------------------------------------------- /test/domains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/domains.js -------------------------------------------------------------------------------- /test/empty-query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/empty-query.js -------------------------------------------------------------------------------- /test/huge-query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/huge-query.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/index.js -------------------------------------------------------------------------------- /test/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/load.js -------------------------------------------------------------------------------- /test/many-connections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/many-connections.js -------------------------------------------------------------------------------- /test/many-errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/many-errors.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --bail 2 | --no-exit 3 | -------------------------------------------------------------------------------- /test/multiple-queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/multiple-queries.js -------------------------------------------------------------------------------- /test/multiple-statement-results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/multiple-statement-results.js -------------------------------------------------------------------------------- /test/notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/notify.js -------------------------------------------------------------------------------- /test/prepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/prepare.js -------------------------------------------------------------------------------- /test/query-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/query-async.js -------------------------------------------------------------------------------- /test/query-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/query-sync.js -------------------------------------------------------------------------------- /test/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-native/HEAD/test/version.js --------------------------------------------------------------------------------