From c5135da1c83dff87dd50546cbd08d9921cf3069d Mon Sep 17 00:00:00 2001 From: Neil Macneale IV Date: Wed, 16 Apr 2025 10:44:44 -0700 Subject: [PATCH] Add auto gc behavior interface to avoid breakage --- servercfg/config.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/servercfg/config.go b/servercfg/config.go index fe559ba576..1efe5025e0 100755 --- a/servercfg/config.go +++ b/servercfg/config.go @@ -111,6 +111,10 @@ func (DoltgresAutoGCBehavior) Enable() bool { return false } +func (DoltgresAutoGCBehavior) ArchiveLevel() int { + return 0 +} + type DoltgresUserConfig struct { Name *string `yaml:"name,omitempty" minver:"0.7.4"` Password *string `yaml:"password,omitempty" minver:"0.7.4"`