[Sqlalchemy-tickets] Issue #3564: Arrays of strings that containg commas are being separated incorr
Brought to you by:
zzzeek
|
From: Forest G. <iss...@bi...> - 2015-10-25 18:24:01
|
New issue 3564: Arrays of strings that containg commas are being separated incorrectly https://bitbucket.org/zzzeek/sqlalchemy/issues/3564/arrays-of-strings-that-containg-commas-are Forest Gregg: ``` #!python result = conn.execute(sa.text("select array['foo', 'bar,baz']")) result.first() (('foo', 'bar', 'baz'),) ``` The result should be ``` #!python result = conn.execute(sa.text("select array['foo', 'bar,baz']")) result.first() (('foo', "bar,baz"),) ``` |