msvensson@pilot.(none)
896faea0d3
Merge pilot.(none):/data/msvensson/mysql/bug28742/my50-bug28742
...
into pilot.(none):/data/msvensson/mysql/mysql-5.1-new-maint
2007-06-21 14:14:36 +02:00
msvensson@pilot.(none)
4d3f3f676f
Bug#28742 mysql-test-run is very slow on "Stopping All Servers" step
...
- Improve shutdown algorithm
- Wait up to 5 seconds for processes to exit after their port is free
2007-06-20 11:47:55 +02:00
msvensson@pilot.(none)
95cf973862
Merge bk-internal:/home/bk/mysql-5.1-maint
...
into pilot.(none):/data/msvensson/mysql/mysql-5.1-new-maint
2007-06-19 11:31:34 +02:00
tsmith@quadxeon.mysql.com
918090030b
Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-5.1-build
...
into quadxeon.mysql.com:/benchmarks/ext3/TOSAVE/tsmith/bk/maint/jun14/51
2007-06-15 01:57:33 +02:00
msvensson@pilot.(none)
4437fd649d
Merge pilot.(none):/data/msvensson/mysql/mysql-5.0-maint
...
into pilot.(none):/data/msvensson/mysql/mysql-5.1-new-maint
2007-06-13 10:37:31 +02:00
msvensson@pilot.(none)
36ae2387a9
Merge pilot.(none):/data/msvensson/mysql/mysql-4.1-maint
...
into pilot.(none):/data/msvensson/mysql/mysql-5.0-maint
2007-06-13 10:36:47 +02:00
msvensson@pilot.(none)
d2d4e66760
Bug#29065 mysql-test-run.pl aborts execution on missing log file from test tool
...
- Make tesingt continue even if test log file does not exists
2007-06-13 10:35:20 +02:00
msvensson@pilot.(none)
6c6268c5f9
Merge pilot.(none):/data/msvensson/mysql/mysql-5.0-maint
...
into pilot.(none):/data/msvensson/mysql/mysql-5.1-new-maint
2007-06-08 16:21:04 +02:00
msvensson@pilot.(none)
32eff42f73
Turn off use of bin log when running with embedded server
2007-06-08 16:20:24 +02:00
msvensson@pilot.(none)
74ea1037fd
Use same abbrevation for statemtn in mboth mtr_cases.pl and mysql-test-run.pl
...
to crrectly filter tests to run
2007-06-08 07:19:17 +02:00
joerg@trift2.
449cd28598
Merge trift2.:/MySQL/M51/mysql-5.1
...
into trift2.:/MySQL/M51/push-5.1
2007-06-06 19:59:18 +02:00
tsmith@quadxeon.mysql.com
0ca0984f59
Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-5.1
...
into quadxeon.mysql.com:/benchmarks/ext3/TOSAVE/tsmith/bk/maint/jun05/51
2007-06-05 23:06:43 +02:00
tsmith@quadxeon.mysql.com
d2fe24d1ef
Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-5.0
...
into quadxeon.mysql.com:/benchmarks/ext3/TOSAVE/tsmith/bk/maint/jun05/50
2007-06-05 23:04:40 +02:00
tsmith@quadxeon.mysql.com
4b93804592
Merge quadxeon.mysql.com:/benchmarks/ext3/TOSAVE/tsmith/bk/51
...
into quadxeon.mysql.com:/benchmarks/ext3/TOSAVE/tsmith/bk/maint/jun05/51
2007-06-05 17:51:30 +02:00
tsmith@quadxeon.mysql.com
502320ef05
Merge quadxeon.mysql.com:/benchmarks/ext3/TOSAVE/tsmith/bk/50
...
into quadxeon.mysql.com:/benchmarks/ext3/TOSAVE/tsmith/bk/maint/jun05/50
2007-06-05 17:28:49 +02:00
joerg@trift2.
7c9a81687b
Merge trift2.:/MySQL/M51/mysql-5.1
...
into trift2.:/MySQL/M51/push-5.1
2007-06-05 10:39:02 +02:00
igor@olga.mysql.com
a5011de0a8
Merge olga.mysql.com:/home/igor/mysql-5.0-opt
...
into olga.mysql.com:/home/igor/mysql-5.1-opt-merge
2007-06-04 03:16:17 -07:00
joerg@trift2.
d822cf03e5
Merge trift2.:/MySQL/M51/mysql-5.1
...
into trift2.:/MySQL/M51/push-5.1
2007-06-04 11:24:49 +02:00
mhansson@dl145s.mysql.com
d9fcc304d9
Merge mhansson@bk-internal.mysql.com:/home/bk/mysql-5.0-opt
...
into dl145s.mysql.com:/dev/shm/mhansson/my50-bug27741
2007-06-04 09:26:54 +02:00
msvensson@pilot.(none)
f6b5eb54b5
Merge pilot.(none):/data/msvensson/mysql/my51-m-bug24168
...
into pilot.(none):/data/msvensson/mysql/mysql-5.1-new-maint
2007-06-01 14:34:26 +02:00
msvensson@pilot.(none)
cc45f1b79a
Bug #24168 mysql-test-run not functioning in autotest (cannot use external cluster)
...
- Removed the global variable(s) glob_use_running_cluster/slave
and put a property on each "cluster" called "use_running" which
is set to 1 if user passed either ndb_connectstring or
ndb_connectstring_slave. Thus mtr.pl should not start/stop the
cluster.
2007-06-01 14:32:26 +02:00
mhansson@dl145s.mysql.com
3ee1651861
bug#27741: udf test fails on AIX < 5.3
...
problem #1 : udf_example.so does not get built on AIX
solution#1: build it yourself using
cd sql; gcc -g -I ../include/ -I /usr/include/ -lpthread \
-shared -o udf_example.so udf_example.c; mv udf_example.so \
.libs/
problem#2 (the bug): udf_example fails because it does not
recognize the variable LD_LIBRARY_PATH when doing dl_open(),
it looks at LIBPATH
solution#2: add the library path to LIBPATH
problem#3: udf_example returns the wrong result length since
it relies on strmov to return a pointer to the end of the
string that it copies. On AIX builds, where m_string.h is not
included (m_string defines a macro expanding strmov to stpcpy),
there is a macro expanding strmov to strcpy, which returns a
pointer to the first character.
solution#3: define strmov as stpcpy.
problem#4: #2 applies on hp-ux as well, but this platform
looks at SHLIB_PATH
solution#4: added the library path to SHLIB_PATH
2007-05-31 14:22:21 +02:00
tsmith@quadxeon.mysql.com
91c484339c
Merge quadxeon.mysql.com:/benchmarks/ext3/TOSAVE/tsmith/bk/51
...
into quadxeon.mysql.com:/benchmarks/ext3/TOSAVE/tsmith/bk/maint/51
2007-05-30 23:48:20 +02:00
df@pippilotta.erinye.com
dd9afd5d98
Merge pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.1-build-work-nn
...
into pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.1-build-work
2007-05-30 17:11:08 +02:00
msvensson@pilot.(none)
0946010521
Merge pilot.(none):/data/msvensson/mysql/mysql-5.0-maint
...
into pilot.(none):/data/msvensson/mysql/mysql-5.1-new-maint
2007-05-29 13:02:20 +02:00
msvensson@pilot.(none)
c7ee7b33ce
Merge pilot.(none):/data/msvensson/mysql/bug26397/my41-bug26397
...
into pilot.(none):/data/msvensson/mysql/mysql-5.0-maint
2007-05-29 13:01:23 +02:00
msvensson@pilot.(none)
c6dc58337c
Bug #26397 mysql-test-run.pl --start-dirty removes binary logs
...
- Don't delete anything if starting dirty
2007-05-28 18:03:24 +02:00
lars/lthalmann@dl145h.mysql.com
95068ddacb
Merge mysql.com:/nfsdisk1/lars/bkroot/mysql-5.1-new-rpl
...
into mysql.com:/nfsdisk1/lars/MERGE/mysql-5.1-merge
2007-05-28 09:25:40 +02:00
lars/lthalmann@dl145h.mysql.com
3b598218ff
Merge mysql.com:/nfsdisk1/lars/bkroot/mysql-5.0-rpl
...
into mysql.com:/nfsdisk1/lars/MERGE/mysql-5.0-merge
2007-05-28 09:21:42 +02:00
msvensson@pilot.blaudden
cd57ecbd5d
Merge pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint
...
into pilot.blaudden:/home/msvensson/mysql/mysql-5.1-new-maint
2007-05-24 20:53:22 +02:00
lars/lthalmann@dl145h.mysql.com
8b1deb28bf
Merge mysql.com:/nfsdisk1/lars/bk/mysql-5.0-rpl
...
into mysql.com:/nfsdisk1/lars/bk/mysql-5.1-new-rpl
2007-05-24 09:07:35 +02:00
bar@mysql.com/bar.myoffice.izhnet.ru
636490e9e1
Bug#27636 mysqlbinlog-cp932 and ctype_cp932 tests fails if LC_* variables set to *_*.UTF-8
...
As MySQL character set tests can print results in many character sets
(latin1, utf8-8, sjis, cp932 and others) - its output can be incompatible
with the current locale settings, which makes PERL confuse.
Fix: reset LC_ALL and LC_CTYPE to "C", which is compatible with
any character set.
2007-05-23 17:32:40 +05:00
msvensson@shellback.(none)
61ed6da11f
Merge shellback.(none):/home/msvensson/mysql/mysql-4.1-maint
...
into shellback.(none):/home/msvensson/mysql/mysql-5.0-maint
2007-05-23 12:20:11 +02:00
msvensson@shellback.(none)
b34660a877
Merge bk-internal:/home/bk/mysql-4.1-maint
...
into shellback.(none):/home/msvensson/mysql/mysql-4.1-maint
2007-05-23 12:15:25 +02:00
msvensson@shellback.(none)
933afe6cb4
Bug#27396 Wrong check for root priveledge
...
- Check that filemode was set to 0000
2007-05-23 12:13:49 +02:00
svoj@june.mysql.com
442969fd16
Merge mysql.com:/home/svoj/devel/bk/mysql-5.1
...
into mysql.com:/home/svoj/devel/mysql/merge/mysql-5.1-engines
2007-05-23 12:41:30 +05:00
svoj@mysql.com/june.mysql.com
e3f7947da0
BUG#28341 - Security issue still in library loading
...
UDF can be created from any library in any part of the server
LD_LIBRARY_PATH.
Allow to load udfs only from plugin_dir.
On windows, refuse to open udf in case it's path contains a slash.
No good test case for this bug because of imperfect error message
that includes error code and error string when it fails to dlopen a
library.
2007-05-18 16:23:46 +05:00
tsmith@siva.hindu.god
4a4590cd49
Merge siva.hindu.god:/home/tsmith/m/bk/51
...
into siva.hindu.god:/home/tsmith/m/bk/maint/51
2007-05-17 14:21:35 -06:00
msvensson@pilot.blaudden
4998976d22
Bug#28473 Does mysql-test-run.pl handle LD_LIBRARY_PATH wrong ?
...
- Fix spelling error
2007-05-16 17:51:28 +02:00
df@pippilotta.erinye.com
7c7ab07719
Merge pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.0-build-work-nn
...
into pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.1-build-work-nn
2007-05-15 11:33:19 +02:00
df@pippilotta.erinye.com
b57cf4b07b
BUG#28370 federated test cases fail with binlog disabled
2007-05-15 11:32:33 +02:00
skozlov/ksm@mysql.com/virtop.localdomain
73cffa774a
WL#3702
2007-05-11 11:48:34 +04:00
msvensson@pilot.blaudden
954edae8f0
Merge pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint
...
into pilot.blaudden:/home/msvensson/mysql/mysql-5.1-maint
2007-05-10 13:29:43 +02:00
msvensson@pilot.blaudden
f924d84c91
Merge pilot.blaudden:/home/msvensson/mysql/mysql-4.1-maint
...
into pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint
2007-05-10 13:28:48 +02:00
msvensson@pilot.blaudden
b805507358
Bug#27344 Total failure to start the server
...
- Give some more protection against "too long socket name by setting the max
length when to use a tmpdir for sockets to 70
2007-05-10 13:28:24 +02:00
acurtis/antony@ltamd64.xiphis.org
b8301263f3
Merge xiphis.org:/home/antony/work2/mysql-5.1-engines
...
into xiphis.org:/home/antony/work2/mysql-5.1-merge
2007-05-07 12:32:09 -07:00
acurtis/antony@ltamd64.xiphis.org
a4dbc0990c
Merge xiphis.org:/home/antony/work2/mysql-5.1-engines
...
into xiphis.org:/home/antony/work2/mysql-5.1-engines.merge
2007-05-04 23:35:14 -07:00
istruewing@chilla.local
a57260dbfb
WL#2936 - Falcon & MySQL plugin interface: server variables
...
Fix tests when InnoDB is not built-in. Innodb options would cause
mysqld to abort with an error indicating that the option is unknown.
Fix tests on Windows where mysql-test-run.pl was unable to probe
mysqld for version and variables information, caused by output
being redirected to a log file instead.
2007-05-04 16:10:09 +02:00
tomas@whalegate.ndb.mysql.com
76bedc6a03
bugfix in checksum with force varpart
2007-05-04 12:19:06 +02:00
tsmith@quadxeon.mysql.com
fc7fea0cc3
mysql-test-run.pl:
...
Run master init scripts also for --embedded-server
2007-05-01 20:05:09 +02:00