1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Post-merge fixes for bugs 34587 and 32265.

mysql-test/r/view.result:
  Drop created view.
mysql-test/t/view.test:
  Update test result.
sql/sql_cursor.cc:
  Fix compilation failure.
tests/mysql_client_test.c:
  Manual merge.
This commit is contained in:
unknown
2008-02-20 23:30:29 -02:00
parent 96b4648b01
commit 88421ee503
4 changed files with 4 additions and 3 deletions

View File

@ -3729,6 +3729,7 @@ create view a as select 1;
end|
call p();
call p();
drop view a;
drop procedure p;
# -----------------------------------------------------------------
# -- Bug#34337: Server crash when Altering a view using a table name.