summaryrefslogtreecommitdiffstats
path: root/store/storetest/mocks/SqlStore.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/storetest/mocks/SqlStore.go')
-rw-r--r--store/storetest/mocks/SqlStore.go30
1 files changed, 30 insertions, 0 deletions
diff --git a/store/storetest/mocks/SqlStore.go b/store/storetest/mocks/SqlStore.go
index eda8cb39e..b9b962101 100644
--- a/store/storetest/mocks/SqlStore.go
+++ b/store/storetest/mocks/SqlStore.go
@@ -143,6 +143,20 @@ func (_m *SqlStore) CreateColumnIfNotExists(tableName string, columnName string,
return r0
}
+// CreateCompositeIndexIfNotExists provides a mock function with given fields: indexName, tableName, columnNames
+func (_m *SqlStore) CreateCompositeIndexIfNotExists(indexName string, tableName string, columnNames []string) bool {
+ ret := _m.Called(indexName, tableName, columnNames)
+
+ var r0 bool
+ if rf, ok := ret.Get(0).(func(string, string, []string) bool); ok {
+ r0 = rf(indexName, tableName, columnNames)
+ } else {
+ r0 = ret.Get(0).(bool)
+ }
+
+ return r0
+}
+
// CreateFullTextIndexIfNotExists provides a mock function with given fields: indexName, tableName, columnName
func (_m *SqlStore) CreateFullTextIndexIfNotExists(indexName string, tableName string, columnName string) bool {
ret := _m.Called(indexName, tableName, columnName)
@@ -404,6 +418,22 @@ func (_m *SqlStore) OAuth() store.OAuthStore {
return r0
}
+// Plugin provides a mock function with given fields:
+func (_m *SqlStore) Plugin() store.PluginStore {
+ ret := _m.Called()
+
+ var r0 store.PluginStore
+ if rf, ok := ret.Get(0).(func() store.PluginStore); ok {
+ r0 = rf()
+ } else {
+ if ret.Get(0) != nil {
+ r0 = ret.Get(0).(store.PluginStore)
+ }
+ }
+
+ return r0
+}
+
// Post provides a mock function with given fields:
func (_m *SqlStore) Post() store.PostStore {
ret := _m.Called()