We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d79c866 commit 80c67f7Copy full SHA for 80c67f7
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "pgsql-ast-parser",
3
- "version": "11.2.0",
+ "version": "12.0.0",
4
"description": "Yet another simple Postgres SQL parser/modifier",
5
"main": "index.js",
6
"repository": "https://github.com/oguimbal/pgsql-ast-parser",
src/syntax/alter-type.spec.ts
@@ -2,7 +2,7 @@ import 'mocha';
import 'chai';
import { checkStatement } from './spec-utils';
-describe.only('Alter types', () => {
+describe('Alter types', () => {
7
checkStatement([`ALTER TYPE myType ADD VALUE 'c'`], {
8
type: 'alter enum',
0 commit comments