diff options
author | Anshul Madnawat <100751856+anshulm333@users.noreply.github.com> | 2023-07-27 00:15:47 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-26 18:45:47 +0000 |
commit | 58f830511486271da72543dd20676b702bc52b2f (patch) | |
tree | 49672cd2b4bccc3ffa14f0fd97bf5cd73e23e7c5 /changelog.d | |
parent | Add synapse version as Docker container label (#15972) (diff) | |
download | synapse-58f830511486271da72543dd20676b702bc52b2f.tar.xz |
Inline SQL queries using boolean parameters (#15525)
SQLite now supports TRUE and FALSE constants, simplify some queries by inlining those instead of passing them as arguments.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/15525.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/15525.misc b/changelog.d/15525.misc new file mode 100644 index 0000000000..67ab0cf62f --- /dev/null +++ b/changelog.d/15525.misc @@ -0,0 +1 @@ +Update SQL queries to inline boolean parameters as supported in SQLite 3.27. |