mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-22 11:54:54 +00:00
Add lib/, t/lib/, and sandbox/. All modules are updated and passing on MySQL 5.1.
This commit is contained in:
9
t/lib/samples/issue_47.sql
Normal file
9
t/lib/samples/issue_47.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
USE test;
|
||||
DROP TABLE IF EXISTS `issue_47`;
|
||||
CREATE TABLE `issue_47` (
|
||||
userid BIGINT UNSIGNED NOT NULL,
|
||||
INDEX idx (userid)
|
||||
);
|
||||
|
||||
INSERT INTO issue_47 VALUES (1000), (1), (300), (2220293), (65553510),
|
||||
(9223372036854775807), (20), (55555), (18446744073709551615);
|
Reference in New Issue
Block a user