diff options
author | unknown <serg@serg.mylan> | 2003-11-16 17:37:15 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2003-11-16 17:37:15 +0100 |
commit | 069ec78c803516363e91c550624032d1b622dec9 (patch) | |
tree | e02479a2eb71487fb7bacd2034a094a3da3ee61b /mysql-test/r/bigint.result | |
parent | a35ba0ea0ce87b54c65d451a50d7821ac0f92d4a (diff) | |
download | mariadb-git-069ec78c803516363e91c550624032d1b622dec9.tar.gz |
Item_uint::save_in_field() added to take into account bigint->decimal case
BitKeeper/etc/ignore:
Added sql/udf_example.so to the ignore list
Diffstat (limited to 'mysql-test/r/bigint.result')
-rw-r--r-- | mysql-test/r/bigint.result | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/bigint.result b/mysql-test/r/bigint.result index d7d811dc5f3..2b595c2b83d 100644 --- a/mysql-test/r/bigint.result +++ b/mysql-test/r/bigint.result @@ -67,3 +67,11 @@ select * from t1 limit 9999999999; id a 9999999999 1 drop table t1; +CREATE TABLE t1 ( quantity decimal(60,0)); +insert into t1 values (10000000000000000000); +insert into t1 values ('10000000000000000000'); +select * from t1; +quantity +10000000000000000000 +10000000000000000000 +drop table t1; |