tomas@whalegate.ndb.mysql.com
3a89198273
Bug #33168 Incorrectly handled parameters can make the TC crash during node failure
...
- during commit deadlock timeout needs to be at least 5 times db hearbeat
2007-12-13 21:31:38 +01:00
tomas@whalegate.ndb.mysql.com
b009d97f84
Bug #33206 signal not reset properly in ndb
2007-12-13 12:03:11 +01:00
tomas@whalegate.ndb.mysql.com
9a189642e7
remoce compiler warnings
2007-12-11 11:41:19 +01:00
tomas@whalegate.ndb.mysql.com
ddbb4d425c
Merge whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb
...
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb-merge
2007-12-10 10:31:51 +01:00
mskold/marty@mysql.com/quadfish.(none)
fc6f839b03
bug#21072 Duplicate key error in NDB references wrong key: Post-review fixes
2007-12-07 10:33:50 +01:00
mskold/marty@mysql.com/quadfish.(none)
27c025061d
bug#21072 Duplicate key error in NDB references wrong key: Return correct key for non-batching inserts
2007-12-06 17:15:21 +01:00
tomas@whalegate.ndb.mysql.com
42052ed0f1
Merge whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb
...
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb-merge
2007-11-16 11:26:29 +01:00
jonas@perch.ndb.mysql.com
3abdc0d943
Merge joreland@bk-internal.mysql.com:/home/bk/mysql-5.0-ndb
...
into perch.ndb.mysql.com:/home/jonas/src/mysql-5.0-ndb
2007-11-14 13:06:19 +01:00
jonas@perch.ndb.mysql.com
f8c413a510
ndb - bug#32160 (recommit to 5.0)
...
fix lcp master take over bug
2007-11-07 20:57:21 +01:00
tomas@whalegate.ndb.mysql.com
e981c427d8
Merge whalegate.ndb.mysql.com:/home/tomas/mysql-5.0
...
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb-merge
2007-11-02 23:33:25 +01:00
tomas@whalegate.ndb.mysql.com
ca0cbdd8ee
Merge whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb
...
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb-merge
2007-11-02 23:31:23 +01:00
knielsen@ymer.(none)
084849d917
Bug #31848 : Test failure: Cluster has problems on insert with auto-increment
...
Fix uninitialized variable causing failures for some interpreted update
operations on gcc 4.2.1.
2007-11-01 07:59:55 +01:00
jonas@perch.ndb.mysql.com
2965c480ec
ndb - bug#31635 (5.0)
...
0 pad varsize keys in ndbapi
2007-10-26 08:42:33 +02:00
knielsen@loke.(none)
75a5c28d98
Merge loke.(none):/home/knielsen/devel/bug31761
...
into loke.(none):/home/knielsen/devel/mysql-5.0-ndb
2007-10-25 08:45:27 +02:00
knielsen@loke.(none)[knielsen]
a7f7875578
BUG#31761: Code for cluster is not safe for strict-alias optimization in new gcc
...
Fix problem with AttributeHeader::init() seen with gcc 4.2.1.
Using the same object as both Uint32 and class AttributeHeader violates
strict aliasing rule.
2007-10-25 07:57:18 +02:00
pekka@sama.ndb.mysql.com
5961666886
ndb - bug#29390: fix mem leak introduced in previous cset
2007-10-14 16:17:39 +02:00
tsmith@ramayana.hindu.god
070dc3ffb5
Merge ramayana.hindu.god:/home/tsmith/m/bk/50
...
into ramayana.hindu.god:/home/tsmith/m/bk/maint/50
2007-10-10 14:12:36 -06:00
cmiller@zippy.cornsilk.net
eedde95a33
Change URLs.
...
Our web server has been restructured several times, and references
to it in our source code has stayed the same. This patch from Paul
DuBois updates all URLs to modern semantics.
2007-10-05 13:16:54 -04:00
pekka@sama.ndb.mysql.com
82da7623d4
ndb - bug#29390: if ScanFilter is too large, abort or optionally discard it
2007-10-04 11:32:49 +02:00
stewart@flamingspork.com[stewart]
87359889f3
[PATCH] BUG#29565 managment server can log entries multiple times after mgmd restart
...
Close the event log on shutdown of mgmd (in stopEventLog())
Index: ndb-work/ndb/src/mgmsrv/MgmtSrvr.cpp
===================================================================
2007-10-03 16:16:48 +10:00
jmiller/ndbdev@mysql.com/ndb15.mysql.com
6515a7f4c3
testScanFilter.cpp:
...
Updated variable size arrays to use vector like Jonas did for 5.1 so that my build would not break
2007-10-02 21:21:45 +02:00
stewart@willster.(none)
f72c7d0108
remove debug printout
2007-10-01 14:32:22 +10:00
stewart@flamingspork.com[stewart]
33412d2b8e
[PATCH] BUG#30379 Better randomise time before retry in timeout check (DBTC)
...
timoOutLoopStartLab() checks if any transactions have been delayed
for so long that we are forced to perform some action (e.g. abort,
resend etc).
It is *MEANT* to (according to the comment):
> To avoid aborting both transactions in a deadlock detected by time-out
> we insert a random extra time-out of upto 630 ms by using the lowest
> six bits of the api connect reference.
> We spread it out from 0 to 630 ms if base time-out is larger than 3 sec,
> we spread it out from 0 to 70 ms if base time-out is smaller than 300 msec,
> and otherwise we spread it out 310 ms.
The comment (as all do) lies.
the API connect reference is not very random, producing incredibly
predictable "random" numbers. This could lead to both txns being
aborted instead of just one.
Before:
timeout value: 123 3
timeout value: 122 2
timeout value: 122 2
timeout value: 122 2
timeout value: 123 3
After:
timeout value: 127 7
timeout value: 126 6
timeout value: 129 9
timeout value: 139 19
timeout value: 137 17
timeout value: 151 31
timeout value: 130 10
timeout value: 132 12
Index: ndb-work/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
===================================================================
2007-09-25 12:01:23 +02:00
tomas@whalegate.ndb.mysql.com
df552c310d
Merge whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb
...
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb-merge
2007-09-12 14:01:51 +02:00
tomas@whalegate.ndb.mysql.com
83eed4d876
Merge whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb
...
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb-bj
2007-09-12 13:55:22 +02:00
tomas@whalegate.ndb.mysql.com
461a3dccac
BUG#23354 revert
2007-09-12 13:53:32 +02:00
tomas@whalegate.ndb.mysql.com
f1674d1b66
Merge whalegate.ndb.mysql.com:/home/tomas/mysql-5.0
...
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb-merge
2007-09-12 07:34:42 +02:00
pekka@sama.ndb.mysql.com
af1ce5c230
ndb - bug#29102 : use locked read even for blob parts
2007-08-29 21:45:53 +03:00
lzhou/zhl@dev3-63.(none)
0f22183652
Merge lzhou@bk-internal.mysql.com:/home/bk/mysql-5.0-ndb-bj
...
into dev3-63.(none):/home/zhl/mysql/mysql-5.0/bug29674
2007-08-20 15:29:59 +00:00
lzhou/zhl@dev3-63.(none)
2093858fff
BUG#29674 Remove warning in pushbuild in 5.0
2007-08-20 14:57:04 +00:00
Justin.He/justin.he@dev3-240.dev.cn.tlan
921cba22bc
Merge dev3-240.dev.cn.tlan:/home/justin.he/mysql/mysql-5.0/mysql-5.0-ndb
...
into dev3-240.dev.cn.tlan:/home/justin.he/mysql/mysql-5.0/mysql-5.0-ndb-bj.merge
2007-08-16 11:06:41 +08:00
lzhou/zhl@dev3-63.(none)
c8b88e4ceb
Merge lzhou@bk-internal.mysql.com:/home/bk/mysql-5.0-ndb-bj
...
into dev3-63.(none):/home/zhl/mysql/mysql-5.0/bug29674
2007-08-15 16:28:27 +00:00
jonas@perch.ndb.mysql.com
e01f587dd4
ndb - bug#28804
...
Handle out of transaction buffer in TC for INDX lookups
2007-08-13 09:22:42 +02:00
gni/root@dev3-221.dev.cn.tlan
17c3b8d53b
Merge dev3-221.dev.cn.tlan:/home/ngb/mysql/mysql-5.0/mysql-5.0-ndb-bj
...
into dev3-221.dev.cn.tlan:/home/ngb/mysql/mysql-5.0/bug27683
2007-08-08 18:24:13 +08:00
lzhou/zhl@dev3-63.(none)
cbe2a3c780
BUG#29674 Restore/backup are endian compatible in 5.0
2007-08-07 18:07:57 +00:00
tnurnberg@sin.intern.azundris.com
8dd4751be9
Bug #10776 : Failure to compile ndb ReadNodesConf.cpp on AIX 5.2
...
mysqld hasn't been built on AIX with ndb-everything in quite a while.
this allowed a variety of changes to be added that broke the AIX build
for both the GNU and IBM compilers (but the IBM suite in particular).
Changeset lets build to complete on AIX 5.2 for users of the GNU and
the IBM suite both. Tudo bem?
2007-08-01 04:56:58 +02:00
lzhou/zhl@dev3-63.(none)
10a9cca053
Merge lzhou@bk-internal.mysql.com:/home/bk/mysql-5.0-ndb-bj
...
into dev3-63.(none):/home/zhl/mysql/mysql-5.0/bug23354
2007-07-30 10:45:46 +00:00
gni@dev3-221.dev.cn.tlan
326d7307e3
BUG#27683 Incorrect description for ndb_restore --print
2007-07-25 14:53:25 +08:00
tomas@whalegate.ndb.mysql.com
af75c3eeec
Merge tulin@bk-internal.mysql.com:/home/bk/mysql-5.0-ndb-bj
...
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb
2007-07-13 15:53:58 +02:00
jonas@perch.ndb.mysql.com
21da0d2111
Merge perch.ndb.mysql.com:/home/jonas/src/50-work
...
into perch.ndb.mysql.com:/home/jonas/src/mysql-5.0-ndb
2007-07-04 22:42:31 +02:00
jonas@perch.ndb.mysql.com
dfcfd6afc4
ndb - bug#29354 - fix bug in bug fix,
...
dont assert if 2 LCP's are being run during a node recovery
2007-07-04 22:39:55 +02:00
lzhou/zhl@dev3-63.(none)
6f935a3db8
Merge lzhou@bk-internal.mysql.com:/home/bk/mysql-5.0-ndb-bj
...
into dev3-63.(none):/home/zhl/mysql/mysql-5.0/bug25941
2007-07-04 17:59:12 +00:00
jonas@perch.ndb.mysql.com
446e3272c4
Merge perch.ndb.mysql.com:/home/jonas/src/50-work
...
into perch.ndb.mysql.com:/home/jonas/src/mysql-5.0-ndb
2007-07-03 08:46:41 +02:00
jonas@perch.ndb.mysql.com
71996bd6f4
ndb - bug#29354 - Incorrect handling of replica REDO during SR (5.0)
...
Not very clever fix for DIH incorrect REDO handling
- Dont report GCP_SAVE_CONF until first LCP has been complete during NR
2007-07-03 08:39:42 +02:00
jonas@perch.ndb.mysql.com
3c1cfd7631
Merge perch.ndb.mysql.com:/home/jonas/src/50-work
...
into perch.ndb.mysql.com:/home/jonas/src/mysql-5.0-ndb
2007-07-02 14:19:15 +02:00
jonas@perch.ndb.mysql.com
f6c0acde24
ndb - bug#29364 - "SQL queries hang while data node in start phase 5"
...
In TC init node status for already started nodes during node restart
(not present in 5.1)
2007-07-02 13:45:24 +02:00
jonas@perch.ndb.mysql.com
2609e057eb
ndb - bug#29057 bug#29067 and bug#29118
...
Fix 3 problems in REDO validation that could(will) lead to "Error while reading REDO log"
2007-06-25 07:05:25 +02:00
lzhou/zhl@dev3-63.(none)
fe40eedb85
BUG#25941 Output warning messages from stdout to stderr when abitrator warnings exist
2007-06-15 09:23:27 +00:00
mskold/marty@linux.site
dea70c74dd
Merge mskold@bk-internal.mysql.com:/home/bk/mysql-5.0-ndb
...
into mysql.com:/windows/Linux_space/MySQL/mysql-5.0-ndb
2007-06-14 21:58:45 +02:00
tomas@whalegate.ndb.mysql.com
ad81e83c70
Bug #27640 backup id not displayed in the output of "ndb_mgm start backup wait completed"
...
- correction, missing node id
2007-06-14 18:40:32 +02:00