Skip to content

Commit

Permalink
Update zensqlite fix joins
Browse files Browse the repository at this point in the history
  • Loading branch information
etienne-dldc committed Feb 18, 2023
1 parent 95742ef commit 128328b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"typecheck:watch": "tsc --noEmit --watch"
},
"dependencies": {
"zensqlite": "^2.0.0-5"
"zensqlite": "^2.0.0-6"
},
"devDependencies": {
"@swc/core": "^1.3.35",
Expand Down
2 changes: 1 addition & 1 deletion tests/join.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ test('Query joins', () => {
tasks.title AS taskName
FROM
users
INNER JOIN users_tasks ON users_tasks.user_id == users.id,
INNER JOIN users_tasks ON users_tasks.user_id == users.id
INNER JOIN tasks ON tasks.id == users_tasks.task_id
`);
});
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5465,9 +5465,9 @@ yocto-queue@^0.1.0:
resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==

zensqlite@^2.0.0-5:
version "2.0.0-5"
resolved "https://registry.yarnpkg.com/zensqlite/-/zensqlite-2.0.0-5.tgz#29dc59dc70a79085ee265fde6fcffe9394c70989"
integrity sha512-Tlsn9OiK8sMsVNuRSh0wWwbOea0QqvGV50PkoXTthZPVRQlSjQDx7bgSU2bwBowzXiQlKyoAdKcFxBieT2Q49Q==
zensqlite@^2.0.0-6:
version "2.0.0-6"
resolved "https://registry.yarnpkg.com/zensqlite/-/zensqlite-2.0.0-6.tgz#eababa5527856f04e844a953ca51a41f15a6a66e"
integrity sha512-SsziwvqDBrhHRSJ1moWzE2xCnGGmTHVTqOh2pPLNgrJQD8+uxB+iLMXY5ib9jVFcwIXUGkYa7vtTzMHcvpgSYQ==
dependencies:
tslib "^2.3.1"

0 comments on commit 128328b

Please sign in to comment.