mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Bug#19066 (DELETE FROM inconsistency for NDB):
Under row-based replication, DELETE FROM will now always be replicated as individual row deletions, while TRUNCATE TABLE will always be replicated as a statement.
This commit is contained in:
@ -124,9 +124,9 @@ delete from t1;
|
||||
delete from t2;
|
||||
delete from t1;
|
||||
insert into t2 values(1),(2);
|
||||
create view v1 as select f1(a) from t2;
|
||||
select * from v1;
|
||||
f1(a)
|
||||
create view v1 as select f1(a) as f from t2;
|
||||
select * from v1 order by f;
|
||||
f
|
||||
2
|
||||
3
|
||||
SELECT 'master:',a FROM t1 ORDER BY a;
|
||||
|
Reference in New Issue
Block a user