mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Added bitfield support and a test for it.
Archive uses native row format, so honestly this is just the change in a flag. sql/ha_archive.h: Added bit field support (and dropped the ha_not_exact_count since we always have this). mysql-test/r/archive_bitfield.result: New BitKeeper file ``mysql-test/r/archive_bitfield.result'' mysql-test/t/archive_bitfield.test: New BitKeeper file ``mysql-test/t/archive_bitfield.test''
This commit is contained in:
@ -72,7 +72,7 @@ public:
|
||||
const char **bas_ext() const;
|
||||
ulong table_flags() const
|
||||
{
|
||||
return (HA_REC_NOT_IN_SEQ | HA_NOT_EXACT_COUNT |
|
||||
return (HA_REC_NOT_IN_SEQ | HA_CAN_BIT_FIELD
|
||||
HA_FILE_BASED | HA_CAN_INSERT_DELAYED | HA_CAN_GEOMETRY);
|
||||
}
|
||||
ulong index_flags(uint idx, uint part, bool all_parts) const
|
||||
|
Reference in New Issue
Block a user