pgsql-deparser 13.3.7 → 13.3.8

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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [13.3.8](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.3.7...pgsql-deparser@13.3.8) (2022-04-19)
7
+
8
+ **Note:** Version bump only for package pgsql-deparser
9
+
10
+
11
+
12
+
13
+
6
14
  ## [13.3.7](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.3.6...pgsql-deparser@13.3.7) (2022-04-19)
7
15
 
8
16
  **Note:** Version bump only for package pgsql-deparser
package/main/deparser.js CHANGED
@@ -3722,6 +3722,8 @@ var Deparser = /*#__PURE__*/function () {
3722
3722
  return _this20.deparse(arg, context);
3723
3723
  }).join(','));
3724
3724
  output.push(')');
3725
+ } else if (!node.args_unspecified) {
3726
+ output.push('()');
3725
3727
  }
3726
3728
 
3727
3729
  return output.join(' ');
@@ -3421,6 +3421,8 @@ export default class Deparser {
3421
3421
  return this.deparse(arg, context);
3422
3422
  }).join(','));
3423
3423
  output.push(')');
3424
+ } else if (!node.args_unspecified) {
3425
+ output.push('()');
3424
3426
  }
3425
3427
 
3426
3428
  return output.join(' ');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pgsql-deparser",
3
- "version": "13.3.7",
3
+ "version": "13.3.8",
4
4
  "description": "PostgreSQL AST Deparser",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/pyramation/pgsql-parser",
@@ -65,7 +65,7 @@
65
65
  "eslint-plugin-prettier": "^3.1.2",
66
66
  "glob": "7.1.6",
67
67
  "jest": "^25.1.0",
68
- "pgsql-parser": "^13.3.7",
68
+ "pgsql-parser": "^13.3.8",
69
69
  "prettier": "^2.1.2",
70
70
  "regenerator-runtime": "^0.13.2"
71
71
  },
@@ -75,5 +75,5 @@
75
75
  "lodash": "^4.17.20",
76
76
  "pgsql-enums": "^13.1.2"
77
77
  },
78
- "gitHead": "b40519b2113ffe891ce64fa1a7aa91f654cd0dc5"
78
+ "gitHead": "b5341b62b3fa7d239ba8a285382d9ffda0deacfd"
79
79
  }