@mikro-orm/mssql 7.0.14-dev.9 → 7.0.15-dev.0

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/MsSqlPlatform.js +5 -4
  2. package/package.json +5 -5
package/MsSqlPlatform.js CHANGED
@@ -150,16 +150,17 @@ export class MsSqlPlatform extends AbstractSqlPlatform {
150
150
  getSearchJsonPropertyKey(path, type, aliased, value) {
151
151
  const [a, ...b] = path;
152
152
  /* v8 ignore next */
153
- const root = this.quoteIdentifier(aliased ? `${ALIAS_REPLACEMENT}.${a}` : a);
153
+ const root = aliased ? `[${ALIAS_REPLACEMENT}].${this.quoteIdentifier(a)}` : this.quoteIdentifier(a);
154
154
  const types = {
155
155
  boolean: 'bit',
156
156
  };
157
157
  const cast = (key) => raw(type in types ? `cast(${key} as ${types[type]})` : key);
158
+ const jsonPath = this.quoteValue(`$.${b.map(this.quoteJsonKey).join('.')}`);
158
159
  /* v8 ignore next */
159
160
  if (path.length === 0) {
160
- return cast(`json_value(${root}, '$.${b.map(this.quoteJsonKey).join('.')}')`);
161
+ return cast(`json_value(${root}, ${jsonPath})`);
161
162
  }
162
- return cast(`json_value(${root}, '$.${b.map(this.quoteJsonKey).join('.')}')`);
163
+ return cast(`json_value(${root}, ${jsonPath})`);
163
164
  }
164
165
  getJsonArrayFromSQL(column, alias, properties) {
165
166
  const columns = properties
@@ -187,7 +188,7 @@ export class MsSqlPlatform extends AbstractSqlPlatform {
187
188
  if (RawQueryFragment.isKnownFragment(id)) {
188
189
  return super.quoteIdentifier(id);
189
190
  }
190
- return `[${id.toString().replace('.', `].[`)}]`;
191
+ return `[${id.toString().replaceAll(']', ']]').replace('.', `].[`)}]`;
191
192
  }
192
193
  escape(value) {
193
194
  if (value instanceof UnicodeString) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikro-orm/mssql",
3
- "version": "7.0.14-dev.9",
3
+ "version": "7.0.15-dev.0",
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
  "keywords": [
6
6
  "data-mapper",
@@ -47,17 +47,17 @@
47
47
  "copy": "node ../../scripts/copy.mjs"
48
48
  },
49
49
  "dependencies": {
50
- "@mikro-orm/sql": "7.0.14-dev.9",
51
- "kysely": "0.28.16",
50
+ "@mikro-orm/sql": "7.0.15-dev.0",
51
+ "kysely": "0.28.17",
52
52
  "tarn": "3.0.2",
53
53
  "tedious": "19.2.1",
54
54
  "tsqlstring": "1.0.1"
55
55
  },
56
56
  "devDependencies": {
57
- "@mikro-orm/core": "^7.0.13"
57
+ "@mikro-orm/core": "^7.0.14"
58
58
  },
59
59
  "peerDependencies": {
60
- "@mikro-orm/core": "7.0.14-dev.9"
60
+ "@mikro-orm/core": "7.0.15-dev.0"
61
61
  },
62
62
  "engines": {
63
63
  "node": ">= 22.17.0"