diff options
author | monty@mysql.com <> | 2005-11-03 22:42:25 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2005-11-03 22:42:25 +0200 |
commit | 90ca9150a4f7161d97ba9132a092b0b1ec33dda7 (patch) | |
tree | 736f3d9834f9c3cd41d1cf5e5ccfecfdc2fc929d /sql/ha_berkeley.h | |
parent | a6ada95d1e9c24e6b68230620aa13530634fabca (diff) | |
download | mariadb-git-90ca9150a4f7161d97ba9132a092b0b1ec33dda7.tar.gz |
Fixes during review of new code
Destroy LOCK_uuid_generator
Diffstat (limited to 'sql/ha_berkeley.h')
-rw-r--r-- | sql/ha_berkeley.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/ha_berkeley.h b/sql/ha_berkeley.h index 99e13286554..16e4db59c10 100644 --- a/sql/ha_berkeley.h +++ b/sql/ha_berkeley.h @@ -94,8 +94,8 @@ class ha_berkeley: public handler uint max_supported_keys() const { return MAX_KEY-1; } uint extra_rec_buf_length() { return BDB_HIDDEN_PRIMARY_KEY_LENGTH; } ha_rows estimate_rows_upper_bound(); - uint max_supported_key_length() const { return 4294967295L; } - uint max_supported_key_part_length() const { return 4294967295L; } + uint max_supported_key_length() const { return UINT_MAX32; } + uint max_supported_key_part_length() const { return UINT_MAX32; } const key_map *keys_to_use_for_scanning() { return &key_map_full; } bool has_transactions() { return 1;} |