fixed integer random values

This commit is contained in:
Shlomi Noach 2016-09-27 12:56:37 +02:00
parent 253e0a1406
commit 109ddb0452
1 changed files with 1 additions and 1 deletions

View File

@ -18,5 +18,5 @@ create event gh_ost_test
begin
insert into gh_ost_test values (null, 11, 23);
insert into gh_ost_test values (null, 13, 23);
insert into gh_ost_test values (null, rand(), rand());
insert into gh_ost_test values (null, floor(rand()*pow(2,32)), floor(rand()*pow(2,32)));
end ;;