File tree 4 files changed +5
-6
lines changed
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
9
9
### Fixed
10
10
11
11
- 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.
14
12
- 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.
15
14
16
15
### Added
17
16
18
17
- Added BLAME function.
19
18
- Better error messages for index failures.
20
19
- Implemented subquery expressions.
20
+ - Added support for 24-bit integers (MySQL's MEDIUMINT)
21
21
22
22
### Changed
23
23
Original file line number Diff line number Diff line change 27
27
- ALIAS (AS)
28
28
- CAST/CONVERT
29
29
- CREATE TABLE
30
- - DESCRIBE/DESC/EXPLAIN [ table name]
31
30
- DESCRIBE/DESC/EXPLAIN FORMAT=TREE [ query]
32
31
- DISTINCT
33
32
- FILTER (WHERE)
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ require (
18
18
github.com/src-d/go-borges v0.1.4-0.20191017133700-c26ddd90fcbd
19
19
github.com/src-d/go-git v4.7.0+incompatible
20
20
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
22
22
github.com/stretchr/testify v1.3.0
23
23
github.com/uber-go/atomic v1.4.0 // indirect
24
24
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
251
251
github.com/src-d/go-git v4.7.0+incompatible /go.mod h1:1bQciz+hn0jzPQNsYj0hDFZHLJBdV7gXE2mWhC7EkFk =
252
252
github.com/src-d/go-git-fixtures v3.5.1-0.20190605154830-57f3972b0248+incompatible h1:A5bKevhs9C//Nh8QV0J+1KphEaIa25cDe1DTs/yPxDI =
253
253
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 =
256
256
github.com/src-d/go-oniguruma v1.0.0 /go.mod h1:chVbff8kcVtmrhxtZ3yBVLLquXbzCS6DrxQaAK/CeqM =
257
257
github.com/src-d/go-oniguruma v1.1.0 h1:EG+Nm5n2JqWUaCjtM0NtutPxU7ZN5Tp50GWrrV8bTww =
258
258
github.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