1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

posmerge fixes

mysql-test/r/view.result:
  erorr reported
sql/item.cc:
  removed starnge code
sql/mysql_priv.h:
  now error represented by Bool value
sql/sql_parse.cc:
  removed old send_error calls
sql/sql_select.cc:
  removed starnge code
sql/sql_show.cc:
  show functions fixed
sql/table.h:
  now error represented by Bool value
This commit is contained in:
unknown
2004-11-13 23:26:15 +02:00
parent ac0cd2d3ac
commit d18a91a90c
7 changed files with 64 additions and 59 deletions

View File

@ -250,7 +250,7 @@ typedef struct st_schema_table
/* Handle fileds for old SHOW */
int (*old_format) (THD *thd, struct st_schema_table *schema_table);
int (*process_table) (THD *thd, struct st_table_list *tables,
TABLE *table, int res, const char *base_name,
TABLE *table, bool res, const char *base_name,
const char *file_name);
int idx_field1, idx_field2;
} ST_SCHEMA_TABLE;