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/field.h | |
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/field.h')
-rw-r--r-- | sql/field.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/field.h b/sql/field.h index 16e1078e178..9604f3fe227 100644 --- a/sql/field.h +++ b/sql/field.h @@ -25,7 +25,6 @@ #pragma interface /* gcc class implementation */ #endif -#define NOT_FIXED_DEC 31 #define DATETIME_DEC 6 const uint32 max_field_size= (uint32) 4294967295U; |