diff options
author | monty@mysql.com <> | 2006-06-23 02:49:19 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2006-06-23 02:49:19 +0300 |
commit | 4697deb43629d9ae9f087d84cb4bb933a96f7eb1 (patch) | |
tree | 58ab5561c26c742cf51ff01378a1d269f85b5637 /sql/handler.cc | |
parent | 649157954b79513263ecfa05ec57fce9999a0b7b (diff) | |
download | mariadb-git-4697deb43629d9ae9f087d84cb4bb933a96f7eb1.tar.gz |
Remove compiler warnings
Fixed wrong table flags type in ndbcluster that caused previous commit to fail
Diffstat (limited to 'sql/handler.cc')
-rw-r--r-- | sql/handler.cc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sql/handler.cc b/sql/handler.cc index a160315dbe9..3331e014001 100644 --- a/sql/handler.cc +++ b/sql/handler.cc @@ -3326,16 +3326,18 @@ namespace if (likely(!(error= bitmap_init(&cols, use_bitbuf ? bitbuf : NULL, (n_fields + 7) & ~7UL, - false)))) + FALSE)))) { bitmap_set_all(&cols); if (likely(!(error= write_locked_table_maps(thd)))) { error= RowsEventT::binlog_row_logging_function(thd, table, - table->file->has_transactions(), + table->file-> + has_transactions(), &cols, table->s->fields, - before_record, after_record); + before_record, + after_record); } if (!use_bitbuf) bitmap_free(&cols); |