leafo / pgmoon

A pure Lua Postgres driver for use in OpenResty & more
MIT License
390 stars 93 forks source link

Support all array types #138

Open leafo opened 1 year ago

leafo commented 1 year ago

Add all array types:

select oid, typname, typcategory, typarray from pg_type where typcategory = 'A' and typtype = 'b' and oid < 10000 order by oid asc;

Default to string decoder