blob: b7c2f5faf4deccf19e3ed4b505741d027557f8f1 [file] [log] [blame]
====
---- QUERY
drop function if exists agg_memtest(bigint);
create aggregate function agg_memtest(bigint) returns bigint
location '$FILESYSTEM_PREFIX/test-warehouse/libTestUdas.so' update_fn='MemTestUpdate';
select agg_memtest(bigint_col * 10 * 1024 * 1024) from functional.alltypes;
====