summaryrefslogtreecommitdiff
path: root/sandbox/crash.py
diff options
context:
space:
mode:
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>2018-10-15 00:58:32 +0100
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2018-10-15 00:58:32 +0100
commitb205764fdde4549c48c27841aa17e6c7f499e808 (patch)
tree1475eb57dc854ea4a1dc93c1c6a567e6fc584e5c /sandbox/crash.py
parente7227ce87b8da75fef1a3376ebb47e2bf20f6063 (diff)
parent7a5edff6c66a0410d6fecd4445980aabafc3ab4a (diff)
downloadpsycopg2-errors-module.tar.gz
Merge branch 'master' into errors-moduleerrors-module
Diffstat (limited to 'sandbox/crash.py')
-rw-r--r--sandbox/crash.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/sandbox/crash.py b/sandbox/crash.py
deleted file mode 100644
index 851fa7e..0000000
--- a/sandbox/crash.py
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/usr/bin/env python
-
-#import psycopg as db
-import psycopg2 as db
-import threading
-import time
-import sys
-
-def query_worker(dsn):
- conn = db.connect(dsn)
- cursor = conn.cursor()
- while True:
- cursor.execute("select * from pg_class")
- while True:
- row = cursor.fetchone()
- if row is None:
- break
-
-if len(sys.argv) != 2:
- print('usage: %s DSN' % sys.argv[0])
- sys.exit(1)
-th = threading.Thread(target=query_worker, args=(sys.argv[1],))
-th.setDaemon(True)
-th.start()
-time.sleep(1)