[auto-bump] [no-release-notes] dependency by jennifersp (#3617)

This commit is contained in:
Dustin Brown
2022-06-15 14:27:16 -07:00
committed by GitHub
parent 2afe89b6cf
commit 4ff11aa0ef
4 changed files with 5 additions and 5 deletions

View File

@@ -68,7 +68,7 @@ require (
)
require (
github.com/dolthub/go-mysql-server v0.12.1-0.20220614163722-b1495b4e2e25
github.com/dolthub/go-mysql-server v0.12.1-0.20220614171705-5ff4fec5b827
github.com/google/flatbuffers v2.0.6+incompatible
github.com/gosuri/uilive v0.0.4
github.com/kch42/buzhash v0.0.0-20160816060738-9bdec3dec7c6

View File

@@ -178,8 +178,8 @@ github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZm
github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no=
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-mysql-server v0.12.1-0.20220614163722-b1495b4e2e25 h1:V5a7fvRfxe44gwQp3oxx4sljxd6efpRyLVKpMpO4kew=
github.com/dolthub/go-mysql-server v0.12.1-0.20220614163722-b1495b4e2e25/go.mod h1:gvDEMITJQDVYDLR4XtcqEZx6rawTvMh2veM1bPsJC3I=
github.com/dolthub/go-mysql-server v0.12.1-0.20220614171705-5ff4fec5b827 h1:GO7EbynNlkvpxH7v/44Yzo9V7e9DH7cifMyVAyvzsBQ=
github.com/dolthub/go-mysql-server v0.12.1-0.20220614171705-5ff4fec5b827/go.mod h1:gvDEMITJQDVYDLR4XtcqEZx6rawTvMh2veM1bPsJC3I=
github.com/dolthub/ishell v0.0.0-20220112232610-14e753f0f371 h1:oyPHJlzumKta1vnOQqUnfdz+pk3EmnHS3Nd0cCT0I2g=
github.com/dolthub/ishell v0.0.0-20220112232610-14e753f0f371/go.mod h1:dhGBqcCEfK5kuFmeO5+WOx3hqc1k3M29c1oS/R7N4ms=
github.com/dolthub/jsonpath v0.0.0-20210609232853-d49537a30474 h1:xTrR+l5l+1Lfq0NvhiEsctylXinUMFhhsqaEcl414p8=

View File

@@ -74,7 +74,7 @@ func readLineSlice(buf []byte, srid uint32) (lines []sql.LineString) {
for i := range lines {
lines[i].SRID = srid
lines[i].Points = readPointSlice(buf, srid)
sz := len(lines[i].Points) * PointSize
sz := CountSize + len(lines[i].Points)*PointSize
buf = buf[sz:]
}
return

View File

@@ -91,7 +91,7 @@ func writeLineSlice(buf []byte, lines []sql.LineString) {
buf = buf[CountSize:]
for _, l := range lines {
writePointSlice(buf, l.Points)
sz := len(l.Points) * PointSize
sz := CountSize + len(l.Points)*PointSize
buf = buf[sz:]
}
}