* Copy data from `rel` into the new relfilenode `newrnode`. The new * relfilenode may not have storage associated before this function is * called. This is only supposed to be used for low level operations like * changing a relation's tablespace. */
| 1861 | * changing a relation's tablespace. |
| 1862 | */ |
| 1863 | static inline void |
| 1864 | table_relation_copy_data(Relation rel, const RelFileNode *newrnode) |
| 1865 | { |
| 1866 | rel->rd_tableam->relation_copy_data(rel, newrnode); |
| 1867 | } |
| 1868 | |
| 1869 | /* |
| 1870 | * Copy data from `OldTable` into `NewTable`, as part of a CLUSTER or VACUUM |
no outgoing calls
no test coverage detected