MCPcopy Create free account
hub / github.com/documentdb/documentdb / ModifyTableColumnNames

Function ModifyTableColumnNames

pg_documentdb/src/api_hooks.c:252–261  ·  view source on GitHub ↗

* Entrypoint to modify a list of column names for queries * For a base RTE (table) */

Source from the content-addressed store, hash-verified

250 * For a base RTE (table)
251 */
252List *
253ModifyTableColumnNames(List *inputColumnNames)
254{
255 if (modify_table_column_names_hook != NULL)
256 {
257 return modify_table_column_names_hook(inputColumnNames);
258 }
259
260 return inputColumnNames;
261}
262
263
264/*

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected