Skip to content

Commit 5d81e44

Browse files
committed
py: add a fix to aggregate tests
Signed-off-by: rivudhk <rivudhkr@gmail.com>
1 parent 2fc0dcf commit 5d81e44

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

python/tests/runtime_aggtest/aggregate_tests5/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from tests.runtime_aggtest.aggtst_base import * # noqa: F403
55
from tests.runtime_aggtest.atest_run import run # noqa: F403
66

7-
from table import * # noqa: F403
7+
from test_table import * # noqa: F403
88
from test_atbl_varcharn_append import * # noqa: F403
99
from test_atbl_charn_append import * # noqa: F403
1010
from test_arg_max_append import * # noqa: F403

python/tests/runtime_aggtest/aggregate_tests5/table.py

Lines changed: 0 additions & 8 deletions
This file was deleted.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from tests.runtime_aggtest.aggregate_tests.test_int_table import * # noqa: F403
2+
from tests.runtime_aggtest.aggregate_tests.test_decimal_table import * # noqa: F403
3+
from tests.runtime_aggtest.aggregate_tests2.test_date_tbl import * # noqa: F403
4+
from tests.runtime_aggtest.aggregate_tests2.test_time_tbl import * # noqa: F403
5+
from tests.runtime_aggtest.aggregate_tests2.test_timestamp_tbl import * # noqa: F403
6+
from tests.runtime_aggtest.aggregate_tests2.test_varchar_table import * # noqa: F403

python/tests/runtime_aggtest/aggregate_tests6/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from tests.runtime_aggtest.aggtst_base import * # noqa: F403
55
from tests.runtime_aggtest.atest_run import run # noqa: F403
66

7-
from table import * # noqa: F403
7+
from test_table import * # noqa: F403
88
from test_array_arg_max_append import * # noqa: F403
99
from test_array_arg_min_append import * # noqa: F403
1010
from test_array_max_append import * # noqa: F403

python/tests/runtime_aggtest/aggregate_tests6/table.py

Lines changed: 0 additions & 7 deletions
This file was deleted.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from tests.runtime_aggtest.aggregate_tests2.test_atbl_interval import * # noqa: F403
2+
from tests.runtime_aggtest.aggregate_tests4.test_array_tbl import * # noqa: F403
3+
from tests.runtime_aggtest.aggregate_tests3.test_binary_tbl import * # noqa: F403
4+
from tests.runtime_aggtest.aggregate_tests4.test_map_tbl import * # noqa: F403
5+
from tests.runtime_aggtest.aggregate_tests.test_row_tbl import * # noqa: F403
6+
from tests.runtime_aggtest.aggregate_tests3.test_unsigned_int_tbl import * # noqa: F403
7+
from tests.runtime_aggtest.aggregate_tests3.test_varbinary_tbl import * # noqa: F403

python/tests/runtime_aggtest/run.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ runtest aggregate_tests/main.py
1010
runtest aggregate_tests2/main.py
1111
runtest aggregate_tests3/main.py
1212
runtest aggregate_tests4/main.py
13+
runtest aggregate_tests5/main.py
14+
runtest aggregate_tests6/main.py
1315
runtest arithmetic_tests/main.py
1416
runtest complex_type_tests/main.py
1517
runtest orderby_tests/main.py

0 commit comments

Comments
 (0)