* Fill in the TableAmRoutine for a relation * * relation's rd_amhandler must be valid already. */
| 1843 | * relation's rd_amhandler must be valid already. |
| 1844 | */ |
| 1845 | static void |
| 1846 | InitTableAmRoutine(Relation relation) |
| 1847 | { |
| 1848 | relation->rd_tableam = GetTableAmRoutine(relation->rd_amhandler); |
| 1849 | } |
| 1850 | |
| 1851 | /* |
| 1852 | * Initialize table access method support for a table like relation |
no test coverage detected