summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorpaul@teton.kitebird.com <>2003-06-27 12:37:31 -0500
committerpaul@teton.kitebird.com <>2003-06-27 12:37:31 -0500
commita8b104da9dee27b6690ce25ba62d0769e77fc6c2 (patch)
tree98da4e09c32adfcc5e4e69e77c170b2e9d7bd2de /sql
parent33f8d7aedf505793526fa7abfe45499ed08dc016 (diff)
parent41aa9a026dba0a6aa97b47dddb09910af65928c8 (diff)
downloadmariadb-git-a8b104da9dee27b6690ce25ba62d0769e77fc6c2.tar.gz
Merge paul@bk-internal.mysql.com:/home/bk/mysql-4.1
into teton.kitebird.com:/home/paul/mysql-4.1
Diffstat (limited to 'sql')
-rw-r--r--sql/item.cc26
-rw-r--r--sql/item_cmpfunc.cc85
-rw-r--r--sql/item_cmpfunc.h17
-rw-r--r--sql/mysqld.cc12
4 files changed, 86 insertions, 54 deletions
diff --git a/sql/item.cc b/sql/item.cc
index 950f27c5d69..c99493ff689 100644
--- a/sql/item.cc
+++ b/sql/item.cc
@@ -39,7 +39,7 @@ Item::Item():
{
marker= 0;
maybe_null=null_value=with_sum_func=unsigned_flag=0;
- set_charset(&my_charset_bin, DERIVATION_COERCIBLE);
+ set_charset(default_charset(), DERIVATION_COERCIBLE);
name= 0;
decimals= 0; max_length= 0;
THD *thd= current_thd;
@@ -185,27 +185,27 @@ CHARSET_INFO * Item::default_charset() const
bool DTCollation::aggregate(DTCollation &dt)
{
- if (collation == &my_charset_bin || dt.collation == &my_charset_bin)
- {
- collation= &my_charset_bin;
- derivation= derivation > dt.derivation ? derivation : dt.derivation;
- return 0;
- }
-
if (!my_charset_same(collation, dt.collation))
{
/*
We do allow to use binary strings (like BLOBS)
together with character strings.
- Binaries have more precedance
+ Binaries have more precedance than a character
+ string of the same derivation.
*/
- if ((derivation <= dt.derivation) && (collation == &my_charset_bin))
+ if (collation == &my_charset_bin)
{
- // Do nothing
+ if (derivation <= dt.derivation)
+ ; // Do nothing
+ else
+ set(dt);
}
- else if ((dt.derivation <= derivation) && (dt.collation==&my_charset_bin))
+ else if (dt.collation == &my_charset_bin)
{
- set(dt);
+ if (dt.derivation <= derivation)
+ set(dt);
+ else
+ ; // Do nothing
}
else
{
diff --git a/sql/item_cmpfunc.cc b/sql/item_cmpfunc.cc
index ca3f55a9804..f9c2228b33d 100644
--- a/sql/item_cmpfunc.cc
+++ b/sql/item_cmpfunc.cc
@@ -32,6 +32,18 @@ static void my_coll_agg_error(DTCollation &c1, DTCollation &c2, const char *fnam
fname);
}
+static void my_coll_agg3_error(DTCollation &c1,
+ DTCollation &c2,
+ DTCollation &c3,
+ const char *fname)
+{
+ my_error(ER_CANT_AGGREGATE_3COLLATIONS,MYF(0),
+ c1.collation->name,c1.derivation_name(),
+ c2.collation->name,c2.derivation_name(),
+ c3.collation->name,c3.derivation_name(),
+ fname);
+}
+
Item_bool_func2* Item_bool_func2::eq_creator(Item *a, Item *b)
{
return new Item_func_eq(a, b);
@@ -575,11 +587,19 @@ void Item_func_between::fix_length_and_dec()
cmp_type=item_cmp_type(args[0]->result_type(),
item_cmp_type(args[1]->result_type(),
args[2]->result_type()));
- /* QQ: COERCIBILITY */
- if (args[0]->binary() | args[1]->binary() | args[2]->binary())
- cmp_charset= &my_charset_bin;
- else
- cmp_charset= args[0]->charset();
+
+ if (cmp_type == STRING_RESULT)
+ {
+ cmp_collation.set(args[0]->collation);
+ if (!cmp_collation.aggregate(args[1]->collation))
+ cmp_collation.aggregate(args[2]->collation);
+ if (cmp_collation.derivation == DERIVATION_NONE)
+ {
+ my_coll_agg3_error(args[0]->collation, args[1]->collation,
+ args[2]->collation, func_name());
+ return;
+ }
+ }
/*
Make a special case of compare with date/time and longlong fields.
@@ -611,17 +631,17 @@ longlong Item_func_between::val_int()
a=args[1]->val_str(&value1);
b=args[2]->val_str(&value2);
if (!args[1]->null_value && !args[2]->null_value)
- return (sortcmp(value,a,cmp_charset) >= 0 &&
- sortcmp(value,b,cmp_charset) <= 0) ? 1 : 0;
+ return (sortcmp(value,a,cmp_collation.collation) >= 0 &&
+ sortcmp(value,b,cmp_collation.collation) <= 0) ? 1 : 0;
if (args[1]->null_value && args[2]->null_value)
null_value=1;
else if (args[1]->null_value)
{
- null_value= sortcmp(value,b,cmp_charset) <= 0; // not null if false range.
+ null_value= sortcmp(value,b,cmp_collation.collation) <= 0; // not null if false range.
}
else
{
- null_value= sortcmp(value,a,cmp_charset) >= 0; // not null if false range.
+ null_value= sortcmp(value,a,cmp_collation.collation) >= 0; // not null if false range.
}
}
else if (cmp_type == INT_RESULT)
@@ -1176,17 +1196,17 @@ void Item_func_coalesce::fix_length_and_dec()
Classes and function for the IN operator
****************************************************************************/
-static int cmp_longlong(longlong *a,longlong *b)
+static int cmp_longlong(void *cmp_arg, longlong *a,longlong *b)
{
return *a < *b ? -1 : *a == *b ? 0 : 1;
}
-static int cmp_double(double *a,double *b)
+static int cmp_double(void *cmp_arg, double *a,double *b)
{
return *a < *b ? -1 : *a == *b ? 0 : 1;
}
-static int cmp_row(cmp_item_row* a, cmp_item_row* b)
+static int cmp_row(void *cmp_arg, cmp_item_row* a, cmp_item_row* b)
{
return a->compare(b);
}
@@ -1203,18 +1223,18 @@ int in_vector::find(Item *item)
{
uint mid=(start+end+1)/2;
int res;
- if ((res=(*compare)(base+mid*size,result)) == 0)
+ if ((res=(*compare)(collation, base+mid*size, result)) == 0)
return 1;
if (res < 0)
start=mid;
else
end=mid-1;
}
- return (int) ((*compare)(base+start*size,result) == 0);
+ return (int) ((*compare)(collation, base+start*size, result) == 0);
}
-in_string::in_string(uint elements,qsort_cmp cmp_func)
- :in_vector(elements, sizeof(String), cmp_func),
+in_string::in_string(uint elements,qsort2_cmp cmp_func, CHARSET_INFO *cs)
+ :in_vector(elements, sizeof(String), cmp_func, cs),
tmp(buff, sizeof(buff), &my_charset_bin)
{}
@@ -1253,7 +1273,7 @@ in_row::in_row(uint elements, Item * item)
{
base= (char*) new cmp_item_row[count= elements];
size= sizeof(cmp_item_row);
- compare= (qsort_cmp) cmp_row;
+ compare= (qsort2_cmp) cmp_row;
tmp.store_value(item);
}
@@ -1278,7 +1298,7 @@ void in_row::set(uint pos, Item *item)
}
in_longlong::in_longlong(uint elements)
- :in_vector(elements,sizeof(longlong),(qsort_cmp) cmp_longlong)
+ :in_vector(elements,sizeof(longlong),(qsort2_cmp) cmp_longlong, 0)
{}
void in_longlong::set(uint pos,Item *item)
@@ -1295,7 +1315,7 @@ byte *in_longlong::get_value(Item *item)
}
in_double::in_double(uint elements)
- :in_vector(elements,sizeof(double),(qsort_cmp) cmp_double)
+ :in_vector(elements,sizeof(double),(qsort2_cmp) cmp_double, 0)
{}
void in_double::set(uint pos,Item *item)
@@ -1442,17 +1462,8 @@ bool Item_func_in::nulls_in_row()
return 0;
}
-static int srtcmp_in(const String *x,const String *y)
-{
- CHARSET_INFO *cs= x->charset();
- return cs->coll->strnncollsp(cs,
- (unsigned char *) x->ptr(),x->length(),
- (unsigned char *) y->ptr(),y->length());
-}
-
-static int bincmp_in(const String *x,const String *y)
+static int srtcmp_in(CHARSET_INFO *cs, const String *x,const String *y)
{
- CHARSET_INFO *cs= &my_charset_bin;
return cs->coll->strnncollsp(cs,
(unsigned char *) x->ptr(),x->length(),
(unsigned char *) y->ptr(),y->length());
@@ -1468,10 +1479,18 @@ void Item_func_in::fix_length_and_dec()
{
switch (item->result_type()) {
case STRING_RESULT:
- if (item->binary())
- array=new in_string(arg_count,(qsort_cmp) srtcmp_in);
- else
- array=new in_string(arg_count,(qsort_cmp) bincmp_in);
+ uint i;
+ cmp_collation.set(item->collation);
+ for (i=0 ; i<arg_count; i++)
+ if (cmp_collation.aggregate(args[i]->collation))
+ break;
+ if (cmp_collation.derivation == DERIVATION_NONE)
+ {
+ my_error(ER_CANT_AGGREGATE_NCOLLATIONS,MYF(0),func_name());
+ return;
+ }
+ array=new in_string(arg_count,(qsort2_cmp) srtcmp_in,
+ cmp_collation.collation);
break;
case INT_RESULT:
array= new in_longlong(arg_count);
diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h
index 1221e316a72..1311cae335f 100644
--- a/sql/item_cmpfunc.h
+++ b/sql/item_cmpfunc.h
@@ -245,7 +245,7 @@ public:
class Item_func_between :public Item_int_func
{
- CHARSET_INFO *cmp_charset;
+ DTCollation cmp_collation;
public:
Item_result cmp_type;
String value0,value1,value2;
@@ -382,21 +382,23 @@ class in_vector :public Sql_alloc
protected:
char *base;
uint size;
- qsort_cmp compare;
+ qsort2_cmp compare;
+ CHARSET_INFO *collation;
uint count;
public:
uint used_count;
in_vector() {}
- in_vector(uint elements,uint element_length,qsort_cmp cmp_func)
+ in_vector(uint elements,uint element_length,qsort2_cmp cmp_func,
+ CHARSET_INFO *cmp_coll)
:base((char*) sql_calloc(elements*element_length)),
- size(element_length), compare(cmp_func), count(elements),
- used_count(elements) {}
+ size(element_length), compare(cmp_func), collation(cmp_coll),
+ count(elements), used_count(elements) {}
virtual ~in_vector() {}
virtual void set(uint pos,Item *item)=0;
virtual byte *get_value(Item *item)=0;
void sort()
{
- qsort(base,used_count,size,compare);
+ qsort2(base,used_count,size,compare,collation);
}
int find(Item *item);
};
@@ -406,7 +408,7 @@ class in_string :public in_vector
char buff[80];
String tmp;
public:
- in_string(uint elements,qsort_cmp cmp_func);
+ in_string(uint elements,qsort2_cmp cmp_func, CHARSET_INFO *cs);
~in_string();
void set(uint pos,Item *item);
byte *get_value(Item *item);
@@ -605,6 +607,7 @@ class Item_func_in :public Item_int_func
in_vector *array;
cmp_item *in_item;
bool have_null;
+ DTCollation cmp_collation;
public:
Item_func_in(Item *a,List<Item> &list)
:Item_int_func(list), item(a), array(0), in_item(0), have_null(0)
diff --git a/sql/mysqld.cc b/sql/mysqld.cc
index 68fa0cca2d5..72ee3e30c63 100644
--- a/sql/mysqld.cc
+++ b/sql/mysqld.cc
@@ -4092,7 +4092,8 @@ replicating a LOAD DATA INFILE command.",
IO_SIZE, 0},
{"key_buffer_size", OPT_KEY_BUFFER_SIZE,
"The size of the buffer used for index blocks. Increase this to get better index handling (for all reads and multiple writes) to as much as you can afford; 64M on a 256M machine that mainly runs MySQL is quite common.",
- (gptr*) &keybuff_size, (gptr*) &keybuff_size, 0, GET_ULL,
+ (gptr*) &keybuff_size, (gptr*) &keybuff_size, 0,
+ (enum get_opt_var_type) (GET_ULL | GET_ASK_ADDR),
REQUIRED_ARG, KEY_CACHE_SIZE, MALLOC_OVERHEAD, (long) ~0, MALLOC_OVERHEAD,
IO_SIZE, 0},
{"long_query_time", OPT_LONG_QUERY_TIME,
@@ -5298,10 +5299,19 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
}
/* Initiates DEBUG - but no debugging here ! */
+
+extern "C" gptr *
+mysql_getopt_value(char *keyname, uint key_length,
+ const struct my_option *option)
+{
+ return option->value;
+}
+
static void get_options(int argc,char **argv)
{
int ho_error;
+ my_getopt_register_get_addr(mysql_getopt_value);
if ((ho_error=handle_options(&argc, &argv, my_long_options, get_one_option)))
exit(ho_error);
if (argc > 0)