Skip to content
This repository has been archived by the owner on Oct 21, 2022. It is now read-only.

Commit

Permalink
patch version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
lakhassane committed May 20, 2021
1 parent d81cb8c commit 5879f27
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions ast.json
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@
},
{
"title": "example",
"description": "upsertIf(\n logical,\n 'users', // the DB table\n 'ON CONSTRAINT users_pkey', // a DB column with a unique constraint OR a CONSTRAINT NAME\n { name: 'Elodie', id: 7 },\n { writeSql:true, execute: true }\n)"
"description": "upsertIf(\n dataValue('name'),\n 'users', // the DB table\n 'ON CONSTRAINT users_pkey', // a DB column with a unique constraint OR a CONSTRAINT NAME\n { name: 'Elodie', id: 7 },\n { writeSql:true, execute: true }\n)"
},
{
"title": "constructor",
Expand All @@ -329,10 +329,10 @@
},
{
"title": "param",
"description": "a logical statement that will be evaluated.",
"description": "a data to check existing value for.",
"type": {
"type": "NameExpression",
"name": "boolean"
"name": "string"
},
"name": "logical"
},
Expand Down
2 changes: 1 addition & 1 deletion lib/Adaptor.js
Original file line number Diff line number Diff line change
Expand Up @@ -650,4 +650,4 @@ function modifyTable(tableName, columns, options) {
throw e;
}
};
}
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openfn/language-postgresql",
"version": "3.2.0",
"version": "3.2.1",
"description": "A PostgreSQL Language Pack for OpenFn",
"homepage": "https://docs.openfn.org",
"main": "lib/index.js",
Expand Down

0 comments on commit 5879f27

Please sign in to comment.