diff options
author | unknown <holyfoot/hf@mysql.com/hfmain.(none)> | 2007-05-11 18:13:06 +0500 |
---|---|---|
committer | unknown <holyfoot/hf@mysql.com/hfmain.(none)> | 2007-05-11 18:13:06 +0500 |
commit | 78ed69c339965238c9047d0e41db6996c5a27d01 (patch) | |
tree | b8c54abe0649f45196d32077f74dd9ff1d2ad872 /sql/my_decimal.h | |
parent | 563b1297bbeef6f162513be314676d0d2c39b4a9 (diff) | |
parent | a6da564a1d15925780f45d4bef439d4ae548f70d (diff) | |
download | mariadb-git-78ed69c339965238c9047d0e41db6996c5a27d01.tar.gz |
Merge mysql.com:/home/hf/work/27921/my50-27921
into mysql.com:/home/hf/work/27957/my50-27957
mysql-test/r/cast.result:
Auto merged
sql/item_func.cc:
Auto merged
sql/item_func.h:
Auto merged
sql/my_decimal.h:
merging
Diffstat (limited to 'sql/my_decimal.h')
-rw-r--r-- | sql/my_decimal.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/my_decimal.h b/sql/my_decimal.h index 731a3bd505c..b19d6e40cb4 100644 --- a/sql/my_decimal.h +++ b/sql/my_decimal.h @@ -395,5 +395,16 @@ int my_decimal_intg(const my_decimal *a) } +void my_decimal_trim(ulong *precision, uint *scale) +{ + if (!(*precision) && !(*scale)) + { + *precision= 10; + *scale= 0; + return; + } +} + + #endif /*my_decimal_h*/ |