Bug #4838 | DDL statements for views are not written to the binary log | ||
---|---|---|---|
Submitted: | 31 Jul 2004 16:12 | Modified: | 25 Feb 2005 18:56 |
Reporter: | Georg Richter | Email Updates: | |
Status: | Closed | Impact on me: | |
Category: | MySQL Server: Replication | Severity: | S3 (Non-critical) |
Version: | 5.0.1 | OS: | Linux (Linux) |
Assigned to: | Oleksandr Byelkin | CPU Architecture: | Any |
[31 Jul 2004 16:12]
Georg Richter
[31 Jul 2004 16:53]
Guilhem Bichot
Hello Sanja, this is yours. In my humble opinion, it's critical that basic operations on views work with replication in 5.0.1, otherwise some users simply won't be able to start using them. I attach here a test which I have prepared and which you could extend and then include in our testsuite in 5.0; I called it rpl_view.test: # Very basic test for replication of views source include/master-slave.inc; create table t1 (a int); insert into t1 values (1); create view v1 as select a from t1; insert into v1 values (2); select * from v1 order by a; sync_slave_with_master; select * from v1 order by a; connection master; update v1 set a=3 where a=1; select * from v1 order by a; sync_slave_with_master; select * from v1 order by a; connection master; delete from v1 where a=2; select * from v1 order by a; sync_slave_with_master; select * from v1 order by a; connection master; drop view v1; sync_slave_with_master; select * from v1 order by a; # TODO: add a test for ALTER VIEW if it exists, and any other statements Sanja can think of :) # cleanup connection master; drop table t1; sync_slave_with_master;
[16 Jan 2005 23:20]
Oleksandr Byelkin
ChangeSet 1.1786 05/01/17 01:18:08 bell@sanja.is.com.ua +4 -0 added replication of VIEW DDL commands (BUG#4838)
[24 Feb 2005 2:15]
Oleksandr Byelkin
Thank you for bugreport! Bugfix is pushed into 5.0.3 source repository.
[25 Feb 2005 18:56]
Paul DuBois
Noted in 5.0.3 changelog.