Changeset: 714eb73754a8 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=714eb73754a8
Modified Files:
        sql/test/remote/Tests/ssbm.SQL.py
Branch: remote_auth
Log Message:

Change single to double quotes in python test


diffs (17 lines):

diff --git a/sql/test/remote/Tests/ssbm.SQL.py 
b/sql/test/remote/Tests/ssbm.SQL.py
--- a/sql/test/remote/Tests/ssbm.SQL.py
+++ b/sql/test/remote/Tests/ssbm.SQL.py
@@ -176,11 +176,11 @@ c.execute(mtable)
 rptable = 'create replica table %s %s' % (repltable, replicatedtabledef)
 c.execute(rptable)
 for workerrec in workers:
-    rtable = 'create remote table %s%s %s on \'%s\'' % (shardtable, 
workerrec['tpf'], shardedtabledef, workerrec['mapi'])
+    rtable = "create remote table %s%s %s on '%s'" % (shardtable, 
workerrec['tpf'], shardedtabledef, workerrec['mapi'])
     atable = 'alter table %s add table %s%s' % (shardtable, shardtable, 
workerrec['tpf'])
     c.execute(rtable)
     c.execute(atable)
-    rtable = 'create remote table %s%s %s on \'%s\'' % (repltable, 
workerrec['tpf'], replicatedtabledef, workerrec['mapi'])
+    rtable = "create remote table %s%s %s on '%s'" % (repltable, 
workerrec['tpf'], replicatedtabledef, workerrec['mapi'])
     atable = 'alter table %s add table %s%s' % (repltable, repltable, 
workerrec['tpf'])
     c.execute(rtable)
     c.execute(atable)
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to