summary refs log tree commit diff
path: root/synapse/storage/_base.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-12-04 15:46:19 +0000
committerErik Johnston <erik@matrix.org>2019-12-04 15:46:19 +0000
commit9186c105a0d49c60582ff93cf108e511334c57fd (patch)
tree9e2fd800f1dedbf7cb9d033b31f57037c3dc3412 /synapse/storage/_base.py
parent_CURRENT_STATE_CACHE_NAME is public (diff)
downloadsynapse-9186c105a0d49c60582ff93cf108e511334c57fd.tar.xz
Revert "Move get_user_count_txn out of base store"
This reverts commit 00f0d67566cdfe8eae44aeae1c982c42a255cfcd.

Its going to get removed soon, so lets not make merge conflicts.
Diffstat (limited to 'synapse/storage/_base.py')
-rw-r--r--synapse/storage/_base.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py
index 90019c8b0a..c02248cfe9 100644
--- a/synapse/storage/_base.py
+++ b/synapse/storage/_base.py
@@ -1440,6 +1440,18 @@ class SQLBaseStore(object):
 
         return cls.cursor_to_dict(txn)
 
+    def get_user_count_txn(self, txn):
+        """Get a total number of registered users in the users list.
+
+        Args:
+            txn : Transaction object
+        Returns:
+            int : number of users
+        """
+        sql_count = "SELECT COUNT(*) FROM users WHERE is_guest = 0;"
+        txn.execute(sql_count)
+        return txn.fetchone()[0]
+
     def _simple_search_list(
         self, table, term, col, retcols, desc="_simple_search_list"
     ):