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

Function floatvector_in

vexdb_pg/src/floatvector.cpp:208–214  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

206 */
207PG_FUNCTION_INFO_V1(floatvector_in);
208Datum floatvector_in(PG_FUNCTION_ARGS)
209{
210 char *s = PG_GETARG_CSTRING(0);
211 int32 atttypmod = PG_GETARG_INT32(2);
212 FloatVector *result = floatvector_input(s, atttypmod);
213 PG_RETURN_FLOATVECTOR_P(result);
214}
215
216Datum input_floatvector_in(char* str, Oid typioparam, int32 atttypmod)
217{

Callers

nothing calls this directly

Calls 1

floatvector_inputFunction · 0.85

Tested by

no test coverage detected