You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,11 @@
6
6
- Fix a bug with date sorting in the table component.
7
7
- Center table descriptions.
8
8
- Fix a rare crash on startup in some restricted linux environments.
9
+
- Fix a rare but serious issue when on SQLite and MySQL, some variable values were assigned incorrectly
10
+
-`CASE WHEN $a THEN $x WHEN $b THEN $y` would be executed as `CASE WHEN $a THEN $b WHEN $x THEN $y` on these databases.
11
+
- the issue only occured when using in case expressions where variables were used both in conditions and results.
12
+
- Implement parameter deduplication.
13
+
Now, when you write `select $x where $x is not null`, the value of `$x` is sent to the database only once. It used to be sent as many times as `$x` appeared in the statement.
0 commit comments