diff options
author | serg@serg.mylan <> | 2004-07-30 22:15:52 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2004-07-30 22:15:52 +0200 |
commit | 4665cec001f09c621c31b1970173cc90f69b92de (patch) | |
tree | 017f0a49114653d99cca2426b881f4a2b822c07d /libmysqld/lib_sql.cc | |
parent | 2852862c68b29e418795b4ea0a8b1293f5919b3e (diff) | |
download | mariadb-git-4665cec001f09c621c31b1970173cc90f69b92de.tar.gz |
bug#4817 catalog name is "def"
Diffstat (limited to 'libmysqld/lib_sql.cc')
-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; |