Fixed encoding of empty ArrayExpression for PostgreSQL

This commit is contained in:
SilverFire - Dmitry Naumenko
2018-03-03 20:43:37 +02:00
parent d5d4b8b0f5
commit 5fa25b331d
6 changed files with 8 additions and 11 deletions

View File

@@ -28,10 +28,11 @@ class ArrayParserTest extends TestCase
['{1,2,}', ['1','2',null]],
['{{},,1}', [[], null, '1']],
['{"{\"key\":\"value\"}",NULL,"NULL","{}"}', ['{"key":"value"}', null, "NULL", '{}']],
['{boo,",",,test', ['boo', ',', null, 'test']],
['{boo,",",,test}', ['boo', ',', null, 'test']],
['{"string1","str\\\\in\\"g2","str,ing3"}', ['string1','str\\in"g2','str,ing3']],
['{{1,2,3},{4,5,6},{7,8,9}}', [['1','2','3'], ['4','5','6'], ['7','8','9']]],
['{utf8€,👍}', ['utf8€', '👍']],
['{"","","{}",{}}', ['', '', '{}', []]]
];
}