File tree Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -9,15 +9,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99### Fixed
1010
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 ) )
12- - Removed redundant commit information from BLAME results.
13- - Don't abort, just warn, on git.Blame errors.
1412- Avoid possible panics in LOC by using a safe cache accessor.
13+ - sql: Add length to VARCHAR and CHAR MySQLTypeName strings in ` SHOW CREATE TABLE ` output.
1514
1615### Added
1716
1817- Added BLAME function.
1918- Better error messages for index failures.
2019- Implemented subquery expressions.
20+ - Added support for 24-bit integers (MySQL's MEDIUMINT)
2121
2222### Changed
2323
Original file line number Diff line number Diff line change 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)
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -251,8 +251,8 @@ github.com/src-d/go-git v4.7.0+incompatible h1:IYSSnbAHeKmsfbQFi9ozbid+KNh0bKjlo
251251github.com/src-d/go-git v4.7.0+incompatible /go.mod h1:1bQciz+hn0jzPQNsYj0hDFZHLJBdV7gXE2mWhC7EkFk =
252252github.com/src-d/go-git-fixtures v3.5.1-0.20190605154830-57f3972b0248+incompatible h1:A5bKevhs9C//Nh8QV0J+1KphEaIa25cDe1DTs/yPxDI =
253253github.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 =
256256github.com/src-d/go-oniguruma v1.0.0 /go.mod h1:chVbff8kcVtmrhxtZ3yBVLLquXbzCS6DrxQaAK/CeqM =
257257github.com/src-d/go-oniguruma v1.1.0 h1:EG+Nm5n2JqWUaCjtM0NtutPxU7ZN5Tp50GWrrV8bTww =
258258github.com/src-d/go-oniguruma v1.1.0 /go.mod h1:chVbff8kcVtmrhxtZ3yBVLLquXbzCS6DrxQaAK/CeqM =
You can’t perform that action at this time.
0 commit comments