initArray registers the functions to the catalog.
()
| 29 | |
| 30 | // initArray registers the functions to the catalog. |
| 31 | func initArray() { |
| 32 | framework.RegisterFunction(array_in) |
| 33 | framework.RegisterFunction(array_out) |
| 34 | framework.RegisterFunction(array_recv) |
| 35 | framework.RegisterFunction(array_send) |
| 36 | framework.RegisterFunction(btarraycmp) |
| 37 | framework.RegisterFunction(array_subscript_handler) |
| 38 | } |
| 39 | |
| 40 | // array_in represents the PostgreSQL function of array type IO input. |
| 41 | var array_in = framework.Function3{ |
no test coverage detected