Permalink
Please sign in to comment.
Browse files
Merge pull request #355 from github/unsigned-int
localtests and fix for unsigned medium int problem
- Loading branch information...
Showing
with
49 additions
and 5 deletions.
- +1 −1 RELEASE_VERSION
- +6 −1 go/logic/inspect.go
- +2 −2 go/sql/builder.go
- +12 −1 go/sql/types.go
- +28 −0 localtests/unsigned-modify/create.sql
| @@ -1 +1 @@ | ||
| -1.0.34 | ||
| +1.0.35 |
| @@ -0,0 +1,28 @@ | ||
| +drop table if exists gh_ost_test; | ||
| +create table gh_ost_test ( | ||
| + id bigint(20) NOT NULL AUTO_INCREMENT, | ||
| + column1 int(11) NOT NULL, | ||
| + column2 smallint(5) unsigned NOT NULL, | ||
| + column3 mediumint(8) unsigned NOT NULL, | ||
| + column4 tinyint(3) unsigned NOT NULL, | ||
| + column5 int(11) NOT NULL, | ||
| + column6 int(11) NOT NULL, | ||
| + PRIMARY KEY (id), | ||
| + KEY c12_ix (column1, column2) | ||
| +) auto_increment=1; | ||
| + | ||
| +drop event if exists gh_ost_test; | ||
| +delimiter ;; | ||
| +create event gh_ost_test | ||
| + on schedule every 1 second | ||
| + starts current_timestamp | ||
| + ends current_timestamp + interval 60 second | ||
| + on completion not preserve | ||
| + enable | ||
| + do | ||
| +begin | ||
| + -- mediumint maxvalue: 16777215 (unsigned), 8388607 (signed) | ||
| + insert into gh_ost_test values (NULL, 13382498, 536, 8388607, 3, 1483892217, 1483892218); | ||
| + insert into gh_ost_test values (NULL, 13382498, 536, 8388607, 250, 1483892217, 1483892218); | ||
| + insert into gh_ost_test values (NULL, 13382498, 536, 10000000, 3, 1483892217, 1483892218); | ||
| +end ;; |
0 comments on commit
5af7026