@pi-r/mysql 0.12.4 → 0.12.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/client/index.js +3 -2
  2. package/package.json +4 -4
package/client/index.js CHANGED
@@ -128,9 +128,9 @@ async function executeBatchQuery(batch, options = '', outResult) {
128
128
  if (length === 0) {
129
129
  return [];
130
130
  }
131
- let parallel, connectOnce, errorQuery, sessionKey, outCacheMiss;
131
+ let parallel, connectOnce, errorQuery, errorAsEmpty, sessionKey, outCacheMiss;
132
132
  if (isPlainObject(options)) {
133
- ({ parallel, connectOnce, errorQuery, sessionKey, outCacheMiss } = options);
133
+ ({ parallel, connectOnce, errorQuery, errorAsEmpty, sessionKey, outCacheMiss } = options);
134
134
  }
135
135
  else {
136
136
  if (typeof options === 'string') {
@@ -366,6 +366,7 @@ async function executeBatchQuery(batch, options = '', outResult) {
366
366
  }
367
367
  return this.processRows(batch, tasks, {
368
368
  parallel,
369
+ errorAsEmpty,
369
370
  disconnect: () => {
370
371
  for (const item of clients) {
371
372
  void item.end(err => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-r/mysql",
3
- "version": "0.12.4",
3
+ "version": "0.12.5",
4
4
  "description": "MySQL client driver for E-mc.",
5
5
  "main": "client/index.js",
6
6
  "types": "client/index.d.ts",
@@ -17,8 +17,8 @@
17
17
  "license": "MIT",
18
18
  "homepage": "https://github.com/anpham6/pi-r#readme",
19
19
  "dependencies": {
20
- "@e-mc/db": "^0.14.5",
21
- "@e-mc/types": "^0.14.5",
22
- "mysql2": "^3.23.2"
20
+ "@e-mc/db": "^0.14.6",
21
+ "@e-mc/types": "^0.14.6",
22
+ "mysql2": "^3.24.2"
23
23
  }
24
24
  }