mirror of
https://github.com/element-hq/synapse.git
synced 2024-12-20 10:55:09 +03:00
Fix issue with not selecting a needed column
Signed-off-by: Olivier Wilkinson (reivilibre) <olivier@librepush.net>
This commit is contained in:
parent
5b54411213
commit
20ec9698ac
1 changed files with 2 additions and 1 deletions
|
@ -808,7 +808,8 @@ class StatsStore(StateDeltasStore):
|
|||
txn,
|
||||
table + "_current",
|
||||
{id_col: stats_id},
|
||||
retcols=selected_columns + ["start_ts", "end_ts"],
|
||||
retcols=selected_columns
|
||||
+ ["start_ts", "end_ts", "completed_delta_stream_id"],
|
||||
allow_none=True,
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue