mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-11-12 17:32:27 -05:00
Simplify count_real_users SQL to only count user_type is null rows
Signed-off-by: Jason Robinson <jasonr@matrix.org>
This commit is contained in:
parent
8c03cd0e5f
commit
e89fea4f04
1 changed files with 1 additions and 1 deletions
|
|
@ -450,7 +450,7 @@ class RegistrationWorkerStore(SQLBaseStore):
|
|||
|
||||
def _count_users(txn):
|
||||
txn.execute(
|
||||
"SELECT COUNT(*) AS users FROM users where user_type is null or user_type = ''"
|
||||
"SELECT COUNT(*) AS users FROM users where user_type is null"
|
||||
)
|
||||
rows = self.cursor_to_dict(txn)
|
||||
if rows:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue