Skip to content

Commit

Permalink
Fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fulghum committed Apr 1, 2024
1 parent 7f501d5 commit ab373eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion go/cmd/dolt/commands/sqlserver/yaml_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ type YAMLConfig struct {
BranchControlFile *string `yaml:"branch_control_file,omitempty"`
// TODO: Rename to UserVars_
Vars []UserSessionVars `yaml:"user_session_vars"`
SystemVars_ *engine.SystemVariables `yaml:"system_variables" minver:"1.11.1"`
SystemVars_ *engine.SystemVariables `yaml:"system_variables,omitempty" minver:"1.11.1"`
Jwks []engine.JwksConfig `yaml:"jwks"`
GoldenMysqlConn *string `yaml:"golden_mysql_conn,omitempty"`
}
Expand Down
1 change: 1 addition & 0 deletions go/cmd/dolt/commands/sqlserver/yaml_config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ jwks:
},
}
expected.DataDirStr = strPtr("some nonsense")
expected.SystemVars_ = nil
expected.Vars = []UserSessionVars{
{
Name: "user0",
Expand Down

0 comments on commit ab373eb

Please sign in to comment.