bitnine-oss / agensgraph

AgensGraph, a transactional graph database based on PostgreSQL
http://www.agensgraph.org
Other
1.32k stars 146 forks source link

fix: array_tail function did not work with integer type #613

Closed RC-002 closed 1 year ago

RC-002 commented 1 year ago

The array_tail function did not work with the integer data type. I tested this with a simple query.

select tail(ARRAY['I','hope', null, null, 'this','works']); tail

{hope,NULL,NULL,this,works} (1 row)

RC-002 commented 1 year ago

The same changes were merged in another PR