initAnyArray registers the functions to the catalog.
()
| 23 | |
| 24 | // initAnyArray registers the functions to the catalog. |
| 25 | func initAnyArray() { |
| 26 | framework.RegisterFunction(anyarray_in) |
| 27 | framework.RegisterFunction(anyarray_out) |
| 28 | framework.RegisterFunction(anyarray_recv) |
| 29 | framework.RegisterFunction(anyarray_send) |
| 30 | } |
| 31 | |
| 32 | // anyarray_in represents the PostgreSQL function of anyarray type IO input. |
| 33 | var anyarray_in = framework.Function1{ |
no test coverage detected