Skip to content

Commit

Permalink
Remove erroneous bracket from register external id sql
Browse files Browse the repository at this point in the history
- Fixes samihult#13
  • Loading branch information
martvalja committed Sep 16, 2024
1 parent 173cd12 commit 0f2e62e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/core-pg/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@samihult/xjog-core-pg",
"version": "0.0.57",
"version": "0.0.58",
"description": "XJog chart Postgres persistence",
"engines": {
"npm": ">=8.19.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/core-pg/src/PostgresPersistenceAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ export class PostgresPersistenceAdapter extends PersistenceAdapter<PoolClient> {
' ("machineId", "chartId", "key", "value") ' +
'VALUES ' +
' ($1, $2, $3, $4) ' +
') ON CONFLICT ( ' +
'ON CONFLICT ( ' +
' "key", "value" ' +
') DO UPDATE SET ' +
' "machineId" = $1, "chartId" = $2 ',
Expand Down

0 comments on commit 0f2e62e

Please sign in to comment.