summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorAnatoly Galiulin <galiulin.anatoly@gmail.com>2015-11-06 10:24:23 +0600
committerAnatoly Galiulin <galiulin.anatoly@gmail.com>2015-11-06 10:24:23 +0600
commitc0179043639ceab4f146fda2eec906fc30740b4b (patch)
tree46546da3e73516c84ab43d9ba0db50e5707ee91a /tests
parentae60f4ae760223c57403f2ac59014374b4655377 (diff)
downloadNim-c0179043639ceab4f146fda2eec906fc30740b4b.tar.gz
Fixed issue 3513: wrong setupQuery realization
Diffstat (limited to 'tests')
-rw-r--r--tests/untestable/tpostgres.nim4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/untestable/tpostgres.nim b/tests/untestable/tpostgres.nim
index 5f29da091..81fe8bf51 100644
--- a/tests/untestable/tpostgres.nim
+++ b/tests/untestable/tpostgres.nim
@@ -9,5 +9,7 @@ let name = "Dom"
 db.exec(sql"INSERT INTO myTable (id, name) VALUES (0, ?)",
         name)
 doAssert db.getValue(sql"SELECT name FROM myTable") == name
+# Check issue #3513
+doAssert db.getValue(sql"SELECT name FROM myTable") == name
 
-db.close()
\ No newline at end of file
+db.close()