summary refs log tree commit diff
path: root/synapse/storage/_base.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-10-09 15:48:31 +0100
committerErik Johnston <erik@matrix.org>2015-10-09 15:48:31 +0100
commitc85c9125627a62c73711786723be12be30d7a81e (patch)
treee5d32fb9a3f90a764ce3bbe89b5f8e0f619205bc /synapse/storage/_base.py
parentMerge pull request #292 from matrix-org/daniel/useragent (diff)
downloadsynapse-c85c9125627a62c73711786723be12be30d7a81e.tar.xz
Add basic full text search impl.
Diffstat (limited to 'synapse/storage/_base.py')
-rw-r--r--synapse/storage/_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py

index 693784ad38..218e708054 100644 --- a/synapse/storage/_base.py +++ b/synapse/storage/_base.py
@@ -519,7 +519,7 @@ class SQLBaseStore(object): allow_none=False, desc="_simple_select_one_onecol"): """Executes a SELECT query on the named table, which is expected to - return a single row, returning a single column from it." + return a single row, returning a single column from it. Args: table : string giving the table name