summaryrefslogtreecommitdiff
path: root/sql/field.h
diff options
context:
space:
mode:
authorunknown <monty@mashka.mysql.fi>2003-02-04 03:19:19 +0200
committerunknown <monty@mashka.mysql.fi>2003-02-04 03:19:19 +0200
commit5f64e3e8436c56a4e77879db0b47e7f9672fdad8 (patch)
treebd54d0eeb6921908584536dd73e4537bab622943 /sql/field.h
parentb58dd39b9923cfe0bb30cdc3d1c533ea1976c278 (diff)
downloadmariadb-git-5f64e3e8436c56a4e77879db0b47e7f9672fdad8.tar.gz
Added charset number to result header
Docs/internals.texi: Updated protocol information sql/mysql_priv.h: Removed clear_error_message() sql/mysqld.cc: Removed not used function clear_error_message sql/protocol.cc: Simple code cleanup sql/sql_parse.cc: Changed clear_error_message() to thd->clear_error() Simple optimization.
Diffstat (limited to 'sql/field.h')
-rw-r--r--sql/field.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/field.h b/sql/field.h
index f13ef2ee735..04225158270 100644
--- a/sql/field.h
+++ b/sql/field.h
@@ -1056,7 +1056,8 @@ class Send_field {
const char *db_name;
const char *table_name,*org_table_name;
const char *col_name,*org_col_name;
- uint length,flags,decimals;
+ ulong length;
+ uint charsetnr, flags, decimals;
enum_field_types type;
Send_field() {}
};