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
660c3fd2
Commit
660c3fd2
authored
Jul 08, 2007
by
istruewing@chilla.local
Browse files
Options
Browse Files
Download
Plain Diff
Merge chilla.local:/home/mydev/mysql-5.1-ateam
into chilla.local:/home/mydev/mysql-5.1-axmrg
parents
3a9a886a
8fe7320f
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
40 additions
and
7 deletions
+40
-7
.bzrignore
.bzrignore
+3
-2
BUILD/compile-pentium-gcov
BUILD/compile-pentium-gcov
+3
-2
mysql-test/include/mix1.inc
mysql-test/include/mix1.inc
+14
-1
mysql-test/r/innodb_mysql.result
mysql-test/r/innodb_mysql.result
+8
-0
mysql-test/t/disabled.def
mysql-test/t/disabled.def
+1
-0
mysql-test/t/fulltext3.test
mysql-test/t/fulltext3.test
+1
-1
sql/stacktrace.c
sql/stacktrace.c
+9
-0
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+1
-1
No files found.
.bzrignore
View file @
660c3fd2
...
...
@@ -38,9 +38,9 @@
*/.libs/*
*/.pure
*/debug/*
*/minsizerel/*
*/release/*
*/relwithdebinfo/*
*/minsizerel/*
*~
.*.swp
./CMakeCache.txt
...
...
@@ -584,6 +584,7 @@ heap/hp_test2
help
help.c
help.h
include/abi_check
include/check_abi
include/link_sources
include/my_config.h
...
...
@@ -1021,8 +1022,8 @@ libmysqld/.deps/unireg.Po
libmysqld/backup_dir
libmysqld/client.c
libmysqld/client_settings.h
libmysqld/convert.cc
libmysqld/cmake_dummy.c
libmysqld/convert.cc
libmysqld/derror.cc
libmysqld/discover.cc
libmysqld/emb_qcache.cpp
...
...
BUILD/compile-pentium-gcov
View file @
660c3fd2
...
...
@@ -26,8 +26,9 @@ export LDFLAGS="-fprofile-arcs -ftest-coverage"
# The -fprofile-arcs and -ftest-coverage options cause GCC to instrument the
# code with profiling information used by gcov.
# the -DDISABLE_TAO_ASM is needed to avoid build failures in Yassl.
extra_flags
=
"
$pentium_cflags
-fprofile-arcs -ftest-coverage -DDISABLE_TAO_ASM -DHAVE_MUTEX_THREAD_ONLY
$debug_extra_flags
$debug_cflags
$max_cflags
-DMYSQL_SERVER_SUFFIX=-gcov"
# The -DDISABLE_TAO_ASM is needed to avoid build failures in Yassl.
# The -DHAVE_gcov enables code to write out coverage info even when crashing.
extra_flags
=
"
$pentium_cflags
-fprofile-arcs -ftest-coverage -DDISABLE_TAO_ASM -DHAVE_MUTEX_THREAD_ONLY
$debug_extra_flags
$debug_cflags
$max_cflags
-DMYSQL_SERVER_SUFFIX=-gcov -DHAVE_gcov"
extra_configs
=
"
$pentium_configs
$debug_configs
--disable-shared
$static_link
"
extra_configs
=
"
$extra_configs
$max_configs
"
c_warnings
=
"
$c_warnings
$debug_extra_warnings
"
...
...
mysql-test/include/mix1.inc
View file @
660c3fd2
...
...
@@ -672,6 +672,20 @@ SELECT * FROM t3 WHERE a = 'uk';
DROP
TABLE
t1
,
t2
,
t3
;
#
# Test bug when trying to drop data file which no InnoDB directory entry
#
create
table
t1
(
a
int
)
engine
=
innodb
;
copy_file
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
t1
.
frm
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
t2
.
frm
;
--
error
1146
select
*
from
t2
;
drop
table
t1
;
--
error
1051
drop
table
t2
;
create
table
t2
(
a
int
);
drop
table
t2
;
#
# Bug #29154: LOCK TABLES is not atomic when >1 InnoDB tables are locked
...
...
@@ -706,7 +720,6 @@ DISCONNECT c1;
DISCONNECT
c2
;
DROP
TABLE
t1
,
t2
;
--
echo
End
of
5.0
tests
#
...
...
mysql-test/r/innodb_mysql.result
View file @
660c3fd2
...
...
@@ -665,6 +665,14 @@ UPDATE t3 SET a = 'us' WHERE a = 'uk';
SELECT * FROM t3 WHERE a = 'uk';
a
DROP TABLE t1,t2,t3;
create table t1 (a int) engine=innodb;
select * from t2;
ERROR 42S02: Table 'test.t2' doesn't exist
drop table t1;
drop table t2;
ERROR 42S02: Unknown table 't2'
create table t2 (a int);
drop table t2;
CREATE TABLE t1 (a INT) ENGINE=InnoDB;
CREATE TABLE t2 (a INT) ENGINE=InnoDB;
switch to connection c1
...
...
mysql-test/t/disabled.def
View file @
660c3fd2
...
...
@@ -53,3 +53,4 @@ im_options_set : Bug#20294: Instance manager tests fail randomly
im_options_unset : Bug#20294: Instance manager tests fail randomly
mysql_upgrade : Bug#28560 test links to /usr/local/mysql/lib libraries, causes non-determinism and failures on ABI breakage
ndb_dd_sql_features : Bug#29102 ndb_dd_sql_features fails in pushbuild
federated_innodb : Bug#29522 failed assertion in binlog_close_connection()
mysql-test/t/fulltext3.test
View file @
660c3fd2
...
...
@@ -20,5 +20,5 @@ CHECK TABLE t1;
SET
NAMES
latin1
;
DROP
TABLE
t1
;
# End of
4.1
tests
# End of
5.0
tests
sql/stacktrace.c
View file @
660c3fd2
...
...
@@ -228,6 +228,15 @@ void write_core(int sig)
void
write_core
(
int
sig
)
{
signal
(
sig
,
SIG_DFL
);
#ifdef HAVE_gcov
/*
For GCOV build, crashing will prevent the writing of code coverage
information from this process, causing gcov output to be incomplete.
So we force the writing of coverage information here before terminating.
*/
extern
void
__gcov_flush
(
void
);
__gcov_flush
();
#endif
pthread_kill
(
pthread_self
(),
sig
);
#if defined(P_MYID) && !defined(SCO)
/* On Solaris, the above kill is not enough */
...
...
storage/innobase/handler/ha_innodb.cc
View file @
660c3fd2
...
...
@@ -623,7 +623,7 @@ convert_error_code_to_mysql(
}
else
if
(
error
==
(
int
)
DB_TABLE_NOT_FOUND
)
{
return
(
HA_ERR_
KEY_NOT_FOUND
);
return
(
HA_ERR_
NO_SUCH_TABLE
);
}
else
if
(
error
==
(
int
)
DB_TOO_BIG_RECORD
)
{
...
...
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