Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
eb6458cb
Commit
eb6458cb
authored
Aug 19, 2003
by
monty@mashka.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
After merge fixes + bugs from last merge
parent
10c4acfb
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
51 additions
and
49 deletions
+51
-49
mysql-test/mysql-test-run.sh
mysql-test/mysql-test-run.sh
+3
-3
mysql-test/t/union.test
mysql-test/t/union.test
+1
-1
sql/item.cc
sql/item.cc
+1
-1
sql/log_event.cc
sql/log_event.cc
+0
-2
sql/protocol.h
sql/protocol.h
+1
-1
sql/set_var.cc
sql/set_var.cc
+3
-1
sql/slave.cc
sql/slave.cc
+5
-3
sql/sql_base.cc
sql/sql_base.cc
+2
-0
sql/sql_class.cc
sql/sql_class.cc
+1
-3
sql/sql_parse.cc
sql/sql_parse.cc
+17
-20
sql/table.cc
sql/table.cc
+17
-14
No files found.
mysql-test/mysql-test-run.sh
View file @
eb6458cb
...
...
@@ -344,8 +344,8 @@ while test $# -gt 0; do
;;
--valgrind
)
VALGRIND
=
"valgrind --alignment=8 --leak-check=yes --num-callers=16"
EXTRA_MASTER_MYSQLD_OPT
=
"
$EXTRA_MASTER_MYSQLD_OPT
--skip-safemalloc"
EXTRA_SLAVE_MYSQLD_OPT
=
"
$EXTRA_SLAVE_MYSQLD_OPT
--skip-safemalloc"
EXTRA_MASTER_MYSQLD_OPT
=
"
$EXTRA_MASTER_MYSQLD_OPT
--skip-safemalloc
--skip-bdb
"
EXTRA_SLAVE_MYSQLD_OPT
=
"
$EXTRA_SLAVE_MYSQLD_OPT
--skip-safemalloc
--skip-bdb
"
SLEEP_TIME_AFTER_RESTART
=
10
SLEEP_TIME_FOR_DELETE
=
60
USE_RUNNING_SERVER
=
""
...
...
@@ -998,7 +998,7 @@ start_slave()
if
[
x
$DO_DDD
=
x1
]
then
$ECHO
"set args
$
master
_args
"
>
$GDB_SLAVE_INIT
$ECHO
"set args
$
slave
_args
"
>
$GDB_SLAVE_INIT
manager_launch
$slave_ident
ddd
-display
$DISPLAY
--debugger
\
"gdb -x
$GDB_SLAVE_INIT
"
$SLAVE_MYSQLD
elif
[
x
$DO_GDB
=
x1
]
...
...
mysql-test/t/union.test
View file @
eb6458cb
...
...
@@ -23,7 +23,7 @@ select 't1',b,count(*) from t1 group by b UNION select 't2',b,count(*) from t2 g
(
select
a
,
b
from
t1
limit
2
)
union
all
(
select
a
,
b
from
t2
order
by
a
)
limit
4
;
(
select
a
,
b
from
t1
limit
2
)
union
all
(
select
a
,
b
from
t2
order
by
a
limit
1
);
(
select
a
,
b
from
t1
limit
2
)
union
all
(
select
a
,
b
from
t2
order
by
a
limit
1
)
order
by
b
desc
;
--
error
124
8
--
error
124
9
(
select
a
,
b
from
t1
limit
2
)
union
all
(
select
a
,
b
from
t2
order
by
a
limit
1
)
order
by
t1
.
b
;
explain
(
select
a
,
b
from
t1
limit
2
)
union
all
(
select
a
,
b
from
t2
order
by
a
limit
1
)
order
by
b
desc
;
(
select
sql_calc_found_rows
a
,
b
from
t1
limit
2
)
union
all
(
select
a
,
b
from
t2
order
by
a
)
limit
2
;
...
...
sql/item.cc
View file @
eb6458cb
...
...
@@ -50,7 +50,7 @@ Item::Item():
next
=
thd
->
free_list
;
// Put in free list
thd
->
free_list
=
this
;
/*
Item constructor can be called during execution other t
n
en SQL_COM
Item constructor can be called during execution other t
h
en SQL_COM
command => we should check thd->lex.current_select on zero (thd->lex
can be uninitialised)
*/
...
...
sql/log_event.cc
View file @
eb6458cb
...
...
@@ -911,7 +911,6 @@ int Query_log_event::exec_event(struct st_relay_log_info* rli)
if
(
db_ok
(
thd
->
db
,
replicate_do_db
,
replicate_ignore_db
))
{
thd
->
set_time
((
time_t
)
when
);
thd
->
current_tablenr
=
0
;
thd
->
query_length
=
q_len
;
VOID
(
pthread_mutex_lock
(
&
LOCK_thread_count
));
thd
->
query
=
(
char
*
)
query
;
...
...
@@ -1617,7 +1616,6 @@ int Load_log_event::exec_event(NET* net, struct st_relay_log_info* rli,
if
(
db_ok
(
thd
->
db
,
replicate_do_db
,
replicate_ignore_db
))
{
thd
->
set_time
((
time_t
)
when
);
thd
->
current_tablenr
=
0
;
VOID
(
pthread_mutex_lock
(
&
LOCK_thread_count
));
thd
->
query_id
=
query_id
++
;
VOID
(
pthread_mutex_unlock
(
&
LOCK_thread_count
));
...
...
sql/protocol.h
View file @
eb6458cb
...
...
@@ -61,7 +61,7 @@ class Protocol
inline
bool
store
(
ulonglong
from
)
{
return
store_longlong
((
longlong
)
from
,
1
);
}
inline
bool
store
(
String
*
str
)
{
return
store
(
str
->
c_ptr
(),
str
->
length
(),
str
->
charset
());
}
{
return
store
(
(
char
*
)
str
->
ptr
(),
str
->
length
(),
str
->
charset
());
}
virtual
bool
prepare_for_send
(
List
<
Item
>
*
item_list
)
{
...
...
sql/set_var.cc
View file @
eb6458cb
...
...
@@ -823,7 +823,7 @@ void fix_max_binlog_size(THD *thd, enum_var_type type)
DBUG_PRINT
(
"info"
,(
"max_binlog_size=%lu max_relay_log_size=%lu"
,
max_binlog_size
,
max_relay_log_size
));
mysql_bin_log
.
set_max_size
(
max_binlog_size
);
#ifdef REPLICATION
#ifdef
HAVE_
REPLICATION
if
(
!
max_relay_log_size
)
active_mi
->
rli
.
relay_log
.
set_max_size
(
max_binlog_size
);
#endif
...
...
@@ -835,8 +835,10 @@ void fix_max_relay_log_size(THD *thd, enum_var_type type)
DBUG_ENTER
(
"fix_max_relay_log_size"
);
DBUG_PRINT
(
"info"
,(
"max_binlog_size=%lu max_relay_log_size=%lu"
,
max_binlog_size
,
max_relay_log_size
));
#ifdef HAVE_REPLICATION
active_mi
->
rli
.
relay_log
.
set_max_size
(
max_relay_log_size
?
max_relay_log_size:
max_binlog_size
);
#endif
DBUG_VOID_RETURN
;
}
...
...
sql/slave.cc
View file @
eb6458cb
...
...
@@ -1137,7 +1137,6 @@ static int create_table_from_dump(THD* thd, MYSQL *mysql, const char* db,
return
1
;
}
thd
->
query
=
query
;
thd
->
current_tablenr
=
0
;
thd
->
query_error
=
0
;
thd
->
net
.
no_send_ok
=
1
;
...
...
@@ -1811,7 +1810,8 @@ int show_master_info(THD* thd, MASTER_INFO* mi)
field_list
.
push_back
(
new
Item_empty_string
(
"Replicate_do_table"
,
20
));
field_list
.
push_back
(
new
Item_empty_string
(
"Replicate_ignore_table"
,
23
));
field_list
.
push_back
(
new
Item_empty_string
(
"Replicate_wild_do_table"
,
24
));
field_list
.
push_back
(
new
Item_empty_string
(
"Replicate_wild_ignore_table"
,
28
));
field_list
.
push_back
(
new
Item_empty_string
(
"Replicate_wild_ignore_table"
,
28
));
field_list
.
push_back
(
new
Item_return_int
(
"Last_errno"
,
4
,
MYSQL_TYPE_LONG
));
field_list
.
push_back
(
new
Item_empty_string
(
"Last_error"
,
20
));
field_list
.
push_back
(
new
Item_return_int
(
"Skip_counter"
,
10
,
...
...
@@ -1838,7 +1838,8 @@ int show_master_info(THD* thd, MASTER_INFO* mi)
protocol
->
store
(
mi
->
master_log_name
,
&
my_charset_bin
);
protocol
->
store
((
ulonglong
)
mi
->
master_log_pos
);
protocol
->
store
(
mi
->
rli
.
group_relay_log_name
+
dirname_length
(
mi
->
rli
.
group_relay_log_name
),
&
my_charset_bin
);
dirname_length
(
mi
->
rli
.
group_relay_log_name
),
&
my_charset_bin
);
protocol
->
store
((
ulonglong
)
mi
->
rli
.
group_relay_log_pos
);
protocol
->
store
(
mi
->
rli
.
group_master_log_name
,
&
my_charset_bin
);
protocol
->
store
(
mi
->
slave_running
?
"Yes"
:
"No"
,
&
my_charset_bin
);
...
...
@@ -2384,6 +2385,7 @@ static int exec_relay_log_event(THD* thd, RELAY_LOG_INFO* rli)
thd
->
server_id
=
ev
->
server_id
;
// use the original server id for logging
thd
->
set_time
();
// time the query
thd
->
lex
.
current_select
=
0
;
if
(
!
ev
->
when
)
ev
->
when
=
time
(
NULL
);
ev
->
thd
=
thd
;
...
...
sql/sql_base.cc
View file @
eb6458cb
...
...
@@ -1355,6 +1355,7 @@ int open_tables(THD *thd,TABLE_LIST *start)
int
result
=
0
;
DBUG_ENTER
(
"open_tables"
);
thd
->
current_tablenr
=
0
;
restart:
thd
->
proc_info
=
"Opening tables"
;
for
(
tables
=
start
;
tables
;
tables
=
tables
->
next
)
...
...
@@ -1473,6 +1474,7 @@ TABLE *open_ltable(THD *thd, TABLE_LIST *table_list, thr_lock_type lock_type)
DBUG_ENTER
(
"open_ltable"
);
thd
->
proc_info
=
"Opening table"
;
thd
->
current_tablenr
=
0
;
while
(
!
(
table
=
open_table
(
thd
,
table_list
->
db
,
table_list
->
real_name
,
table_list
->
alias
,
&
refresh
))
&&
refresh
)
;
...
...
sql/sql_class.cc
View file @
eb6458cb
...
...
@@ -96,7 +96,6 @@ THD::THD():user_time(0), is_fatal_error(0),
query_error
=
tmp_table_used
=
0
;
next_insert_id
=
last_insert_id
=
0
;
open_tables
=
temporary_tables
=
handler_tables
=
derived_tables
=
0
;
current_tablenr
=
0
;
handler_items
=
0
;
tmp_table
=
0
;
lock
=
locked_tables
=
0
;
...
...
@@ -161,8 +160,6 @@ THD::THD():user_time(0), is_fatal_error(0),
else
bzero
((
char
*
)
&
user_var_events
,
sizeof
(
user_var_events
));
/* Prepared statements */
last_prepared_stmt
=
0
;
init_tree
(
&
prepared_statements
,
0
,
0
,
sizeof
(
PREP_STMT
),
...
...
@@ -218,6 +215,7 @@ void THD::init(void)
warn_list
.
empty
();
bzero
((
char
*
)
warn_count
,
sizeof
(
warn_count
));
total_warn_count
=
0
;
update_charset
();
}
...
...
sql/sql_parse.cc
View file @
eb6458cb
...
...
@@ -982,7 +982,6 @@ extern "C" pthread_handler_decl(handle_bootstrap,arg)
buff
[
length
-
1
]
==
';'
))
length
--
;
buff
[
length
]
=
0
;
thd
->
current_tablenr
=
0
;
thd
->
query_length
=
length
;
thd
->
query
=
thd
->
memdup_w_gap
(
buff
,
length
+
1
,
thd
->
db_length
+
1
);
thd
->
query
[
length
]
=
'\0'
;
...
...
@@ -1085,7 +1084,6 @@ bool do_command(THD *thd)
DBUG_ENTER
(
"do_command"
);
net
=
&
thd
->
net
;
thd
->
current_tablenr
=
0
;
/*
indicator of uninitialized lex => normal flow of errors handling
(see my_message_sql)
...
...
@@ -1172,21 +1170,20 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
}
#endif
case
COM_TABLE_DUMP
:
{
statistic_increment
(
com_other
,
&
LOCK_status
);
slow_command
=
TRUE
;
uint
db_len
=
*
(
uchar
*
)
packet
;
uint
tbl_len
=
*
(
uchar
*
)(
packet
+
db_len
+
1
);
char
*
db
=
thd
->
alloc
(
db_len
+
tbl_len
+
2
);
memcpy
(
db
,
packet
+
1
,
db_len
);
char
*
tbl_name
=
db
+
db_len
;
*
tbl_name
++
=
0
;
memcpy
(
tbl_name
,
packet
+
db_len
+
2
,
tbl_len
);
tbl_name
[
tbl_len
]
=
0
;
if
(
mysql_table_dump
(
thd
,
db
,
tbl_name
,
-
1
))
send_error
(
thd
);
// dump to NET
break
;
}
{
char
*
db
,
*
tbl_name
;
uint
db_len
=
*
(
uchar
*
)
packet
;
uint
tbl_len
=
*
(
uchar
*
)
(
packet
+
db_len
+
1
);
statistic_increment
(
com_other
,
&
LOCK_status
);
slow_command
=
TRUE
;
db
=
thd
->
alloc
(
db_len
+
tbl_len
+
2
);
tbl_name
=
strmake
(
db
,
packet
+
1
,
db_len
)
+
1
;
strmake
(
tbl_name
,
packet
+
db_len
+
2
,
tbl_len
);
if
(
mysql_table_dump
(
thd
,
db
,
tbl_name
,
-
1
))
send_error
(
thd
);
// dump to NET
break
;
}
#ifndef EMBEDDED_LIBRARY
case
COM_CHANGE_USER
:
{
...
...
@@ -1703,9 +1700,9 @@ mysql_execute_command(THD *thd)
}
#ifndef TO_BE_DELETED
/*
This is a workaround to deal with the shortcoming in 3.23.44-3.23.46
masters in RELEASE_LOCK() logging. We re-write SELECT RELEASE_LOCK()
as DO RELEASE_LOCK()
This is a workaround to deal with the shortcoming in 3.23.44-3.23.46
masters in RELEASE_LOCK() logging. We re-write SELECT RELEASE_LOCK()
as DO RELEASE_LOCK()
*/
if
(
lex
->
sql_command
==
SQLCOM_SELECT
)
{
...
...
sql/table.cc
View file @
eb6458cb
...
...
@@ -1173,23 +1173,25 @@ rename_file_ext(const char * from,const char * to,const char * ext)
res result String
RETURN VALUES
true
string is empty
false
all ok
1
string is empty
0
all ok
*/
bool
get_field
(
MEM_ROOT
*
mem
,
Field
*
field
,
String
*
res
)
{
char
buff
[
MAX_FIELD_WIDTH
];
char
buff
[
MAX_FIELD_WIDTH
]
,
*
to
;
String
str
(
buff
,
sizeof
(
buff
),
&
my_charset_bin
);
uint
length
;
field
->
val_str
(
&
str
,
&
str
);
uint
length
=
str
.
length
();
if
(
!
length
)
return
true
;
char
*
to
=
strmake_root
(
mem
,
str
.
ptr
(),
length
);
res
->
set
(
to
,
length
,((
Field_str
*
)
field
)
->
charset
());
return
false
;
if
(
!
(
length
=
str
.
length
()))
return
1
;
to
=
strmake_root
(
mem
,
str
.
ptr
(),
length
);
res
->
set
(
to
,
length
,
((
Field_str
*
)
field
)
->
charset
());
return
0
;
}
/*
Allocate string field in MEM_ROOT and return it as NULL-terminated string
...
...
@@ -1205,14 +1207,15 @@ bool get_field(MEM_ROOT *mem, Field *field, String *res)
char
*
get_field
(
MEM_ROOT
*
mem
,
Field
*
field
)
{
char
buff
[
MAX_FIELD_WIDTH
];
char
buff
[
MAX_FIELD_WIDTH
]
,
*
to
;
String
str
(
buff
,
sizeof
(
buff
),
&
my_charset_bin
);
uint
length
;
field
->
val_str
(
&
str
,
&
str
);
uint
length
=
str
.
length
();
if
(
!
length
)
if
(
!
(
length
=
str
.
length
()))
return
NullS
;
char
*
to
=
(
char
*
)
alloc_root
(
mem
,
length
+
1
);
memcpy
(
to
,
str
.
ptr
(),
(
uint
)
length
);
to
=
(
char
*
)
alloc_root
(
mem
,
length
+
1
);
memcpy
(
to
,
str
.
ptr
(),
(
uint
)
length
);
to
[
length
]
=
0
;
return
to
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment