pgsql-ast-parser
Advanced tools
Comparing version 9.1.0 to 9.1.1
{ | ||
"name": "pgsql-ast-parser", | ||
"version": "9.1.0", | ||
"version": "9.1.1", | ||
"description": "Yet another simple Postgres SQL parser/modifier", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -48,2 +48,11 @@ import 'mocha'; | ||
}); | ||
checkUpdate([`update test set value=default`], { | ||
type: 'update', | ||
table: { name: 'test' }, | ||
sets: [{ | ||
column: { name: 'value' }, | ||
value: { type: 'default' }, | ||
}], | ||
}) | ||
}); |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
16407
1486708