[ga-format-pr] Run go/utils/repofmt/format_repo.sh and go/Godeps/update.sh

This commit is contained in:
macneale4
2026-02-11 19:51:22 +00:00
parent 31a2f6ab29
commit b655ee9450
6 changed files with 20 additions and 22 deletions

View File

@@ -64,7 +64,7 @@ func NewCherryPickOptions() CherryPickOptions {
CommitMessage: "",
CommitBecomesEmptyHandling: doltdb.ErrorOnEmptyCommit,
EmptyCommitHandling: doltdb.ErrorOnEmptyCommit,
SkipVerification: false,
SkipVerification: false,
}
}
@@ -163,9 +163,9 @@ func CreateCommitStagedPropsFromCherryPickOptions(ctx *sql.Context, options Cher
}
commitProps := actions.CommitStagedProps{
Date: originalMeta.Time(),
Name: originalMeta.Name,
Email: originalMeta.Email,
Date: originalMeta.Time(),
Name: originalMeta.Name,
Email: originalMeta.Email,
SkipVerification: options.SkipVerification,
}

View File

@@ -163,14 +163,14 @@ func doDoltCommit(ctx *sql.Context, args []string) (string, bool, error) {
}
csp := actions.CommitStagedProps{
Message: msg,
Date: t,
AllowEmpty: apr.Contains(cli.AllowEmptyFlag),
SkipEmpty: apr.Contains(cli.SkipEmptyFlag),
Amend: amend,
Force: apr.Contains(cli.ForceFlag),
Name: name,
Email: email,
Message: msg,
Date: t,
AllowEmpty: apr.Contains(cli.AllowEmptyFlag),
SkipEmpty: apr.Contains(cli.SkipEmptyFlag),
Amend: amend,
Force: apr.Contains(cli.ForceFlag),
Name: name,
Email: email,
SkipVerification: apr.Contains(cli.SkipVerificationFlag),
}
@@ -216,7 +216,6 @@ func doDoltCommit(ctx *sql.Context, args []string) (string, bool, error) {
pendingCommit.CommitOptions.Meta.Signature = string(signature)
}
newCommit, err := dSess.DoltCommit(ctx, dbName, dSess.GetTransaction(), pendingCommit)
if err != nil {
return "", false, err
@@ -274,4 +273,3 @@ func commitSignatureStr(ctx *sql.Context, dbName string, roots doltdb.Roots, csp
return strings.Join(lines, "\n"), nil
}

View File

@@ -449,11 +449,11 @@ func executeNoFFMerge(
}
pendingCommit, err := dSess.NewPendingCommit(ctx, dbName, roots, actions.CommitStagedProps{
Message: msg,
Date: spec.Date,
Force: spec.Force,
Name: spec.Name,
Email: spec.Email,
Message: msg,
Date: spec.Date,
Force: spec.Force,
Name: spec.Name,
Email: spec.Email,
SkipVerification: skipVerification,
})
if err != nil {

View File

@@ -45,7 +45,6 @@ import (
var ErrSessionNotPersistable = errors.New("session is not persistable")
// DoltSession is the sql.Session implementation used by dolt. It is accessible through a *sql.Context instance
type DoltSession struct {
provider DoltDatabaseProvider

View File

@@ -17,11 +17,12 @@ package enginetest
import (
"regexp"
"github.com/dolthub/dolt/go/store/hash"
"github.com/dolthub/go-mysql-server/enginetest"
"github.com/dolthub/go-mysql-server/enginetest/queries"
"github.com/dolthub/go-mysql-server/sql"
"github.com/dolthub/go-mysql-server/sql/types"
"github.com/dolthub/dolt/go/store/hash"
)
// commitHashValidator validates commit hash format (32 character hex)

View File

@@ -18,11 +18,11 @@ import (
"math"
"time"
"github.com/dolthub/dolt/go/libraries/doltcore/env/actions"
"github.com/dolthub/go-mysql-server/sql"
"github.com/dolthub/go-mysql-server/sql/types"
_ "github.com/dolthub/go-mysql-server/sql/variables"
"github.com/dolthub/dolt/go/libraries/doltcore/env/actions"
"github.com/dolthub/dolt/go/libraries/doltcore/sqle/dsess"
)