578
479
//DRIZZLE_TYPE_VARCHAR
580
//DRIZZLE_TYPE_DECIMAL
481
//DRIZZLE_TYPE_VIRTUAL
483
//DRIZZLE_TYPE_NEWDECIMAL
582
485
//DRIZZLE_TYPE_ENUM
584
487
//DRIZZLE_TYPE_BLOB
588
//DRIZZLE_TYPE_BOOLEAN
592
//DRIZZLE_TYPE_MICROTIME
596
bool test_if_important_data(const CHARSET_INFO * const cs,
493
Test if the given string contains important data:
494
not spaces for character string,
495
or any data for binary string.
498
test_if_important_data()
504
false - If string does not have important data
505
true - If string has some important data
509
test_if_important_data(const CHARSET_INFO * const cs, const char *str,
600
512
if (cs != &my_charset_bin)
601
513
str+= cs->cset->scan(cs, str, strend, MY_SEQ_SPACES);
602
514
return (str < strend);
605
void *Field::operator new(size_t size)
607
return memory::sql_alloc(size);
610
void *Field::operator new(size_t size, memory::Root *mem_root)
612
return mem_root->alloc_root(static_cast<uint32_t>(size));
615
enum_field_types Field::field_type_merge(enum_field_types a,
618
assert(a < enum_field_types_size);
619
assert(b < enum_field_types_size);
620
return field_types_merge_rules[a][b];
623
518
Item_result Field::result_merge_type(enum_field_types field_type)
625
assert(field_type < enum_field_types_size);
520
assert(field_type <= DRIZZLE_TYPE_MAX);
626
521
return field_types_result_type[field_type];
629
525
bool Field::eq(Field *field)
631
527
return (ptr == field->ptr && null_ptr == field->null_ptr &&
632
528
null_bit == field->null_bit);
635
532
uint32_t Field::pack_length() const
637
534
return field_length;
640
538
uint32_t Field::pack_length_in_rec() const
642
540
return pack_length();
544
uint32_t Field::pack_length_from_metadata(uint32_t field_metadata)
546
return field_metadata;
550
uint32_t Field::row_pack_length()
556
int Field::save_field_metadata(unsigned char *first_byte)
558
return do_save_field_metadata(first_byte);
645
562
uint32_t Field::data_length()
647
564
return pack_length();
650
568
uint32_t Field::used_length()
652
570
return pack_length();
655
574
uint32_t Field::sort_length() const
657
576
return pack_length();
660
580
uint32_t Field::max_data_length() const
662
582
return pack_length();
665
586
int Field::reset(void)
667
588
memset(ptr, 0, pack_length());
671
593
void Field::reset_fields()
674
597
void Field::set_default()
676
ptrdiff_t l_offset= (ptrdiff_t) (table->getDefaultValues() - table->getInsertRecord());
599
my_ptrdiff_t l_offset= (my_ptrdiff_t) (table->getDefaultValues() - table->record[0]);
677
600
memcpy(ptr, ptr + l_offset, pack_length());
679
602
*null_ptr= ((*null_ptr & (unsigned char) ~null_bit) | (null_ptr[l_offset] & null_bit));
681
if (this == table->next_number_field)
682
table->auto_increment_field_not_null= false;
685
606
bool Field::binary() const
690
612
bool Field::zero_pack() const
695
618
enum ha_base_keytype Field::key_type() const
697
620
return HA_KEYTYPE_BINARY;
700
624
uint32_t Field::key_length() const
702
626
return pack_length();
705
630
enum_field_types Field::real_type() const
710
636
int Field::cmp_max(const unsigned char *a, const unsigned char *b, uint32_t)
712
638
return cmp(a, b);
715
642
int Field::cmp_binary(const unsigned char *a,const unsigned char *b, uint32_t)
717
644
return memcmp(a,b,pack_length());
720
648
int Field::cmp_offset(uint32_t row_offset)
722
650
return cmp(ptr,ptr+row_offset);
725
654
int Field::cmp_binary_offset(uint32_t row_offset)
727
656
return cmp_binary(ptr, ptr+row_offset);
730
660
int Field::key_cmp(const unsigned char *a,const unsigned char *b)
732
662
return cmp(a, b);
735
666
int Field::key_cmp(const unsigned char *str, uint32_t)
737
668
return cmp(ptr,str);
740
672
uint32_t Field::decimals() const
745
bool Field::is_null(ptrdiff_t row_offset)
678
bool Field::is_null(my_ptrdiff_t row_offset)
747
680
return null_ptr ?
748
681
(null_ptr[row_offset] & null_bit ? true : false) :
752
bool Field::is_real_null(ptrdiff_t row_offset)
686
bool Field::is_real_null(my_ptrdiff_t row_offset)
754
688
return null_ptr ? (null_ptr[row_offset] & null_bit ? true : false) : false;
757
692
bool Field::is_null_in_record(const unsigned char *record)
761
return test(record[(uint32_t) (null_ptr -table->getInsertRecord())] & null_bit);
696
return test(record[(uint32_t) (null_ptr -table->record[0])] &
764
bool Field::is_null_in_record_with_offset(ptrdiff_t with_offset)
701
bool Field::is_null_in_record_with_offset(my_ptrdiff_t with_offset)
768
705
return test(null_ptr[with_offset] & null_bit);
771
void Field::set_null(ptrdiff_t row_offset)
709
void Field::set_null(my_ptrdiff_t row_offset)
774
712
null_ptr[row_offset]|= null_bit;
777
void Field::set_notnull(ptrdiff_t row_offset)
716
void Field::set_notnull(my_ptrdiff_t row_offset)
780
719
null_ptr[row_offset]&= (unsigned char) ~null_bit;
783
723
bool Field::maybe_null(void)
785
725
return null_ptr != 0 || table->maybe_null;
788
729
bool Field::real_maybe_null(void)
790
731
return null_ptr != 0;
735
size_t Field::last_null_byte() const
737
size_t bytes= do_last_null_byte();
738
assert(bytes <= table->getNullBytes());
743
/*****************************************************************************
744
Static help functions
745
*****************************************************************************/
793
747
bool Field::type_can_have_key_part(enum enum_field_types type)
1008
1187
return copy->length+ store_length;
1011
bool Field::get_date(type::Time <ime, uint32_t fuzzydate)
1013
char buff[type::Time::MAX_STRING_LENGTH];
1014
String tmp(buff,sizeof(buff),&my_charset_bin),*res;
1016
assert(getTable() and getTable()->getSession());
1018
if (not (res=val_str_internal(&tmp)) or
1019
str_to_datetime_with_warn(getTable()->getSession(),
1020
res->ptr(), res->length(),
1021
<ime, fuzzydate) <= type::DRIZZLE_TIMESTAMP_ERROR)
1029
bool Field::get_time(type::Time <ime)
1031
char buff[type::Time::MAX_STRING_LENGTH];
1032
String tmp(buff,sizeof(buff),&my_charset_bin),*res;
1034
if (not (res= val_str_internal(&tmp)) or
1035
str_to_time_with_warn(getTable()->getSession(), res->ptr(), res->length(), <ime))
1043
int Field::store_time(type::Time <ime, type::timestamp_t)
1049
return store(tmp.ptr(), tmp.length(), &my_charset_bin);
1052
bool Field::optimize_range(uint32_t idx, uint32_t)
1054
return test(table->index_flags(idx) & HA_READ_RANGE);
1057
Field *Field::new_field(memory::Root *root, Table *new_table, bool)
1191
bool Field::get_date(DRIZZLE_TIME *ltime,uint32_t fuzzydate)
1194
String tmp(buff,sizeof(buff),&my_charset_bin),*res;
1195
if (!(res=val_str(&tmp)) ||
1196
str_to_datetime_with_warn(res->ptr(), res->length(),
1197
ltime, fuzzydate) <= DRIZZLE_TIMESTAMP_ERROR)
1202
bool Field::get_time(DRIZZLE_TIME *ltime)
1205
String tmp(buff,sizeof(buff),&my_charset_bin),*res;
1206
if (!(res=val_str(&tmp)) ||
1207
str_to_time_with_warn(res->ptr(), res->length(), ltime))
1213
This is called when storing a date in a string.
1216
Needs to be changed if/when we want to support different time formats.
1219
int Field::store_time(DRIZZLE_TIME *ltime, enum enum_drizzle_timestamp_type)
1221
char buff[MAX_DATE_STRING_REP_LENGTH];
1222
uint32_t length= (uint32_t) my_TIME_to_str(ltime, buff);
1223
return store(buff, length, &my_charset_bin);
1227
bool Field::optimize_range(uint32_t idx, uint32_t part)
1229
return test(table->file->index_flags(idx, part, 1) & HA_READ_RANGE);
1233
Field *Field::new_field(MEM_ROOT *root, Table *new_table, bool)
1060
if (!(tmp= (Field*) root->memdup_root((char*) this,size_of())))
1236
if (!(tmp= (Field*) memdup_root(root,(char*) this,size_of())))
1063
1239
if (tmp->table->maybe_null)
1064
1240
tmp->flags&= ~NOT_NULL_FLAG;
1065
1241
tmp->table= new_table;
1066
tmp->key_start.reset();
1067
tmp->part_of_key.reset();
1068
tmp->part_of_sortkey.reset();
1242
tmp->key_start.init(0);
1243
tmp->part_of_key.init(0);
1244
tmp->part_of_sortkey.init(0);
1069
1245
tmp->unireg_check= Field::NONE;
1070
tmp->flags&= (NOT_NULL_FLAG | BLOB_FLAG | UNSIGNED_FLAG | BINARY_FLAG | ENUM_FLAG);
1246
tmp->flags&= (NOT_NULL_FLAG | BLOB_FLAG | UNSIGNED_FLAG | BINARY_FLAG | ENUM_FLAG | SET_FLAG);
1071
1247
tmp->reset_fields();
1075
Field *Field::new_key_field(memory::Root *root, Table *new_table,
1076
unsigned char *new_ptr,
1077
unsigned char *new_null_ptr,
1252
Field *Field::new_key_field(MEM_ROOT *root, Table *new_table,
1253
unsigned char *new_ptr, unsigned char *new_null_ptr,
1078
1254
uint32_t new_null_bit)
1081
1257
if ((tmp= new_field(root, new_table, table == new_table)))
1084
1260
tmp->null_ptr= new_null_ptr;
1085
1261
tmp->null_bit= new_null_bit;
1090
Field *Field::clone(memory::Root *root, Table *new_table)
1267
/* This is used to generate a field in Table from TABLE_SHARE */
1269
Field *Field::clone(MEM_ROOT *root, Table *new_table)
1093
if ((tmp= (Field*) root->memdup_root((char*) this,size_of())))
1272
if ((tmp= (Field*) memdup_root(root,(char*) this,size_of())))
1095
1274
tmp->init(new_table);
1096
tmp->move_field_offset((ptrdiff_t) (new_table->getInsertRecord() -
1097
new_table->getDefaultValues()));
1275
tmp->move_field_offset((my_ptrdiff_t) (new_table->record[0] -
1276
new_table->s->default_values));
1103
uint32_t Field::is_equal(CreateField *new_field_ptr)
1282
uint32_t Field::is_equal(Create_field *new_field_ptr)
1105
1284
return (new_field_ptr->sql_type == real_type());
1289
1 if the fields are equally defined
1291
0 if the fields are unequally defined
1108
1294
bool Field::eq_def(Field *field)
1110
1296
if (real_type() != field->real_type() || charset() != field->charset() ||
1304
returns 1 if the fields are equally defined
1116
1306
bool Field_enum::eq_def(Field *field)
1118
1308
if (!Field::eq_def(field))
1121
1310
TYPELIB *from_lib=((Field_enum*) field)->typelib;
1123
1312
if (typelib->count < from_lib->count)
1126
1314
for (uint32_t i=0 ; i < from_lib->count ; i++)
1128
1315
if (my_strnncoll(field_charset,
1129
1316
(const unsigned char*)typelib->type_names[i],
1130
1317
strlen(typelib->type_names[i]),
1131
1318
(const unsigned char*)from_lib->type_names[i],
1132
1319
strlen(from_lib->type_names[i])))
1324
/*****************************************************************************
1325
Handling of field and Create_field
1326
*****************************************************************************/
1329
Convert create_field::length from number of characters to number of bytes.
1332
void Create_field::create_length_to_internal_length(void)
1335
case DRIZZLE_TYPE_BLOB:
1336
case DRIZZLE_TYPE_VARCHAR:
1337
length*= charset->mbmaxlen;
1339
pack_length= calc_pack_length(sql_type, length);
1341
case DRIZZLE_TYPE_ENUM:
1342
/* Pack_length already calculated in ::init() */
1343
length*= charset->mbmaxlen;
1344
key_length= pack_length;
1346
case DRIZZLE_TYPE_NEWDECIMAL:
1347
key_length= pack_length=
1348
my_decimal_get_binary_size(my_decimal_length_to_precision(length,
1355
key_length= pack_length= calc_pack_length(sql_type, length);
1362
Init for a tmp table field. To be extended if need be.
1364
void Create_field::init_for_tmp_table(enum_field_types sql_type_arg,
1365
uint32_t length_arg, uint32_t decimals_arg,
1366
bool maybe_null, bool is_unsigned)
1369
sql_type= sql_type_arg;
1370
char_length= length= length_arg;;
1371
unireg_check= Field::NONE;
1373
charset= &my_charset_bin;
1374
pack_flag= (FIELDFLAG_NUMBER |
1375
((decimals_arg & FIELDFLAG_MAX_DEC) << FIELDFLAG_DEC_SHIFT) |
1376
(maybe_null ? FIELDFLAG_MAYBE_NULL : 0) |
1377
(is_unsigned ? 0 : FIELDFLAG_DECIMAL));
1384
Initialize field definition for create.
1386
@param session Thread handle
1387
@param fld_name Field name
1388
@param fld_type Field type
1389
@param fld_length Field length
1390
@param fld_decimals Decimal (if any)
1391
@param fld_type_modifier Additional type information
1392
@param fld_default_value Field default value (if any)
1393
@param fld_on_update_value The value of ON UPDATE clause
1394
@param fld_comment Field comment
1395
@param fld_change Field change
1396
@param fld_interval_list Interval list (if any)
1397
@param fld_charset Field charset
1398
@param fld_vcol_info Virtual column data
1406
bool Create_field::init(Session *, char *fld_name, enum_field_types fld_type,
1407
char *fld_length, char *fld_decimals,
1408
uint32_t fld_type_modifier, Item *fld_default_value,
1409
Item *fld_on_update_value, LEX_STRING *fld_comment,
1410
char *fld_change, List<String> *fld_interval_list,
1411
const CHARSET_INFO * const fld_charset,
1412
uint32_t, enum column_format_type column_format_in,
1413
virtual_column_info *fld_vcol_info)
1415
uint32_t sign_len, allowed_type_modifier= 0;
1416
uint32_t max_field_charlength= MAX_FIELD_CHARLENGTH;
1419
field_name= fld_name;
1420
def= fld_default_value;
1421
flags= fld_type_modifier;
1422
flags|= (((uint32_t)column_format_in & COLUMN_FORMAT_MASK) << COLUMN_FORMAT_FLAGS);
1423
unireg_check= (fld_type_modifier & AUTO_INCREMENT_FLAG ?
1424
Field::NEXT_NUMBER : Field::NONE);
1425
decimals= fld_decimals ? (uint32_t)atoi(fld_decimals) : 0;
1426
if (decimals >= NOT_FIXED_DEC)
1428
my_error(ER_TOO_BIG_SCALE, MYF(0), decimals, fld_name,
1437
pack_length= key_length= 0;
1438
charset= fld_charset;
1439
interval_list.empty();
1441
comment= *fld_comment;
1442
vcol_info= fld_vcol_info;
1445
/* Initialize data for a virtual field */
1446
if (fld_type == DRIZZLE_TYPE_VIRTUAL)
1448
assert(vcol_info && vcol_info->expr_item);
1449
is_stored= vcol_info->get_field_stored();
1451
Perform per item-type checks to determine if the expression is
1452
allowed for a virtual column.
1453
Note that validation of the specific function is done later in
1454
procedures open_table_from_share and fix_fields_vcol_func
1456
switch (vcol_info->expr_item->type()) {
1457
case Item::FUNC_ITEM:
1458
if (((Item_func *)vcol_info->expr_item)->functype() == Item_func::FUNC_SP)
1460
my_error(ER_VIRTUAL_COLUMN_FUNCTION_IS_NOT_ALLOWED, MYF(0), field_name);
1464
case Item::COPY_STR_ITEM:
1465
case Item::FIELD_AVG_ITEM:
1466
case Item::PROC_ITEM:
1467
case Item::REF_ITEM:
1468
case Item::FIELD_STD_ITEM:
1469
case Item::FIELD_VARIANCE_ITEM:
1470
case Item::INSERT_VALUE_ITEM:
1471
case Item::SUBSELECT_ITEM:
1472
case Item::CACHE_ITEM:
1473
case Item::TYPE_HOLDER:
1474
case Item::PARAM_ITEM:
1475
my_error(ER_VIRTUAL_COLUMN_FUNCTION_IS_NOT_ALLOWED, MYF(0), field_name);
1478
// Continue with the field creation
1482
Make a field created for the real type.
1483
Note that "real" and virtual fields differ from each other
1484
only by Field::vcol_info, which is always 0 for normal columns.
1485
vcol_info is updated for fields later in procedure open_binary_frm.
1487
sql_type= fld_type= vcol_info->get_real_type();
1491
Set NO_DEFAULT_VALUE_FLAG if this field doesn't have a default value and
1492
it is NOT NULL, not an AUTO_INCREMENT field and not a TIMESTAMP.
1494
if (!fld_default_value && !(fld_type_modifier & AUTO_INCREMENT_FLAG) &&
1495
(fld_type_modifier & NOT_NULL_FLAG) && fld_type != DRIZZLE_TYPE_TIMESTAMP)
1496
flags|= NO_DEFAULT_VALUE_FLAG;
1498
if (fld_length && !(length= (uint32_t) atoi(fld_length)))
1499
fld_length= 0; /* purecov: inspected */
1500
sign_len= fld_type_modifier & UNSIGNED_FLAG ? 0 : 1;
1503
case DRIZZLE_TYPE_TINY:
1505
length= MAX_TINYINT_WIDTH+sign_len;
1506
allowed_type_modifier= AUTO_INCREMENT_FLAG;
1508
case DRIZZLE_TYPE_LONG:
1510
length= MAX_INT_WIDTH+sign_len;
1511
allowed_type_modifier= AUTO_INCREMENT_FLAG;
1513
case DRIZZLE_TYPE_LONGLONG:
1515
length= MAX_BIGINT_WIDTH;
1516
allowed_type_modifier= AUTO_INCREMENT_FLAG;
1518
case DRIZZLE_TYPE_NULL:
1520
case DRIZZLE_TYPE_NEWDECIMAL:
1521
my_decimal_trim(&length, &decimals);
1522
if (length > DECIMAL_MAX_PRECISION)
1524
my_error(ER_TOO_BIG_PRECISION, MYF(0), length, fld_name,
1525
DECIMAL_MAX_PRECISION);
1528
if (length < decimals)
1530
my_error(ER_M_BIGGER_THAN_D, MYF(0), fld_name);
1534
my_decimal_precision_to_length(length, decimals,
1535
fld_type_modifier & UNSIGNED_FLAG);
1537
my_decimal_get_binary_size(length, decimals);
1539
case DRIZZLE_TYPE_VARCHAR:
1541
Long VARCHAR's are automaticly converted to blobs in mysql_prepare_table
1542
if they don't have a default value
1544
max_field_charlength= MAX_FIELD_VARCHARLENGTH;
1546
case DRIZZLE_TYPE_BLOB:
1547
if (fld_default_value)
1549
/* Allow empty as default value. */
1551
res= fld_default_value->val_str(&str);
1554
my_error(ER_BLOB_CANT_HAVE_DEFAULT, MYF(0),
1562
case DRIZZLE_TYPE_DOUBLE:
1563
allowed_type_modifier= AUTO_INCREMENT_FLAG;
1564
if (!fld_length && !fld_decimals)
1567
decimals= NOT_FIXED_DEC;
1569
if (length < decimals &&
1570
decimals != NOT_FIXED_DEC)
1572
my_error(ER_M_BIGGER_THAN_D, MYF(0), fld_name);
1576
case DRIZZLE_TYPE_TIMESTAMP:
1579
/* Compressed date YYYYMMDDHHMMSS */
1580
length= MAX_DATETIME_COMPRESSED_WIDTH;
1582
else if (length != MAX_DATETIME_WIDTH)
1585
We support only even TIMESTAMP lengths less or equal than 14
1586
and 19 as length of 4.1 compatible representation.
1588
length= ((length+1)/2)*2; /* purecov: inspected */
1589
length= cmin(length, (uint32_t)MAX_DATETIME_COMPRESSED_WIDTH); /* purecov: inspected */
1591
flags|= UNSIGNED_FLAG;
1592
if (fld_default_value)
1594
/* Grammar allows only NOW() value for ON UPDATE clause */
1595
if (fld_default_value->type() == Item::FUNC_ITEM &&
1596
((Item_func*)fld_default_value)->functype() == Item_func::NOW_FUNC)
1598
unireg_check= (fld_on_update_value ? Field::TIMESTAMP_DNUN_FIELD:
1599
Field::TIMESTAMP_DN_FIELD);
1601
We don't need default value any longer moreover it is dangerous.
1602
Everything handled by unireg_check further.
1607
unireg_check= (fld_on_update_value ? Field::TIMESTAMP_UN_FIELD:
1613
If we have default TIMESTAMP NOT NULL column without explicit DEFAULT
1614
or ON UPDATE values then for the sake of compatiblity we should treat
1615
this column as having DEFAULT NOW() ON UPDATE NOW() (when we don't
1616
have another TIMESTAMP column with auto-set option before this one)
1617
or DEFAULT 0 (in other cases).
1618
So here we are setting TIMESTAMP_OLD_FIELD only temporary, and will
1619
replace this value by TIMESTAMP_DNUN_FIELD or NONE later when
1620
information about all TIMESTAMP fields in table will be availiable.
1622
If we have TIMESTAMP NULL column without explicit DEFAULT value
1623
we treat it as having DEFAULT NULL attribute.
1625
unireg_check= (fld_on_update_value ? Field::TIMESTAMP_UN_FIELD :
1626
(flags & NOT_NULL_FLAG ? Field::TIMESTAMP_OLD_FIELD :
1630
case DRIZZLE_TYPE_DATE:
1633
case DRIZZLE_TYPE_DATETIME:
1634
length= MAX_DATETIME_WIDTH;
1636
case DRIZZLE_TYPE_ENUM:
1638
/* Should be safe. */
1639
pack_length= get_enum_pack_length(fld_interval_list->elements);
1641
List_iterator<String> it(*fld_interval_list);
1644
interval_list.push_back(tmp);
1645
length= 1; /* See comment for DRIZZLE_TYPE_SET above. */
1648
case DRIZZLE_TYPE_VIRTUAL: // Must not happen
1651
/* Remember the value of length */
1652
char_length= length;
1654
if (!(flags & BLOB_FLAG) &&
1655
((length > max_field_charlength &&
1656
fld_type != DRIZZLE_TYPE_ENUM &&
1657
(fld_type != DRIZZLE_TYPE_VARCHAR || fld_default_value)) ||
1658
(!length && fld_type != DRIZZLE_TYPE_VARCHAR)))
1660
my_error((fld_type == DRIZZLE_TYPE_VARCHAR) ? ER_TOO_BIG_FIELDLENGTH : ER_TOO_BIG_DISPLAYWIDTH,
1662
fld_name, max_field_charlength); /* purecov: inspected */
1665
fld_type_modifier&= AUTO_INCREMENT_FLAG;
1666
if ((~allowed_type_modifier) & fld_type_modifier)
1668
my_error(ER_WRONG_FIELD_SPEC, MYF(0), fld_name);
1672
return(false); /* success */
1676
enum_field_types get_blob_type_from_length(uint32_t)
1678
enum_field_types type;
1680
type= DRIZZLE_TYPE_BLOB;
1687
Make a field from the .frm file info
1139
1690
uint32_t calc_pack_length(enum_field_types type,uint32_t length)
1141
1692
switch (type) {
1142
case DRIZZLE_TYPE_VARCHAR: return (length + (length < 256 ? 1: 2));
1143
case DRIZZLE_TYPE_UUID: return field::Uuid::max_string_length();
1144
case DRIZZLE_TYPE_MICROTIME: return field::Microtime::max_string_length();
1145
case DRIZZLE_TYPE_TIMESTAMP: return field::Epoch::max_string_length();
1146
case DRIZZLE_TYPE_BOOLEAN: return field::Boolean::max_string_length();
1147
case DRIZZLE_TYPE_DATE:
1148
case DRIZZLE_TYPE_ENUM:
1149
case DRIZZLE_TYPE_LONG: return 4;
1693
case DRIZZLE_TYPE_VARCHAR: return (length + (length < 256 ? 1: 2));
1694
case DRIZZLE_TYPE_TINY : return 1;
1695
case DRIZZLE_TYPE_DATE: return 3;
1696
case DRIZZLE_TYPE_TIMESTAMP:
1697
case DRIZZLE_TYPE_LONG : return 4;
1150
1698
case DRIZZLE_TYPE_DOUBLE: return sizeof(double);
1151
case DRIZZLE_TYPE_TIME:
1152
1699
case DRIZZLE_TYPE_DATETIME:
1153
1700
case DRIZZLE_TYPE_LONGLONG: return 8; /* Don't crash if no int64_t */
1154
case DRIZZLE_TYPE_NULL: return 0;
1155
case DRIZZLE_TYPE_BLOB: return 4 + portable_sizeof_char_ptr;
1156
case DRIZZLE_TYPE_DECIMAL:
1701
case DRIZZLE_TYPE_NULL : return 0;
1702
case DRIZZLE_TYPE_BLOB: return 4+portable_sizeof_char_ptr;
1703
case DRIZZLE_TYPE_ENUM:
1704
case DRIZZLE_TYPE_NEWDECIMAL:
1164
1712
uint32_t pack_length_to_packflag(uint32_t type)
1166
1714
switch (type) {
1167
1715
case 1: return 1 << FIELDFLAG_PACK_SHIFT;
1168
1716
case 2: assert(1);
1169
1717
case 3: assert(1);
1170
case 4: return f_settype(DRIZZLE_TYPE_LONG);
1171
case 8: return f_settype(DRIZZLE_TYPE_LONGLONG);
1718
case 4: return f_settype((uint32_t) DRIZZLE_TYPE_LONG);
1719
case 8: return f_settype((uint32_t) DRIZZLE_TYPE_LONGLONG);
1173
1721
return 0; // This shouldn't happen
1725
Field *make_field(TABLE_SHARE *share, MEM_ROOT *root,
1726
unsigned char *ptr, uint32_t field_length,
1727
unsigned char *null_pos, unsigned char null_bit,
1729
enum_field_types field_type,
1730
const CHARSET_INFO * field_charset,
1731
Field::utype unireg_check,
1733
const char *field_name)
1736
root= current_mem_root();
1738
if (!f_maybe_null(pack_flag))
1745
null_bit= ((unsigned char) 1) << null_bit;
1748
switch (field_type) {
1749
case DRIZZLE_TYPE_DATE:
1750
case DRIZZLE_TYPE_DATETIME:
1751
case DRIZZLE_TYPE_TIMESTAMP:
1752
field_charset= &my_charset_bin;
1756
if (f_is_alpha(pack_flag))
1758
if (!f_is_packed(pack_flag))
1760
if (field_type == DRIZZLE_TYPE_VARCHAR)
1761
return new (root) Field_varstring(ptr,field_length,
1762
HA_VARCHAR_PACKLENGTH(field_length),
1764
unireg_check, field_name,
1770
uint32_t pack_length=calc_pack_length((enum_field_types)
1771
f_packtype(pack_flag),
1774
if (f_is_blob(pack_flag))
1775
return new (root) Field_blob(ptr,null_pos,null_bit,
1776
unireg_check, field_name, share,
1777
pack_length, field_charset);
1780
if (f_is_enum(pack_flag))
1782
return new (root) Field_enum(ptr,field_length,null_pos,null_bit,
1783
unireg_check, field_name,
1784
get_enum_pack_length(interval->count),
1785
interval, field_charset);
1790
switch (field_type) {
1791
case DRIZZLE_TYPE_NEWDECIMAL:
1792
return new (root) Field_new_decimal(ptr,field_length,null_pos,null_bit,
1793
unireg_check, field_name,
1794
f_decimals(pack_flag),
1795
f_is_decimal_precision(pack_flag) != 0,
1796
f_is_dec(pack_flag) == 0);
1797
case DRIZZLE_TYPE_DOUBLE:
1798
return new (root) Field_double(ptr,field_length,null_pos,null_bit,
1799
unireg_check, field_name,
1800
f_decimals(pack_flag),
1802
f_is_dec(pack_flag)== 0);
1803
case DRIZZLE_TYPE_TINY:
1805
case DRIZZLE_TYPE_LONG:
1806
return new (root) Field_long(ptr,field_length,null_pos,null_bit,
1807
unireg_check, field_name,
1809
f_is_dec(pack_flag) == 0);
1810
case DRIZZLE_TYPE_LONGLONG:
1811
return new (root) Field_int64_t(ptr,field_length,null_pos,null_bit,
1812
unireg_check, field_name,
1814
f_is_dec(pack_flag) == 0);
1815
case DRIZZLE_TYPE_TIMESTAMP:
1816
return new (root) Field_timestamp(ptr,field_length, null_pos, null_bit,
1817
unireg_check, field_name, share,
1819
case DRIZZLE_TYPE_DATE:
1820
return new (root) Field_date(ptr,null_pos,null_bit,
1821
unireg_check, field_name, field_charset);
1822
case DRIZZLE_TYPE_DATETIME:
1823
return new (root) Field_datetime(ptr,null_pos,null_bit,
1824
unireg_check, field_name, field_charset);
1825
case DRIZZLE_TYPE_NULL:
1826
return new (root) Field_null(ptr, field_length, unireg_check, field_name,
1828
case DRIZZLE_TYPE_VIRTUAL: // Must not happen
1830
default: // Impossible (Wrong version)
1837
/** Create a field suitable for create of table. */
1839
Create_field::Create_field(Field *old_field,Field *orig_field)
1842
field_name=change=old_field->field_name;
1843
length= old_field->field_length;
1844
flags= old_field->flags;
1845
unireg_check=old_field->unireg_check;
1846
pack_length=old_field->pack_length();
1847
key_length= old_field->key_length();
1848
sql_type= old_field->real_type();
1849
charset= old_field->charset(); // May be NULL ptr
1850
comment= old_field->comment;
1851
decimals= old_field->decimals();
1852
vcol_info= old_field->vcol_info;
1853
is_stored= old_field->is_stored;
1855
/* Fix if the original table had 4 byte pointer blobs */
1856
if (flags & BLOB_FLAG)
1857
pack_length= (pack_length- old_field->table->s->blob_ptr_size +
1858
portable_sizeof_char_ptr);
1861
case DRIZZLE_TYPE_BLOB:
1862
sql_type= DRIZZLE_TYPE_BLOB;
1863
length/= charset->mbmaxlen;
1864
key_length/= charset->mbmaxlen;
1866
/* Change CHAR -> VARCHAR if dynamic record length */
1867
case DRIZZLE_TYPE_ENUM:
1868
case DRIZZLE_TYPE_VARCHAR:
1869
/* This is corrected in create_length_to_internal_length */
1870
length= (length+charset->mbmaxlen-1) / charset->mbmaxlen;
1876
if (flags & (ENUM_FLAG | SET_FLAG))
1877
interval= ((Field_enum*) old_field)->typelib;
1881
char_length= length;
1883
if (!(flags & (NO_DEFAULT_VALUE_FLAG )) &&
1884
old_field->ptr && orig_field &&
1885
(sql_type != DRIZZLE_TYPE_TIMESTAMP || /* set def only if */
1886
old_field->table->timestamp_field != old_field || /* timestamp field */
1887
unireg_check == Field::TIMESTAMP_UN_FIELD)) /* has default val */
1891
/* Get the value from default_values */
1892
diff= (my_ptrdiff_t) (orig_field->table->s->default_values-
1893
orig_field->table->record[0]);
1894
orig_field->move_field_offset(diff); // Points now at default_values
1895
if (!orig_field->is_real_null())
1897
char buff[MAX_FIELD_WIDTH], *pos;
1898
String tmp(buff, sizeof(buff), charset), *res;
1899
res= orig_field->val_str(&tmp);
1900
pos= (char*) sql_strmake(res->ptr(), res->length());
1901
def= new Item_string(pos, res->length(), charset);
1903
orig_field->move_field_offset(-diff); // Back to record[0]
1176
1908
/*****************************************************************************
1177
1909
Warning handling
1178
1910
*****************************************************************************/
1180
bool Field::set_warning(DRIZZLE_ERROR::enum_warning_level level,
1181
drizzled::error_t code,
1182
int cuted_increment)
1913
Produce warning or note about data saved into field.
1915
@param level - level of message (Note/Warning/Error)
1916
@param code - error code of message to be produced
1917
@param cuted_increment - whenever we should increase cut fields count or not
1920
This function won't produce warning and increase cut fields counter
1921
if count_cuted_fields == CHECK_FIELD_IGNORE for current thread.
1923
if count_cuted_fields == CHECK_FIELD_IGNORE then we ignore notes.
1924
This allows us to avoid notes in optimisation, like convert_constant_item().
1927
1 if count_cuted_fields == CHECK_FIELD_IGNORE and error level is not NOTE
1933
Field::set_warning(DRIZZLE_ERROR::enum_warning_level level, uint32_t code,
1934
int cuted_increment)
1185
1937
If this field was created only for type conversion purposes it
1200
void Field::set_datetime_warning(DRIZZLE_ERROR::enum_warning_level level,
1201
drizzled::error_t code,
1203
uint32_t str_length,
1204
type::timestamp_t ts_type,
1205
int cuted_increment)
1953
Produce warning or note about datetime string data saved into field.
1955
@param level level of message (Note/Warning/Error)
1956
@param code error code of message to be produced
1957
@param str string value which we tried to save
1958
@param str_length length of string which we tried to save
1959
@param ts_type type of datetime value (datetime/date/time)
1960
@param cuted_increment whenever we should increase cut fields count or not
1963
This function will always produce some warning but won't increase cut
1964
fields counter if count_cuted_fields ==FIELD_CHECK_IGNORE for current
1969
Field::set_datetime_warning(DRIZZLE_ERROR::enum_warning_level level,
1971
const char *str, uint32_t str_length,
1972
enum enum_drizzle_timestamp_type ts_type, int cuted_increment)
1207
Session *session= (getTable() and getTable()->getSession()) ? getTable()->getSession() : current_session;
1209
if ((session->abortOnWarning() and
1974
Session *session= table ? table->in_use : current_session;
1975
if ((session->really_abort_on_warning() &&
1210
1976
level >= DRIZZLE_ERROR::WARN_LEVEL_WARN) ||
1211
1977
set_warning(level, code, cuted_increment))
1212
1978
make_truncated_value_warning(session, level, str, str_length, ts_type,
1216
void Field::set_datetime_warning(DRIZZLE_ERROR::enum_warning_level level,
1217
drizzled::error_t code,
1219
type::timestamp_t ts_type,
1220
int cuted_increment)
1984
Produce warning or note about integer datetime value saved into field.
1986
@param level level of message (Note/Warning/Error)
1987
@param code error code of message to be produced
1988
@param nr numeric value which we tried to save
1989
@param ts_type type of datetime value (datetime/date/time)
1990
@param cuted_increment whenever we should increase cut fields count or not
1993
This function will always produce some warning but won't increase cut
1994
fields counter if count_cuted_fields == FIELD_CHECK_IGNORE for current
1999
Field::set_datetime_warning(DRIZZLE_ERROR::enum_warning_level level, uint32_t code,
2000
int64_t nr, enum enum_drizzle_timestamp_type ts_type,
2001
int cuted_increment)
1222
Session *session= (getTable() and getTable()->getSession()) ? getTable()->getSession() : current_session;
1224
if (session->abortOnWarning() or
2003
Session *session= table ? table->in_use : current_session;
2004
if (session->really_abort_on_warning() ||
1225
2005
set_warning(level, code, cuted_increment))
1227
char str_nr[DECIMAL_LONGLONG_DIGITS];
1228
char *str_end= internal::int64_t10_to_str(nr, str_nr, -10);
2008
char *str_end= int64_t10_to_str(nr, str_nr, -10);
1229
2009
make_truncated_value_warning(session, level, str_nr, (uint32_t) (str_end - str_nr),
1230
2010
ts_type, field_name);
1234
void Field::set_datetime_warning(DRIZZLE_ERROR::enum_warning_level level,
1235
const drizzled::error_t code,
1237
type::timestamp_t ts_type)
2016
Produce warning or note about double datetime data saved into field.
2018
@param level level of message (Note/Warning/Error)
2019
@param code error code of message to be produced
2020
@param nr double value which we tried to save
2021
@param ts_type type of datetime value (datetime/date/time)
2024
This function will always produce some warning but won't increase cut
2025
fields counter if count_cuted_fields == FIELD_CHECK_IGNORE for current
2030
Field::set_datetime_warning(DRIZZLE_ERROR::enum_warning_level level, const uint32_t code,
2031
double nr, enum enum_drizzle_timestamp_type ts_type)
1239
Session *session= (getTable() and getTable()->getSession()) ? getTable()->getSession() : current_session;
1241
if (session->abortOnWarning() or
2033
Session *session= table ? table->in_use : current_session;
2034
if (session->really_abort_on_warning() ||
1242
2035
set_warning(level, code, 1))
1244
2037
/* DBL_DIG is enough to print '-[digits].E+###' */
1245
2038
char str_nr[DBL_DIG + 8];
1246
uint32_t str_len= snprintf(str_nr, sizeof(str_nr), "%g", nr);
2039
uint32_t str_len= sprintf(str_nr, "%g", nr);
1247
2040
make_truncated_value_warning(session, level, str_nr, str_len, ts_type,
1252
bool Field::isReadSet()
1254
return table->isReadSet(field_index);
1257
bool Field::isWriteSet()
1259
return table->isWriteSet(field_index);
1262
void Field::setReadSet(bool arg)
1265
table->setReadSet(field_index);
1267
table->clearReadSet(field_index);
1270
void Field::setWriteSet(bool arg)
1273
table->setWriteSet(field_index);
1275
table->clearWriteSet(field_index);
1278
void Field::pack_num(uint64_t arg, unsigned char *destination)
1280
if (not destination)
1283
int64_tstore(destination, arg);
1286
void Field::pack_num(uint32_t arg, unsigned char *destination)
1288
if (not destination)
1291
longstore(destination, arg);
1294
uint64_t Field::unpack_num(uint64_t &destination, const unsigned char *arg) const
1299
int64_tget(destination, arg);
1304
uint32_t Field::unpack_num(uint32_t &destination, const unsigned char *arg) const
1309
longget(destination, arg);
1314
std::ostream& operator<<(std::ostream& output, const Field &field)
1316
output << "Field:(";
1317
output << field.field_name;
1319
output << drizzled::display::type(field.real_type());
1322
if (field.flags & NOT_NULL_FLAG)
1323
output << " NOT_NULL";
1325
if (field.flags & PRI_KEY_FLAG)
1326
output << ", PRIMARY KEY";
1328
if (field.flags & UNIQUE_KEY_FLAG)
1329
output << ", UNIQUE KEY";
1331
if (field.flags & MULTIPLE_KEY_FLAG)
1332
output << ", MULTIPLE KEY";
1334
if (field.flags & BLOB_FLAG)
1337
if (field.flags & UNSIGNED_FLAG)
1338
output << ", UNSIGNED";
1340
if (field.flags & BINARY_FLAG)
1341
output << ", BINARY";
1345
return output; // for multiple << operators.
1348
} /* namespace drizzled */