diff options
author | Magne Mahre <magne.mahre@sun.com> | 2009-11-11 21:19:41 +0100 |
---|---|---|
committer | Magne Mahre <magne.mahre@sun.com> | 2009-11-11 21:19:41 +0100 |
commit | d88b0008aef1c03c7cf5799970533a5f26d722fb (patch) | |
tree | 0ed4dcde53a4fde2d779524fa20ba363af8846c5 /sql/sql_string.cc | |
parent | b2d7daeb6d1d7adde3576af1b654aaa450c99a42 (diff) | |
parent | e8fd6cd4a11bf33da8b0bf534be1a0ed5195f1f9 (diff) | |
download | mariadb-git-d88b0008aef1c03c7cf5799970533a5f26d722fb.tar.gz |
Bug #33544 UDF_INIT member decimals initialized wrong with
STRING_RESULT argument
There is a "magic" number for precision : NOT_FIXED_DEC.
This means that the precision is not a fixed number.
But this constant was re-defined in several files and
was not available to the UDF developers.
Moved the NOT_FIXED_DEC definition to the correct header
and removed the redundant definitions.
Backported to 5.6.0 (mysql-next-mr-runtime)
Diffstat (limited to 'sql/sql_string.cc')
-rw-r--r-- | sql/sql_string.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/sql_string.cc b/sql/sql_string.cc index 491e51e8a92..a0ea75a0b0a 100644 --- a/sql/sql_string.cc +++ b/sql/sql_string.cc @@ -23,6 +23,7 @@ #include <my_sys.h> #include <m_string.h> #include <m_ctype.h> +#include <mysql_com.h> #ifdef HAVE_FCONVERT #include <floatingpoint.h> #endif |