diff options
author | unknown <serg@serg.mylan> | 2004-07-30 22:15:52 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-07-30 22:15:52 +0200 |
commit | 93f773aa479dfe69e6ba0b9829fc5916ebecd974 (patch) | |
tree | 017f0a49114653d99cca2426b881f4a2b822c07d /libmysqld | |
parent | 95da1ff0fcc75b5cacdfebb529611ebf62aeb08f (diff) | |
download | mariadb-git-93f773aa479dfe69e6ba0b9829fc5916ebecd974.tar.gz |
bug#4817 catalog name is "def"
Diffstat (limited to 'libmysqld')
-rw-r--r-- | libmysqld/lib_sql.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmysqld/lib_sql.cc b/libmysqld/lib_sql.cc index 0adf9aeb86a..f1404d12654 100644 --- a/libmysqld/lib_sql.cc +++ b/libmysqld/lib_sql.cc @@ -609,9 +609,9 @@ bool Protocol::send_fields(List<Item> *list, uint flag) client_field->org_table_length= strlen(client_field->org_table); client_field->charsetnr= server_field.charsetnr; - client_field->catalog= strdup_root(field_alloc, "std"); + client_field->catalog= strdup_root(field_alloc, "def"); client_field->catalog_length= 3; - + if (INTERNAL_NUM_FIELD(client_field)) client_field->flags|= NUM_FLAG; |