summary refs log tree commit diff
path: root/.ci/scripts/postgres_exec.py
diff options
context:
space:
mode:
authorDavid Robertson <davidr@element.io>2021-08-11 19:59:57 +0100
committerDavid Robertson <davidr@element.io>2021-08-11 19:59:57 +0100
commit33ef86aa2515f623fa6e8657d16c918b6a6d9da5 (patch)
tree42785b59a86e3c8df04ade348ae998e6e483cff5 /.ci/scripts/postgres_exec.py
parentAdd changelog entry and signoff (diff)
downloadsynapse-33ef86aa2515f623fa6e8657d16c918b6a6d9da5.tar.xz
Rename ci to .ci
Diffstat (limited to '.ci/scripts/postgres_exec.py')
-rwxr-xr-x.ci/scripts/postgres_exec.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/.ci/scripts/postgres_exec.py b/.ci/scripts/postgres_exec.py
new file mode 100755
index 0000000000..0f39a336d5
--- /dev/null
+++ b/.ci/scripts/postgres_exec.py
@@ -0,0 +1,31 @@
+#!/usr/bin/env python
+# Copyright 2019 The Matrix.org Foundation C.I.C.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+import sys
+
+import psycopg2
+
+# a very simple replacment for `psql`, to make up for the lack of the postgres client
+# libraries in the synapse docker image.
+
+# We use "postgres" as a database because it's bound to exist and the "synapse" one
+# doesn't exist yet.
+db_conn = psycopg2.connect(
+    user="postgres", host="localhost", password="postgres", dbname="postgres"
+)
+db_conn.autocommit = True
+cur = db_conn.cursor()
+for c in sys.argv[1:]:
+    cur.execute(c)