MCPcopy Create free account
hub / github.com/apache/cloudberry / PQftable

Function PQftable

src/interfaces/libpq/fe-exec.c:3491–3500  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3489}
3490
3491Oid
3492PQftable(const PGresult *res, int field_num)
3493{
3494 if (!check_field_number(res, field_num))
3495 return InvalidOid;
3496 if (res->attDescs)
3497 return res->attDescs[field_num].tableid;
3498 else
3499 return InvalidOid;
3500}
3501
3502int
3503PQftablecol(const PGresult *res, int field_num)

Callers

nothing calls this directly

Calls 1

check_field_numberFunction · 0.85

Tested by

no test coverage detected