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
c76b8d57
Commit
c76b8d57
authored
Nov 17, 2004
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge joreland@bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/home/jonas/src/mysql-5.0
parents
e2bd1dd6
0fa5496a
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
12 additions
and
13 deletions
+12
-13
.bzrignore
.bzrignore
+1
-0
configure.in
configure.in
+0
-1
mysql-test/r/rpl_rewrite_db.result
mysql-test/r/rpl_rewrite_db.result
+3
-3
server-tools/instance-manager/mysqlmanager.cc
server-tools/instance-manager/mysqlmanager.cc
+1
-2
sql/ha_innodb.cc
sql/ha_innodb.cc
+2
-2
sql/sql_parse.cc
sql/sql_parse.cc
+4
-4
sql/sql_show.cc
sql/sql_show.cc
+1
-1
No files found.
.bzrignore
View file @
c76b8d57
...
...
@@ -959,3 +959,4 @@ vio/test-ssl
vio/test-sslclient
vio/test-sslserver
vio/viotest-ssl
ac_available_languages_fragment
configure.in
View file @
c76b8d57
...
...
@@ -3172,7 +3172,6 @@ AC_CONFIG_FILES(Makefile extra/Makefile mysys/Makefile dnl
AC_CONFIG_COMMANDS
([
default], ,
test
-z
"
$CONFIG_HEADERS
"
||
echo
timestamp
>
stamp-h
)
AC_OUTPUT
rm
-f
$AVAILABLE_LANGUAGES_ERRORS_RULES
echo
echo
"MySQL has a Web site at http://www.mysql.com/ which carries details on the"
echo
"latest release, upcoming features, and other information to make your"
...
...
mysql-test/r/rpl_rewrite_db.result
View file @
c76b8d57
...
...
@@ -67,9 +67,9 @@ drop table t1;
create table t1 (a int, b char(10));
load data infile '../../std_data/loaddata3.dat' into table t1 fields terminated by '' enclosed by '' ignore 1 lines;
Warnings:
Warning 126
5 Data trunca
ted for column 'a' at row 3
Warning 126
4 Out of range value adjus
ted for column 'a' at row 3
Warning 1262 Row 3 was truncated; it contained more data than there were input columns
Warning 126
5 Data trunca
ted for column 'a' at row 5
Warning 126
4 Out of range value adjus
ted for column 'a' at row 5
Warning 1262 Row 5 was truncated; it contained more data than there were input columns
select * from rewrite.t1;
a b
...
...
@@ -81,7 +81,7 @@ a b
truncate table t1;
load data infile '../../std_data/loaddata4.dat' into table t1 fields terminated by '' enclosed by '' lines terminated by '' ignore 1 lines;
Warnings:
Warning 126
5 Data trunca
ted for column 'a' at row 4
Warning 126
4 Out of range value adjus
ted for column 'a' at row 4
Warning 1261 Row 4 doesn't contain data for all columns
select * from rewrite.t1;
a b
...
...
server-tools/instance-manager/mysqlmanager.cc
View file @
c76b8d57
...
...
@@ -232,8 +232,7 @@ static void angel(const Options &options)
sigsuspend
(
&
zeromask
);
if
(
is_terminated
)
log_info
(
"angel got signal %d (%s), exiting"
,
is_terminated
,
sys_siglist
[
is_terminated
]);
log_info
(
"angel got signal %d, exiting"
,
is_terminated
);
else
if
(
child_status
==
CHILD_NEED_RESPAWN
)
{
child_status
=
CHILD_OK
;
...
...
sql/ha_innodb.cc
View file @
c76b8d57
...
...
@@ -4687,7 +4687,7 @@ ha_innobase::get_foreign_key_list(THD *thd, List<FOREIGN_KEY_INFO> *f_key_list)
update_thd
(
current_thd
);
prebuilt
->
trx
->
op_info
=
(
char
*
)
"getting list of foreign keys"
;
trx_search_latch_release_if_reserved
(
prebuilt
->
trx
);
mutex_enter
(
&
(
dict_sys
->
mutex
));
mutex_enter
_noninline
(
&
(
dict_sys
->
mutex
));
foreign
=
UT_LIST_GET_FIRST
(
prebuilt
->
table
->
foreign_list
);
while
(
foreign
!=
NULL
)
...
...
@@ -4768,7 +4768,7 @@ ha_innobase::get_foreign_key_list(THD *thd, List<FOREIGN_KEY_INFO> *f_key_list)
f_key_list
->
push_back
(
pf_key_info
);
foreign
=
UT_LIST_GET_NEXT
(
foreign_list
,
foreign
);
}
mutex_exit
(
&
(
dict_sys
->
mutex
));
mutex_exit
_noninline
(
&
(
dict_sys
->
mutex
));
prebuilt
->
trx
->
op_info
=
(
char
*
)
""
;
DBUG_RETURN
(
0
);
}
...
...
sql/sql_parse.cc
View file @
c76b8d57
...
...
@@ -1627,8 +1627,8 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
break
;
mysql_log
.
write
(
thd
,
command
,
packet
);
bzero
(
&
create_info
,
sizeof
(
create_info
));
error
=
mysql_create_db
(
thd
,
(
lower_case_table_names
==
2
?
alias
:
db
),
&
create_info
,
0
);
mysql_create_db
(
thd
,
(
lower_case_table_names
==
2
?
alias
:
db
),
&
create_info
,
0
);
break
;
}
case
COM_DROP_DB
:
// QQ: To be removed
...
...
@@ -1651,8 +1651,8 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
break
;
}
mysql_log
.
write
(
thd
,
command
,
db
);
error
=
mysql_rm_db
(
thd
,
(
lower_case_table_names
==
2
?
alias
:
db
),
0
,
0
)
;
mysql_rm_db
(
thd
,
(
lower_case_table_names
==
2
?
alias
:
db
),
0
,
0
)
;
break
;
}
#ifndef EMBEDDED_LIBRARY
...
...
sql/sql_show.cc
View file @
c76b8d57
...
...
@@ -1211,7 +1211,7 @@ view_store_create_info(THD *thd, TABLE_LIST *table, String *buff)
if
(
!
foreign_db_mode
)
{
buff
->
append
(
"ALGORITHM="
,
10
);
switch
(
table
->
algorithm
)
switch
(
(
int8
)
table
->
algorithm
)
{
case
VIEW_ALGORITHM_UNDEFINED
:
buff
->
append
(
"UNDEFINED "
,
10
);
...
...
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