GH-12936 Add KVListWithOptions function to plugin.Helpers (#13576)

Automatic Merge
Этот коммит содержится в:
Doug Clark
2020-02-17 14:44:34 -06:00
коммит произвёл GitHub
родитель 53e07a68f5
Коммит 6377bfef35
4 изменённых файлов: 366 добавлений и 0 удалений

Просмотреть файл

@@ -56,6 +56,11 @@ type Helpers interface {
// Minimum server version: 5.6
KVSetWithExpiryJSON(key string, value interface{}, expireInSeconds int64) error
// KVListWithOptions returns all keys that match the given options. If no options are provided then all keys are returned.
//
// Minimum server version: 5.6
KVListWithOptions(options ...KVListOption) ([]string, error)
// CheckRequiredServerConfiguration checks if the server is configured according to
// plugin requirements.
//