From aa044ab57a164583f81b39a834847ae16aa9da85 Mon Sep 17 00:00:00 2001 From: "georg@lmy002.wdf.sap.corp" <> Date: Thu, 4 Aug 2005 02:06:21 +0200 Subject: [PATCH] Changed/fixed error message from last commit --- sql/sql_table.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/sql_table.cc b/sql/sql_table.cc index 1437c1d382c..8874a70327e 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -2634,7 +2634,7 @@ bool mysql_create_like_table(THD* thd, TABLE_LIST* table, */ if (mysql_frm_type(src_path) != FRMTYPE_TABLE) { - my_error(ER_WRONG_OBJECT, MYF(0), src_db, src_table, "a table"); + my_error(ER_WRONG_OBJECT, MYF(0), src_db, src_table, "BASE TABLE"); goto err; }