pgsql-deparser 13.6.2 → 13.7.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.
package/src/index.ts ADDED
@@ -0,0 +1,3 @@
1
+ import Deparser from './deparser';
2
+ const deparse = Deparser.deparse;
3
+ export { deparse, Deparser };
@@ -0,0 +1,92 @@
1
+ /* eslint-disable no-restricted-syntax */
2
+
3
+ export const cleanLines = (sql) => {
4
+ return sql
5
+ .split('\n')
6
+ .map((l) => l.trim())
7
+ .filter((a) => a)
8
+ .join('\n');
9
+ };
10
+
11
+ export const transform = (obj, props) => {
12
+ let copy = null;
13
+ // Handle the 3 simple types, and null or undefined
14
+ if (obj == null || typeof obj !== 'object') {
15
+ return obj;
16
+ }
17
+
18
+ // Handle Date
19
+ if (obj instanceof Date) {
20
+ copy = new Date();
21
+ copy.setTime(obj.getTime());
22
+ return copy;
23
+ }
24
+
25
+ // Handle Array
26
+ if (obj instanceof Array) {
27
+ copy = [];
28
+ for (let i = 0, len = obj.length; i < len; i++) {
29
+ copy[i] = transform(obj[i], props);
30
+ }
31
+ return copy;
32
+ }
33
+
34
+ // Handle Object
35
+ if (obj instanceof Object || typeof obj === 'object') {
36
+ copy = {};
37
+ for (const attr in obj) {
38
+ if (obj.hasOwnProperty(attr)) {
39
+ if (props.hasOwnProperty(attr)) {
40
+ if (typeof props[attr] === 'function') {
41
+ copy[attr] = props[attr](obj[attr]);
42
+ } else if (props[attr].hasOwnProperty(obj[attr])) {
43
+ copy[attr] = props[attr][obj[attr]];
44
+ } else {
45
+ copy[attr] = transform(obj[attr], props);
46
+ }
47
+ } else {
48
+ copy[attr] = transform(obj[attr], props);
49
+ }
50
+ } else {
51
+ copy[attr] = transform(obj[attr], props);
52
+ }
53
+ }
54
+ return copy;
55
+ }
56
+
57
+ throw new Error("Unable to copy obj! Its type isn't supported.");
58
+ };
59
+
60
+ const noop = () => undefined;
61
+
62
+ export const cleanTree = (tree) => {
63
+ return transform(tree, {
64
+ stmt_len: noop,
65
+ stmt_location: noop,
66
+ location: noop,
67
+ DefElem: (obj) => {
68
+ if (obj.defname === 'as') {
69
+ if (Array.isArray(obj.arg) && obj.arg.length) {
70
+ // function
71
+ obj.arg[0].String.str = obj.arg[0].String.str.trim();
72
+ } else if (obj.arg.List && obj.arg.List.items) {
73
+ // function
74
+ obj.arg.List.items[0].String.str = obj.arg.List.items[0].String.str.trim();
75
+ } else {
76
+ // do stmt
77
+ obj.arg.String.str = obj.arg.String.str.trim();
78
+ }
79
+ return cleanTree(obj);
80
+ } else {
81
+ return cleanTree(obj);
82
+ }
83
+ }
84
+ });
85
+ };
86
+
87
+ export const cleanTreeWithStmt = (tree) => {
88
+ return transform(tree, {
89
+ stmt_location: noop,
90
+ location: noop
91
+ });
92
+ };
@@ -0,0 +1,118 @@
1
+ export default class Deparser {
2
+ static deparse(query: any, opts: any): any;
3
+ constructor(tree: any, opts?: {});
4
+ deparseQuery(): any;
5
+ deparseNodes(nodes: any, context: any): any;
6
+ deparseReturningList(list: any, context: any): any;
7
+ list(nodes: any, separator: string, prefix: string, context: any): any;
8
+ listQuotes(nodes: any, separator?: string): any;
9
+ quote(value: any): any;
10
+ escape(literal: any): string;
11
+ getPgCatalogTypeName(typeName: any, size: any): string;
12
+ type(names: any, args: any): any;
13
+ deparse(item: any, context: any): any;
14
+ ['RawStmt'](node: any, context?: {}): any;
15
+ ['RuleStmt'](node: any, context?: {}): string;
16
+ ['A_Expr'](node: any, context?: {}): string;
17
+ ['Alias'](node: any, context?: {}): string;
18
+ ['A_ArrayExpr'](node: any): string;
19
+ ['A_Const'](node: any, context?: {}): any;
20
+ ['A_Indices'](node: any, context?: {}): string;
21
+ ['A_Indirection'](node: any, context?: {}): string;
22
+ ['A_Star'](node: any): string;
23
+ ['BitString'](node: any): string;
24
+ ['BoolExpr'](node: any, context?: {}): string;
25
+ ['BooleanTest'](node: any, context?: {}): string;
26
+ ['CaseExpr'](node: any, context?: {}): string;
27
+ ['CoalesceExpr'](node: any, context?: {}): string;
28
+ ['CollateClause'](node: any, context?: {}): string;
29
+ ['CompositeTypeStmt'](node: any, context?: {}): string;
30
+ ['RenameStmt'](node: any, context?: {}): string;
31
+ ['AlterOwnerStmt'](node: any, context?: {}): string;
32
+ ['AlterObjectSchemaStmt'](node: any, context?: {}): string;
33
+ ['ColumnDef'](node: any, context?: {}): any;
34
+ ['SQLValueFunction'](node: any): "CURRENT_USER" | "SESSION_USER" | "CURRENT_DATE" | "CURRENT_TIMESTAMP";
35
+ ['ColumnRef'](node: any, context?: {}): any;
36
+ ['CommentStmt'](node: any, context?: {}): string;
37
+ ['CommonTableExpr'](node: any, context?: {}): string;
38
+ ['DefineStmt'](node: any, context?: {}): string;
39
+ ['DefElem'](node: any, context?: {}): any;
40
+ ['DoStmt'](node: any): string;
41
+ ['Float'](node: any): any;
42
+ ['FuncCall'](node: any, context?: {}): string;
43
+ ['GroupingFunc'](node: any, context?: {}): string;
44
+ ['GroupingSet'](node: any, context?: {}): string;
45
+ ['IndexStmt'](node: any, context?: {}): string;
46
+ ['IndexElem'](node: any, context?: {}): any;
47
+ ['InsertStmt'](node: any, context?: {}): string;
48
+ ['SetToDefault'](node: any): string;
49
+ ['MultiAssignRef'](node: any, context?: {}): string;
50
+ ['DeleteStmt'](node: any, context?: {}): string;
51
+ ['UpdateStmt'](node: any, context?: {}): string;
52
+ ['Integer'](node: any, context?: {}): any;
53
+ ['IntoClause'](node: any, context?: {}): string;
54
+ ['JoinExpr'](node: any, context?: {}): string;
55
+ ['LockingClause'](node: any, context?: {}): string;
56
+ ['LockStmt'](node: any, context?: {}): string;
57
+ ['MinMaxExpr'](node: any, context?: {}): string;
58
+ ['NamedArgExpr'](node: any, context?: {}): string;
59
+ ['Null'](node: any): string;
60
+ ['NullTest'](node: any, context?: {}): string;
61
+ ['ParamRef'](node: any): string;
62
+ ['RangeFunction'](node: any, context?: {}): string;
63
+ ['RangeSubselect'](node: any, context?: {}): string;
64
+ ['RangeTableSample'](node: any, context?: {}): string;
65
+ ['RangeVar'](node: any, context?: {}): string;
66
+ ['ResTarget'](node: any, context?: {}): any;
67
+ ['RowExpr'](node: any, context?: {}): string;
68
+ ['ExplainStmt'](node: any, context?: {}): string;
69
+ ['SelectStmt'](node: any, context?: {}): string;
70
+ ['TruncateStmt'](node: any, context?: {}): string;
71
+ ['AlterDefaultPrivilegesStmt'](node: any, context?: {}): string;
72
+ ['AlterTableStmt'](node: any, context?: {}): string;
73
+ ['AlterTableCmd'](node: any, context?: {}): string;
74
+ ['CreateEnumStmt'](node: any, context?: {}): string;
75
+ ['AlterEnumStmt'](node: any, context?: {}): string;
76
+ ['AlterDomainStmt'](node: any, context?: {}): string;
77
+ ['CreateExtensionStmt'](node: any): string;
78
+ ['DropStmt'](node: any, context?: {}): string;
79
+ ['CreatePolicyStmt'](node: any, context?: {}): string;
80
+ ['AlterPolicyStmt'](node: any, context?: {}): string;
81
+ ['ViewStmt'](node: any, context?: {}): string;
82
+ ['CreateSeqStmt'](node: any, context?: {}): string;
83
+ ['AlterSeqStmt'](node: any, context?: {}): string;
84
+ ['CreateTableAsStmt'](node: any, context?: {}): string;
85
+ ['CreateTrigStmt'](node: any, context?: {}): string;
86
+ ['CreateDomainStmt'](node: any, context?: {}): string;
87
+ ['CreateStmt'](node: any, context?: {}): string;
88
+ ['ConstraintStmt'](node: any): string;
89
+ ['ReferenceConstraint'](node: any, context?: {}): string;
90
+ ['ExclusionConstraint'](node: any, context?: {}): string;
91
+ ['Constraint'](node: any, context?: {}): string;
92
+ ['AccessPriv'](node: any): string;
93
+ ['VariableSetStmt'](node: any): string;
94
+ ['VariableShowStmt'](node: any): string;
95
+ ['FuncWithArgs'](node: any, context?: {}): string;
96
+ ['FunctionParameter'](node: any, context?: {}): string;
97
+ ['CreateFunctionStmt'](node: any, context?: {}): string;
98
+ ['CreateSchemaStmt'](node: any): string;
99
+ ['RoleSpec'](node: any): any;
100
+ ['GrantStmt'](node: any): string;
101
+ ['GrantRoleStmt'](node: any, context?: {}): string;
102
+ ['CreateRoleStmt'](node: any, context?: {}): string;
103
+ ['TransactionStmt'](node: any, context?: {}): string;
104
+ ['SortBy'](node: any, context?: {}): string;
105
+ ['ObjectWithArgs'](node: any, context?: {}): string;
106
+ ['String'](node: any): any;
107
+ ['SubLink'](node: any, context?: {}): string;
108
+ ['TypeCast'](node: any, context?: {}): string;
109
+ ['TypeName'](node: any, context?: {}): string;
110
+ ['CaseWhen'](node: any, context?: {}): string;
111
+ ['WindowDef'](node: any, context?: {}): string;
112
+ ['WithClause'](node: any, context?: {}): string;
113
+ ['CopyStmt'](node: any, context?: {}): string;
114
+ ['CallStmt'](node: any, context?: {}): string;
115
+ deparseFrameOptions(options: any, refName: any, startOffset: any, endOffset: any): string;
116
+ deparseInterval(node: any): string;
117
+ interval(mask: any): any;
118
+ }
@@ -0,0 +1,3 @@
1
+ import Deparser from './deparser';
2
+ declare const deparse: typeof Deparser.deparse;
3
+ export { deparse, Deparser };
@@ -0,0 +1,4 @@
1
+ export declare const cleanLines: (sql: any) => any;
2
+ export declare const transform: (obj: any, props: any) => any;
3
+ export declare const cleanTree: (tree: any) => any;
4
+ export declare const cleanTreeWithStmt: (tree: any) => any;
package/CHANGELOG.md DELETED
@@ -1,475 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [13.6.2](https://github.com/launchql/pgsql-parser/compare/pgsql-deparser@13.6.1...pgsql-deparser@13.6.2) (2024-03-30)
7
-
8
- **Note:** Version bump only for package pgsql-deparser
9
-
10
-
11
-
12
-
13
-
14
- ## [13.6.1](https://github.com/launchql/pgsql-parser/compare/pgsql-deparser@13.6.0...pgsql-deparser@13.6.1) (2024-02-21)
15
-
16
- **Note:** Version bump only for package pgsql-deparser
17
-
18
-
19
-
20
-
21
-
22
- # [13.6.0](https://github.com/launchql/pgsql-parser/compare/pgsql-deparser@13.5.0...pgsql-deparser@13.6.0) (2023-12-15)
23
-
24
- **Note:** Version bump only for package pgsql-deparser
25
-
26
-
27
-
28
-
29
-
30
- # [13.5.0](https://github.com/launchql/pgsql-parser/compare/pgsql-deparser@13.4.0...pgsql-deparser@13.5.0) (2023-12-15)
31
-
32
- **Note:** Version bump only for package pgsql-deparser
33
-
34
-
35
-
36
-
37
-
38
- # [13.4.0](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.3.15...pgsql-deparser@13.4.0) (2023-03-15)
39
-
40
- **Note:** Version bump only for package pgsql-deparser
41
-
42
-
43
-
44
-
45
-
46
- ## [13.3.15](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.3.14...pgsql-deparser@13.3.15) (2022-12-22)
47
-
48
- **Note:** Version bump only for package pgsql-deparser
49
-
50
-
51
-
52
-
53
-
54
- ## [13.3.14](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.3.13...pgsql-deparser@13.3.14) (2022-09-14)
55
-
56
- **Note:** Version bump only for package pgsql-deparser
57
-
58
-
59
-
60
-
61
-
62
- ## [13.3.13](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.3.12...pgsql-deparser@13.3.13) (2022-08-31)
63
-
64
- **Note:** Version bump only for package pgsql-deparser
65
-
66
-
67
-
68
-
69
-
70
- ## [13.3.12](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.3.11...pgsql-deparser@13.3.12) (2022-07-29)
71
-
72
- **Note:** Version bump only for package pgsql-deparser
73
-
74
-
75
-
76
-
77
-
78
- ## [13.3.11](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.3.10...pgsql-deparser@13.3.11) (2022-05-20)
79
-
80
- **Note:** Version bump only for package pgsql-deparser
81
-
82
-
83
-
84
-
85
-
86
- ## [13.3.10](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.3.9...pgsql-deparser@13.3.10) (2022-05-19)
87
-
88
- **Note:** Version bump only for package pgsql-deparser
89
-
90
-
91
-
92
-
93
-
94
- ## [13.3.9](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.3.8...pgsql-deparser@13.3.9) (2022-04-19)
95
-
96
- **Note:** Version bump only for package pgsql-deparser
97
-
98
-
99
-
100
-
101
-
102
- ## [13.3.8](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.3.7...pgsql-deparser@13.3.8) (2022-04-19)
103
-
104
- **Note:** Version bump only for package pgsql-deparser
105
-
106
-
107
-
108
-
109
-
110
- ## [13.3.7](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.3.6...pgsql-deparser@13.3.7) (2022-04-19)
111
-
112
- **Note:** Version bump only for package pgsql-deparser
113
-
114
-
115
-
116
-
117
-
118
- ## [13.3.6](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.3.5...pgsql-deparser@13.3.6) (2022-04-19)
119
-
120
- **Note:** Version bump only for package pgsql-deparser
121
-
122
-
123
-
124
-
125
-
126
- ## [13.3.5](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.3.4...pgsql-deparser@13.3.5) (2022-04-19)
127
-
128
- **Note:** Version bump only for package pgsql-deparser
129
-
130
-
131
-
132
-
133
-
134
- ## [13.3.4](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.3.3...pgsql-deparser@13.3.4) (2022-04-19)
135
-
136
- **Note:** Version bump only for package pgsql-deparser
137
-
138
-
139
-
140
-
141
-
142
- ## [13.3.3](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.3.2...pgsql-deparser@13.3.3) (2022-04-19)
143
-
144
- **Note:** Version bump only for package pgsql-deparser
145
-
146
-
147
-
148
-
149
-
150
- ## [13.3.2](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.3.1...pgsql-deparser@13.3.2) (2022-04-19)
151
-
152
- **Note:** Version bump only for package pgsql-deparser
153
-
154
-
155
-
156
-
157
-
158
- ## [13.3.1](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.3.0...pgsql-deparser@13.3.1) (2022-04-13)
159
-
160
- **Note:** Version bump only for package pgsql-deparser
161
-
162
-
163
-
164
-
165
-
166
- # [13.3.0](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.2.0...pgsql-deparser@13.3.0) (2022-03-18)
167
-
168
- **Note:** Version bump only for package pgsql-deparser
169
-
170
-
171
-
172
-
173
-
174
- # [13.2.0](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.1.13...pgsql-deparser@13.2.0) (2022-02-24)
175
-
176
- **Note:** Version bump only for package pgsql-deparser
177
-
178
-
179
-
180
-
181
-
182
- ## [13.1.13](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.1.12...pgsql-deparser@13.1.13) (2022-01-07)
183
-
184
- **Note:** Version bump only for package pgsql-deparser
185
-
186
-
187
-
188
-
189
-
190
- ## [13.1.12](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.1.11...pgsql-deparser@13.1.12) (2022-01-05)
191
-
192
- **Note:** Version bump only for package pgsql-deparser
193
-
194
-
195
-
196
-
197
-
198
- ## [13.1.11](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.1.10...pgsql-deparser@13.1.11) (2021-10-19)
199
-
200
- **Note:** Version bump only for package pgsql-deparser
201
-
202
-
203
-
204
-
205
-
206
- ## [13.1.10](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.1.9...pgsql-deparser@13.1.10) (2021-10-19)
207
-
208
- **Note:** Version bump only for package pgsql-deparser
209
-
210
-
211
-
212
-
213
-
214
- ## [13.1.9](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.1.8...pgsql-deparser@13.1.9) (2021-10-13)
215
-
216
- **Note:** Version bump only for package pgsql-deparser
217
-
218
-
219
-
220
-
221
-
222
- ## [13.1.8](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.1.7...pgsql-deparser@13.1.8) (2021-09-09)
223
-
224
- **Note:** Version bump only for package pgsql-deparser
225
-
226
-
227
-
228
-
229
-
230
- ## [13.1.7](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.1.6...pgsql-deparser@13.1.7) (2021-09-09)
231
-
232
- **Note:** Version bump only for package pgsql-deparser
233
-
234
-
235
-
236
-
237
-
238
- ## [13.1.6](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.1.5...pgsql-deparser@13.1.6) (2021-06-25)
239
-
240
- **Note:** Version bump only for package pgsql-deparser
241
-
242
-
243
-
244
-
245
-
246
- ## [13.1.5](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.1.4...pgsql-deparser@13.1.5) (2021-06-02)
247
-
248
- **Note:** Version bump only for package pgsql-deparser
249
-
250
-
251
-
252
-
253
-
254
- ## [13.1.4](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.1.3...pgsql-deparser@13.1.4) (2021-04-26)
255
-
256
- **Note:** Version bump only for package pgsql-deparser
257
-
258
-
259
-
260
-
261
-
262
- ## [13.1.3](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.1.2...pgsql-deparser@13.1.3) (2021-04-07)
263
-
264
- **Note:** Version bump only for package pgsql-deparser
265
-
266
-
267
-
268
-
269
-
270
- ## [13.1.2](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.1.1...pgsql-deparser@13.1.2) (2021-03-27)
271
-
272
- **Note:** Version bump only for package pgsql-deparser
273
-
274
-
275
-
276
-
277
-
278
- ## [13.1.1](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.1.0...pgsql-deparser@13.1.1) (2021-03-26)
279
-
280
- **Note:** Version bump only for package pgsql-deparser
281
-
282
-
283
-
284
-
285
-
286
- # [13.1.0](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.0.5...pgsql-deparser@13.1.0) (2021-03-20)
287
-
288
- **Note:** Version bump only for package pgsql-deparser
289
-
290
-
291
-
292
-
293
-
294
- ## [13.0.5](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.0.4...pgsql-deparser@13.0.5) (2021-03-20)
295
-
296
- **Note:** Version bump only for package pgsql-deparser
297
-
298
-
299
-
300
-
301
-
302
- ## [13.0.4](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.0.3...pgsql-deparser@13.0.4) (2021-03-19)
303
-
304
- **Note:** Version bump only for package pgsql-deparser
305
-
306
-
307
-
308
-
309
-
310
- ## [13.0.3](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.0.2...pgsql-deparser@13.0.3) (2021-03-19)
311
-
312
-
313
- ### Bug Fixes
314
-
315
- * deparser ([61e6ac6](https://github.com/pyramation/pgsql-parser/commit/61e6ac647517d066e6363d608fd02535834e67a1))
316
-
317
-
318
-
319
-
320
-
321
- ## [13.0.2](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@13.0.1...pgsql-deparser@13.0.2) (2021-03-19)
322
-
323
- **Note:** Version bump only for package pgsql-deparser
324
-
325
-
326
-
327
-
328
-
329
- ## [13.0.1](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@1.3.1...pgsql-deparser@13.0.1) (2021-03-19)
330
-
331
- **Note:** Version bump only for package pgsql-deparser
332
-
333
-
334
-
335
-
336
-
337
- ## [1.3.1](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@1.3.0...pgsql-deparser@1.3.1) (2021-03-19)
338
-
339
- **Note:** Version bump only for package pgsql-deparser
340
-
341
-
342
-
343
-
344
-
345
- # [1.3.0](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@1.2.5...pgsql-deparser@1.3.0) (2021-03-18)
346
-
347
- **Note:** Version bump only for package pgsql-deparser
348
-
349
-
350
-
351
-
352
-
353
- ## [1.2.5](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@1.2.4...pgsql-deparser@1.2.5) (2021-03-13)
354
-
355
- **Note:** Version bump only for package pgsql-deparser
356
-
357
-
358
-
359
-
360
-
361
- ## [1.2.4](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@1.2.3...pgsql-deparser@1.2.4) (2021-03-13)
362
-
363
- **Note:** Version bump only for package pgsql-deparser
364
-
365
-
366
-
367
-
368
-
369
- ## [1.2.3](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@1.2.2...pgsql-deparser@1.2.3) (2020-11-08)
370
-
371
- **Note:** Version bump only for package pgsql-deparser
372
-
373
-
374
-
375
-
376
-
377
- ## [1.2.2](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@1.2.1...pgsql-deparser@1.2.2) (2020-11-04)
378
-
379
- **Note:** Version bump only for package pgsql-deparser
380
-
381
-
382
-
383
-
384
-
385
- ## [1.2.1](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@1.2.0...pgsql-deparser@1.2.1) (2020-11-04)
386
-
387
- **Note:** Version bump only for package pgsql-deparser
388
-
389
-
390
-
391
-
392
-
393
- # [1.2.0](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@1.1.1...pgsql-deparser@1.2.0) (2020-11-03)
394
-
395
- **Note:** Version bump only for package pgsql-deparser
396
-
397
-
398
-
399
-
400
-
401
- ## [1.1.1](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@1.1.0...pgsql-deparser@1.1.1) (2020-10-27)
402
-
403
- **Note:** Version bump only for package pgsql-deparser
404
-
405
-
406
-
407
-
408
-
409
- # [1.1.0](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@1.0.7...pgsql-deparser@1.1.0) (2020-10-27)
410
-
411
- **Note:** Version bump only for package pgsql-deparser
412
-
413
-
414
-
415
-
416
-
417
- ## [1.0.7](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@1.0.6...pgsql-deparser@1.0.7) (2020-10-27)
418
-
419
- **Note:** Version bump only for package pgsql-deparser
420
-
421
-
422
-
423
-
424
-
425
- ## [1.0.6](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@1.0.5...pgsql-deparser@1.0.6) (2020-10-26)
426
-
427
- **Note:** Version bump only for package pgsql-deparser
428
-
429
-
430
-
431
-
432
-
433
- ## [1.0.5](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@1.0.4...pgsql-deparser@1.0.5) (2020-10-25)
434
-
435
- **Note:** Version bump only for package pgsql-deparser
436
-
437
-
438
-
439
-
440
-
441
- ## [1.0.4](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@1.0.3...pgsql-deparser@1.0.4) (2020-10-23)
442
-
443
- **Note:** Version bump only for package pgsql-deparser
444
-
445
-
446
-
447
-
448
-
449
- ## [1.0.3](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@1.0.2...pgsql-deparser@1.0.3) (2020-10-23)
450
-
451
- **Note:** Version bump only for package pgsql-deparser
452
-
453
-
454
-
455
-
456
-
457
- ## [1.0.2](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@1.0.1...pgsql-deparser@1.0.2) (2020-10-23)
458
-
459
- **Note:** Version bump only for package pgsql-deparser
460
-
461
-
462
-
463
-
464
-
465
- ## [1.0.1](https://github.com/pyramation/pgsql-parser/compare/pgsql-deparser@1.0.0...pgsql-deparser@1.0.1) (2020-10-22)
466
-
467
- **Note:** Version bump only for package pgsql-deparser
468
-
469
-
470
-
471
-
472
-
473
- # 1.0.0 (2020-10-19)
474
-
475
- **Note:** Version bump only for package pgsql-deparser