summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorDavid Robertson <davidr@element.io>2022-09-13 10:53:11 +0100
committerGitHub <noreply@github.com>2022-09-13 10:53:11 +0100
commitb60d47ab2c55580fc1941497964cd33c27838231 (patch)
tree41ed39d6df30ec0e8468073c4f2c9441ef303935 /synapse
parentSimplify CI tests DAG (#13784) (diff)
downloadsynapse-b60d47ab2c55580fc1941497964cd33c27838231.tar.xz
Updates to the schema dump script (#13770)
Diffstat (limited to 'synapse')
-rw-r--r--synapse/storage/schema/state/delta/30/state_stream.sql4
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/storage/schema/state/delta/30/state_stream.sql b/synapse/storage/schema/state/delta/30/state_stream.sql
index e85699e82e..bdaf8b02d5 100644
--- a/synapse/storage/schema/state/delta/30/state_stream.sql
+++ b/synapse/storage/schema/state/delta/30/state_stream.sql
@@ -26,6 +26,10 @@
  * (event, state) pair, we can use that stream_ordering to identify when
  * the new state was assigned for the event.
  */
+
+/* NB: This table belongs to the `main` logical database; it should not be present
+ * in `state`.
+ */
 CREATE TABLE IF NOT EXISTS ex_outlier_stream(
     event_stream_ordering BIGINT PRIMARY KEY NOT NULL,
     event_id TEXT NOT NULL,