summaryrefslogtreecommitdiff
path: root/sql/sql_admin.cc
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2015-05-07 22:18:34 +0200
committerSergei Golubchik <serg@mariadb.org>2015-05-07 22:18:34 +0200
commit0014bdc7eef141dcd66930e853242b3be4960831 (patch)
tree6138b45e08fe9cbe817b03e4a8707b4da99075e3 /sql/sql_admin.cc
parent8350ea05141c55c17807e9654c61cad481542480 (diff)
downloadmariadb-git-0014bdc7eef141dcd66930e853242b3be4960831.tar.gz
MDEV-8115 mysql_upgrade crashes the server with REPAIR VIEW
on REPAIR don't do table-specific stuff for views (because even if the view has a temp table opened for it, it's not opened all the way down the engine. In particular, Aria crashes in maria_status() because MARIA_HA* info - that is table->table->file->file - is NULL)
Diffstat (limited to 'sql/sql_admin.cc')
-rw-r--r--sql/sql_admin.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_admin.cc b/sql/sql_admin.cc
index 44057b6220e..9827c67065c 100644
--- a/sql/sql_admin.cc
+++ b/sql/sql_admin.cc
@@ -901,7 +901,7 @@ send_result_message:
break;
}
}
- if (table->table)
+ if (table->table && !table->view)
{
if (table->table->s->tmp_table)
{