Arrays of strings that containg commas are being separated incorrectly

Issue #3564 resolved
Forest Gregg created an issue
result = conn.execute(sa.text("select array['foo', 'bar,baz']"))
result.first()
(('foo', 'bar', 'baz'),)

The result should be

result = conn.execute(sa.text("select array['foo', 'bar,baz']"))
result.first()
(('foo', "bar,baz"),)

Comments (1)

  1. Log in to comment