diff options
author | monty@tik.mysql.fi <> | 2002-04-12 21:35:46 +0300 |
---|---|---|
committer | monty@tik.mysql.fi <> | 2002-04-12 21:35:46 +0300 |
commit | 056175a1ceb182828fb0fb7e40feac10f09ff3a0 (patch) | |
tree | 0060cbed8a1f7a8adaca0a4dc2e74b3372e28361 /mysql-test | |
parent | e857f561fd2fc2e544cba9508884c539ee789b05 (diff) | |
download | mariadb-git-056175a1ceb182828fb0fb7e40feac10f09ff3a0.tar.gz |
Update for BTREE keys in HEAP tables
Split handler->option_flag() to handler->table_flags() and handler->index_flags()
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/func_misc.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/func_misc.result b/mysql-test/r/func_misc.result index 575f5e5429a..4eed80c4cc9 100644 --- a/mysql-test/r/func_misc.result +++ b/mysql-test/r/func_misc.result @@ -3,10 +3,10 @@ format(1.5555,0) format(123.5555,1) format(1234.5555,2) format(12345.5555,3) for 2 123.6 1,234.56 12,345.556 123,456.5555 1,234,567.55550 12,345.24 select inet_ntoa(inet_aton("255.255.255.255.255.255.255.255")); inet_ntoa(inet_aton("255.255.255.255.255.255.255.255")) -255.255.255.255.255.255.255.255 +NULL select inet_aton("255.255.255.255.255"),inet_aton("255.255.1.255"),inet_aton("0.1.255"); inet_aton("255.255.255.255.255") inet_aton("255.255.1.255") inet_aton("0.1.255") 1099511627775 4294902271 511 select inet_ntoa(1099511627775),inet_ntoa(4294902271),inet_ntoa(511); inet_ntoa(1099511627775) inet_ntoa(4294902271) inet_ntoa(511) -255.255.255.255.255 255.255.1.255 0.0.1.255 +NULL 255.255.1.255 0.0.1.255 |