Migrations: Support independent migration log for entity api (#68511)

This commit is contained in:
Ryan McKinley
2023-05-22 11:31:07 -07:00
committed by GitHub
parent 2c75a51285
commit 26658d172f
6 changed files with 127 additions and 64 deletions
+4
View File
@@ -479,6 +479,10 @@ func (ss *SQLStore) readConfig() error {
return nil
}
func (ss *SQLStore) GetMigrationLockAttemptTimeout() int {
return ss.dbCfg.MigrationLockAttemptTimeout
}
func (ss *SQLStore) RecursiveQueriesAreSupported() (bool, error) {
if ss.recursiveQueriesAreSupported != nil {
return *ss.recursiveQueriesAreSupported, nil