* Adds a term to the entry set and ensures there's * sufficient capacity to add the term in. */
| 1063 | * sufficient capacity to add the term in. |
| 1064 | */ |
| 1065 | inline static void |
| 1066 | AddTerm(GinEntrySet *context, Datum term) |
| 1067 | { |
| 1068 | EnsureTermCapacity(context, 1); |
| 1069 | context->entries[context->index] = term; |
| 1070 | context->index++; |
| 1071 | } |
| 1072 | |
| 1073 | |
| 1074 | static GinEntryPathData * |
no test coverage detected