Fixing local example for new bind vars format.

This commit is contained in:
Alain Jobart 2016-03-03 11:50:30 -08:00
Родитель d43aa489a6
Коммит f37b45347e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -40,7 +40,7 @@ try:
keyranges=UNSHARDED, writable=True)
cursor.begin()
cursor.execute(
'INSERT INTO test_table (msg) VALUES (%(msg)s)',
'INSERT INTO test_table (msg) VALUES (:msg)',
{'msg': 'V is for speed'})
cursor.commit()