Be more specific in naming columns in selects.
parent
472cf532b7
commit
2f4cb04f45
|
@ -504,7 +504,7 @@ class SQLBaseStore(object):
|
||||||
def _get_event_txn(self, txn, event_id, check_redacted=True,
|
def _get_event_txn(self, txn, event_id, check_redacted=True,
|
||||||
get_prev_content=False, allow_rejected=False):
|
get_prev_content=False, allow_rejected=False):
|
||||||
sql = (
|
sql = (
|
||||||
"SELECT internal_metadata, json, r.event_id, reason "
|
"SELECT e.internal_metadata, e.json, r.event_id, rej.reason "
|
||||||
"FROM event_json as e "
|
"FROM event_json as e "
|
||||||
"LEFT JOIN redactions as r ON e.event_id = r.redacts "
|
"LEFT JOIN redactions as r ON e.event_id = r.redacts "
|
||||||
"LEFT JOIN rejections as rej on rej.event_id = e.event_id "
|
"LEFT JOIN rejections as rej on rej.event_id = e.event_id "
|
||||||
|
|
Loading…
Reference in New Issue