Skip to content

Commit

Permalink
Fix issue#519
Browse files Browse the repository at this point in the history
  • Loading branch information
jepiqueau committed Feb 29, 2024
1 parent 71f1c00 commit 759b114
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 5.6.1 (2024-02-29)

### Bug Fixes

- Fix SQL query is converted to be compatible with SQL92 regardless of argument value of isSQL92 in query method when values argument is an empty array issue#519

# 5.6.1-4 (2024-02-27)

### Bug Fixes
Expand Down
Binary file modified android/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
2 changes: 1 addition & 1 deletion src/definitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2177,7 +2177,7 @@ export class SQLiteDBConnection implements ISQLiteDBConnection {
statement: statement,
values: values,
readonly: this.readonly,
isSql92: true,
isSQL92: true,
});
} else {
res = await this.sqlite.query({
Expand Down

0 comments on commit 759b114

Please sign in to comment.