CollectionConfig holds configuration for a specific collection.
| 39 | |
| 40 | // CollectionConfig holds configuration for a specific collection. |
| 41 | type CollectionConfig struct { |
| 42 | Schema *api.CollectionSchema |
| 43 | IDField string |
| 44 | TimeFields []string |
| 45 | BigIntFields []string |
| 46 | DefaultSortField string |
| 47 | } |
| 48 | |
| 49 | var collectionConfigs map[string]CollectionConfig |
| 50 |
nothing calls this directly
no outgoing calls
no test coverage detected