orchid-orm 1.64.8 → 1.64.9
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/dist/index.js +1 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -4
- package/dist/index.mjs.map +1 -1
- package/dist/migrations/index.js +441 -25
- package/dist/migrations/index.js.map +1 -1
- package/dist/migrations/index.mjs +443 -27
- package/dist/migrations/index.mjs.map +1 -1
- package/dist/migrations/node-postgres.js +441 -25
- package/dist/migrations/node-postgres.js.map +1 -1
- package/dist/migrations/node-postgres.mjs +443 -27
- package/dist/migrations/node-postgres.mjs.map +1 -1
- package/dist/migrations/postgres-js.js +441 -25
- package/dist/migrations/postgres-js.js.map +1 -1
- package/dist/migrations/postgres-js.mjs +443 -27
- package/dist/migrations/postgres-js.mjs.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -608,9 +608,7 @@ const nestedUpdate$2 = ({ query, primaryKeys, foreignKeys, len }) => {
|
|
|
608
608
|
const asFn = setForeignKeysFromCte(update, primaryKeys, foreignKeys);
|
|
609
609
|
pqb._prependWith(self, asFn, upsertQuery);
|
|
610
610
|
} else if (params.delete) {
|
|
611
|
-
pqb._hookSelectColumns(self, foreignKeys,
|
|
612
|
-
console.log(a);
|
|
613
|
-
});
|
|
611
|
+
pqb._hookSelectColumns(self, foreignKeys, pqb.noop);
|
|
614
612
|
disconnect(update, foreignKeys);
|
|
615
613
|
const { selectIdsSql, relQuery } = relWithSelectIds(
|
|
616
614
|
self,
|