Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[auto-bump] [no-release-notes] dependency by jycor #7556

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ require (
github.com/cespare/xxhash v1.1.0
github.com/creasty/defaults v1.6.0
github.com/dolthub/flatbuffers/v23 v23.3.3-dh.2
github.com/dolthub/go-mysql-server v0.18.1-0.20240229000135-9b7e161e5e39
github.com/dolthub/go-mysql-server v0.18.1-0.20240229220937-c565850be6a6
github.com/dolthub/swiss v0.1.0
github.com/goccy/go-json v0.10.2
github.com/google/go-github/v57 v57.0.0
Expand Down
4 changes: 2 additions & 2 deletions go/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ github.com/dolthub/fslock v0.0.3 h1:iLMpUIvJKMKm92+N1fmHVdxJP5NdyDK5bK7z7Ba2s2U=
github.com/dolthub/fslock v0.0.3/go.mod h1:QWql+P17oAAMLnL4HGB5tiovtDuAjdDTPbuqx7bYfa0=
github.com/dolthub/go-icu-regex v0.0.0-20230524105445-af7e7991c97e h1:kPsT4a47cw1+y/N5SSCkma7FhAPw7KeGmD6c9PBZW9Y=
github.com/dolthub/go-icu-regex v0.0.0-20230524105445-af7e7991c97e/go.mod h1:KPUcpx070QOfJK1gNe0zx4pA5sicIK1GMikIGLKC168=
github.com/dolthub/go-mysql-server v0.18.1-0.20240229000135-9b7e161e5e39 h1:E9LULHPCISHhkGWB8LoAn4ijsRhInhFuAj7xDPJHmOk=
github.com/dolthub/go-mysql-server v0.18.1-0.20240229000135-9b7e161e5e39/go.mod h1:rxnSephcqvHn08VDssRA6iVK02a1q1pRBmTm1WqDbOQ=
github.com/dolthub/go-mysql-server v0.18.1-0.20240229220937-c565850be6a6 h1:3osR1XX8aR5vcLOeQgPt0qsFpjj9MRje7TfboLV8a1w=
github.com/dolthub/go-mysql-server v0.18.1-0.20240229220937-c565850be6a6/go.mod h1:rxnSephcqvHn08VDssRA6iVK02a1q1pRBmTm1WqDbOQ=
github.com/dolthub/ishell v0.0.0-20221214210346-d7db0b066488 h1:0HHu0GWJH0N6a6keStrHhUAK5/o9LVfkh44pvsV4514=
github.com/dolthub/ishell v0.0.0-20221214210346-d7db0b066488/go.mod h1:ehexgi1mPxRTk0Mok/pADALuHbvATulTh6gzr7NzZto=
github.com/dolthub/jsonpath v0.0.2-0.20240227200619-19675ab05c71 h1:bMGS25NWAGTEtT5tOBsCuCrlYnLRKpbJVJkDbrTRhwQ=
Expand Down
8 changes: 4 additions & 4 deletions go/libraries/doltcore/schema/encoding/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -260,10 +260,10 @@ var integrationTests = []struct {
"`v31` varchar(255) DEFAULT NULL," +
"`v32` varbinary(255) DEFAULT NULL," +
"`v33` year DEFAULT NULL," +
"`v34` datetime(6) DEFAULT current_timestamp," +
"`v35` timestamp(6) DEFAULT now()," +
"`v36` datetime(3) DEFAULT current_timestamp," +
"`v37` timestamp(3) DEFAULT now()," +
"`v34` datetime(6) DEFAULT current_timestamp(6)," +
"`v35` timestamp(6) DEFAULT now(6)," +
"`v36` datetime(3) DEFAULT current_timestamp(3)," +
"`v37` timestamp(3) DEFAULT now(3)," +
"PRIMARY KEY (`pk`)" +
") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin;",
},
Expand Down
Loading