Skip to content

Commit

Permalink
Merge branch 'james/lazy' of https://github.com/dolthub/go-mysql-server
Browse files Browse the repository at this point in the history
… into james/lazy
  • Loading branch information
James Cor committed Dec 26, 2024
2 parents 5a79bc7 + b5c1e81 commit 486f6d5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion enginetest/engine_only_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import (
"context"
sql2 "database/sql"
"fmt"
"github.com/dolthub/go-mysql-server/sql/variables"
"io"
"net"
"runtime"
Expand Down Expand Up @@ -47,6 +46,7 @@ import (
"github.com/dolthub/go-mysql-server/sql/planbuilder"
"github.com/dolthub/go-mysql-server/sql/rowexec"
"github.com/dolthub/go-mysql-server/sql/types"
"github.com/dolthub/go-mysql-server/sql/variables"
)

// This file is for tests of the engine that we are very sure do not rely on a particular database implementation. They
Expand Down
2 changes: 1 addition & 1 deletion server/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import (
"context"
"encoding/base64"
"fmt"
"github.com/dolthub/go-mysql-server/sql/expression"
"io"
"net"
"regexp"
Expand All @@ -41,6 +40,7 @@ import (
"github.com/dolthub/go-mysql-server/internal/sockstate"
"github.com/dolthub/go-mysql-server/sql"
"github.com/dolthub/go-mysql-server/sql/analyzer"
"github.com/dolthub/go-mysql-server/sql/expression"
"github.com/dolthub/go-mysql-server/sql/iters"
"github.com/dolthub/go-mysql-server/sql/plan"
"github.com/dolthub/go-mysql-server/sql/rowexec"
Expand Down
2 changes: 1 addition & 1 deletion sql/types/time.go
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ func appendDigit(v int64, extend int, buf []byte, i int) int {
cmp *= 10
}

for cmp > 0 && v < cmp{
for cmp > 0 && v < cmp {

buf[i] = '0'
i++
Expand Down

0 comments on commit 486f6d5

Please sign in to comment.