summaryrefslogtreecommitdiff
path: root/test/test_pgutil.c
AgeCommit message (Collapse)Author
2014-06-12Remove use of USUAL_ALLOCMarko Kreen
2010-09-15cxalloc: customizable allocator frameworkMarko Kreen
There is a need to sometimes have different allocation policy to some generic data structure than usual. Instead of having each of them having allocator abstraction on their own and both simple and customisable API, lets have simple generic allocation API. Initialized will take another CxMem *cx argument, and when no customization is needed, put USUAL_ALLOC there.
2010-09-02pgutil: add few missing features to pg_parse_array()Marko Kreen
- ignore whitespace around values - support NULL - rename to pg_parse_array - skip dimension definitions - add regtests
2010-09-01pgutil: move common postgres helper functions here.Marko Kreen