mythix-orm-postgresql 1.7.3 → 1.7.4

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.
@@ -241,10 +241,8 @@ class PostgreSQLConnection extends SQLConnectionBase {
241
241
  await inheritedThis.query(`BEGIN${(options.beginArguments) ? ` ${options.beginArguments}` : ''}`, options, client);
242
242
  beginSuccess = true;
243
243
 
244
- if (lockStatement) {
245
- console.log('LOCK STATEMENT: ', lockStatement);
244
+ if (lockStatement)
246
245
  await inheritedThis.query(lockStatement, options, client);
247
- }
248
246
 
249
247
  // TODO: Need to handle "busy" error
250
248
  } catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mythix-orm-postgresql",
3
- "version": "1.7.3",
3
+ "version": "1.7.4",
4
4
  "description": "PostgreSQL driver for Mythix ORM",
5
5
  "main": "lib/index.js",
6
6
  "type": "commonjs",