* Return the flags represented the supported features of table AM scan. */
| 1310 | * Return the flags represented the supported features of table AM scan. |
| 1311 | */ |
| 1312 | static inline uint32 |
| 1313 | table_scan_flags(Relation rel) |
| 1314 | { |
| 1315 | if (rel->rd_tableam->scan_flags) |
| 1316 | return rel->rd_tableam->scan_flags(rel); |
| 1317 | return 0; |
| 1318 | } |
| 1319 | |
| 1320 | /* ---------------------------------------------------------------------------- |
| 1321 | * Parallel table scan related functions. |
no outgoing calls
no test coverage detected