diff options
author | Timothy Smith <timothy.smith@sun.com> | 2009-03-11 18:16:53 -0600 |
---|---|---|
committer | Timothy Smith <timothy.smith@sun.com> | 2009-03-11 18:16:53 -0600 |
commit | 4e42869a0a1639bcc1d55fb5b4d9e0adb64645de (patch) | |
tree | 41547d3fc89ee7bf8df44441cf40fd80bd88a4a1 | |
parent | ff8b3d81bf6fda2e2f2a864a73a15eb0d27a538c (diff) | |
download | mariadb-git-4e42869a0a1639bcc1d55fb5b4d9e0adb64645de.tar.gz |
Applying InnoDB snashot 5.1-ss4350, part 3. No functional changes.
Detailed revision comments:
r4165 | calvin | 2009-02-12 01:34:27 +0200 (Thu, 12 Feb 2009) | 1 line
branches/5.1: minor non-functional changes.
-rw-r--r-- | storage/innobase/handler/ha_innodb.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/storage/innobase/handler/ha_innodb.cc b/storage/innobase/handler/ha_innodb.cc index 22e69852dc2..5c4e111b67d 100644 --- a/storage/innobase/handler/ha_innodb.cc +++ b/storage/innobase/handler/ha_innodb.cc @@ -3312,8 +3312,8 @@ build_template( goto include_field; } - if (bitmap_is_set(table->read_set, i) || - bitmap_is_set(table->write_set, i)) { + if (bitmap_is_set(table->read_set, i) || + bitmap_is_set(table->write_set, i)) { /* This field is needed in the query */ goto include_field; @@ -3416,7 +3416,7 @@ ha_innobase::innobase_get_int_col_max_value( switch(field->key_type()) { /* TINY */ - case HA_KEYTYPE_BINARY: + case HA_KEYTYPE_BINARY: max_value = 0xFFULL; break; case HA_KEYTYPE_INT8: @@ -3430,7 +3430,7 @@ ha_innobase::innobase_get_int_col_max_value( max_value = 0x7FFFULL; break; /* MEDIUM */ - case HA_KEYTYPE_UINT24: + case HA_KEYTYPE_UINT24: max_value = 0xFFFFFFULL; break; case HA_KEYTYPE_INT24: |