mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Merge work:/my/mysql-4.0 into mashka.mysql.fi:/home/my/mysql-4.0
sql/ha_innodb.cc: Auto merged sql/mysqld.cc: Auto merged
This commit is contained in:
@@ -536,7 +536,7 @@ INSERT INTO t2 VALUES (1,2), (2,2);
|
|||||||
CREATE TABLE t ( a int(11) NOT NULL default '0', b int(11) NOT NULL default '0', KEY a (a,b)) TYPE=MRG_MyISAM UNION=(t1,t2);
|
CREATE TABLE t ( a int(11) NOT NULL default '0', b int(11) NOT NULL default '0', KEY a (a,b)) TYPE=MRG_MyISAM UNION=(t1,t2);
|
||||||
select max(b) from t where a = 2;
|
select max(b) from t where a = 2;
|
||||||
max(b)
|
max(b)
|
||||||
NULL
|
2
|
||||||
select max(b) from t1 where a = 2;
|
select max(b) from t1 where a = 2;
|
||||||
max(b)
|
max(b)
|
||||||
1
|
1
|
||||||
|
@@ -2249,19 +2249,7 @@ convert_search_mode_to_innobase(
|
|||||||
case HA_READ_AFTER_KEY: return(PAGE_CUR_G);
|
case HA_READ_AFTER_KEY: return(PAGE_CUR_G);
|
||||||
case HA_READ_BEFORE_KEY: return(PAGE_CUR_L);
|
case HA_READ_BEFORE_KEY: return(PAGE_CUR_L);
|
||||||
case HA_READ_PREFIX: return(PAGE_CUR_GE);
|
case HA_READ_PREFIX: return(PAGE_CUR_GE);
|
||||||
case HA_READ_PREFIX_LAST:
|
case HA_READ_PREFIX_LAST: return(PAGE_CUR_LE_OR_EXTENDS);
|
||||||
/* ut_print_timestamp(stderr);
|
|
||||||
fprintf(stderr,
|
|
||||||
" InnoDB: Warning: Using HA_READ_PREFIX_LAST\n"); */
|
|
||||||
return(PAGE_CUR_LE);
|
|
||||||
|
|
||||||
/* InnoDB does not yet support ..PREFIX_LAST!
|
|
||||||
We have to add a new search flag
|
|
||||||
PAGE_CUR_LE_OR_PREFIX to InnoDB. */
|
|
||||||
|
|
||||||
/* the above PREFIX flags mean that the last
|
|
||||||
field in the key value may just be a prefix
|
|
||||||
of the complete fixed length field */
|
|
||||||
default: assert(0);
|
default: assert(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -749,7 +749,7 @@ static void *kill_server(void *sig_ptr)
|
|||||||
#define RETURN_FROM_KILL_SERVER DBUG_RETURN(0)
|
#define RETURN_FROM_KILL_SERVER DBUG_RETURN(0)
|
||||||
#else
|
#else
|
||||||
static void __cdecl kill_server(int sig_ptr)
|
static void __cdecl kill_server(int sig_ptr)
|
||||||
#define RETURN_FROM_KILL_SERVER DBUG_RETURN
|
#define RETURN_FROM_KILL_SERVER DBUG_VOID_RETURN
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
int sig=(int) (long) sig_ptr; // This is passed a int
|
int sig=(int) (long) sig_ptr; // This is passed a int
|
||||||
|
@@ -38,7 +38,7 @@ int opt_sum_query(TABLE_LIST *tables, List<Item> &all_fields,COND *conds)
|
|||||||
table_map removed_tables=0;
|
table_map removed_tables=0;
|
||||||
Item *item;
|
Item *item;
|
||||||
COND *org_conds= conds;
|
COND *org_conds= conds;
|
||||||
|
|
||||||
/* Add all ON conditions to WHERE condition */
|
/* Add all ON conditions to WHERE condition */
|
||||||
for (TABLE_LIST *tl=tables; tl ; tl= tl->next)
|
for (TABLE_LIST *tl=tables; tl ; tl= tl->next)
|
||||||
{
|
{
|
||||||
@@ -165,10 +165,9 @@ int opt_sum_query(TABLE_LIST *tables, List<Item> &all_fields,COND *conds)
|
|||||||
error=table->file->index_last(table->record[0]) !=0;
|
error=table->file->index_last(table->record[0]) !=0;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
(void)table->file->index_read(table->record[0], key_buff,
|
error = table->file->index_read(table->record[0], key_buff,
|
||||||
ref.key_length,
|
ref.key_length,
|
||||||
HA_READ_AFTER_KEY);
|
HA_READ_PREFIX_LAST) ||
|
||||||
error=table->file->index_prev(table->record[0]) ||
|
|
||||||
key_cmp(table,key_buff,ref.key,ref.key_length);
|
key_cmp(table,key_buff,ref.key,ref.key_length);
|
||||||
}
|
}
|
||||||
if (table->key_read)
|
if (table->key_read)
|
||||||
|
Reference in New Issue
Block a user