Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
23.10.4
-
None
-
None
-
2025-7, 2025-8
Description
If idbpartition and I suppose any of the existing pseudofunctions receives an inappropriate argument type getSelectPlan() control flow receives SIGABRT from an uncaught exception. Here is the example idbpartition must receive column name and it received a string literal:
create table cs1(i bigint)engine=columnstore;
|
select count(i) from cs1 where idbpartition('i') = '0.0.1';
|