mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Conflicts resolving
sql/field.h: Auto merged sql/item.cc: Auto merged sql/sql_yacc.yy: Auto merged sql/item.h: Conflict resolving
This commit is contained in:
commit
d33e652321
6 changed files with 55 additions and 6 deletions
|
@ -78,10 +78,11 @@ public:
|
|||
virtual void reset_fields() {}
|
||||
virtual void set_default()
|
||||
{
|
||||
memcpy(ptr, ptr + table->rec_buff_length, pack_length());
|
||||
my_ptrdiff_t offset = table->default_values - table->record[0];
|
||||
memcpy(ptr, ptr + offset, pack_length());
|
||||
if (null_ptr)
|
||||
*null_ptr= ((*null_ptr & (uchar) ~null_bit) |
|
||||
null_ptr[table->rec_buff_length] & null_bit);
|
||||
null_ptr[offset] & null_bit);
|
||||
}
|
||||
virtual bool binary() const { return 1; }
|
||||
virtual bool zero_pack() const { return 1; }
|
||||
|
|
31
sql/item.cc
31
sql/item.cc
|
@ -1119,6 +1119,37 @@ bool Item_ref::check_loop(uint id)
|
|||
DBUG_RETURN((*ref)->check_loop(id));
|
||||
}
|
||||
|
||||
bool Item_default_value::eq(const Item *item, bool binary_cmp) const
|
||||
{
|
||||
return item->type() == DEFAULT_VALUE_ITEM &&
|
||||
((Item_default_value *)item)->arg->eq(arg, binary_cmp);
|
||||
}
|
||||
|
||||
bool Item_default_value::fix_fields(THD *thd, struct st_table_list *table_list, Item **items)
|
||||
{
|
||||
bool res= arg->fix_fields(thd, table_list, items);
|
||||
if (res)
|
||||
return res;
|
||||
if (arg->type() == REF_ITEM)
|
||||
{
|
||||
Item_ref *ref= (Item_ref *)arg;
|
||||
if (ref->ref[0]->type() != FIELD_ITEM)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
arg= ref->ref[0];
|
||||
}
|
||||
Item_field *field_arg= (Item_field *)arg;
|
||||
Field *def_field= (Field*) sql_alloc(field_arg->field->size_of());
|
||||
if (!def_field)
|
||||
return 1;
|
||||
memcpy(def_field, field_arg->field, field_arg->field->size_of());
|
||||
def_field->move_field(def_field->table->default_values -
|
||||
def_field->table->record[0]);
|
||||
set_field(def_field);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
If item is a const function, calculate it and return a const item
|
||||
|
|
16
sql/item.h
16
sql/item.h
|
@ -36,7 +36,8 @@ public:
|
|||
COPY_STR_ITEM, FIELD_AVG_ITEM, DEFAULT_ITEM,
|
||||
PROC_ITEM,COND_ITEM, REF_ITEM, FIELD_STD_ITEM,
|
||||
FIELD_VARIANCE_ITEM, CONST_ITEM,
|
||||
SUBSELECT_ITEM, ROW_ITEM, CACHE_ITEM};
|
||||
SUBSELECT_ITEM, ROW_ITEM, CACHE_ITEM,
|
||||
DEFAULT_VALUE_ITEM};
|
||||
enum cond_result { COND_UNDEF,COND_OK,COND_TRUE,COND_FALSE };
|
||||
|
||||
String str_value; /* used to store value */
|
||||
|
@ -167,9 +168,9 @@ public:
|
|||
bool get_date(TIME *ltime,bool fuzzydate);
|
||||
bool get_time(TIME *ltime);
|
||||
bool is_null() { return field->is_null(); }
|
||||
friend class Item_default_value;
|
||||
};
|
||||
|
||||
|
||||
class Item_null :public Item
|
||||
{
|
||||
public:
|
||||
|
@ -664,6 +665,17 @@ public:
|
|||
bool cmp(void);
|
||||
};
|
||||
|
||||
class Item_default_value : public Item_field
|
||||
{
|
||||
public:
|
||||
Item *arg;
|
||||
Item_default_value(Item *a) :
|
||||
Item_field((const char *)NULL, (const char *)NULL, (const char *)NULL), arg(a) {}
|
||||
enum Type type() const { return DEFAULT_VALUE_ITEM; }
|
||||
bool eq(const Item *item, bool binary_cmp) const;
|
||||
bool fix_fields(THD *, struct st_table_list *, Item **);
|
||||
}:
|
||||
|
||||
class Item_cache: public Item
|
||||
{
|
||||
public:
|
||||
|
|
|
@ -2057,6 +2057,8 @@ simple_expr:
|
|||
{ $$= new Item_func_conv_charset3($3,$7,$5); }
|
||||
| FUNC_ARG0 '(' ')'
|
||||
{ $$= ((Item*(*)(void))($1.symbol->create_func))();}
|
||||
| DEFAULT '(' simple_ident ')'
|
||||
{ $$= new Item_default_value($3); }
|
||||
| FUNC_ARG1 '(' expr ')'
|
||||
{ $$= ((Item*(*)(Item*))($1.symbol->create_func))($3);}
|
||||
| FUNC_ARG2 '(' expr ',' expr ')'
|
||||
|
@ -3158,12 +3160,12 @@ update:
|
|||
;
|
||||
|
||||
update_list:
|
||||
update_list ',' simple_ident equal expr
|
||||
update_list ',' simple_ident equal expr_or_default
|
||||
{
|
||||
if (add_item_to_list(YYTHD, $3) || add_value_to_list(YYTHD, $5))
|
||||
YYABORT;
|
||||
}
|
||||
| simple_ident equal expr
|
||||
| simple_ident equal expr_or_default
|
||||
{
|
||||
if (add_item_to_list(YYTHD, $1) || add_value_to_list(YYTHD, $3))
|
||||
YYABORT;
|
||||
|
|
|
@ -260,6 +260,8 @@ int openfrm(const char *name, const char *alias, uint db_stat, uint prgflag,
|
|||
if (db_stat & HA_READ_ONLY)
|
||||
outparam->record[1]=outparam->record[0]; /* purecov: inspected */
|
||||
}
|
||||
|
||||
outparam->default_values= outparam->record[2];
|
||||
|
||||
VOID(my_seek(file,pos,MY_SEEK_SET,MYF(0)));
|
||||
if (my_read(file,(byte*) head,288,MYF(MY_NABP))) goto err_not_open;
|
||||
|
|
|
@ -54,6 +54,7 @@ struct st_table {
|
|||
Field_blob **blob_field; /* Pointer to blob fields */
|
||||
HASH name_hash; /* hash of field names */
|
||||
byte *record[3]; /* Pointer to records */
|
||||
byte *default_values;
|
||||
uint fields; /* field count */
|
||||
uint reclength; /* Recordlength */
|
||||
uint rec_buff_length;
|
||||
|
|
Loading…
Reference in a new issue