@mikro-orm/knex 6.3.4-dev.12 → 6.3.4-dev.13

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikro-orm/knex",
3
- "version": "6.3.4-dev.12",
3
+ "version": "6.3.4-dev.13",
4
4
  "description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",
@@ -66,7 +66,7 @@
66
66
  "@mikro-orm/core": "^6.3.3"
67
67
  },
68
68
  "peerDependencies": {
69
- "@mikro-orm/core": "6.3.4-dev.12",
69
+ "@mikro-orm/core": "6.3.4-dev.13",
70
70
  "better-sqlite3": "*",
71
71
  "libsql": "*",
72
72
  "mariadb": "*"
@@ -468,9 +468,21 @@ class QueryBuilderHelper {
468
468
  }
469
469
  const replacement = this.getOperatorReplacement(op, value);
470
470
  const fields = core_1.Utils.splitPrimaryKeys(key);
471
- if (fields.length > 1 && Array.isArray(value[op]) && !value[op].every((v) => Array.isArray(v))) {
472
- const tmp = value[op].length === 1 && core_1.Utils.isPlainObject(value[op][0]) ? fields.map(f => value[op][0][f]) : value[op];
473
- value[op] = this.knex.raw(`(${fields.map(() => '?').join(', ')})`, tmp);
471
+ if (fields.length > 1 && Array.isArray(value[op])) {
472
+ const singleTuple = !value[op].every((v) => Array.isArray(v));
473
+ if (!this.platform.allowsComparingTuples()) {
474
+ if (op === '$in') {
475
+ const conds = value[op].map(() => {
476
+ return `(${fields.map(field => `${this.platform.quoteIdentifier(field)} = ?`).join(' and ')})`;
477
+ });
478
+ return void qb[m](this.knex.raw(`(${conds.join(' or ')})`, core_1.Utils.flatten(value[op])));
479
+ }
480
+ return void qb[m](this.knex.raw(`${fields.map(field => `${this.platform.quoteIdentifier(field)} = ?`).join(' and ')}`, core_1.Utils.flatten(value[op])));
481
+ }
482
+ if (singleTuple) {
483
+ const tmp = value[op].length === 1 && core_1.Utils.isPlainObject(value[op][0]) ? fields.map(f => value[op][0][f]) : value[op];
484
+ value[op] = this.knex.raw(`(${fields.map(() => '?').join(', ')})`, tmp);
485
+ }
474
486
  }
475
487
  if (value[op] instanceof core_1.RawQueryFragment) {
476
488
  value[op] = this.knex.raw(value[op].sql, value[op].params);