diff options
Diffstat (limited to 'sql')
-rw-r--r-- | sql/item_cmpfunc.cc | 15 | ||||
-rw-r--r-- | sql/item_cmpfunc.h | 10 | ||||
-rw-r--r-- | sql/item_create.cc | 7 | ||||
-rw-r--r-- | sql/item_create.h | 1 | ||||
-rw-r--r-- | sql/item_func.cc | 55 | ||||
-rw-r--r-- | sql/item_func.h | 22 | ||||
-rw-r--r-- | sql/lex.h | 2 | ||||
-rw-r--r-- | sql/log.cc | 8 | ||||
-rw-r--r-- | sql/log_event.cc | 11 | ||||
-rw-r--r-- | sql/log_event.h | 11 | ||||
-rw-r--r-- | sql/slave.cc | 1 | ||||
-rw-r--r-- | sql/sql_yacc.yy | 9 |
12 files changed, 136 insertions, 16 deletions
diff --git a/sql/item_cmpfunc.cc b/sql/item_cmpfunc.cc index fd6e767d620..ca0044b371a 100644 --- a/sql/item_cmpfunc.cc +++ b/sql/item_cmpfunc.cc @@ -1624,3 +1624,18 @@ bool Item_func_like::turboBM_matches(const char* text, int text_len) const return false; } } + +longlong Item_cond_xor::val_int() +{ + List_iterator<Item> li(list); + Item *item; + int result=0; + null_value=1; + while ((item=li++)) + { + result ^= (item->val_int() != 0); + if (!item->null_value) + null_value=0; + } + return result; +} diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h index 3f674198856..25d0c239647 100644 --- a/sql/item_cmpfunc.h +++ b/sql/item_cmpfunc.h @@ -596,3 +596,13 @@ inline Item *and_conds(Item *a,Item *b) cond->update_used_tables(); return cond; } + +class Item_cond_xor :public Item_cond +{ +public: + Item_cond_xor() :Item_cond() {} + Item_cond_xor(Item *i1,Item *i2) :Item_cond(i1,i2) {} + enum Functype functype() const { return COND_XOR_FUNC; } + longlong val_int(); + const char *func_name() const { return "xor"; } +}; diff --git a/sql/item_create.cc b/sql/item_create.cc index 61e82b664ff..f268550d115 100644 --- a/sql/item_create.cc +++ b/sql/item_create.cc @@ -428,3 +428,10 @@ Item *create_func_cast(Item *a, Item_cast cast_type) } return res; } + +Item *create_func_check_lock(Item* a) +{ + current_thd->safe_to_cache_query=0; + return new Item_func_check_lock(a); +} + diff --git a/sql/item_create.h b/sql/item_create.h index 323e053c261..09d72f9fbb3 100644 --- a/sql/item_create.h +++ b/sql/item_create.h @@ -91,3 +91,4 @@ Item *create_func_version(void); Item *create_func_weekday(Item* a); Item *create_load_file(Item* a); Item *create_wait_for_master_pos(Item* a, Item* b); +Item *create_func_check_lock(Item* a); diff --git a/sql/item_func.cc b/sql/item_func.cc index 2d800cddb0d..4dfd9e3585f 100644 --- a/sql/item_func.cc +++ b/sql/item_func.cc @@ -2257,6 +2257,24 @@ double Item_func_match::val() return ft_handler->please->find_relevance(ft_handler, record, 0); } +longlong Item_func_bit_xor::val_int() +{ + ulonglong arg1= (ulonglong) args[0]->val_int(); + if (args[0]->null_value) + { + null_value=1; + return 0; + } + ulonglong arg2= (ulonglong) args[1]->val_int(); + if (args[1]->null_value) + { + null_value=1; + return 0; + } + null_value=0; + return (longlong) (arg1 ^ arg2); +} + /*************************************************************************** System variables @@ -2274,3 +2292,40 @@ Item *get_system_var(LEX_STRING name) net_printf(¤t_thd->net, ER_UNKNOWN_SYSTEM_VARIABLE, name.str); return 0; } + +/* + Check a user level lock. + Returns 1: available + Returns 0: already taken + Returns NULL: Error +*/ + +longlong Item_func_check_lock::val_int() +{ + String *res=args[0]->val_str(&value); + struct timespec abstime; + THD *thd=current_thd; + ULL *ull; + int error=0; + + null_value=0; + + if (/* check_global_access(thd,SUPER_ACL) ||*/ !res || !res->length()) + { + null_value=1; + return 0; + } + + pthread_mutex_lock(&LOCK_user_locks); + + + ull= (ULL*) hash_search(&hash_user_locks,(byte*) res->ptr(), + res->length()); + + pthread_mutex_unlock(&LOCK_user_locks); + + if (!ull || !ull->locked) + return 1; + + return 0; +} diff --git a/sql/item_func.h b/sql/item_func.h index 57147b6336f..0e1b5b7c9e0 100644 --- a/sql/item_func.h +++ b/sql/item_func.h @@ -39,7 +39,7 @@ public: enum Functype { UNKNOWN_FUNC,EQ_FUNC,EQUAL_FUNC,NE_FUNC,LT_FUNC,LE_FUNC, GE_FUNC,GT_FUNC,FT_FUNC, LIKE_FUNC,NOTLIKE_FUNC,ISNULL_FUNC,ISNOTNULL_FUNC, - COND_AND_FUNC,COND_OR_FUNC,BETWEEN,IN_FUNC,INTERVAL_FUNC}; + COND_AND_FUNC,COND_OR_FUNC,COND_XOR_FUNC,BETWEEN,IN_FUNC,INTERVAL_FUNC}; enum optimize_type { OPTIMIZE_NONE,OPTIMIZE_KEY,OPTIMIZE_OP, OPTIMIZE_NULL }; enum Type type() const { return FUNC_ITEM; } virtual enum Functype functype() const { return UNKNOWN_FUNC; } @@ -989,3 +989,23 @@ enum Item_cast }; Item *create_func_cast(Item *a, Item_cast cast_type); + + +class Item_func_bit_xor : public Item_int_func +{ +public: + Item_func_bit_xor(Item *a,Item *b) :Item_int_func(a,b) {} + longlong val_int(); + const char *func_name() const { return "^"; } + void fix_length_xor_dec() { unsigned_flag=1; } +}; + +class Item_func_check_lock :public Item_int_func +{ + String value; +public: + Item_func_check_lock(Item *a) :Item_int_func(a) {} + longlong val_int(); + const char *func_name() const { return "check_lock"; } + void fix_length_and_dec() { decimals=0; max_length=1; maybe_null=1;} +}; diff --git a/sql/lex.h b/sql/lex.h index df32f84ae43..8b9d2f3a9e0 100644 --- a/sql/lex.h +++ b/sql/lex.h @@ -384,6 +384,7 @@ static SYMBOL symbols[] = { { "WRITE", SYM(WRITE_SYM),0,0}, { "WHEN", SYM(WHEN_SYM),0,0}, { "WHERE", SYM(WHERE),0,0}, + { "XOR", SYM(XOR),0,0}, { "X509", SYM(X509_SYM),0,0}, { "YEAR", SYM(YEAR_SYM),0,0}, { "YEAR_MONTH", SYM(YEAR_MONTH_SYM),0,0}, @@ -412,6 +413,7 @@ static SYMBOL sql_functions[] = { { "BIT_LENGTH", SYM(FUNC_ARG1),0,CREATE_FUNC(create_func_bit_length)}, { "CHAR_LENGTH", SYM(FUNC_ARG1),0,CREATE_FUNC(create_func_char_length)}, { "CHARACTER_LENGTH", SYM(FUNC_ARG1),0,CREATE_FUNC(create_func_char_length)}, + { "CHECK_LOCK", SYM(FUNC_ARG1),0,CREATE_FUNC(create_func_check_lock)}, { "COALESCE", SYM(COALESCE),0,0}, { "CONCAT", SYM(CONCAT),0,0}, { "CONCAT_WS", SYM(CONCAT_WS),0,0}, diff --git a/sql/log.cc b/sql/log.cc index b0483ea4a27..f8bcd05510d 100644 --- a/sql/log.cc +++ b/sql/log.cc @@ -888,15 +888,15 @@ bool MYSQL_LOG::write(THD *thd,enum enum_server_command command, bool MYSQL_LOG::write(Log_event* event_info) { - /* In most cases this is only called if 'is_open()' is true */ bool error=0; - bool should_rotate = 0; if (!inited) // Can't use mutex if not init return 0; VOID(pthread_mutex_lock(&LOCK_log)); + /* In most cases this is only called if 'is_open()' is true */ if (is_open()) { + bool should_rotate = 0; THD *thd=event_info->thd; const char* db = event_info->get_db(); #ifdef USING_TRANSACTIONS @@ -985,9 +985,9 @@ err: } if (file == &log_file) signal_update(); + if (should_rotate) + new_file(1); // inside mutex } - if (should_rotate) - new_file(1); // inside mutex VOID(pthread_mutex_unlock(&LOCK_log)); return error; } diff --git a/sql/log_event.cc b/sql/log_event.cc index 5ff2362e9db..6765ecc5b1f 100644 --- a/sql/log_event.cc +++ b/sql/log_event.cc @@ -1022,16 +1022,19 @@ char* sql_ex_info::init(char* buf,char* buf_end,bool use_new_format) #ifndef MYSQL_CLIENT Load_log_event::Load_log_event(THD* thd, sql_exchange* ex, const char* db_arg, const char* table_name_arg, - List<Item>& fields_arg, enum enum_duplicates handle_dup) + List<Item>& fields_arg, + enum enum_duplicates handle_dup) :Log_event(thd),thread_id(thd->thread_id), num_fields(0),fields(0), - field_lens(0),field_block_len(0), table_name(table_name_arg), + field_lens(0),field_block_len(0), + table_name(table_name_arg ? table_name_arg : ""), db(db_arg), fname(ex->file_name) { time_t end_time; time(&end_time); exec_time = (ulong) (end_time - thd->start_time); - db_len = (db) ? (uint32) strlen(db) : 0; - table_name_len = (table_name) ? (uint32) strlen(table_name) : 0; + /* db can never be a zero pointer in 4.0 */ + db_len = (uint32) strlen(db); + table_name_len = (uint32) strlen(table_name); fname_len = (fname) ? (uint) strlen(fname) : 0; sql_ex.field_term = (char*) ex->field_term->ptr(); sql_ex.field_term_len = (uint8) ex->field_term->length(); diff --git a/sql/log_event.h b/sql/log_event.h index 29cf6287a4f..bcdcc72e0c2 100644 --- a/sql/log_event.h +++ b/sql/log_event.h @@ -407,15 +407,15 @@ public: String fields_buf; Load_log_event(THD* thd, sql_exchange* ex, const char* db_arg, - const char* table_name_arg, + const char* table_name_arg, List<Item>& fields_arg, enum enum_duplicates handle_dup); void set_fields(List<Item> &fields_arg); void pack_info(String* packet); const char* get_db() { return db; } int exec_event(struct st_relay_log_info* rli) - { - return exec_event(thd->slave_net,rli); - } + { + return exec_event(thd->slave_net,rli); + } int exec_event(NET* net, struct st_relay_log_info* rli); #else void print(FILE* file, bool short_form = 0, char* last_db = 0); @@ -423,8 +423,7 @@ public: Load_log_event(const char* buf, int event_len, bool old_format); ~Load_log_event() - { - } + {} Log_event_type get_type_code() { return sql_ex.new_format() ? NEW_LOAD_EVENT: LOAD_EVENT; } int write_data_header(IO_CACHE* file); diff --git a/sql/slave.cc b/sql/slave.cc index 5ca78b6c7a2..4b58816f409 100644 --- a/sql/slave.cc +++ b/sql/slave.cc @@ -405,7 +405,6 @@ int terminate_slave_thread(THD* thd, pthread_mutex_t* term_lock, */ struct timespec abstime; set_timespec(abstime,2); - DBUG_ASSERT_LOCK(cond_lock); pthread_cond_timedwait(term_cond, cond_lock, &abstime); if (*slave_running) { diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy index 7b3dc7db52e..635896c2ab2 100644 --- a/sql/sql_yacc.yy +++ b/sql/sql_yacc.yy @@ -339,6 +339,7 @@ bool my_yyoverflow(short **a, YYSTYPE **b,int *yystacksize); %token WITH %token WRITE_SYM %token X509_SYM +%token XOR %token COMPRESSED_SYM %token BIGINT @@ -496,6 +497,8 @@ bool my_yyoverflow(short **a, YYSTYPE **b,int *yystacksize); %left '-' '+' %left '*' '/' '%' %left NEG '~' +%left XOR +%left '^' %right NOT %right BINARY @@ -1524,6 +1527,7 @@ expr_expr: { $$= new Item_func_not(new Item_func_between($1,$4,$6)); } | expr OR_OR_CONCAT expr { $$= or_or_concat($1,$3); } | expr OR expr { $$= new Item_cond_or($1,$3); } + | expr XOR expr { $$= new Item_cond_xor($1,$3); } | expr AND expr { $$= new Item_cond_and($1,$3); } | expr LIKE simple_expr opt_escape { $$= new Item_func_like($1,$3,$4); } | expr NOT LIKE simple_expr opt_escape { $$= new Item_func_not(new Item_func_like($1,$4,$5));} @@ -1545,6 +1549,7 @@ expr_expr: | expr '*' expr { $$= new Item_func_mul($1,$3); } | expr '/' expr { $$= new Item_func_div($1,$3); } | expr '|' expr { $$= new Item_func_bit_or($1,$3); } + | expr '^' expr { $$= new Item_func_bit_xor($1,$3); } | expr '&' expr { $$= new Item_func_bit_and($1,$3); } | expr '%' expr { $$= new Item_func_mod($1,$3); } | expr '+' INTERVAL_SYM expr interval @@ -1560,6 +1565,7 @@ no_in_expr: { $$= new Item_func_not(new Item_func_between($1,$4,$6)); } | no_in_expr OR_OR_CONCAT expr { $$= or_or_concat($1,$3); } | no_in_expr OR expr { $$= new Item_cond_or($1,$3); } + | no_in_expr XOR expr { $$= new Item_cond_xor($1,$3); } | no_in_expr AND expr { $$= new Item_cond_and($1,$3); } | no_in_expr LIKE simple_expr opt_escape { $$= new Item_func_like($1,$3,$4); } | no_in_expr NOT LIKE simple_expr opt_escape { $$= new Item_func_not(new Item_func_like($1,$4,$5)); } @@ -1581,6 +1587,7 @@ no_in_expr: | no_in_expr '*' expr { $$= new Item_func_mul($1,$3); } | no_in_expr '/' expr { $$= new Item_func_div($1,$3); } | no_in_expr '|' expr { $$= new Item_func_bit_or($1,$3); } + | no_in_expr '^' expr { $$= new Item_func_bit_xor($1,$3); } | no_in_expr '&' expr { $$= new Item_func_bit_and($1,$3); } | no_in_expr '%' expr { $$= new Item_func_mod($1,$3); } | no_in_expr '+' INTERVAL_SYM expr interval @@ -1601,6 +1608,7 @@ no_and_expr: { $$= new Item_func_not(new Item_func_between($1,$4,$6)); } | no_and_expr OR_OR_CONCAT expr { $$= or_or_concat($1,$3); } | no_and_expr OR expr { $$= new Item_cond_or($1,$3); } + | no_and_expr XOR expr { $$= new Item_cond_xor($1,$3); } | no_and_expr LIKE simple_expr opt_escape { $$= new Item_func_like($1,$3,$4); } | no_and_expr NOT LIKE simple_expr opt_escape { $$= new Item_func_not(new Item_func_like($1,$4,$5)); } | no_and_expr REGEXP expr { $$= new Item_func_regex($1,$3); } @@ -1621,6 +1629,7 @@ no_and_expr: | no_and_expr '*' expr { $$= new Item_func_mul($1,$3); } | no_and_expr '/' expr { $$= new Item_func_div($1,$3); } | no_and_expr '|' expr { $$= new Item_func_bit_or($1,$3); } + | no_and_expr '^' expr { $$= new Item_func_bit_xor($1,$3); } | no_and_expr '&' expr { $$= new Item_func_bit_and($1,$3); } | no_and_expr '%' expr { $$= new Item_func_mod($1,$3); } | no_and_expr '+' INTERVAL_SYM expr interval |