summaryrefslogtreecommitdiff
path: root/include/mysql_com.h
diff options
context:
space:
mode:
authorMagne Mahre <magne.mahre@sun.com>2009-11-11 21:19:41 +0100
committerMagne Mahre <magne.mahre@sun.com>2009-11-11 21:19:41 +0100
commitd88b0008aef1c03c7cf5799970533a5f26d722fb (patch)
tree0ed4dcde53a4fde2d779524fa20ba363af8846c5 /include/mysql_com.h
parentb2d7daeb6d1d7adde3576af1b654aaa450c99a42 (diff)
parente8fd6cd4a11bf33da8b0bf534be1a0ed5195f1f9 (diff)
downloadmariadb-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 'include/mysql_com.h')
-rw-r--r--include/mysql_com.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mysql_com.h b/include/mysql_com.h
index 345ecd5dd93..93b9ccebda2 100644
--- a/include/mysql_com.h
+++ b/include/mysql_com.h
@@ -524,4 +524,5 @@ uchar *net_store_length(uchar *pkg, ulonglong length);
#define MYSQL_STMT_HEADER 4
#define MYSQL_LONG_DATA_HEADER 6
+#define NOT_FIXED_DEC 31
#endif