diff options
author | Sergei Golubchik <sergii@pisem.net> | 2010-04-30 12:12:25 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2010-04-30 12:12:25 +0200 |
commit | b58cb7c4a283ea9775d55d1d133cec9359f86dfa (patch) | |
tree | 827ea696aaa7371484cd736871aa13784120e200 /storage/example | |
parent | da138f02db35f91c043c45664bbc77cf1f8a29d2 (diff) | |
download | mariadb-git-b58cb7c4a283ea9775d55d1d133cec9359f86dfa.tar.gz |
small changes to WL#43:
consistency: don't use "index" and "key" interchangeably
=> rename "key" to "index"
consistency: all option types are logical, besides ULL
=> rename ULL to NUMBER
don't accept floats where integers are expected
accept hexadecimal where integers are expected
Diffstat (limited to 'storage/example')
-rw-r--r-- | storage/example/ha_example.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/example/ha_example.cc b/storage/example/ha_example.cc index d932fe60131..98ab6c6be31 100644 --- a/storage/example/ha_example.cc +++ b/storage/example/ha_example.cc @@ -151,7 +151,7 @@ ha_create_table_option example_table_option_list[]= range of values 0..UINT_MAX32, and a "block size" of 10 (any value must be divisible by 10). */ - HA_TOPTION_ULL("ULL", ullparam, UINT_MAX32, 0, UINT_MAX32, 10), + HA_TOPTION_NUMBER("ULL", ullparam, UINT_MAX32, 0, UINT_MAX32, 10), /* one option that takes an arbitrary string */ |