This commit is contained in:
Amber H. Brown 2019-07-05 23:34:24 +10:00
parent 400bc061ca
commit 3d89feb438
2 changed files with 0 additions and 26 deletions

View file

@ -688,31 +688,6 @@ class EventsWorkerStore(SQLBaseStore):
room_id, room_id,
) )
def _get_current_state_event_counts_txn(self, txn, room_id):
"""
See get_current_state_event_counts.
"""
sql = "SELECT COUNT(*) FROM current_state_events WHERE room_id=?"
txn.execute(sql, (room_id,))
row = txn.fetchone()
return row[0] if row else 0
def get_current_state_event_counts(self, room_id):
"""
Gets the current number of state events in a room.
Args:
room_id (str)
Returns:
Deferred[int]
"""
return self.runInteraction(
"get_current_state_event_counts",
self._get_current_state_event_counts_txn,
room_id,
)
@defer.inlineCallbacks @defer.inlineCallbacks
def get_room_complexity(self, room_id): def get_room_complexity(self, room_id):
""" """

View file

@ -24,7 +24,6 @@ from mock import Mock
from canonicaljson import json from canonicaljson import json
import twisted import twisted
import twisted.logger
from twisted.internet.defer import Deferred, succeed from twisted.internet.defer import Deferred, succeed
from twisted.python.threadpool import ThreadPool from twisted.python.threadpool import ThreadPool
from twisted.trial import unittest from twisted.trial import unittest