mirror of
https://github.com/MariaDB/server.git
synced 2026-04-30 04:05:32 +02:00
bit type
This commit is contained in:
parent
eaec00b19b
commit
d7285006cf
27 changed files with 1050 additions and 40 deletions
|
|
@ -726,6 +726,7 @@ bool Protocol_simple::store(const char *from, uint length,
|
|||
#ifndef DEBUG_OFF
|
||||
DBUG_ASSERT(field_types == 0 ||
|
||||
field_types[field_pos] == MYSQL_TYPE_DECIMAL ||
|
||||
field_types[field_pos] == MYSQL_TYPE_BIT ||
|
||||
(field_types[field_pos] >= MYSQL_TYPE_ENUM &&
|
||||
field_types[field_pos] <= MYSQL_TYPE_GEOMETRY));
|
||||
field_pos++;
|
||||
|
|
@ -741,6 +742,7 @@ bool Protocol_simple::store(const char *from, uint length,
|
|||
#ifndef DEBUG_OFF
|
||||
DBUG_ASSERT(field_types == 0 ||
|
||||
field_types[field_pos] == MYSQL_TYPE_DECIMAL ||
|
||||
field_types[field_pos] == MYSQL_TYPE_BIT ||
|
||||
(field_types[field_pos] >= MYSQL_TYPE_ENUM &&
|
||||
field_types[field_pos] <= MYSQL_TYPE_GEOMETRY));
|
||||
field_pos++;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue