summaryrefslogtreecommitdiff
path: root/sandbox/test814.py
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/test814.py')
-rw-r--r--sandbox/test814.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/sandbox/test814.py b/sandbox/test814.py
deleted file mode 100644
index 0e78981..0000000
--- a/sandbox/test814.py
+++ /dev/null
@@ -1,8 +0,0 @@
-import psycopg2
-import psycopg2.extras
-
-conn = psycopg2.connect("dbname=test")
-curs = conn.cursor()
-curs.execute("SELECT true AS foo WHERE 'a' in %s", (("aa", "bb"),))
-print(curs.fetchall())
-print(curs.query)