* Entrypoint to modify a list of column names for queries * For a base RTE (table) */
| 250 | * For a base RTE (table) |
| 251 | */ |
| 252 | List * |
| 253 | ModifyTableColumnNames(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 | /* |
no outgoing calls
no test coverage detected