MCPcopy Create free account
hub / github.com/VexDB-THU/VexDB-Lite / input_floatvector_in

Function input_floatvector_in

vexdb_pg/src/floatvector.cpp:216–223  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

214}
215
216Datum input_floatvector_in(char* str, Oid typioparam, int32 atttypmod)
217{
218 if (str == NULL) {
219 return (Datum)0;
220 }
221 FloatVector *result = floatvector_input(str, atttypmod);
222 PG_RETURN_FLOATVECTOR_P(result);
223}
224
225/*
226 * Convert internal representation to textual representation

Callers

nothing calls this directly

Calls 1

floatvector_inputFunction · 0.85

Tested by

no test coverage detected