mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 13:46:02 -04:00
fix sqlite where clause
This commit is contained in:
parent
8713365265
commit
97c0496cfa
1 changed files with 3 additions and 2 deletions
|
@ -277,13 +277,14 @@ class StateGroupWorkerStore(SQLBaseStore):
|
|||
results[group][key] = event_id
|
||||
else:
|
||||
if types is not None:
|
||||
where_clause = "AND (%s)" % (
|
||||
where_clause = "AND (%s" % (
|
||||
" OR ".join(["(type = ? AND state_key = ?)"] * len(types)),
|
||||
)
|
||||
if include_other_types:
|
||||
where_clause += " AND (%s)" % (
|
||||
where_clause += " OR (%s)" % (
|
||||
" AND ".join(["type <> ?"] * len(types)),
|
||||
)
|
||||
where_clause += ")"
|
||||
else:
|
||||
where_clause = ""
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue