diff options
author | Igor Babaev <igor@askmonty.org> | 2011-06-15 21:48:38 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2011-06-15 21:48:38 -0700 |
commit | 078b59f5bcb2f4f5d45451a40b798cc92913f7fb (patch) | |
tree | 3e1874756e544c0c0c4852ac5a6b3d5fe60b26bd /sql/handler.cc | |
parent | a9d73e093aa68351fd6776a892012deffa27fb7d (diff) | |
parent | ab411f8f1c2e84082623c038eb024c15c58745b5 (diff) | |
download | mariadb-git-078b59f5bcb2f4f5d45451a40b798cc92913f7fb.tar.gz |
Merge of mwl #106 into 5.3.
Diffstat (limited to 'sql/handler.cc')
-rw-r--r-- | sql/handler.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sql/handler.cc b/sql/handler.cc index c49b6bfc290..318e2e116e2 100644 --- a/sql/handler.cc +++ b/sql/handler.cc @@ -2609,8 +2609,9 @@ int handler::update_auto_increment() void handler::column_bitmaps_signal() { DBUG_ENTER("column_bitmaps_signal"); - DBUG_PRINT("info", ("read_set: 0x%lx write_set: 0x%lx", (long) table->read_set, - (long) table->write_set)); + if (table) + DBUG_PRINT("info", ("read_set: 0x%lx write_set: 0x%lx", + (long) table->read_set, (long) table->write_set)); DBUG_VOID_RETURN; } |