mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 22:14:55 -04:00
Add a description to storage layer's _execute_and_decode()
This commit is contained in:
parent
cdb2e045ee
commit
099e4b88d8
5 changed files with 9 additions and 6 deletions
|
@ -279,7 +279,8 @@ class SQLBaseStore(object):
|
|||
|
||||
return self.runInteraction("_execute", interaction)
|
||||
|
||||
def _execute_and_decode(self, query, *args):
|
||||
def _execute_and_decode(self, desc, query, *args):
|
||||
# TODO: for now ignore desc
|
||||
return self._execute(self.cursor_to_dict, query, *args)
|
||||
|
||||
# "Simple" SQL API methods that operate on a single table with no JOINs,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue