MCPcopy Create free account
hub / github.com/dolthub/doltgresql / initArray

Function initArray

server/functions/array.go:31–38  ·  view source on GitHub ↗

initArray registers the functions to the catalog.

()

Source from the content-addressed store, hash-verified

29
30// initArray registers the functions to the catalog.
31func 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.
41var array_in = framework.Function3{

Callers 1

initTypeFunctionsFunction · 0.85

Calls 1

RegisterFunctionFunction · 0.92

Tested by

no test coverage detected