* Returns the index queue name based on the cluster version. * The return value includes the schema name and the queue name. */
| 2210 | * The return value includes the schema name and the queue name. |
| 2211 | */ |
| 2212 | char * |
| 2213 | GetIndexQueueName(void) |
| 2214 | { |
| 2215 | return psprintf("%s.%s", ApiCatalogSchemaNameV2, GetIndexQueueTableName()); |
| 2216 | } |
| 2217 | |
| 2218 | |
| 2219 | void |
no test coverage detected