diff options
author | unknown <mats@romeo.(none)> | 2006-09-13 19:25:12 +0200 |
---|---|---|
committer | unknown <mats@romeo.(none)> | 2006-09-13 19:25:12 +0200 |
commit | 3936ce19d20e085cb5317d2fc024ee6818e4bbf4 (patch) | |
tree | a66b9bd59add75c92a1ec41646e6f0d3aa5baeb1 /sql/rpl_utility.cc | |
parent | d4d01d5906d09ac23ae6f46e71377ea2786505fc (diff) | |
download | mariadb-git-3936ce19d20e085cb5317d2fc024ee6818e4bbf4.tar.gz |
WL#3259 (RBR with more columns on slave than master):
Incorporating changes from review.
Fixing one bug that surfaced.
mysql-test/extra/rpl_tests/rpl_row_tabledefs.test:
Adding tests that UPDATE and DELETE does not generate an error.
mysql-test/r/rpl_row_tabledefs_2myisam.result:
Result change.
mysql-test/r/rpl_row_tabledefs_3innodb.result:
Result change.
mysql-test/t/disabled.def:
Enabling rpl_sp_effects (even though it gives a result mismatch currently).
sql/field.cc:
Using constant to denote undefined last null byte.
sql/field.h:
Using constant to denote undefined last null byte.
Adding documentation.
sql/log_event.cc:
Not generating error for non-NULL no-DEFAULT columns when updating or deleting row.
Better documentation and comments.
sql/rpl_utility.cc:
Moving documentation to header file.
sql/rpl_utility.h:
Documenting class and members.
Diffstat (limited to 'sql/rpl_utility.cc')
-rw-r--r-- | sql/rpl_utility.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sql/rpl_utility.cc b/sql/rpl_utility.cc index 5405d022223..c80b6dc3f69 100644 --- a/sql/rpl_utility.cc +++ b/sql/rpl_utility.cc @@ -107,11 +107,6 @@ field_length_from_packed(enum_field_types const field_type, /* Is the definition compatible with a table? - Compare the definition with a table to see if it is compatible with - it. A table definition is compatible with a table if - - the columns types of the table definition is a (not necessarily - proper) prefix of the column type of the table, or - - the other way around */ int table_def::compatible_with(RELAY_LOG_INFO *rli, TABLE *table) |