mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
Merge with global tree
myisam/mi_key.c: Auto merged myisam/mi_open.c: Auto merged mysql-test/r/information_schema.result: Auto merged mysql-test/r/ps_1general.result: Auto merged mysys/my_handler.c: Auto merged sql/field.cc: Auto merged sql/field.h: Auto merged sql/field_conv.cc: Auto merged sql/ha_myisam.cc: Auto merged sql/sql_parse.cc: Auto merged sql/sql_select.cc: Auto merged sql/sql_show.cc: Auto merged sql/sql_table.cc: Auto merged include/my_base.h: Merge
This commit is contained in:
commit
e8b60b1612
57 changed files with 1405 additions and 460 deletions
|
|
@ -28,7 +28,7 @@
|
|||
LIST *list_add(LIST *root, LIST *element)
|
||||
{
|
||||
DBUG_ENTER("list_add");
|
||||
DBUG_PRINT("enter",("root: 0x%lx element: %lx", root, element));
|
||||
DBUG_PRINT("enter",("root: 0x%lx element: 0x%lx", root, element));
|
||||
if (root)
|
||||
{
|
||||
if (root->prev) /* If add in mid of list */
|
||||
|
|
|
|||
|
|
@ -207,7 +207,8 @@ int ha_key_cmp(register HA_KEYSEG *keyseg, register uchar *a,
|
|||
b+=length;
|
||||
}
|
||||
break;
|
||||
case HA_KEYTYPE_VARTEXT:
|
||||
case HA_KEYTYPE_VARTEXT1:
|
||||
case HA_KEYTYPE_VARTEXT2:
|
||||
{
|
||||
int a_length,b_length,pack_length;
|
||||
get_key_length(a_length,a);
|
||||
|
|
@ -229,7 +230,8 @@ int ha_key_cmp(register HA_KEYSEG *keyseg, register uchar *a,
|
|||
break;
|
||||
}
|
||||
break;
|
||||
case HA_KEYTYPE_VARBINARY:
|
||||
case HA_KEYTYPE_VARBINARY1:
|
||||
case HA_KEYTYPE_VARBINARY2:
|
||||
{
|
||||
int a_length,b_length,pack_length;
|
||||
get_key_length(a_length,a);
|
||||
|
|
|
|||
|
|
@ -185,7 +185,7 @@ extern "C" {
|
|||
uint my_raid_write(File fd,const byte *Buffer, uint Count, myf MyFlags)
|
||||
{
|
||||
DBUG_ENTER("my_raid_write");
|
||||
DBUG_PRINT("enter",("Fd: %d Buffer: %lx Count: %u MyFlags: %d",
|
||||
DBUG_PRINT("enter",("Fd: %d Buffer: 0x%lx Count: %u MyFlags: %d",
|
||||
fd, Buffer, Count, MyFlags));
|
||||
if (is_raid(fd))
|
||||
{
|
||||
|
|
@ -198,7 +198,7 @@ extern "C" {
|
|||
uint my_raid_read(File fd, byte *Buffer, uint Count, myf MyFlags)
|
||||
{
|
||||
DBUG_ENTER("my_raid_read");
|
||||
DBUG_PRINT("enter",("Fd: %d Buffer: %lx Count: %u MyFlags: %d",
|
||||
DBUG_PRINT("enter",("Fd: %d Buffer: 0x%lx Count: %u MyFlags: %d",
|
||||
fd, Buffer, Count, MyFlags));
|
||||
if (is_raid(fd))
|
||||
{
|
||||
|
|
@ -212,8 +212,9 @@ extern "C" {
|
|||
myf MyFlags)
|
||||
{
|
||||
DBUG_ENTER("my_raid_pread");
|
||||
DBUG_PRINT("enter",("Fd: %d Buffer: %lx Count: %u offset: %u MyFlags: %d",
|
||||
Filedes, Buffer, Count, offset, MyFlags));
|
||||
DBUG_PRINT("enter",
|
||||
("Fd: %d Buffer: 0x%lx Count: %u offset: %u MyFlags: %d",
|
||||
Filedes, Buffer, Count, offset, MyFlags));
|
||||
if (is_raid(Filedes))
|
||||
{
|
||||
assert(offset != MY_FILEPOS_ERROR);
|
||||
|
|
@ -231,8 +232,9 @@ extern "C" {
|
|||
my_off_t offset, myf MyFlags)
|
||||
{
|
||||
DBUG_ENTER("my_raid_pwrite");
|
||||
DBUG_PRINT("enter",("Fd: %d Buffer: %lx Count: %u offset: %u MyFlags: %d",
|
||||
Filedes, Buffer, Count, offset, MyFlags));
|
||||
DBUG_PRINT("enter",
|
||||
("Fd: %d Buffer: 0x %lx Count: %u offset: %u MyFlags: %d",
|
||||
Filedes, Buffer, Count, offset, MyFlags));
|
||||
if (is_raid(Filedes))
|
||||
{
|
||||
assert(offset != MY_FILEPOS_ERROR);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue