Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
2f4cb04f
Commit
2f4cb04f
authored
10 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Be more specific in naming columns in selects.
parent
472cf532
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/storage/_base.py
+1
-1
1 addition, 1 deletion
synapse/storage/_base.py
with
1 addition
and
1 deletion
synapse/storage/_base.py
+
1
−
1
View file @
2f4cb04f
...
@@ -504,7 +504,7 @@ class SQLBaseStore(object):
...
@@ -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
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment