* GetSPIQueryPlan gets the query plan for a given query and purges the * oldest entry from the LRU queue if the cache exceeds the size limit. */
| 103 | * oldest entry from the LRU queue if the cache exceeds the size limit. |
| 104 | */ |
| 105 | SPIPlanPtr |
| 106 | GetSPIQueryPlan(uint64 collectionId, uint64 queryId, |
| 107 | const char *query, Oid *argTypes, int argCount) |
| 108 | { |
| 109 | const char *shardTableName = NULL; |
| 110 | return GetSPIQueryPlanWithLocalShard(collectionId, shardTableName, queryId, query, |
| 111 | argTypes, argCount); |
| 112 | } |
| 113 | |
| 114 | |
| 115 | /* |
no test coverage detected