rez_core 5.0.232 → 5.0.234

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": "rez_core",
3
- "version": "5.0.232",
3
+ "version": "5.0.234",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -776,7 +776,7 @@ export class EntityDynamicService {
776
776
  // 2. Get current max sequence number from that table
777
777
  const seqResult = await this.entityManager.query(
778
778
  `SELECT MAX(id) AS max_seq_no
779
- FROM ${tableName}
779
+ FROM ${this.schema}.${tableName}
780
780
  WHERE entity_type = $1`,
781
781
  [entityType],
782
782
  );