Skip to content

Commit 927d980

Browse files
committed
Update go-mysql-server dependency
Signed-off-by: Antonio Navarro Perez <[email protected]>
1 parent 234979f commit 927d980

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
- Only optimize sorted DISTINCT if the first column on the order by is on the distinct schema. ([#976](https://github.com/src-d/gitbase/issues/976))
1212
- Removed redundant commit information from BLAME results.
1313
- Don't abort, just warn, on git.Blame errors.
14+
<<<<<<< HEAD
1415
- Avoid possible panics in LOC by using a safe cache accessor.
16+
=======
17+
- sql: Add length to VARCHAR MySQLTypeName string
18+
>>>>>>> Update go-mysql-server dependency
1519
1620
### Added
1721

1822
- Added BLAME function.
1923
- Better error messages for index failures.
2024
- Implemented subquery expressions.
25+
- Added support for 24-bit integers (MySQL's MEDIUMINT)
2126

2227
### Changed
2328

docs/using-gitbase/supported-syntax.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
- ALIAS (AS)
2828
- CAST/CONVERT
2929
- CREATE TABLE
30-
- DESCRIBE/DESC/EXPLAIN [table name]
3130
- DESCRIBE/DESC/EXPLAIN FORMAT=TREE [query]
3231
- DISTINCT
3332
- FILTER (WHERE)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ require (
1818
github.com/src-d/go-borges v0.1.4-0.20191017133700-c26ddd90fcbd
1919
github.com/src-d/go-git v4.7.0+incompatible
2020
github.com/src-d/go-git-fixtures v3.5.1-0.20190605154830-57f3972b0248+incompatible
21-
github.com/src-d/go-mysql-server v0.6.1-0.20191016135058-b8d91559c9a9
21+
github.com/src-d/go-mysql-server v0.6.1-0.20191022072045-6f000e20fb41
2222
github.com/stretchr/testify v1.3.0
2323
github.com/uber-go/atomic v1.4.0 // indirect
2424
github.com/uber/jaeger-client-go v2.16.0+incompatible

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,8 +251,8 @@ github.com/src-d/go-git v4.7.0+incompatible h1:IYSSnbAHeKmsfbQFi9ozbid+KNh0bKjlo
251251
github.com/src-d/go-git v4.7.0+incompatible/go.mod h1:1bQciz+hn0jzPQNsYj0hDFZHLJBdV7gXE2mWhC7EkFk=
252252
github.com/src-d/go-git-fixtures v3.5.1-0.20190605154830-57f3972b0248+incompatible h1:A5bKevhs9C//Nh8QV0J+1KphEaIa25cDe1DTs/yPxDI=
253253
github.com/src-d/go-git-fixtures v3.5.1-0.20190605154830-57f3972b0248+incompatible/go.mod h1:XcIQp7L+k0pgfTqfbaTKj3kxlBv8kYOKZ/tKNXbZFLg=
254-
github.com/src-d/go-mysql-server v0.6.1-0.20191016135058-b8d91559c9a9 h1:g2gm/Yk+p5yljdqQLAn/thqBtuV5t47GGuVvdKnmmkk=
255-
github.com/src-d/go-mysql-server v0.6.1-0.20191016135058-b8d91559c9a9/go.mod h1:DdWE0ku/mNfuLsRJIrHeHpDtB7am+6oopxEsQKmVkx8=
254+
github.com/src-d/go-mysql-server v0.6.1-0.20191022072045-6f000e20fb41 h1:RYuaZLn2FizXyJt7oBcpVcjJwH1p0z9K4sKI6ECUel0=
255+
github.com/src-d/go-mysql-server v0.6.1-0.20191022072045-6f000e20fb41/go.mod h1:DdWE0ku/mNfuLsRJIrHeHpDtB7am+6oopxEsQKmVkx8=
256256
github.com/src-d/go-oniguruma v1.0.0/go.mod h1:chVbff8kcVtmrhxtZ3yBVLLquXbzCS6DrxQaAK/CeqM=
257257
github.com/src-d/go-oniguruma v1.1.0 h1:EG+Nm5n2JqWUaCjtM0NtutPxU7ZN5Tp50GWrrV8bTww=
258258
github.com/src-d/go-oniguruma v1.1.0/go.mod h1:chVbff8kcVtmrhxtZ3yBVLLquXbzCS6DrxQaAK/CeqM=

0 commit comments

Comments
 (0)