Skip to content

Commit

Permalink
/go/{cmd,libraries}: format again
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeegoddd committed Oct 22, 2024
1 parent 7d28396 commit 32c44a4
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
1 change: 1 addition & 0 deletions go/cmd/dolt/commands/ci/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ package ci
import (
"context"
"fmt"

"github.com/dolthub/dolt/go/libraries/doltcore/env/actions/dolt_ci"

"github.com/dolthub/dolt/go/cmd/dolt/cli"
Expand Down
6 changes: 4 additions & 2 deletions go/libraries/doltcore/env/actions/dolt_ci/dolt_ci.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,16 @@ package dolt_ci

import (
"fmt"
"time"

"github.com/dolthub/go-mysql-server/sql"

"github.com/dolthub/dolt/go/libraries/doltcore/branch_control"
"github.com/dolthub/dolt/go/libraries/doltcore/doltdb"
"github.com/dolthub/dolt/go/libraries/doltcore/env/actions"
"github.com/dolthub/dolt/go/libraries/doltcore/sqle"
"github.com/dolthub/dolt/go/libraries/doltcore/sqle/dsess"
"github.com/dolthub/dolt/go/store/datas"
"github.com/dolthub/go-mysql-server/sql"
"time"
)

var ExpectedDoltCITables = []doltdb.TableName{
Expand Down
3 changes: 2 additions & 1 deletion go/libraries/doltcore/env/actions/dolt_ci/foreign_key.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ package dolt_ci
import (
"context"
"fmt"
"github.com/dolthub/dolt/go/libraries/doltcore/sqle"

"github.com/dolthub/go-mysql-server/sql"

"github.com/dolthub/dolt/go/libraries/doltcore/doltdb"
"github.com/dolthub/dolt/go/libraries/doltcore/schema"
"github.com/dolthub/dolt/go/libraries/doltcore/sqle"
)

func CreateDoltCITableForeignKey(
Expand Down
4 changes: 3 additions & 1 deletion go/libraries/doltcore/env/actions/dolt_ci/workflow_events.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ package dolt_ci

import (
"fmt"

"github.com/dolthub/go-mysql-server/sql"

"github.com/dolthub/dolt/go/cmd/dolt/errhand"
"github.com/dolthub/dolt/go/libraries/doltcore/doltdb"
"github.com/dolthub/dolt/go/libraries/doltcore/doltdb/durable"
Expand All @@ -24,7 +27,6 @@ import (
"github.com/dolthub/dolt/go/libraries/doltcore/sqle"
"github.com/dolthub/dolt/go/libraries/doltcore/sqle/dsess"
stypes "github.com/dolthub/dolt/go/store/types"
"github.com/dolthub/go-mysql-server/sql"
)

func createWorkflowEventsTable(ctx *sql.Context) error {
Expand Down
3 changes: 2 additions & 1 deletion go/libraries/doltcore/env/actions/dolt_ci/workflows.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@
package dolt_ci

import (
"github.com/dolthub/go-mysql-server/sql"

"github.com/dolthub/dolt/go/libraries/doltcore/doltdb"
"github.com/dolthub/dolt/go/libraries/doltcore/schema"
"github.com/dolthub/dolt/go/libraries/doltcore/schema/typeinfo"
"github.com/dolthub/dolt/go/libraries/doltcore/sqle/dsess"
stypes "github.com/dolthub/dolt/go/store/types"
"github.com/dolthub/go-mysql-server/sql"
)

func createDoltCIWorkflowsTable(ctx *sql.Context) error {
Expand Down

0 comments on commit 32c44a4

Please sign in to comment.