Details
-
New Feature
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
None
-
Server version: 10.5.6
MCS version: 1.5.4-1
Description
Like InnoDB engine, Columnstore should also support user defined functions.
CREATE TABLE t1(number INT) Engine=Columnstore;
INSERT INTO t1 VALUEs(1),(2),(3),(4),(5),(6);
CREATE FUNCTION square(num INT) RETURNS INT RETURN(num * num);
SELECT number, square(number) FROM t1;
ERROR 1178 (42000): The storage engine for the table doesn't support IDB-1017: Stored function is currently not supported in Columnstore.