~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/t/rpl_view.test

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
164
164
DROP TABLE t1;
165
165
sync_slave_with_master;
166
166
 
 
167
#
 
168
# Bug#32575 Parse error of stmt with extended comments on slave side
 
169
# Verify that 'CREATE VIEW' with comments is properly logged to binlog
 
170
connection master;
 
171
CREATE TABLE t1 (a INT);
 
172
--echo # create view as output from mysqldump 10.11 (5.0.62)
 
173
/*!50001 CREATE ALGORITHM=UNDEFINED */
 
174
/*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */
 
175
/*!50001 VIEW `v1` AS select `t1`.`a` AS `a` from `t1` where (`t1`.`a` < 3) */
 
176
/*!50002 WITH CASCADED CHECK OPTION */;
 
177
SHOW CREATE VIEW v1;
 
178
sync_slave_with_master;
 
179
SHOW CREATE VIEW v1;
 
180
connection master;
 
181
DROP VIEW v1;
 
182
DROP TABLE t1;
 
183
sync_slave_with_master;
 
184
 
167
185
--echo End of 5.0 tests