From 47a1f2a06fac2ee88d3ba9d88e8f7c45a4f6f5e8 Mon Sep 17 00:00:00 2001 From: Simone Pellizzari Date: Sat, 6 Apr 2019 13:41:46 +0200 Subject: Refs #26067 -- Added more tests for ordering in StringAgg. --- tests/postgres_tests/test_aggregates.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/postgres_tests/test_aggregates.py') diff --git a/tests/postgres_tests/test_aggregates.py b/tests/postgres_tests/test_aggregates.py index ec81f5ad75..6b77787dcc 100644 --- a/tests/postgres_tests/test_aggregates.py +++ b/tests/postgres_tests/test_aggregates.py @@ -164,6 +164,8 @@ class TestGeneralAggregate(PostgreSQLTestCase): (F('char_field').desc(), 'Foo4;Foo3;Foo2;Foo1'), (F('char_field').asc(), 'Foo1;Foo2;Foo3;Foo4'), (F('char_field'), 'Foo1;Foo2;Foo3;Foo4'), + ('char_field', 'Foo1;Foo2;Foo3;Foo4'), + ('-char_field', 'Foo4;Foo3;Foo2;Foo1'), ) for ordering, expected_output in ordering_test_cases: with self.subTest(ordering=ordering, expected_output=expected_output): -- cgit v1.2.1