==== ---- QUERY create database if not exists native_function_test; use native_function_test; drop function if exists agg_memtest(bigint); create aggregate function agg_memtest(bigint) returns bigint location '/test-warehouse/libTestUdas.so' update_fn='MemTestUpdate'; select agg_memtest(bigint_col * 10 * 1024 * 1024) from functional.alltypes; ====