ChangeSet
  1.1698 04/07/27 00:00:01 serg@serg.mylan +2 -0
  compatibility fixes

  sql/opt_range.cc
    1.124 04/07/26 23:59:55 serg@serg.mylan +1 -1
    wrong (I believe :) cast fixed

  mysql-test/r/show_check.result
    1.45 04/07/26 23:59:55 serg@serg.mylan +0 -8
    results updated

ChangeSet
  1.1697 04/07/26 21:20:59 serg@serg.mylan +1 -0
  one more test should wait for WL#1324 (tablename to filename encoding)
  non-ascii filenames work weird (e.g. on MacOSX)

  mysql-test/t/show_check.test
    1.34 04/07/26 21:20:53 serg@serg.mylan +12 -11
    one more test should wait for WL#1324 (tablename to filename encoding)
    non-ascii filenames work weird (e.g. on MacOSX)

ChangeSet
  1.1693.13.1 04/07/26 19:42:59 guilhem@mysql.com +4 -0
  Replication: various small fixes specific to the new binlog format of 5.0
  (including one which may explain autobuild's failure of yesterday)

  sql/slave.cc
    1.216 04/07/26 19:42:52 guilhem@mysql.com +5 -2
    comments

  sql/log_event.h
    1.95 04/07/26 19:42:51 guilhem@mysql.com +1 -1
    catalog_len changed from uint to int to allow -1, which means "not inited"
    (I preferred to do it like this rather than create a new bool var Query_log_event::catalog_inited
    like we have in Query_log_event::sql_mode_inited; that's because catalog will not use the whole range of int,
    so it's allowed to pick -1 as a special value and have only one var.

  sql/log_event.cc
    1.137 04/07/26 19:42:51 guilhem@mysql.com +11 -6
    An event with an uninited catalog (read from a 4.x server) is not the same as an event with a NULL catalog
    (5.0 server which did not specify catalog), the difference is that they are not in the same format;
    so I introduce a way to know if the catalog has been inited or not. This fixes a rpl_trunc_binlog failure
    I had.
    When we leave Load_log_event::exec_event(), we must reset thd->catalog to 0, like we already do
    in Query_log_event::exec_event(). This fixes a Valgrind error which popped in rpl_charset (which may
    be what caused autobuild to crash yesterday).
    And a fix for event's parsing (the position was always computed right because start_dup==end is always true
    and will until we add new string members to Query_log_event.

  client/mysqlbinlog.cc
    1.94 04/07/26 19:42:51 guilhem@mysql.com +3 -13
    - In mysqlbinlog, we should not reset the Format event when we see Rotate. If a binlog started with a Format event, it is not going to switch later to 4.0 format.
    I had already did the same fix in Rotate_log_event::exec_event() in replication.
    - Fix for a merge bug.

ChangeSet
  1.1693.1.39 04/07/26 19:40:24 serg@serg.mylan +1 -0
  results updated

  mysql-test/r/lowercase_table2.result
    1.9 04/07/26 19:40:19 serg@serg.mylan +40 -40
    results updated

ChangeSet
  1.1693.1.38 04/07/23 19:52:06 pem@mysql.comhem.se +2 -0
  New test case for BUG#4726: Stored procedure crash when looping over SELECT with complex WHERE's.
  (The fix was merged in from 4.1)

  mysql-test/t/sp.test
    1.69.1.2 04/07/23 19:52:02 pem@mysql.com +31 -0
    New test case for BUG#4726.

  mysql-test/r/sp.result
    1.72 04/07/23 19:52:02 pem@mysql.com +19 -0
    New test case for BUG#4726.

ChangeSet
  1.1616.1.369 04/07/23 18:42:24 pem@mysql.comhem.se +1 -0
  Fix for stored procedures BUG#4726: Stored procedure crash when looping over SELECT with complex WHERE's.

  sql/sql_prepare.cc
    1.34.1.82 04/07/23 18:42:21 pem@mysql.com +3 -0
    Cleanup cond items too. (Fix for stored procedures.)

ChangeSet
  1.1616.1.368 04/07/23 19:10:06 bar@mysql.com +3 -0
  Bug #4555  	ALTER TABLE crashes mysqld with enum column collated utf8_unicode_ci

  sql/field.cc
    1.168 04/07/23 19:09:52 bar@mysql.com +5 -2
    Bug #4555  	ALTER TABLE crashes mysqld with enum column collated utf8_unicode_ci

  mysql-test/t/ctype_utf8.test
    1.17 04/07/23 19:09:52 bar@mysql.com +8 -0
    Bug #4555  	ALTER TABLE crashes mysqld with enum column collated utf8_unicode_ci

  mysql-test/r/ctype_utf8.result
    1.19 04/07/23 19:09:52 bar@mysql.com +3 -0
    Bug #4555  	ALTER TABLE crashes mysqld with enum column collated utf8_unicode_ci

ChangeSet
  1.1616.1.367 04/07/23 17:11:45 bar@mysql.com +1 -0
  sql_db.cc:
    mysqld crashes on CREATE TABLE in a database with corrupted db.opt file.
    Bug#4646

  sql/sql_db.cc
    1.68.1.49 04/07/23 17:10:59 bar@mysql.com +2 -0
    mysqld crashes on CREATE TABLE in a database with corrupted db.opt file.
    Bug#4646

ChangeSet
  1.1693.1.36 04/07/23 13:34:06 pem@mysql.comhem.se +1 -0
  Fix of fix for BUG#3339: Stored procedures in nonexistent schemas are uncallable.
  Accidently worked on many platforms, but not all.

  sql/sql_parse.cc
    1.348 04/07/23 13:34:03 pem@mysql.com +1 -1
    Give the right pointer arg to net_printf.

ChangeSet
  1.1616.631.1 04/07/23 10:32:23 magnus@neptunus.(none) +1 -0
  Add include of signal.h to Emulator.cpp

  ndb/src/kernel/vm/Emulator.cpp
    1.7 04/07/23 10:32:17 magnus@neptunus.(none) +2 -0
    Added signal.h to include header for signal

ChangeSet
  1.1693.11.3 04/07/23 09:20:58 bell@sanja.is.com.ua +9 -0
  fixed using VIEW fields (BUG#4617)

  sql/table.cc
    1.114 04/07/23 09:20:55 bell@sanja.is.com.ua +5 -0
    Do not create Item_ref for internal view of view processing

  sql/sql_update.cc
    1.115 04/07/23 09:20:55 bell@sanja.is.com.ua +35 -7
    privent creating Item_ref in insert list (where Item_fields should be) and creation Item_fields for UPDATE list

  sql/sql_lex.h
    1.140 04/07/23 09:20:55 bell@sanja.is.com.ua +2 -0
    Item_ref creation control

  sql/sql_lex.cc
    1.113 04/07/23 09:20:55 bell@sanja.is.com.ua +1 -0
    Item_ref creation control

  sql/sql_insert.cc
    1.114 04/07/23 09:20:55 bell@sanja.is.com.ua +6 -3
    privent creating Item_ref in insert list (where Item_fields should be)

  sql/sql_base.cc
    1.168.1.2 04/07/23 09:20:54 bell@sanja.is.com.ua +19 -1
    Create Item_ref as reference on VIEW fields expression reference 

  sql/item.h
    1.89 04/07/23 09:20:54 bell@sanja.is.com.ua +6 -5
    fixed using of result_field by Item_ref

  mysql-test/t/view.test
    1.8.1.3 04/07/23 09:20:54 bell@sanja.is.com.ua +11 -0
    using VIEW fields several times in query resolved via temporary tables

  mysql-test/r/view.result
    1.10.1.3 04/07/23 09:20:54 bell@sanja.is.com.ua +15 -0
    using VIEW fields several times in query resolved via temporary tables

ChangeSet
  1.1693.11.2 04/07/22 17:52:04 bell@sanja.is.com.ua +5 -0
  made different fields for view updatebility in principle and updatability during this execution (BUG#4601)

  sql/table.h
    1.65 04/07/22 17:52:01 bell@sanja.is.com.ua +2 -1
    made different fields for view updatebility in principle and updatability during this execution

  sql/sql_view.cc
    1.9 04/07/22 17:52:01 bell@sanja.is.com.ua +7 -11
    made different fields for view updatebility in principle and updatability during this execution

  sql/sql_acl.cc
    1.98 04/07/22 17:52:01 bell@sanja.is.com.ua +2 -2
    mpre optimal locking (found by Monty)

  mysql-test/t/view.test
    1.8.1.2 04/07/22 17:52:01 bell@sanja.is.com.ua +15 -3
    fixed ps variavles test
    test of view built over updatable view

  mysql-test/r/view.result
    1.10.1.2 04/07/22 17:52:01 bell@sanja.is.com.ua +13 -3
    fixed ps variavles test
    test of view built over updatable view

ChangeSet
  1.1693.12.1 04/07/22 16:46:59 pem@mysql.comhem.se +3 -0
  Fixed BUG#4579: Execution of SP crashes server.
  Sub-CALLs of procedures zapped thd->current_arena for good.

  sql/sp_head.cc
    1.83 04/07/22 16:46:56 pem@mysql.com +10 -6
    Keep and restore old thd->current_arena before/after executing an SP,
    instead of just setting it to 0 afterwards.

  mysql-test/t/sp.test
    1.69.1.1 04/07/22 16:46:56 pem@mysql.com +30 -0
    New test case for BUG#4579.

  mysql-test/r/sp.result
    1.71 04/07/22 16:46:56 pem@mysql.com +21 -0
    New test case for BUG#4579.

ChangeSet
  1.1693.11.1 04/07/22 16:04:30 bell@sanja.is.com.ua +4 -0
  fixed SP variables detecting (BUG#4604)
  fixed error handling

  sql/sql_yacc.yy
    1.294 04/07/22 16:03:54 bell@sanja.is.com.ua +4 -1
    fixed SP variables detecting

  sql/sql_base.cc
    1.168.1.1 04/07/22 16:03:54 bell@sanja.is.com.ua +1 -1
    fixed error messages handling

  mysql-test/t/view.test
    1.8.1.1 04/07/22 16:03:54 bell@sanja.is.com.ua +10 -0
    SP variables inside view test

  mysql-test/r/view.result
    1.10.1.1 04/07/22 16:03:54 bell@sanja.is.com.ua +6 -0
    SP variables inside view test

ChangeSet
  1.1693.1.32 04/07/22 14:05:00 bell@sanja.is.com.ua +3 -0
  privent crash on temporary table during indexes lookup (BUG#4677)

  sql/sql_base.cc
    1.169 04/07/22 14:04:57 bell@sanja.is.com.ua +3 -2
    privent crash on temporary table

  mysql-test/t/view.test
    1.9 04/07/22 14:04:57 bell@sanja.is.com.ua +10 -0
    check 'use index' on view with temporary table

  mysql-test/r/view.result
    1.11 04/07/22 14:04:57 bell@sanja.is.com.ua +6 -0
    check 'use index' on view with temporary table

ChangeSet
  1.1693.1.31 04/07/22 13:43:04 bell@sanja.is.com.ua +1 -0
  fix lock_multi

  sql/sql_base.cc
    1.168 04/07/22 13:42:41 bell@sanja.is.com.ua +2 -1
    table_desc can be 0

ChangeSet
  1.1616.1.365 04/07/22 11:32:12 pem@mysql.comhem.se +1 -0
  Added missing error message to estonian/errmsg.txt.

  sql/share/estonian/errmsg.txt
    1.64.1.60 04/07/22 11:32:09 pem@mysql.com +1 -0
    Added missing error message.

ChangeSet
  1.1616.1.364 04/07/22 09:37:55 magnus@neptunus.(none) +9 -0
  Adding *.hpp files for testScan and testScanInterpreter to sources 
  Removing old directories for test/ using bk rmdir

  ndb/test/ndbapi/Makefile.am
    1.6 04/07/22 09:37:53 magnus@neptunus.(none) +2 -2
    Adding *.hpp files for testScan and testScanInterpreter to sources 

ChangeSet
  1.1616.1.363 04/07/21 19:20:22 konstantin@mysql.com +1 -0
  a line left from manual merge removed

  acinclude.m4
    1.103 04/07/21 19:20:19 konstantin@mysql.com +0 -1
    a line left from manual merge removed

ChangeSet
  1.1616.1.362 04/07/21 17:36:26 konstantin@mysql.com +104 -0
   First step of implementation of WL#1518 "make bundled zlib
    usable for unix builds": zlib 1.2.1 imported

  zlib/inflate.h
    1.1 04/07/21 17:36:06 konstantin@mysql.com +117 -0

  zlib/infback.c
    1.1 04/07/21 17:36:06 konstantin@mysql.com +619 -0

  zlib/crc32.h
    1.1 04/07/21 17:36:06 konstantin@mysql.com +441 -0

  zlib/zutil.h
    1.2 04/07/21 17:36:06 konstantin@mysql.com +64 -26
    zlib 1.2.1 imported

  zlib/zutil.c
    1.2 04/07/21 17:36:06 konstantin@mysql.com +105 -11
    zlib 1.2.1 imported

  zlib/zlib.h
    1.2 04/07/21 17:36:06 konstantin@mysql.com +385 -78
    zlib 1.2.1 imported

  zlib/zlib.3
    1.2 04/07/21 17:36:06 konstantin@mysql.com +81 -29
    zlib 1.2.1 imported

  zlib/zconf.h
    1.2 04/07/21 17:36:06 konstantin@mysql.com +152 -108
    zlib 1.2.1 imported

  zlib/uncompr.c
    1.2 04/07/21 17:36:06 konstantin@mysql.com +6 -3
    zlib 1.2.1 imported

  zlib/trees.c
    1.2 04/07/21 17:36:06 konstantin@mysql.com +48 -47
    zlib 1.2.1 imported

  zlib/inftrees.h
    1.2 04/07/21 17:36:06 konstantin@mysql.com +44 -47
    zlib 1.2.1 imported

  zlib/inftrees.c
    1.2 04/07/21 17:36:06 konstantin@mysql.com +287 -420
    zlib 1.2.1 imported

  zlib/inflate.h
    1.0 04/07/21 17:36:06 konstantin@mysql.com +0 -0
    BitKeeper file /home/kostja/mysql/mysql-4.1-zlib-new/zlib/inflate.h

  zlib/inflate.c
    1.2 04/07/21 17:36:06 konstantin@mysql.com +1241 -337
    zlib 1.2.1 imported

  zlib/inffixed.h
    1.2 04/07/21 17:36:06 konstantin@mysql.com +92 -149
    zlib 1.2.1 imported

  zlib/inffast.h
    1.2 04/07/21 17:36:06 konstantin@mysql.com +3 -9
    zlib 1.2.1 imported

  zlib/inffast.c
    1.2 04/07/21 17:36:06 konstantin@mysql.com +292 -170
    zlib 1.2.1 imported

  zlib/infback.c
    1.0 04/07/21 17:36:06 konstantin@mysql.com +0 -0
    BitKeeper file /home/kostja/mysql/mysql-4.1-zlib-new/zlib/infback.c

  zlib/gzio.c
    1.2 04/07/21 17:36:06 konstantin@mysql.com +327 -197
    zlib 1.2.1 imported

  zlib/deflate.h
    1.2 04/07/21 17:36:06 konstantin@mysql.com +15 -7
    zlib 1.2.1 imported

  zlib/deflate.c
    1.2 04/07/21 17:36:06 konstantin@mysql.com +326 -174
    zlib 1.2.1 imported

  zlib/crc32.h
    1.0 04/07/21 17:36:06 konstantin@mysql.com +0 -0
    BitKeeper file /home/kostja/mysql/mysql-4.1-zlib-new/zlib/crc32.h

  zlib/crc32.c
    1.2 04/07/21 17:36:06 konstantin@mysql.com +253 -104
    zlib 1.2.1 imported

  zlib/compress.c
    1.2 04/07/21 17:36:06 konstantin@mysql.com +12 -1
    zlib 1.2.1 imported

  zlib/algorithm.txt
    1.2 04/07/21 17:36:06 konstantin@mysql.com +50 -54
    zlib 1.2.1 imported

  zlib/adler32.c
    1.2 04/07/21 17:36:06 konstantin@mysql.com +34 -8
    zlib 1.2.1 imported

  zlib/README
    1.3 04/07/21 17:36:06 konstantin@mysql.com +58 -79
    zlib 1.2.1 imported

  zlib/INDEX
    1.3 04/07/21 17:36:06 konstantin@mysql.com +25 -63
    zlib 1.2.1 imported

  zlib/FAQ
    1.3 04/07/21 17:36:06 konstantin@mysql.com +231 -16
    zlib 1.2.1 imported

  zlib/ChangeLog
    1.2 04/07/21 17:36:06 konstantin@mysql.com +253 -7
    zlib 1.2.1 imported

  mysys/my_crc32.c
    1.2 04/07/21 17:36:06 konstantin@mysql.com +0 -13
    Modified to suit zlib upgrade.

  VC++Files/zlib/zlib.dsp
    1.9 04/07/21 17:36:06 konstantin@mysql.com +8 -16
    Modified to suit zlib upgrade.

  BitKeeper/deleted/.del-maketree.c~846b8b96ac6872d8
    1.2 04/07/21 17:10:26 konstantin@mysql.com +0 -0
    Delete: zlib/maketree.c

  BitKeeper/deleted/.del-infcodes.c~7ed73df8a54d6d55
    1.2 04/07/21 17:10:22 konstantin@mysql.com +0 -0
    Delete: zlib/infcodes.c

  BitKeeper/deleted/.del-infcodes.h~c9f64a612c2cc56a
    1.2 04/07/21 17:10:21 konstantin@mysql.com +0 -0
    Delete: zlib/infcodes.h

  BitKeeper/deleted/.del-infutil.h~a6bd0dcbbdc187ac
    1.2 04/07/21 17:06:21 konstantin@mysql.com +0 -0
    Delete: zlib/infutil.h

  BitKeeper/deleted/.del-infutil.c~43d2340436244b52
    1.2 04/07/21 17:06:15 konstantin@mysql.com +0 -0
    Delete: zlib/infutil.c

  BitKeeper/deleted/.del-infblock.c~3c866934e0f44c43
    1.2 04/07/21 17:05:48 konstantin@mysql.com +0 -0
    Delete: zlib/infblock.c

  BitKeeper/deleted/.del-infblock.h~7d4f40c3a1d4cdf8
    1.2 04/07/21 17:05:44 konstantin@mysql.com +0 -0
    Delete: zlib/infblock.h

  zlib/README
    1.2 04/07/21 17:05:14 konstantin@mysql.com +0 -0
    Rename: zlib/readme -> zlib/README

  BitKeeper/deleted/.del-descrip.mms~51cd5d1792d76b9c
    1.2 04/07/21 17:04:31 konstantin@mysql.com +0 -0
    Delete: zlib/descrip.mms

  BitKeeper/deleted/.del-example.c~5ea43c929ccd2a4f
    1.2 04/07/21 17:04:26 konstantin@mysql.com +0 -0
    Delete: zlib/example.c

  BitKeeper/deleted/.del-minigzip.c~1f21a5863f457cb0
    1.2 04/07/21 17:04:23 konstantin@mysql.com +0 -0
    Delete: zlib/minigzip.c

  BitKeeper/deleted/.del-zlib.html~2e74efd497dcd4d0
    1.2 04/07/21 17:04:19 konstantin@mysql.com +0 -0
    Delete: zlib/zlib.html

  BitKeeper/deleted/.del-zlib.dsp~a8abac2fb721276e
    1.3 04/07/21 17:04:15 konstantin@mysql.com +0 -0
    Delete: zlib/zlib.dsp

  zlib/INDEX
    1.2 04/07/21 17:04:04 konstantin@mysql.com +0 -0
    Rename: zlib/index -> zlib/INDEX

  zlib/FAQ
    1.2 04/07/21 17:03:58 konstantin@mysql.com +0 -0
    Rename: zlib/faq -> zlib/FAQ

  BitKeeper/deleted/.del-zlib.dnt~8160c636eb3eeed7
    1.2 04/07/21 17:03:50 konstantin@mysql.com +0 -0
    Delete: zlib/nt/zlib.dnt

  BitKeeper/deleted/.del-Makefile.nt~9910c98f5da056de
    1.2 04/07/21 17:03:49 konstantin@mysql.com +0 -0
    Delete: zlib/nt/Makefile.nt

  BitKeeper/deleted/.del-Makefile.gcc~7fcd3dd326341fa0
    1.2 04/07/21 17:03:49 konstantin@mysql.com +0 -0
    Delete: zlib/nt/Makefile.gcc

  BitKeeper/deleted/.del-Makefile.emx~b5fa0633cbe6fe01
    1.2 04/07/21 17:03:49 konstantin@mysql.com +0 -0
    Delete: zlib/nt/Makefile.emx

  BitKeeper/deleted/.del-zlib.rc~e5ce22c7c915ec00
    1.2 04/07/21 17:03:35 konstantin@mysql.com +0 -0
    Delete: zlib/msdos/zlib.rc

  BitKeeper/deleted/.del-zlib.def~189fba701e5e4b9c
    1.2 04/07/21 17:03:35 konstantin@mysql.com +0 -0
    Delete: zlib/msdos/zlib.def

  BitKeeper/deleted/.del-Makefile.wat~b2b51cbc2c2bc2f4
    1.2 04/07/21 17:03:34 konstantin@mysql.com +0 -0
    Delete: zlib/msdos/Makefile.wat

  BitKeeper/deleted/.del-Makefile.w32~921a473e873d94d1
    1.2 04/07/21 17:03:34 konstantin@mysql.com +0 -0
    Delete: zlib/msdos/Makefile.w32

  BitKeeper/deleted/.del-Makefile.tc~d1398368648e8836
    1.2 04/07/21 17:03:34 konstantin@mysql.com +0 -0
    Delete: zlib/msdos/Makefile.tc

  BitKeeper/deleted/.del-Makefile.msc~ba5ad7709ff22aab
    1.2 04/07/21 17:03:33 konstantin@mysql.com +0 -0
    Delete: zlib/msdos/Makefile.msc

  BitKeeper/deleted/.del-Makefile.emx~11a9e6c8a719ba60
    1.2 04/07/21 17:03:33 konstantin@mysql.com +0 -0
    Delete: zlib/msdos/Makefile.emx

  BitKeeper/deleted/.del-Makefile.dj2~a069623cad6ce7f4
    1.2 04/07/21 17:03:33 konstantin@mysql.com +0 -0
    Delete: zlib/msdos/Makefile.dj2

  BitKeeper/deleted/.del-Makefile.bor~121b2bc837b6367
    1.2 04/07/21 17:03:33 konstantin@mysql.com +0 -0
    Delete: zlib/msdos/Makefile.bor

  BitKeeper/deleted/.del-Makefile.b32~10ffaac6cc41847a
    1.2 04/07/21 17:03:32 konstantin@mysql.com +0 -0
    Delete: zlib/msdos/Makefile.b32

  BitKeeper/deleted/.del-zlib.def~385b56ed82784ff3
    1.2 04/07/21 17:02:40 konstantin@mysql.com +0 -0
    Delete: zlib/os2/zlib.def

  BitKeeper/deleted/.del-Makefile.os2~8ab058477b24d1ff
    1.2 04/07/21 17:02:39 konstantin@mysql.com +0 -0
    Delete: zlib/os2/Makefile.os2

  BitKeeper/deleted/.del-untgz.c~4e8f1a3a2c145373
    1.2 04/07/21 17:02:25 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/untgz/untgz.c

  BitKeeper/deleted/.del-makefile.w32~6507530fa1b017c
    1.2 04/07/21 17:02:25 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/untgz/makefile.w32

  BitKeeper/deleted/.del-zlibvc.dsw~c66b33a2d52f37c5
    1.2 04/07/21 17:02:24 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/minizip/zlibvc.dsw

  BitKeeper/deleted/.del-zlibvc.dsp~ad83fb048811e2d2
    1.2 04/07/21 17:02:24 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/minizip/zlibvc.dsp

  BitKeeper/deleted/.del-zlibvc.def~dd272b3ed71647ba
    1.2 04/07/21 17:02:24 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/minizip/zlibvc.def

  BitKeeper/deleted/.del-zip.h~4c72b8fcc492f055
    1.2 04/07/21 17:02:23 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/minizip/zip.h

  BitKeeper/deleted/.del-zip.def~4ffe888e9fd7b5aa
    1.2 04/07/21 17:02:23 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/minizip/zip.def

  BitKeeper/deleted/.del-zip.c~9750c19a123f3057
    1.2 04/07/21 17:02:23 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/minizip/zip.c

  BitKeeper/deleted/.del-unzip.h~d5e800088a368c32
    1.2 04/07/21 17:02:22 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/minizip/unzip.h

  BitKeeper/deleted/.del-unzip.def~8a0ad6f745ee5cd4
    1.2 04/07/21 17:02:22 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/minizip/unzip.def

  BitKeeper/deleted/.del-unzip.c~662c5ba4edbb3a19
    1.2 04/07/21 17:02:22 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/minizip/unzip.c

  BitKeeper/deleted/.del-readme.txt~174eb00680149f6b
    1.2 04/07/21 17:02:21 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/minizip/readme.txt

  BitKeeper/deleted/.del-minizip.c~4a49a0addb97272b
    1.2 04/07/21 17:02:21 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/minizip/minizip.c

  BitKeeper/deleted/.del-miniunz.c~9da181975b3a48
    1.2 04/07/21 17:02:21 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/minizip/miniunz.c

  BitKeeper/deleted/.del-zstream_test.cpp~e471b51e7fb553ec
    1.2 04/07/21 17:02:20 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/iostream2/zstream_test.cpp

  BitKeeper/deleted/.del-zstream.h~a6f6be5634962c81
    1.2 04/07/21 17:02:20 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/iostream2/zstream.h

  BitKeeper/deleted/.del-zfstream.h~71ee057bdc6366ac
    1.2 04/07/21 17:02:20 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/iostream/zfstream.h

  BitKeeper/deleted/.del-ChangeLogUnzip~a3ae0ba899cadd
    1.2 04/07/21 17:02:20 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/minizip/ChangeLogUnzip

  BitKeeper/deleted/.del-zlib32.cpp~bbb4a200d2fe6497
    1.2 04/07/21 17:02:19 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/delphi2/zlib32.cpp

  BitKeeper/deleted/.del-zfstream.cpp~943ecbd558e86dde
    1.2 04/07/21 17:02:19 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/iostream/zfstream.cpp

  BitKeeper/deleted/.del-test.cpp~4480297b204dc360
    1.2 04/07/21 17:02:19 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/iostream/test.cpp

  BitKeeper/deleted/.del-zlib32.bpr~c2a9f0aa47a1d9ad
    1.2 04/07/21 17:02:18 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/delphi2/zlib32.bpr

  BitKeeper/deleted/.del-zlib.pas~1d5285e2449b50a3
    1.2 04/07/21 17:02:18 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/delphi2/zlib.pas

  BitKeeper/deleted/.del-zlib.cpp~bb0c3df062410f5c
    1.2 04/07/21 17:02:18 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/delphi2/zlib.cpp

  BitKeeper/deleted/.del-zlib.bpr~fe8bf5d1c4a2ce5a
    1.2 04/07/21 17:02:17 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/delphi2/zlib.bpr

  BitKeeper/deleted/.del-zlib.bpg~fbd9308275ad8e3
    1.2 04/07/21 17:02:17 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/delphi2/zlib.bpg

  BitKeeper/deleted/.del-readme.txt~8222e54ca00f2729
    1.2 04/07/21 17:02:17 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/delphi2/readme.txt

  BitKeeper/deleted/.del-zlibdef.pas~780244c8d12b6c53
    1.2 04/07/21 17:02:16 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/delphi/zlibdef.pas

  BitKeeper/deleted/.del-d_zlib.cpp~62dff1931881afa6
    1.2 04/07/21 17:02:16 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/delphi2/d_zlib.cpp

  BitKeeper/deleted/.del-d_zlib.bpr~cefb1beee520d6e8
    1.2 04/07/21 17:02:16 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/delphi2/d_zlib.bpr

  BitKeeper/deleted/.del-zlib.mak~70f7c5f6947fd807
    1.2 04/07/21 17:02:15 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/delphi/zlib.mak

  BitKeeper/deleted/.del-readme.686~98a220c13809fce5
    1.2 04/07/21 17:02:15 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/asm686/readme.686

  BitKeeper/deleted/.del-match.s~e4bbe1fa486d1c6c
    1.2 04/07/21 17:02:13 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/asm686/match.s

  BitKeeper/deleted/.del-zlibvc.dsw~e3dca9d8f342e64e
    1.2 04/07/21 17:02:12 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/asm386/zlibvc.dsw

  BitKeeper/deleted/.del-readme.586~cb1bb7136b0803bb
    1.2 04/07/21 17:02:12 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/asm586/readme.586

  BitKeeper/deleted/.del-match.s~51b8fef5136642ed
    1.2 04/07/21 17:02:12 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/asm586/match.s

  BitKeeper/deleted/.del-zlibvc.dsp~a3323c77bcd12995
    1.3 04/07/21 17:02:11 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/asm386/zlibvc.dsp

  BitKeeper/deleted/.del-zlibvc.def~67961fa7815b9267
    1.2 04/07/21 17:02:11 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/asm386/zlibvc.def

  BitKeeper/deleted/.del-mkgvmt32.bat~5a92cf0febe3dc81
    1.2 04/07/21 17:02:11 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/asm386/mkgvmt32.bat

  BitKeeper/deleted/.del-gvmat32c.c~2e97d7d65dd59113
    1.2 04/07/21 17:02:11 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/asm386/gvmat32c.c

  BitKeeper/deleted/.del-visual-basic.txt~859fcbcb668ffbb3
    1.2 04/07/21 17:02:10 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/visual-basic.txt

  BitKeeper/deleted/.del-gvmat32.asm~edf721a2de30e964
    1.2 04/07/21 17:02:10 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/asm386/gvmat32.asm

  BitKeeper/deleted/.del-README.contrib~2924ba28ef1f9fab
    1.2 04/07/21 17:02:10 konstantin@mysql.com +0 -0
    Delete: zlib/contrib/README.contrib

  BitKeeper/deleted/.del-Makefile.sas~be103e936c85b66a
    1.2 04/07/21 17:01:55 konstantin@mysql.com +0 -0
    Delete: zlib/amiga/Makefile.sas

  BitKeeper/deleted/.del-Makefile.pup~b0e9ed99224cc5f4
    1.2 04/07/21 17:01:55 konstantin@mysql.com +0 -0
    Delete: zlib/amiga/Makefile.pup

  BitKeeper/deleted/.del-Makefile.riscos~f85c6493d3e51733
    1.2 04/07/21 17:00:50 konstantin@mysql.com +0 -0
    Delete: zlib/Makefile.riscos

  BitKeeper/deleted/.del-Make_vms.com~95dd9cc7505c3153
    1.2 04/07/21 17:00:44 konstantin@mysql.com +0 -0
    Delete: zlib/Make_vms.com

ChangeSet
  1.1616.1.361 04/07/21 19:29:08 miguel@hegel.(none) +1 -0
  Export the stmt functions on Embedded Server

  libmysqld/libmysqld.def
    1.8 04/07/21 19:29:00 miguel@hegel.(none) +27 -0
    Export the stmt functions on Embedded Server

ChangeSet
  1.1693.1.30 04/07/22 00:57:31 serg@serg.mylan +3 -0
  after merge fixes 2

  mysql-test/t/view.test
    1.8 04/07/22 00:57:26 serg@serg.mylan +20 -20
    after merge fixes 2

  mysql-test/r/view.result
    1.10 04/07/22 00:57:26 serg@serg.mylan +2 -2
    after merge fixes 2

  mysql-test/r/variables.result
    1.50 04/07/22 00:57:25 serg@serg.mylan +1 -1
    after merge fixes 2

ChangeSet
  1.1693.1.29 04/07/22 00:26:33 serg@serg.mylan +8 -0
  after merge fixes

  sql/sql_view.cc
    1.8 04/07/22 00:26:27 serg@serg.mylan +1 -2
    after merge fixes

  sql/sql_lex.cc
    1.112 04/07/22 00:26:27 serg@serg.mylan +2 -2
    cleanup

  sql/sp_head.cc
    1.82 04/07/22 00:26:27 serg@serg.mylan +4 -3
    after merge fixes

  sql/sp.cc
    1.56 04/07/22 00:26:27 serg@serg.mylan +1 -2
    after merge fixes

  sql/opt_range.h
    1.46 04/07/22 00:26:27 serg@serg.mylan +1 -1
    compatibility fix

  mysql-test/t/sp-security.test
    1.9 04/07/22 00:26:27 serg@serg.mylan +2 -2
    after merge fixes

  mysql-test/t/sp-error.test
    1.43 04/07/22 00:26:26 serg@serg.mylan +49 -49
    after merge fixes

  mysql-test/r/sp-error.result
    1.44 04/07/22 00:26:26 serg@serg.mylan +2 -2
    after merge fixes

ChangeSet
  1.1616.630.1 04/07/21 22:44:12 bell@sanja.is.com.ua +6 -0
  LEX initialization fixed

  sql/sql_prepare.cc
    1.34.1.81 04/07/21 22:43:44 bell@sanja.is.com.ua +2 -2
    LEX initialization fixed

  sql/sql_parse.cc
    1.271.1.96 04/07/21 22:43:44 bell@sanja.is.com.ua +6 -6
    LEX initialization fixed

  sql/sql_lex.h
    1.102.1.65 04/07/21 22:43:44 bell@sanja.is.com.ua +3 -3
    LEX initialization fixed

  sql/sql_lex.cc
    1.97.1.29 04/07/21 22:43:44 bell@sanja.is.com.ua +5 -7
    LEX initialization fixed

  sql/mysql_priv.h
    1.186.1.118 04/07/21 22:43:44 bell@sanja.is.com.ua +1 -1
    LEX initialization fixed

  sql/log_event.cc
    1.113.1.48 04/07/21 22:43:44 bell@sanja.is.com.ua +1 -1
    LEX initialization fixed

ChangeSet
  1.1616.629.1 04/07/21 19:17:07 serg@serg.mylan +7 -0
  fixed ORDER BY ?
  new tests to ensure that prepared statement *really* work
  (and that MySQL not picks up some number from arbitrary location
  that happens to match the parameter's value)

  sql/sql_select.cc
    1.216.1.135 04/07/21 19:17:02 serg@serg.mylan +1 -1
    don't shortcut - it backfires!
    (in particular - when itemptr is Item_param :)

  mysql-test/r/ps_6bdb.result
    1.2.1.1 04/07/21 19:17:02 serg@serg.mylan +10 -0
    results updated

  mysql-test/r/ps_5merge.result
    1.2.1.1 04/07/21 19:17:02 serg@serg.mylan +20 -0
    results updated

  mysql-test/r/ps_4heap.result
    1.1.1.1 04/07/21 19:17:02 serg@serg.mylan +10 -0
    results updated

  mysql-test/r/ps_3innodb.result
    1.2.1.2 04/07/21 19:17:02 serg@serg.mylan +10 -0
    results updated

  mysql-test/r/ps_2myisam.result
    1.2.1.1 04/07/21 19:17:02 serg@serg.mylan +10 -0
    results updated

  mysql-test/include/ps_query.inc
    1.3 04/07/21 19:17:01 serg@serg.mylan +5 -0
    new tests to ensure that prepared statement *really* work
    (and that MySQL not picks up some number from arbitrary location
    that happens to match the parameter's value)

ChangeSet
  1.1616.1.358 04/07/21 21:27:45 hf@deer.(none) +27 -0
  Final patch for WL#1600(warn if max_allowed_packet used)

  sql/share/ukrainian/errmsg.txt
    1.27.1.58 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/swedish/errmsg.txt
    1.64.1.60 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/spanish/errmsg.txt
    1.64.1.61 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/slovak/errmsg.txt
    1.64.1.61 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/serbian/errmsg.txt
    1.18.1.55 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/russian/errmsg.txt
    1.61.1.58 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/romanian/errmsg.txt
    1.62.1.62 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/portuguese/errmsg.txt
    1.64.1.60 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/polish/errmsg.txt
    1.63.1.61 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/norwegian/errmsg.txt
    1.63.1.62 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/norwegian-ny/errmsg.txt
    1.63.1.61 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/korean/errmsg.txt
    1.63.1.61 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/japanese/errmsg.txt
    1.63.1.59 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/italian/errmsg.txt
    1.70.1.61 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/hungarian/errmsg.txt
    1.65.1.60 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/greek/errmsg.txt
    1.64.1.60 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/german/errmsg.txt
    1.64.1.56 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/french/errmsg.txt
    1.63.1.61 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/estonian/errmsg.txt
    1.64.1.59 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/english/errmsg.txt
    1.70.1.65 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/dutch/errmsg.txt
    1.66.1.60 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/danish/errmsg.txt
    1.62.1.59 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/share/czech/errmsg.txt
    1.64.1.62 04/07/21 21:27:42 hf@deer.(none) +1 -0
    error message fixed

  sql/item_strfunc.cc
    1.181 04/07/21 21:27:42 hf@deer.(none) +18 -9
    error message fixed

  sql/item_geofunc.cc
    1.15 04/07/21 21:27:42 hf@deer.(none) +2 -1
    error message fixed

  mysql-test/r/packet.result
    1.7 04/07/21 21:27:42 hf@deer.(none) +1 -1
    test fixed

  mysql-test/r/func_str.result
    1.68 04/07/21 21:27:42 hf@deer.(none) +1 -1
    test fixed

ChangeSet
  1.1693.10.2 04/07/21 14:53:09 pem@mysql.comhem.se +6 -0
  Fixed BUG#2653: Undeclared variables not detected in stored procedures.
  We now get an run-time error instead of a crash (although a slightly misleading
  error message, but it's an improvement).

  sql/sql_class.cc
    1.146 04/07/21 14:53:05 pem@mysql.com +2 -1
    Changed return type to int, so be able to detect failed evals (fix item).

  sql/sp_rcontext.h
    1.10 04/07/21 14:53:05 pem@mysql.com +2 -1
    Changed return type to int, so be able to detect failed evals (fix item).

  sql/sp_rcontext.cc
    1.9 04/07/21 14:53:05 pem@mysql.com +9 -2
    Detect failed evals (fix item really), which are due to unresolved variables/fields.
    Typically this would be a reference to an undeclared variable.

  sql/sp_head.cc
    1.81 04/07/21 14:53:05 pem@mysql.com +41 -8
    Detect failed evals (fix item really), which are due to unresolved variables/fields.
    Typically this would be a reference to an undeclared variable.
    (Also got rid of some compiler warnings.)

  mysql-test/t/sp-error.test
    1.42 04/07/21 14:53:05 pem@mysql.com +22 -0
    New test case for BUG#2653.

  mysql-test/r/sp-error.result
    1.43 04/07/21 14:53:05 pem@mysql.com +16 -0
    New test case for BUG#2653.

  BitKeeper/deleted/.del-Makefile~eb4584f8f3d806a8
    1.5 04/07/21 11:24:58 magnus@neptunus.(none) +0 -0
    Delete: ndb/test/ndbapi/bank/old_dirs/bankValidateAllGLs/Makefile

  BitKeeper/deleted/.del-Makefile~3766e52c58c4799a
    1.5 04/07/21 11:24:58 magnus@neptunus.(none) +0 -0
    Delete: ndb/test/ndbapi/bank/old_dirs/testBank/Makefile

  BitKeeper/deleted/.del-Makefile~1e0c3a31ef7c20c
    1.5 04/07/21 11:24:58 magnus@neptunus.(none) +0 -0
    Delete: ndb/test/ndbapi/bank/old_dirs/src/Makefile

  BitKeeper/deleted/.del-Makefile~e4bdeda89cd7e97a
    1.5 04/07/21 11:24:57 magnus@neptunus.(none) +0 -0
    Delete: ndb/test/ndbapi/bank/old_dirs/bankTransactionMaker/Makefile

  BitKeeper/deleted/.del-Makefile~96d101a498089452
    1.5 04/07/21 11:24:57 magnus@neptunus.(none) +0 -0
    Delete: ndb/test/ndbapi/bank/old_dirs/bankCreator/Makefile

  BitKeeper/deleted/.del-Makefile~95fdc210ddf553f6
    1.5 04/07/21 11:24:57 magnus@neptunus.(none) +0 -0
    Delete: ndb/test/ndbapi/bank/old_dirs/bankSumAccounts/Makefile

  BitKeeper/deleted/.del-Makefile~82b2fd7fe466962
    1.5 04/07/21 11:24:57 magnus@neptunus.(none) +0 -0
    Delete: ndb/test/ndbapi/bank/old_dirs/bankMakeGL/Makefile

  BitKeeper/deleted/.del-Makefile~14c4cd8063f58fea
    1.5 04/07/21 11:24:57 magnus@neptunus.(none) +0 -0
    Delete: ndb/test/ndbapi/bank/old_dirs/bankTimer/Makefile

ChangeSet
  1.1693.1.25 04/07/21 12:14:45 bell@sanja.is.com.ua +3 -0
  test of duplicate field names (BUG#4608)

  sql/sql_view.cc
    1.7 04/07/21 12:14:42 bell@sanja.is.com.ua +20 -0
    test of duplicate field names

  mysql-test/t/view.test
    1.7 04/07/21 12:14:42 bell@sanja.is.com.ua +6 -0
    test of duplicate field names

  mysql-test/r/view.result
    1.9 04/07/21 12:14:42 bell@sanja.is.com.ua +2 -0
    test of duplicate field names

ChangeSet
  1.1693.1.24 04/07/21 04:26:20 bell@sanja.is.com.ua +30 -0
  error message interception (Bug#4598)
  error handling of view initialization fixed (Bug#4599)

  sql/table.h
    1.64 04/07/21 04:26:16 bell@sanja.is.com.ua +2 -0
    error message interception

  sql/table.cc
    1.113 04/07/21 04:26:16 bell@sanja.is.com.ua +14 -0
    error message interception

  sql/sql_view.cc
    1.6 04/07/21 04:26:16 bell@sanja.is.com.ua +11 -1
    comment fixed
    error message interception

  sql/sql_base.cc
    1.167 04/07/21 04:26:16 bell@sanja.is.com.ua +9 -2
    error message interception
    error handling fixed

  sql/share/ukrainian/errmsg.txt
    1.70 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/swedish/errmsg.txt
    1.108 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/spanish/errmsg.txt
    1.107 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/slovak/errmsg.txt
    1.107 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/serbian/errmsg.txt
    1.61 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/russian/errmsg.txt
    1.105 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/romanian/errmsg.txt
    1.104 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/portuguese/errmsg.txt
    1.106 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/polish/errmsg.txt
    1.107 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/norwegian/errmsg.txt
    1.106 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/norwegian-ny/errmsg.txt
    1.106 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/korean/errmsg.txt
    1.106 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/japanese/errmsg.txt
    1.106 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/italian/errmsg.txt
    1.113 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/hungarian/errmsg.txt
    1.108 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/greek/errmsg.txt
    1.107 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/german/errmsg.txt
    1.106 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/french/errmsg.txt
    1.106 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/estonian/errmsg.txt
    1.108 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/english/errmsg.txt
    1.115 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/dutch/errmsg.txt
    1.110 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/danish/errmsg.txt
    1.106 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  sql/share/czech/errmsg.txt
    1.106 04/07/21 04:26:16 bell@sanja.is.com.ua +1 -0
    new error message

  mysql-test/t/view.test
    1.6 04/07/21 04:26:16 bell@sanja.is.com.ua +14 -0
    changing of underlaying table test

  mysql-test/r/view.result
    1.8 04/07/21 04:26:16 bell@sanja.is.com.ua +10 -0
    changing of underlaying table test

  include/mysqld_error.h
    1.102 04/07/21 04:26:15 bell@sanja.is.com.ua +2 -1
    new error message

ChangeSet
  1.1616.628.1 04/07/21 00:52:35 guilhem@mysql.com +1 -0
  Sanja will probably rework this tomorrow; we need to unify the normal
  client code and replication slave code, as far as LOAD DATA INFILE and
  other queries' execution is concerned. Duplication of code leads to
  replication bugs, because the replication duplicate lags much behind.
  Fix for 2 Valgrind errors on slave replicating LOAD DATA INFILE
    - one serious (causing a random test failure in rpl_loaddata in 5.0)
    - one not serious (theoretically a bug but not dangerous): uninited thd->row_count

  sql/log_event.cc
    1.113.1.47 04/07/21 00:45:55 guilhem@mysql.com +12 -0
    Fix for 2 Valgrind errors:
    - one serious (causing a random test failure in rpl_loaddata in 5.0): uninited lex in replic of LOAD DATA INFILE on slave
    - one not serious (theoretically a bug but not dangerous): uninited thd->row_count in replication of LOAD DATA INFILE on slave.
    Sanja is likely to rework the fix to the 1st problem tomorrow.

ChangeSet
  1.1693.9.1 04/07/21 00:45:08 serg@serg.mylan +5 -0
  misc fixes for compile-time errors

  sql/opt_range.h
    1.45 04/07/21 00:45:03 serg@serg.mylan +70 -68
    get_quick_select_for_ref should be declared in the global scope to be visible.

  sql/opt_range.cc
    1.123 04/07/21 00:45:02 serg@serg.mylan +512 -511
    cast log's argument to double (otherwise an error on some compilers)

  sql/log_event.h
    1.94 04/07/21 00:45:02 serg@serg.mylan +104 -104
    const bool is_valid() -> bool is_valid() const

  sql/item_timefunc.cc
    1.63 04/07/21 00:45:02 serg@serg.mylan +0 -1
    "unused variable" warning

  sql/item_sum.cc
    1.103 04/07/21 00:45:02 serg@serg.mylan +5 -7
    "unused variable" warning

ChangeSet
  1.1693.1.23 04/07/21 00:45:52 bell@sanja.is.com.ua +2 -0
  test of SHOW PRIVILEGES

  mysql-test/t/grant.test
    1.18 04/07/21 00:45:24 bell@sanja.is.com.ua +5 -0
    test of SHOW PRIVILEGES

  mysql-test/r/grant.result
    1.23 04/07/21 00:45:24 bell@sanja.is.com.ua +25 -0
    test of SHOW PRIVILEGES

ChangeSet
  1.1616.1.355 04/07/20 13:25:55 brian@brian-akers-computer.local +1 -0
  Updates for archive storage engine. 

  sql/examples/ha_archive.cc
    1.7 04/07/20 13:20:06 brian@brian-akers-computer.local +13 -19
    Corrections from Bar's comments. Mainly small code changes/style changes.

ChangeSet
  1.1693.8.1 04/07/20 15:03:22 paul@kite-hub.kitebird.com +1 -0
  sql_show.cc:
    Add views privileges to SHOW PRIVILEGES output.
    (Bug #4656)

  sql/sql_show.cc
    1.146 04/07/20 15:00:57 paul@kite-hub.kitebird.com +5 -3
    Add views privileges to SHOW PRIVILEGES output.
    (Bug #4656)

ChangeSet
  1.1616.627.1 04/07/20 10:06:28 tim@sand.box +1 -0
  Get ps_1general test to pass (replace .result with .reject - some text
  was changed in the SHOW STORAGE ENGINES results)

  mysql-test/r/ps_1general.result
    1.1.2.1 04/07/20 10:05:18 tim@sand.box +7 -7
    SHOW STORAGE ENGINES now has different text ("type" -> "engine", etc.)

ChangeSet
  1.1693.7.4 04/07/20 18:51:02 bell@sanja.is.com.ua +5 -0
  fixed quoting of identifiers in VIEWs (BUG#4613)

  sql/sql_view.cc
    1.3.1.3 04/07/20 18:50:55 bell@sanja.is.com.ua +6 -1
    fixed quoting of identifiers in VIEWs

  sql/sql_select.cc
    1.254.1.2 04/07/20 18:50:55 bell@sanja.is.com.ua +12 -17
    fixed quoting of identifiers in VIEWs

  sql/item.cc
    1.88 04/07/20 18:50:55 bell@sanja.is.com.ua +15 -16
    fixed quoting of identifiers in VIEWs

  mysql-test/t/view.test
    1.5 04/07/20 18:50:54 bell@sanja.is.com.ua +12 -2
    fixed quoting of identifiers in VIEWs

  mysql-test/r/view.result
    1.7 04/07/20 18:50:54 bell@sanja.is.com.ua +11 -2
    fixed quoting of identifiers in VIEWs

ChangeSet
  1.1693.1.20 04/07/20 16:51:30 serg@serg.mylan +3 -0
  results updated

  mysql-test/r/system_mysql_db.result
    1.13 04/07/20 16:51:25 serg@serg.mylan +1 -1
    results updated

  mysql-test/r/rowid_order_innodb.result
    1.4 04/07/20 16:51:25 serg@serg.mylan +1 -1
    results updated

  mysql-test/r/ps_3innodb.result
    1.5 04/07/20 16:51:25 serg@serg.mylan +2 -2
    results updated

ChangeSet
  1.1616.626.3 04/07/20 11:13:23 serg@serg.mylan +1 -0
  oops, forgot to checkin...

  mysql-test/r/ps_3innodb.result
    1.2.1.1 04/07/20 11:13:18 serg@serg.mylan +4 -4
    oops, forgot to checkin...

ChangeSet
  1.1616.626.2 04/07/20 11:00:10 serg@serg.mylan +8 -0
  results fixed after merge

  mysql-test/t/rpl_drop.test
    1.2 04/07/20 11:00:05 serg@serg.mylan +2 -0
    --disable_warnings

  mysql-test/t/create_select_tmp.test
    1.2 04/07/20 11:00:05 serg@serg.mylan +2 -0
    --disable_warnings

  mysql-test/r/subselect2.result
    1.5.1.1 04/07/20 11:00:05 serg@serg.mylan +2 -2
    results fixed after merge

  mysql-test/r/rpl_drop.result
    1.2 04/07/20 11:00:05 serg@serg.mylan +3 -3
    results fixed after merge

  mysql-test/r/ps_1general.result
    1.1.1.1 04/07/20 11:00:05 serg@serg.mylan +7 -7
    results fixed after merge

  mysql-test/r/innodb.result
    1.93 04/07/20 11:00:05 serg@serg.mylan +12 -0
    results fixed after merge

  mysql-test/r/endspace.result
    1.2 04/07/20 11:00:04 serg@serg.mylan +1 -1
    results fixed after merge

  mysql-test/r/create_select_tmp.result
    1.2 04/07/20 11:00:04 serg@serg.mylan +8 -8
    results fixed after merge

ChangeSet
  1.1693.7.3 04/07/20 10:34:39 bell@sanja.is.com.ua +3 -0
  fix case what VIEW have not tables (BUG#4614)

  sql/sql_view.cc
    1.3.1.2 04/07/20 10:34:36 bell@sanja.is.com.ua +5 -0
    fix case what VIEW have not tables

  mysql-test/t/view.test
    1.4 04/07/20 10:34:36 bell@sanja.is.com.ua +9 -0
    test of VIEW without tables

  mysql-test/r/view.result
    1.6 04/07/20 10:34:36 bell@sanja.is.com.ua +6 -0
    test of VIEW without tables

ChangeSet
  1.1693.7.2 04/07/20 08:48:28 bell@sanja.is.com.ua +27 -0
  mark subquery in the FROM clause like derived and quoate all identifiers (BUG#4609)

  sql/sql_view.cc
    1.3.1.1 04/07/20 08:48:24 bell@sanja.is.com.ua +1 -0
    mark subquery in the FROM clause like derived

  sql/sql_select.cc
    1.254.1.1 04/07/20 08:48:24 bell@sanja.is.com.ua +12 -6
    Quoting of fields and tables names

  sql/item.h
    1.88 04/07/20 08:48:24 bell@sanja.is.com.ua +2 -1
    Quoting of fields and tables names

  sql/item.cc
    1.87 04/07/20 08:48:24 bell@sanja.is.com.ua +31 -0
    Quoting of fields and tables names

  mysql-test/t/view.test
    1.3 04/07/20 08:48:24 bell@sanja.is.com.ua +10 -0
    test of view with quated fields

  mysql-test/r/view.result
    1.5 04/07/20 08:48:24 bell@sanja.is.com.ua +35 -26
    Quoting of fields and tables names
    test of view with quated fields

  mysql-test/r/varbinary.result
    1.15 04/07/20 08:48:24 bell@sanja.is.com.ua +1 -1
    Quoting of fields and tables names

  mysql-test/r/union.result
    1.53 04/07/20 08:48:24 bell@sanja.is.com.ua +2 -2
    Quoting of fields and tables names

  mysql-test/r/subselect.result
    1.90 04/07/20 08:48:24 bell@sanja.is.com.ua +45 -45
    Quoting of fields and tables names

  mysql-test/r/select.result
    1.47 04/07/20 08:48:24 bell@sanja.is.com.ua +1 -1
    Quoting of fields and tables names

  mysql-test/r/query_cache.result
    1.45 04/07/20 08:48:24 bell@sanja.is.com.ua +1 -1
    Quoting of fields and tables names

  mysql-test/r/olap.result
    1.12 04/07/20 08:48:24 bell@sanja.is.com.ua +1 -1
    Quoting of fields and tables names

  mysql-test/r/join_nested.result
    1.5 04/07/20 08:48:24 bell@sanja.is.com.ua +12 -12
    Quoting of fields and tables names

  mysql-test/r/insert_update.result
    1.10 04/07/20 08:48:24 bell@sanja.is.com.ua +2 -2
    Quoting of fields and tables names

  mysql-test/r/having.result
    1.11 04/07/20 08:48:24 bell@sanja.is.com.ua +1 -1
    Quoting of fields and tables names

  mysql-test/r/group_by.result
    1.39 04/07/20 08:48:24 bell@sanja.is.com.ua +1 -1
    Quoting of fields and tables names

  mysql-test/r/gis.result
    1.16 04/07/20 08:48:24 bell@sanja.is.com.ua +7 -7
    Quoting of fields and tables names

  mysql-test/r/func_test.result
    1.25 04/07/20 08:48:24 bell@sanja.is.com.ua +2 -2
    Quoting of fields and tables names

  mysql-test/r/func_regexp.result
    1.10 04/07/20 08:48:24 bell@sanja.is.com.ua +1 -1
    Quoting of fields and tables names

  mysql-test/r/func_in.result
    1.13 04/07/20 08:48:24 bell@sanja.is.com.ua +1 -1
    Quoting of fields and tables names

  mysql-test/r/func_if.result
    1.12 04/07/20 08:48:24 bell@sanja.is.com.ua +2 -2
    Quoting of fields and tables names

  mysql-test/r/func_group.result
    1.34 04/07/20 08:48:24 bell@sanja.is.com.ua +1 -1
    Quoting of fields and tables names

  mysql-test/r/func_gconcat.result
    1.28 04/07/20 08:48:24 bell@sanja.is.com.ua +3 -3
    Quoting of fields and tables names

  mysql-test/r/func_default.result
    1.4 04/07/20 08:48:24 bell@sanja.is.com.ua +1 -1
    Quoting of fields and tables names

  mysql-test/r/fulltext.result
    1.66 04/07/20 08:48:24 bell@sanja.is.com.ua +2 -2
    Quoting of fields and tables names

  mysql-test/r/case.result
    1.15 04/07/20 08:48:24 bell@sanja.is.com.ua +1 -1
    Quoting of fields and tables names

  mysql-test/r/bench_count_distinct.result
    1.7 04/07/20 08:48:24 bell@sanja.is.com.ua +1 -1
    Quoting of fields and tables names

ChangeSet
  1.1693.1.18 04/07/20 02:44:39 serg@serg.mylan +1 -0
  compare correct types

  sql/sql_insert.cc
    1.112 04/07/20 02:42:02 serg@serg.mylan +1 -1
    compare correct types

ChangeSet
  1.1616.1.352 04/07/19 15:12:23 konstantin@mysql.com +1 -0
  Compilation failure on Windows fixed.

  sql/sql_db.cc
    1.68.1.48 04/07/19 15:12:18 konstantin@mysql.com +2 -1
    Compilation failure on Windows fixed.

ChangeSet
  1.1693.7.1 04/07/20 01:01:02 bell@sanja.is.com.ua +6 -0
  fixed case when frivileges check switched off (BUG#4631)

  mysql-test/t/view_skip_grants.test
    1.1 04/07/20 01:00:59 bell@sanja.is.com.ua +14 -0

  mysql-test/t/view_skip_grants-master.opt
    1.1 04/07/20 01:00:59 bell@sanja.is.com.ua +1 -0

  mysql-test/r/view_skip_grants.result
    1.1 04/07/20 01:00:59 bell@sanja.is.com.ua +6 -0

  sql/sql_acl.cc
    1.96 04/07/20 01:00:59 bell@sanja.is.com.ua +5 -0
    fixed case when frivileges check switched off

  mysql-test/t/view_skip_grants.test
    1.0 04/07/20 01:00:59 bell@sanja.is.com.ua +0 -0
    BitKeeper file /home/bell/mysql/bk/work-5.0/mysql-test/t/view_skip_grants.test

  mysql-test/t/view_skip_grants-master.opt
    1.0 04/07/20 01:00:59 bell@sanja.is.com.ua +0 -0
    BitKeeper file /home/bell/mysql/bk/work-5.0/mysql-test/t/view_skip_grants-master.opt

  mysql-test/t/view.test
    1.2 04/07/20 01:00:59 bell@sanja.is.com.ua +2 -2
    test made more environment independed

  mysql-test/r/view_skip_grants.result
    1.0 04/07/20 01:00:59 bell@sanja.is.com.ua +0 -0
    BitKeeper file /home/bell/mysql/bk/work-5.0/mysql-test/r/view_skip_grants.result

  mysql-test/r/view.result
    1.4 04/07/20 01:00:59 bell@sanja.is.com.ua +2 -2
    test made more environment independed

ChangeSet
  1.1693.1.17 04/07/19 13:43:19 konstantin@mysql.com +3 -0
  Fixes for MSVC++ compiler.

  sql/sql_view.cc
    1.4 04/07/19 13:43:13 konstantin@mysql.com +1 -1
    Explicit cast to unsigned char * is required here.

  sql/sql_select.cc
    1.255 04/07/19 13:43:13 konstantin@mysql.com +0 -1
    Not used variable removed.

  libmysql/client_settings.h
    1.30 04/07/19 13:43:13 konstantin@mysql.com +1 -1
    Fixed declaration to be in line with definition

ChangeSet
  1.1616.1.351 04/07/19 15:09:21 paul@ice.snake.net +1 -0
  handler.cc:
    Revise output of SHOW ENGINES.

  sql/handler.cc
    1.103.1.36 04/07/19 15:08:32 paul@ice.snake.net +7 -7
    Revise output of SHOW ENGINES.

ChangeSet
  1.1693.1.16 04/07/19 18:33:22 bell@sanja.is.com.ua +1 -0
  fixed test

  mysql-test/r/view.result
    1.3 04/07/19 18:32:47 bell@sanja.is.com.ua +0 -2
    fixed test

ChangeSet
  1.1616.1.350 04/07/19 16:01:53 serg@serg.mylan +1 -0
  make acl_init() more robust -
    don't be confused if  new privilege - ENUM ('N','Y') - columns are added (mostly because of downgrade)
    don't expect NOT NULL fields to never contain a NULL :) - somebody may've changed table definition, or we may be reading the wrong column

  sql/sql_acl.cc
    1.74.1.57 04/07/19 16:01:48 serg@serg.mylan +33 -17
    make acl_init() more robust -
      don't be confused if  new privilege - ENUM ('N','Y') - columns are added (mostly because of downgrade)
      don't expect NOT NULL fields to never contain a NULL :) - somebody may've changed table definition, or we may be reading the wrong column

ChangeSet
  1.676.1.768 04/07/19 12:32:36 lenz@mysql.com +1 -0
   - only include the GPL license in the LICENSE text, not the FOSS
     exception (it only applies to 4.0 and above)

  Docs/Makefile.am
    1.26.1.5 04/07/19 12:32:34 lenz@mysql.com +1 -1
     - only include the GPL license in the LICENSE text, not the FOSS
       exception (it only applies to 4.0 and above)

ChangeSet
  1.1693.1.15 04/07/19 12:07:33 bell@sanja.is.com.ua +13 -0
  standard values for table type in SHOW TABLES (BUG#4603)

  sql/sql_show.cc
    1.145 04/07/19 12:07:30 bell@sanja.is.com.ua +6 -4
    standard values for table type in SHOW TABLES
    debugging trap

  mysql-test/r/view.result
    1.2 04/07/19 12:07:30 bell@sanja.is.com.ua +10 -8
    standard values for table type in SHOW TABLES

  mysql-test/r/system_mysql_db.result
    1.11 04/07/19 12:07:30 bell@sanja.is.com.ua +17 -17
    standard values for table type in SHOW TABLES

  mysql-test/r/select.result
    1.46 04/07/19 12:07:30 bell@sanja.is.com.ua +7 -7
    standard values for table type in SHOW TABLES

  mysql-test/r/rpl_error_ignored_table.result
    1.14 04/07/19 12:07:30 bell@sanja.is.com.ua +1 -1
    standard values for table type in SHOW TABLES

  mysql-test/r/rpl000009.result
    1.21 04/07/19 12:07:30 bell@sanja.is.com.ua +9 -9
    standard values for table type in SHOW TABLES

  mysql-test/r/rename.result
    1.9 04/07/19 12:07:30 bell@sanja.is.com.ua +10 -10
    standard values for table type in SHOW TABLES

  mysql-test/r/ps_1general.result
    1.4 04/07/19 12:07:30 bell@sanja.is.com.ua +2 -2
    standard values for table type in SHOW TABLES

  mysql-test/r/lowercase_table.result
    1.11 04/07/19 12:07:30 bell@sanja.is.com.ua +4 -4
    standard values for table type in SHOW TABLES

  mysql-test/r/greedy_optimizer.result
    1.5 04/07/19 12:07:30 bell@sanja.is.com.ua +36 -36
    fixed results

  mysql-test/r/drop.result
    1.21 04/07/19 12:07:30 bell@sanja.is.com.ua +2 -2
    standard values for table type in SHOW TABLES

  mysql-test/r/ctype_recoding.result
    1.22 04/07/19 12:07:30 bell@sanja.is.com.ua +10 -10
    standard values for table type in SHOW TABLES

  mysql-test/r/connect.result
    1.11 04/07/19 12:07:30 bell@sanja.is.com.ua +54 -54
    standard values for table type in SHOW TABLES

ChangeSet
  1.1693.1.14 04/07/18 22:16:42 paul@ice.snake.net +1 -0
  mysql_fix_privilege_tables.sql:
    Fix the other typo, too. :-)

  scripts/mysql_fix_privilege_tables.sql
    1.15 04/07/18 22:15:57 paul@ice.snake.net +2 -2
    Fix the other typo, too. :-)

ChangeSet
  1.1693.1.13 04/07/18 22:11:47 paul@ice.snake.net +1 -0
  mysql_fix_privilege_tables.sql:
    Fix typo in comments.

  scripts/mysql_fix_privilege_tables.sql
    1.14 04/07/18 22:10:59 paul@ice.snake.net +2 -2
    Fix typo in comments.

ChangeSet
  1.1346.1.569 04/07/18 14:34:35 guilhem@mysql.com +3 -0
  Fix for BUG#4551 "Temporary InnoDB tables not replicated properly with CREATE TABLE .. SELECT"
  The problem was that (for any storage engine), the created temporary table was not removed if CREATE SELECT failed (because
  of a constraint violation for example). This was not consistent with the manual and with CREATE SELECT (no TEMPORARY).

  mysql-test/t/create_select_tmp.test
    1.1 04/07/18 14:34:32 guilhem@mysql.com +27 -0

  mysql-test/r/create_select_tmp.result
    1.1 04/07/18 14:34:32 guilhem@mysql.com +19 -0

  sql/sql_insert.cc
    1.63.1.52 04/07/18 14:34:32 guilhem@mysql.com +6 -2
    Fix for BUG#4551 "Temporary InnoDB tables not replicated properly with CREATE TABLE .. SELECT"
    The problem was that (for any storage engine), the created temporary table was not removed if CREATE SELECT failed (because
    of a constraint violation for example). This was not consistent with the manual and with CREATE SELECT (no TEMPORARY).
    And it led to the above bug, because the binlogging of CREATE SELECT is done by select_insert::send_eof() (same function
    as INSERT SELECT) and so, if the table is transactional and there is a failure, the statement is considered as rolled
    back and so nothing is written in the binlog. So temp table MUST be deleted.

  mysql-test/t/create_select_tmp.test
    1.0 04/07/18 14:34:32 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.0/mysql-test/t/create_select_tmp.test

  mysql-test/r/create_select_tmp.result
    1.0 04/07/18 14:34:32 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.0/mysql-test/r/create_select_tmp.result

ChangeSet
  1.1346.658.1 04/07/17 16:58:16 guilhem@mysql.com +4 -0
  Fixes for
  BUG#4506 "mysqlbinlog --position --read-from-remote-server has wrong "# at" lines",
  BUG#4553 "Multi-table DROP TABLE replicates improperly for nonexistent table" with a test file.
  It was not possible to add a test for BUG#4506 as in the test suite we must use --short-form
  which does not display the "# at" lines.

  mysql-test/t/rpl_drop.test
    1.1 04/07/17 16:58:13 guilhem@mysql.com +10 -0

  mysql-test/r/rpl_drop.result
    1.1 04/07/17 16:58:13 guilhem@mysql.com +10 -0

  sql/sql_table.cc
    1.112.1.68 04/07/17 16:58:13 guilhem@mysql.com +13 -10
    Fix for BUG#4553 "Multi-table DROP TABLE replicates improperly for nonexistent table"
    we must my_error() _before_ we write to the binlog, so that a meaningful error code is available
    in thd->net.last_errno for storage of the DROP TABLE statement into the binlog.

  mysql-test/t/rpl_drop.test
    1.0 04/07/17 16:58:13 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.0/mysql-test/t/rpl_drop.test

  mysql-test/r/rpl_drop.result
    1.0 04/07/17 16:58:13 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.0/mysql-test/r/rpl_drop.result

  client/mysqlbinlog.cc
    1.70.1.31 04/07/17 16:58:13 guilhem@mysql.com +2 -2
    Fix for BUG#4506 "mysqlbinlog --position --read-from-remote-server has wrong "# at" lines"
    when reading a remote binlog, the start position is not always BIN_LOG_HEADER_SIZE (4).

ChangeSet
  1.1693.1.12 04/07/17 16:15:32 serg@build.mysql.com +1 -0
  sql_select.cc:
    if many plans have identical cost, which one will be used depends on how compiler optimizes floating-point calculations
    this fix adds repeatability to the optimizer

  sql/sql_select.cc
    1.254 04/07/17 16:01:43 serg@build.mysql.com +1 -1
    if many plans have identical cost, which one will be used depends on how compiler optimizes floating-point calculations
    this fix adds repeatability to the optimizer

ChangeSet
  1.1616.1.348 04/07/17 02:09:25 bell@sanja.is.com.ua +1 -0
  test fix

  mysql-test/r/func_system.result
    1.18 04/07/17 02:09:21 bell@sanja.is.com.ua +1 -1
    test fix

ChangeSet
  1.1693.1.11 04/07/16 23:44:14 bell@sanja.is.com.ua +1 -0
  satisfy VC++

  sql/sql_view.cc
    1.3 04/07/16 23:44:11 bell@sanja.is.com.ua +5 -4
    satisfy VC++

ChangeSet
  1.1693.6.1 04/07/16 22:48:56 bell@sanja.is.com.ua +1 -0
  changes to sutisfy VC++

  sql/parse_file.cc
    1.4 04/07/16 22:48:53 bell@sanja.is.com.ua +26 -22
    changes to sutisfy VC++

ChangeSet
  1.1693.5.4 04/07/16 20:59:09 lenz@mysql.com +2 -0
   - Added sql/parse_file.cpp and sql/sql_view.cpp to the mysqld and
     libmysqld project files

  VC++Files/sql/mysqld.dsp
    1.23 04/07/16 20:56:19 lenz@mysql.com +11 -3
     - Added sql/parse_file.cpp and sql/sql_view.cpp to the mysqld and
       libmysqld project files

  VC++Files/libmysqld/libmysqld.dsp
    1.17 04/07/16 20:56:19 lenz@mysql.com +10 -2
     - Added sql/parse_file.cpp and sql/sql_view.cpp to the mysqld and
       libmysqld project files

ChangeSet
  1.1693.5.3 04/07/16 19:42:38 bell@sanja.is.com.ua +1 -0
  fix function prototype

  sql/parse_file.h
    1.5 04/07/16 19:42:35 bell@sanja.is.com.ua +1 -1
    fix function prototype

ChangeSet
  1.1693.5.2 04/07/16 15:20:51 bell@sanja.is.com.ua +3 -0
  memory leak removing

  sql/sql_view.cc
    1.2 04/07/16 15:20:17 bell@sanja.is.com.ua +15 -2
    memory leak removing

  sql/sql_lex.h
    1.138 04/07/16 15:20:17 bell@sanja.is.com.ua +12 -0
    memory leak removing

  BitKeeper/etc/ignore
    1.170 04/07/16 15:20:17 bell@sanja.is.com.ua +1 -0
    Added libmysqld/sql_view.cc to the ignore list

ChangeSet
  1.1616.625.1 04/07/16 13:21:58 serg@serg.mylan +1 -0
  in 4.1 DATABASE() may be NULL

  sql/item_strfunc.h
    1.85 04/07/16 13:21:53 serg@serg.mylan +3 -2
    in 4.1 DATABASE() may be NULL

ChangeSet
  1.1693.4.1 04/07/16 12:25:26 bell@sanja.is.com.ua +1 -0
  changes in system db creation procedure for view privileges

  scripts/mysql_create_system_tables.sh
    1.16 04/07/16 12:25:21 bell@sanja.is.com.ua +16 -10
    changes in system db creation procedure for view privileges

ChangeSet
  1.1693.1.7 04/07/16 03:47:17 miguel@hegel.txg +7 -0
  Fixes for bug #4571 (Windows compabilities)

  sql/sql_update.cc
    1.114 04/07/16 03:47:09 miguel@hegel.txg +2 -2
    Fix for cast

  sql/sql_parse.cc
    1.346 04/07/16 03:47:08 miguel@hegel.txg +1 -1
    Fix for cast

  sql/sql_insert.cc
    1.111 04/07/16 03:47:08 miguel@hegel.txg +6 -5
    Fix for cast and redifinition of variable declared  i (VC++ bug)

  sql/sql_db.cc
    1.89 04/07/16 03:47:08 miguel@hegel.txg +1 -2
    Fix for unreferenced variable and cast

  sql/sql_acl.cc
    1.95 04/07/16 03:47:08 miguel@hegel.txg +1 -1
    Fix for unreferenced variable

  sql/sp_head.cc
    1.80 04/07/16 03:47:08 miguel@hegel.txg +4 -6
    Fix for unreferenced variables and cast

  sql/opt_range.cc
    1.122 04/07/16 03:47:07 miguel@hegel.txg +2 -3
    Fix for unreferenced local variable, cast and indirection to different types

ChangeSet
  1.1693.1.6 04/07/16 09:45:44 dlenev@brandersnatch.localdomain +1 -0
  Fixed typo in sql/sql_insert.cc which caused non-debug builds to fail.

  sql/sql_insert.cc
    1.110 04/07/16 09:45:38 dlenev@brandersnatch.localdomain +1 -1
    Fixed typo which caused non-debug builds to fail.

ChangeSet
  1.1693.1.5 04/07/16 07:35:41 dlenev@brandersnatch.localdomain +1 -0
  Fix warnings in sql/item_timefunc.cc which popped up during windows builds.

  sql/item_timefunc.cc
    1.62 04/07/16 07:35:12 dlenev@brandersnatch.localdomain +2 -2
    Fix warnings which popped up during windows builds.

ChangeSet
  1.1693.3.1 04/07/16 01:15:55 bell@sanja.is.com.ua +85 -0
  VIEW
  two TABLE_LIST copy eliminated

  sql/sql_view.h
    1.1 04/07/16 01:15:17 bell@sanja.is.com.ua +42 -0

  sql/sql_view.cc
    1.1 04/07/16 01:15:17 bell@sanja.is.com.ua +902 -0

  mysql-test/t/view.test
    1.1 04/07/16 01:15:17 bell@sanja.is.com.ua +853 -0

  mysql-test/r/view.result
    1.1 04/07/16 01:15:17 bell@sanja.is.com.ua +943 -0

  tests/client_test.c
    1.60 04/07/16 01:15:17 bell@sanja.is.com.ua +361 -2
    VIEW

  sql/unireg.h
    1.34 04/07/16 01:15:17 bell@sanja.is.com.ua +1 -0
    VIEW

  sql/tztime.cc
    1.9 04/07/16 01:15:17 bell@sanja.is.com.ua +3 -3
    two TABLE_LIST copy eliminated

  sql/table.h
    1.63 04/07/16 01:15:17 bell@sanja.is.com.ua +96 -9
    VIEW

  sql/table.cc
    1.112 04/07/16 01:15:17 bell@sanja.is.com.ua +225 -11
    VIEW

  sql/sql_yacc.yy
    1.293 04/07/16 01:15:17 bell@sanja.is.com.ua +125 -16
    VIEW

  sql/sql_view.h
    1.0 04/07/16 01:15:17 bell@sanja.is.com.ua +0 -0
    BitKeeper file /home/bell/mysql/bk/work-view3-5.0/sql/sql_view.h

  sql/sql_view.cc
    1.0 04/07/16 01:15:17 bell@sanja.is.com.ua +0 -0
    BitKeeper file /home/bell/mysql/bk/work-view3-5.0/sql/sql_view.cc

  mysql-test/t/view.test
    1.0 04/07/16 01:15:17 bell@sanja.is.com.ua +0 -0
    BitKeeper file /home/bell/mysql/bk/work-view3-5.0/mysql-test/t/view.test

  mysql-test/r/view.result
    1.0 04/07/16 01:15:17 bell@sanja.is.com.ua +0 -0
    BitKeeper file /home/bell/mysql/bk/work-view3-5.0/mysql-test/r/view.result

  sql/sql_update.cc
    1.113 04/07/16 01:15:16 bell@sanja.is.com.ua +132 -78
    VIEW

  sql/sql_union.cc
    1.96 04/07/16 01:15:16 bell@sanja.is.com.ua +8 -7
    VIEW

  sql/sql_table.cc
    1.184 04/07/16 01:15:16 bell@sanja.is.com.ua +34 -20
    VIEW

  sql/sql_show.cc
    1.144 04/07/16 01:15:16 bell@sanja.is.com.ua +98 -13
    VIEW

  sql/sql_select.cc
    1.253 04/07/16 01:15:16 bell@sanja.is.com.ua +43 -55
    VIEW

  sql/sql_rename.cc
    1.21 04/07/16 01:15:16 bell@sanja.is.com.ua +9 -9
    two TABLE_LIST copy eliminated

  sql/sql_prepare.cc
    1.66 04/07/16 01:15:16 bell@sanja.is.com.ua +54 -48
    VIEW

  sql/sql_parse.cc
    1.345 04/07/16 01:15:16 bell@sanja.is.com.ua +320 -259
    two TABLE_LIST copy eliminated
    VIEW

  sql/sql_olap.cc
    1.13 04/07/16 01:15:16 bell@sanja.is.com.ua +2 -1
    VIEW

  sql/sql_load.cc
    1.60 04/07/16 01:15:16 bell@sanja.is.com.ua +12 -2
    VIEW

  sql/sql_lex.h
    1.137 04/07/16 01:15:16 bell@sanja.is.com.ua +47 -12
    VIEW

  sql/sql_lex.cc
    1.110 04/07/16 01:15:16 bell@sanja.is.com.ua +212 -160
    VIEW

  sql/sql_insert.cc
    1.109 04/07/16 01:15:16 bell@sanja.is.com.ua +177 -37
    VIEW

  sql/sql_help.cc
    1.29 04/07/16 01:15:16 bell@sanja.is.com.ua +10 -8
    two TABLE_LIST copy eliminated

  sql/sql_handler.cc
    1.55 04/07/16 01:15:16 bell@sanja.is.com.ua +2 -2
    two TABLE_LIST copy eliminated

  sql/sql_derived.cc
    1.58 04/07/16 01:15:16 bell@sanja.is.com.ua +10 -12
    VIEW

  sql/sql_delete.cc
    1.123 04/07/16 01:15:16 bell@sanja.is.com.ua +93 -25
    VIEW

  sql/sql_db.cc
    1.88 04/07/16 01:15:16 bell@sanja.is.com.ua +1 -1
    two TABLE_LIST copy eliminated

  sql/sql_class.h
    1.190 04/07/16 01:15:16 bell@sanja.is.com.ua +19 -14
    VIEW

  sql/sql_cache.cc
    1.64 04/07/16 01:15:16 bell@sanja.is.com.ua +8 -6
    two TABLE_LIST copy eliminated

  sql/sql_base.cc
    1.166 04/07/16 01:15:16 bell@sanja.is.com.ua +489 -121
    VIEW

  sql/sql_acl.h
    1.32 04/07/16 01:15:16 bell@sanja.is.com.ua +28 -10
    VIEW

  sql/sql_acl.cc
    1.94 04/07/16 01:15:16 bell@sanja.is.com.ua +144 -84
    VIEW

  sql/sp.cc
    1.55 04/07/16 01:15:16 bell@sanja.is.com.ua +7 -4
    VIEW

  sql/slave.cc
    1.215 04/07/16 01:15:16 bell@sanja.is.com.ua +1 -1
    two TABLE_LIST copy eliminated

  sql/share/ukrainian/errmsg.txt
    1.69 04/07/16 01:15:16 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/swedish/errmsg.txt
    1.107 04/07/16 01:15:16 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/spanish/errmsg.txt
    1.106 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/slovak/errmsg.txt
    1.106 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/serbian/errmsg.txt
    1.60 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/russian/errmsg.txt
    1.104 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/romanian/errmsg.txt
    1.103 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/portuguese/errmsg.txt
    1.105 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/polish/errmsg.txt
    1.106 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/norwegian/errmsg.txt
    1.105 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/norwegian-ny/errmsg.txt
    1.105 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/korean/errmsg.txt
    1.105 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/japanese/errmsg.txt
    1.105 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/italian/errmsg.txt
    1.112 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/hungarian/errmsg.txt
    1.107 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/greek/errmsg.txt
    1.106 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/german/errmsg.txt
    1.105 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/french/errmsg.txt
    1.105 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/estonian/errmsg.txt
    1.107 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/english/errmsg.txt
    1.114 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/dutch/errmsg.txt
    1.109 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/danish/errmsg.txt
    1.105 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/share/czech/errmsg.txt
    1.105 04/07/16 01:15:15 bell@sanja.is.com.ua +11 -0
    errors messages of views

  sql/set_var.cc
    1.58.1.1 04/07/16 01:15:15 bell@sanja.is.com.ua +7 -0
    new parameter - sql_updatable_view_key

  sql/opt_sum.cc
    1.39 04/07/16 01:15:15 bell@sanja.is.com.ua +2 -2
    two TABLE_LIST copy eliminated

  sql/mysqld.cc
    1.387 04/07/16 01:15:15 bell@sanja.is.com.ua +7 -1
    VIEW
    new parameter - sql_updatable_view_key

  sql/mysql_priv.h
    1.220 04/07/16 01:15:15 bell@sanja.is.com.ua +21 -16
    VIEW

  sql/lock.cc
    1.49 04/07/16 01:15:15 bell@sanja.is.com.ua +5 -3
    VIEW

  sql/lex.h
    1.121 04/07/16 01:15:15 bell@sanja.is.com.ua +5 -0
    VIEW

  sql/item_subselect.h
    1.54 04/07/16 01:15:15 bell@sanja.is.com.ua +2 -1
    VIEW

  sql/item_subselect.cc
    1.78 04/07/16 01:15:15 bell@sanja.is.com.ua +18 -1
    VIEW

  sql/item.h
    1.87 04/07/16 01:15:15 bell@sanja.is.com.ua +12 -1
    VIEW

  sql/item.cc
    1.86 04/07/16 01:15:15 bell@sanja.is.com.ua +95 -29
    VIEW

  sql/ha_myisammrg.cc
    1.52 04/07/16 01:15:14 bell@sanja.is.com.ua +2 -2
    two TABLE_LIST copy eliminated

  sql/Makefile.am
    1.94 04/07/16 01:15:14 bell@sanja.is.com.ua +2 -1
    new VIEW related file

  scripts/mysql_fix_privilege_tables.sql
    1.13 04/07/16 01:15:14 bell@sanja.is.com.ua +13 -0
    new two privileges (CRETEA|SHOW VIEW)

  mysql-test/t/system_mysql_db_fix.test
    1.6.1.1 04/07/16 01:15:14 bell@sanja.is.com.ua +1 -10
    removing all system tables

  mysql-test/r/system_mysql_db.result
    1.10 04/07/16 01:15:14 bell@sanja.is.com.ua +23 -17
    SHOW TABLE show type of table
    new two privileges (CRETEA|SHOW VIEW)

  mysql-test/r/select.result
    1.45 04/07/16 01:15:14 bell@sanja.is.com.ua +7 -7
    SHOW TABLE show type of table

  mysql-test/r/rpl_error_ignored_table.result
    1.13 04/07/16 01:15:14 bell@sanja.is.com.ua +1 -1
    SHOW TABLE show type of table

  mysql-test/r/rpl000009.result
    1.20 04/07/16 01:15:14 bell@sanja.is.com.ua +9 -9
    SHOW TABLE show type of table

  mysql-test/r/rename.result
    1.8 04/07/16 01:15:14 bell@sanja.is.com.ua +10 -10
    SHOW TABLE show type of table

  mysql-test/r/ps_1general.result
    1.3 04/07/16 01:15:14 bell@sanja.is.com.ua +2 -2
    SHOW TABLE show type of table

  mysql-test/r/lowercase_table.result
    1.10 04/07/16 01:15:14 bell@sanja.is.com.ua +4 -4
    SHOW TABLE show type of table

  mysql-test/r/grant.result
    1.22 04/07/16 01:15:14 bell@sanja.is.com.ua +3 -3
    new two privileges (CRETEA|SHOW VIEW)

  mysql-test/r/drop.result
    1.20 04/07/16 01:15:14 bell@sanja.is.com.ua +2 -2
    SHOW TABLE show type of table

  mysql-test/r/ctype_recoding.result
    1.21 04/07/16 01:15:14 bell@sanja.is.com.ua +10 -10
    SHOW TABLE show type of table

  mysql-test/r/connect.result
    1.10 04/07/16 01:15:14 bell@sanja.is.com.ua +54 -54
    SHOW TABLE show type of table

  libmysqld/Makefile.am
    1.45 04/07/16 01:15:14 bell@sanja.is.com.ua +1 -1
    new view file

  include/mysqld_error.h
    1.101 04/07/16 01:15:14 bell@sanja.is.com.ua +12 -1
    errors of view

ChangeSet
  1.1693.2.1 04/07/15 23:34:41 guilhem@mysql.com +5 -0
  after merge fixes (making rpl_charset and rpl_timezone pass).
  Replication of charsets and timezones should shortly be changed to not need ONE_SHOT
  (but 5.0 should still be able to read it, to be able to replicate 4.1 masters).

  sql/set_var.h
    1.55 04/07/15 23:34:35 guilhem@mysql.com +2 -18
    Even if in the future, 5.0 will not use ONE_SHOT in ITS binlog, it must still be able to interpret it, to make 4.1->5.0 replication possible

  sql/set_var.cc
    1.59 04/07/15 23:34:35 guilhem@mysql.com +3 -5
    Even if in the future, 5.0 will not use ONE_SHOT in ITS binlog, it must still be able to interpret it, to make 4.1->5.0 replication possible

  sql/log.cc
    1.124 04/07/15 23:34:35 guilhem@mysql.com +1 -2
    use ONE_SHOT to save charset and TZ info in the binlog (until I rewrite this soon)

  mysql-test/r/rpl_timezone.result
    1.3 04/07/15 23:34:35 guilhem@mysql.com +5 -3
    result update after the merge (only binlog positions differ from 4.1)

  mysql-test/r/rpl_charset.result
    1.5 04/07/15 23:34:35 guilhem@mysql.com +58 -58
    result update after the merge (only binlog positions differ from 4.1)

ChangeSet
  1.1616.623.1 04/07/15 21:18:31 lenz@mysql.com +1 -0
   - Avoid the error message "Can't read index header from..."
     when copying a small index file because the value returned
     for $length is < 1024. This can happen if the filehandle
     was open()ed as an UTF-8 encoded file with Unicode characters
     (In this case read() returns characters not bytes)
     (Thanks to Mike Bethune) for this hint)

  scripts/mysqlhotcopy.sh
    1.44 04/07/15 21:18:25 lenz@mysql.com +1 -0
     - Avoid the error message "Can't read index header from..."
       when copying a small index file because the value returned
       for $length is < 1024. This can happen if the filehandle
       was open()ed as an UTF-8 encoded file with Unicode characters
       (In this case read() returns characters not bytes)
       (Thanks to Mike Bethune) for this hint)

ChangeSet
  1.1693.1.2 04/07/15 17:30:55 serg@serg.mylan +4 -0
  failing fulltext_order_by.test fixed

  sql/opt_range.h
    1.44 04/07/15 17:29:16 serg@serg.mylan +1 -1
    failing fulltext_order_by.test fixed

  sql/handler.h
    1.103 04/07/15 17:29:16 serg@serg.mylan +1 -0
    failing fulltext_order_by.test fixed

  sql/ha_myisam.h
    1.62 04/07/15 17:29:16 serg@serg.mylan +0 -1
    not necessary

  myisam/sort.c
    1.42 04/07/15 17:29:16 serg@serg.mylan +1 -1
    warning fixed

ChangeSet
  1.1346.1.567 04/07/15 15:46:22 marko@hundin.mysql.fi +3 -0
  InnoDB: limit the recursion depth for ON (UPDATE|DELETE) CASCADE
  (Bug #4446)

  mysql-test/t/innodb.test
    1.28.1.26 04/07/15 15:46:19 marko@hundin.mysql.fi +14 -0
    Add test for recursion depth limit

  mysql-test/r/innodb.result
    1.40.1.39 04/07/15 15:46:19 marko@hundin.mysql.fi +12 -0
    Add test for recursion depth limit

  innobase/row/row0ins.c
    1.26.1.12 04/07/15 15:46:19 marko@hundin.mysql.fi +1 -2
    row_ins_foreign_check_on_constraint(): limit recursion for UPDATE too

  innobase/row/row0ins.c
    1.26.1.11 04/07/15 15:29:26 marko@hundin.mysql.fi +66 -13
    row_ins_cascade_n_ancestors(): new function to determine the recursion depth
    row_ins_invalidate_query_cache(): new function, saves stack space
    row_ins_foreign_check_on_constraint(): limit recursion depth (Bug #4446)

ChangeSet
  1.1616.622.1 04/07/15 14:17:30 bell@sanja.is.com.ua +3 -0
  check that all system tables deleted added

  mysql-test/t/system_mysql_db_fix.test
    1.7 04/07/15 14:17:03 bell@sanja.is.com.ua +4 -10
    check that all system tables deleted added

  mysql-test/t/system_mysql_db.test
    1.4 04/07/15 14:17:03 bell@sanja.is.com.ua +5 -0
    check that all system tables deleted added

  mysql-test/r/system_mysql_db.result
    1.6.1.3 04/07/15 14:17:03 bell@sanja.is.com.ua +2 -0
    check that all system tables deleted added

ChangeSet
  1.1346.1.566 04/07/15 09:08:51 heikki@hundin.mysql.fi +1 -0
  btr0cur.c:
    Do not add + 1 to the InnoDB index cardinality estimate if the B-tree just contains one page; the fix made in March 2004 caused InnoDB systematically to overestimate the cardinality of empty or small tables by 1

  innobase/btr/btr0cur.c
    1.20.1.16 04/07/15 09:08:37 heikki@hundin.mysql.fi +9 -2
    Do not add + 1 to the InnoDB index cardinality estimate if the B-tree just contains one page; the fix made in March 2004 caused InnoDB systematically to overestimate the cardinality of empty or small tables by 1

ChangeSet
  1.1688.2.4 04/07/15 04:19:07 monty@mysql.com +50 -0
  After merge fixes
  Note: The following tests fails
  - fulltext (Sergei has promised to fix)
  - rpl_charset (Guilhem should fix)
  - rpl_timezone (Dimitray has promised to fix)
  
  Sanja needs to check out the calling of close_thread_tables() in sp_head.cc

  sql/sql_select.cc
    1.249.1.4 04/07/15 04:18:59 monty@mysql.com +8 -6
    After merge fixes

  sql/sql_prepare.cc
    1.65 04/07/15 04:18:59 monty@mysql.com +15 -5
    After merge fixes

  sql/sql_parse.cc
    1.344 04/07/15 04:18:58 monty@mysql.com +5 -2
    More debugging

  sql/sql_handler.cc
    1.54 04/07/15 04:18:58 monty@mysql.com +10 -7
    After merge fixes
    (We have to call ha_index_or_rnd_end() before calling close_thread_table())

  sql/sql_base.cc
    1.165 04/07/15 04:18:58 monty@mysql.com +3 -3
    More debugging

  sql/sp_head.cc
    1.79 04/07/15 04:18:57 monty@mysql.com +7 -2
    Remove closing of thread tables in a SP function as this caused a core dump.
    (Has to be fixed better)

  sql/sp.cc
    1.54 04/07/15 04:18:57 monty@mysql.com +2 -0
    After merge fixes

  sql/opt_range.h
    1.43 04/07/15 04:18:56 monty@mysql.com +5 -0
    After merge fixes

  sql/opt_range.cc
    1.121 04/07/15 04:18:56 monty@mysql.com +28 -16
    After merge fixes

  sql/item_cmpfunc.cc
    1.123 04/07/15 04:18:56 monty@mysql.com +1 -3
    After merge fixes

  sql/item.h
    1.86 04/07/15 04:18:55 monty@mysql.com +4 -1
    Indentation fixes

  sql/handler.h
    1.102 04/07/15 04:18:55 monty@mysql.com +9 -5
    More debugging

  sql/handler.cc
    1.113 04/07/15 04:18:54 monty@mysql.com +0 -1
    Cleanup

  scripts/mysql_fix_privilege_tables.sh
    1.26.1.1 04/07/15 04:18:53 monty@mysql.com +18 -27
    This can now be exectued from the source distribution

  mysql-test/t/user_var.test
    1.14 04/07/15 04:18:53 monty@mysql.com +1 -1
    after merge fix

  mysql-test/t/sp-security.test
    1.8 04/07/15 04:18:53 monty@mysql.com +2 -2
    after merge fix

  mysql-test/t/sp-error.test
    1.41 04/07/15 04:18:52 monty@mysql.com +49 -49
    after merge fix

  mysql-test/t/rpl_rotate_logs.test
    1.51 04/07/15 04:18:51 monty@mysql.com +1 -1
    Use MASTER_MYSOCK instead of master.sock

  mysql-test/t/rpl_heap.test
    1.3 04/07/15 04:18:51 monty@mysql.com +1 -1
    Use MASTER_MYSOCK instead of master.sock

  mysql-test/t/rpl_charset.test
    1.3 04/07/15 04:18:50 monty@mysql.com +1 -1
    After merge fix

  mysql-test/t/rpl000018.test
    1.11 04/07/15 04:18:50 monty@mysql.com +1 -1
    Use MASTER_MYSOCK instead of master.sock

  mysql-test/t/rpl000017.test
    1.12 04/07/15 04:18:50 monty@mysql.com +1 -1
    Use MASTER_MYSOCK instead of master.sock

  mysql-test/t/rpl000015.test
    1.29 04/07/15 04:18:50 monty@mysql.com +1 -1
    Use MASTER_MYSOCK instead of master.sock

  mysql-test/t/multi_update.test
    1.36 04/07/15 04:18:49 monty@mysql.com +2 -2
    Use MASTER_MYSOCK instead of master.sock

  mysql-test/t/grant_cache.test
    1.10 04/07/15 04:18:49 monty@mysql.com +7 -7
    Use MASTER_MYSOCK instead of master.sock

  mysql-test/t/func_group.test
    1.25 04/07/15 04:18:49 monty@mysql.com +1 -0
    Make result repeatable

  mysql-test/t/derived.test
    1.43 04/07/15 04:18:48 monty@mysql.com +1 -1
    After merge fix

  mysql-test/t/alter_table.test
    1.30 04/07/15 04:18:48 monty@mysql.com +2 -2
    After merge fix

  mysql-test/r/variables.result
    1.49 04/07/15 04:18:47 monty@mysql.com +1 -1
    After merge fix

  mysql-test/r/user_var.result
    1.18 04/07/15 04:18:47 monty@mysql.com +11 -9
    After merge fix

  mysql-test/r/sp.result
    1.70 04/07/15 04:18:47 monty@mysql.com +1 -1
    After merge fix

  mysql-test/r/sp-security.result
    1.8 04/07/15 04:18:46 monty@mysql.com +8 -8
    After merge fix

  mysql-test/r/sp-error.result
    1.42 04/07/15 04:18:46 monty@mysql.com +5 -5
    After merge fix

  mysql-test/r/select.result
    1.44 04/07/15 04:18:46 monty@mysql.com +0 -2
    After merge fix

  mysql-test/r/rpl_user_variables.result
    1.10 04/07/15 04:18:46 monty@mysql.com +17 -17
    After merge fix

  mysql-test/r/rpl_timezone.result
    1.2 04/07/15 04:18:46 monty@mysql.com +7 -9
    After merge fix
    Note that this test fails now (Dimitry has promised to fix this)

  mysql-test/r/rpl_temporary.result
    1.13 04/07/15 04:18:45 monty@mysql.com +12 -11
    After merge fix

  mysql-test/r/rpl_replicate_do.result
    1.24 04/07/15 04:18:45 monty@mysql.com +1 -1
    After merge fix

  mysql-test/r/rpl_flush_log_loop.result
    1.18 04/07/15 04:18:45 monty@mysql.com +1 -1
    After merge fix

  mysql-test/r/ps_6bdb.result
    1.3 04/07/15 04:18:45 monty@mysql.com +2 -2
    After merge fix

  mysql-test/r/ps_5merge.result
    1.3 04/07/15 04:18:44 monty@mysql.com +4 -4
    After merge fix

  mysql-test/r/ps_4heap.result
    1.2 04/07/15 04:18:44 monty@mysql.com +2 -2
    After merge fix

  mysql-test/r/ps_3innodb.result
    1.3 04/07/15 04:18:43 monty@mysql.com +14 -14
    After merge fix

  mysql-test/r/ps_2myisam.result
    1.3 04/07/15 04:18:43 monty@mysql.com +2 -2
    After merge fix

  mysql-test/r/ps_1general.result
    1.2 04/07/15 04:18:43 monty@mysql.com +2 -2
    After merge fix

  mysql-test/r/mysqlbinlog.result
    1.9 04/07/15 04:18:42 monty@mysql.com +3 -4
    After merge fix

  mysql-test/r/func_group.result
    1.33 04/07/15 04:18:42 monty@mysql.com +2 -0
    Make result repeatable

  mysql-test/mysql-test-run.sh
    1.195 04/07/15 04:18:41 monty@mysql.com +2 -2
    Export master socket to mysqltest

  myisam/sort.c
    1.41 04/07/15 04:18:41 monty@mysql.com +1 -1
    After merge fix

  myisam/mi_check.c
    1.120 04/07/15 04:18:40 monty@mysql.com +1 -1
    After merge fix

ChangeSet
  1.1616.610.18 04/07/14 23:57:14 bell@sanja.is.com.ua +1 -0
  stack overflow check added for subqueries processing (BUG#4554)

  sql/item_subselect.cc
    1.60.24.1 04/07/14 23:56:45 bell@sanja.is.com.ua +6 -1
    stack overflow check added for subqueries processing

ChangeSet
  1.1616.610.17 04/07/14 11:33:00 paul@kite-hub.kitebird.com +1 -0
  mysql_fix_privilege_tables.sh:
    Language fixups.

  scripts/mysql_fix_privilege_tables.sh
    1.27 04/07/14 11:32:43 paul@kite-hub.kitebird.com +2 -2
    Language fixups.

ChangeSet
  1.1616.610.16 04/07/14 09:10:49 lenz@mysql.com +1 -0
   - fixed file name of the MySQL startup item script to MySQLCOM,
     so it's included in the source distribution

  support-files/MacOSX/Makefile.am
    1.5 04/07/14 09:10:33 lenz@mysql.com +1 -1
     - fixed file name of the MySQL startup item script to MySQLCOM,
       so it's included in the source distribution

ChangeSet
  1.1616.610.15 04/07/13 22:11:33 lenz@mysql.com +2 -0
   - Fixed a previous modification to the MySQL Startup Item for 
     Mac OS X: the name of the startup script itself must match the
     name of the subdirectory it's located in. Changed MySQL->MySQLCOM 
     in the Do-pkg script and renamed the file in BK. (Thanks to Bryan
     McCormack for reporting this)

  support-files/MacOSX/MySQLCOM
    1.4 04/07/13 22:11:19 lenz@mysql.com +1 -1
     - Fixed the file and directory name to match the actual location

  Build-tools/Do-pkg
    1.8 04/07/13 22:11:19 lenz@mysql.com +1 -1
     - renamed script from MySQL to MySQLCOM to match the name of the
       directory it's installed in

  support-files/MacOSX/MySQLCOM
    1.3 04/07/13 21:59:05 lenz@mysql.com +0 -0
    Rename: support-files/MacOSX/MySQL -> support-files/MacOSX/MySQLCOM

ChangeSet
  1.1346.657.2 04/07/13 21:03:30 lenz@mysql.com +1 -0
   - Move checking of the MD5 checksumming to the correct place
   - fix calling of my_md5sum

  Build-tools/Do-compile
    1.74.1.11 04/07/13 21:03:24 lenz@mysql.com +14 -12
     - Move checking of the MD5 checksumming to the correct place
     - fix calling of my_md5sum

ChangeSet
  1.1694 04/07/13 21:00:00 serg@serg.mylan +1 -0
  disabled innodb is NOT a reason to fail

  mysql-test/t/sp.test
    1.70 04/07/13 20:59:55 serg@serg.mylan +1 -1
    disabled innodb is NOT a reason to fail

ChangeSet
  1.1616.621.1 04/07/13 16:51:10 guilhem@mysql.com +1 -0
  WL#1900 "When CHECK TABLE or ANALYZE TABLE of a MyISAM table is killed
  by KILL or shutdown, do not mark the table as corrupted".
  It is indeed more logical to leave the corruption flag unchanged.
  This cannot be extended to REPAIR/OPTIMIZE as they make no backup copy
  of the MYI. This patch was tested with KILL and mysqladmin shutdown
  while a CHECK TABLE was running. Without the patch, the table becomes
  unusable (can't INSERT to it, error 145). With the patch, no.

  sql/ha_myisam.cc
    1.115.1.32 04/07/13 16:43:22 guilhem@mysql.com +2 -2
    When CHECK TABLE or ANALYZE TABLE is killed by KILL,
    do not mark the table corrupted; leave its corruption flag
    unchanged.

ChangeSet
  1.1616.610.13 04/07/13 13:50:06 lenz@mysql.com +1 -0
   - fixed tabbing and added several missing symbols (required for
     linking with PHP5) (thanks to Georg Richter for the patch)

  libmysql/libmysql.def
    1.29 04/07/13 13:49:59 lenz@mysql.com +14 -2
     - fixed tabbing and added several missing symbols (required for
       linking with PHP5) (thanks to Georg Richter for the patch)

ChangeSet
  1.1346.657.1 04/07/13 13:54:20 Sinisa@sinisa.nasamreza.org +1 -0
  A fix for a long standing bug in LOAD DATA .. LOCAL ..'

  sql/sql_load.cc
    1.34.1.25 04/07/13 13:54:12 Sinisa@sinisa.nasamreza.org +3 -0
    A fix for a long standing bug in LOAD DATA .. LOCAL ..'
    
    When the error occurs, a link is broken instead of simply returning
    the error message and maintaining the same connection.

ChangeSet
  1.1346.1.563 04/07/13 12:30:34 marko@hundin.mysql.fi +1 -0
  lock0lock.c:
    Decrement n_lock_table_exp in lock_table_remove_low()
    instead of lock_table_dequeue().
    Do not empty lock_heap in lock_release_tables_off_kernel().

  innobase/lock/lock0lock.c
    1.20.1.20 04/07/13 12:28:33 marko@hundin.mysql.fi +6 -8
    Decrement n_lock_table_exp in lock_table_remove_low()
    instead of lock_table_dequeue().
    Do not empty lock_heap in lock_release_tables_off_kernel().

ChangeSet
  1.1616.620.2 04/07/13 09:37:16 serg@serg.mylan +1 -0
  forced X/Open mode on HPUX removed. The correct way (that affects not only C but also C++ and linking) would be
  
  CFLAGS="-D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED -D_HPUX_SOURCE"
  CXXFLAGS="-D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED -D_HPUX_SOURCE"
  LDFLAGS="-lxnet"
  
  but apparently MySQL works without too.

  include/my_global.h
    1.47.1.23 04/07/13 09:37:11 serg@serg.mylan +0 -20
    forced X/Open mode on HPUX removed. The correct way (that affects not only C but also C++ and linking) would be
    
    CFLAGS="-D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED -D_HPUX_SOURCE"
    CXXFLAGS="-D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED -D_HPUX_SOURCE"
    LDFLAGS="-lxnet"
    
    but apparently MySQL works without too.

ChangeSet
  1.1616.620.1 04/07/13 08:57:55 serg@serg.mylan +1 -0
  s/help all/help contents/
  bug#4527

  client/mysql.cc
    1.121.1.52 04/07/13 08:57:50 serg@serg.mylan +1 -1
    s/help all/help contents/
    bug#4527

ChangeSet
  1.1346.1.562 04/07/12 17:14:13 marko@hundin.mysql.fi +1 -0
  InnoDB: LOCK TABLES clean-up, part 2

  innobase/lock/lock0lock.c
    1.20.1.19 04/07/12 17:14:10 marko@hundin.mysql.fi +4 -2
    Decrement n_lock_table_exp in lock_table_dequeue(), not elsewhere

ChangeSet
  1.1346.1.561 04/07/12 16:47:22 marko@hundin.mysql.fi +7 -0
  InnoDB: LOCK TABLE clean-up

  sql/ha_innodb.cc
    1.73.1.141 04/07/12 16:47:19 marko@hundin.mysql.fi +2 -2
    Rename n_tables_locked to n_lock_table_exp
    Rename row_unlock_table_for_mysql() to row_unlock_tables_for_mysql()

  innobase/trx/trx0trx.c
    1.20.1.21 04/07/12 16:47:19 marko@hundin.mysql.fi +2 -2
    Rename n_tables_locked to n_lock_table_exp

  innobase/row/row0mysql.c
    1.39.1.30 04/07/12 16:47:19 marko@hundin.mysql.fi +5 -4
    Rename n_tables_locked to n_lock_table_exp
    Rename row_unlock_table_for_mysql() to row_unlock_tables_for_mysql()
    and improve its comment

  innobase/lock/lock0lock.c
    1.20.1.18 04/07/12 16:47:19 marko@hundin.mysql.fi +17 -15
    Rename n_tables_locked to n_lock_table_exp
    Increment n_lock_table_exp already in lock_table_create()
    Replace some ut_ad() assertions with ut_a()

  innobase/include/trx0trx.h
    1.30.1.3 04/07/12 16:47:19 marko@hundin.mysql.fi +3 -2
    Rename n_tables_locked to n_lock_table_exp

  innobase/include/row0mysql.h
    1.15.1.5 04/07/12 16:47:19 marko@hundin.mysql.fi +4 -3
    Rename row_unlock_table_for_mysql() to row_unlock_tables_for_mysql()
    and improve its comment

  innobase/include/lock0lock.h
    1.7.1.7 04/07/12 16:47:19 marko@hundin.mysql.fi +3 -2
    Improve comments regarding LOCK_TABLE_EXP

ChangeSet
  1.1346.1.560 04/07/12 15:13:18 marko@hundin.mysql.fi +5 -0
  InnoDB: Increment the lock wait watchdog timeout during CHECK TABLE
  (Bug #2694)

  innobase/sync/sync0arr.c
    1.11.1.7 04/07/12 15:13:16 marko@hundin.mysql.fi +7 -5
    Improve comment of sync_array_print_long_waits().
    Replace the fixed timeout of 600 seconds with
    srv_fatal_semaphore_wait_threshold.

  innobase/srv/srv0srv.c
    1.35.1.38 04/07/12 15:13:16 marko@hundin.mysql.fi +3 -0
    Add srv_fatal_semaphore_wait_threshold

  innobase/row/row0mysql.c
    1.39.1.29 04/07/12 15:13:16 marko@hundin.mysql.fi +11 -1
    Lengthen the srv_fatal_semaphore_wait_threshold by 2 hours during
    CHECK TABLE

  innobase/include/sync0arr.h
    1.4.1.1 04/07/12 15:13:16 marko@hundin.mysql.fi +1 -1
    Improve comment of sync_array_print_long_waits()

  innobase/include/srv0srv.h
    1.21.1.11 04/07/12 15:13:15 marko@hundin.mysql.fi +1 -0
    Add srv_fatal_semaphore_wait_threshold

ChangeSet
  1.1346.1.559 04/07/12 14:12:53 marko@hundin.mysql.fi +1 -0
  srv0start.c:
    innobase_start_or_create_for_mysql(): Rename innodb.status.<pid>
    to innodb_status.<pid> to avoid problems on VMS

  innobase/srv/srv0start.c
    1.37.1.22 04/07/12 14:12:04 marko@hundin.mysql.fi +1 -1
    innobase_start_or_create_for_mysql(): Rename innodb.status.<pid>
    to innodb_status.<pid> to avoid problems on VMS

ChangeSet
  1.1688.2.2 04/07/12 07:43:38 monty@mysql.com +12 -0
  After merge fixes

  sql/sql_select.cc
    1.249.1.2 04/07/12 07:42:10 monty@mysql.com +1 -1
    After merge fixes

  sql/sql_prepare.cc
    1.64 04/07/12 07:42:10 monty@mysql.com +1 -1
    After merge fixes

  sql/sql_db.cc
    1.86 04/07/12 07:42:10 monty@mysql.com +0 -1
    After merge fixes

  sql/sp_head.cc
    1.78 04/07/12 07:42:10 monty@mysql.com +0 -1
    After merge fixes

  sql/sp.cc
    1.53 04/07/12 07:42:10 monty@mysql.com +2 -2
    After merge fixes

  sql/set_var.cc
    1.57 04/07/12 07:42:09 monty@mysql.com +2 -0
    After merge fixes

  sql/parse_file.h
    1.1.1.1 04/07/12 07:42:09 monty@mysql.com +3 -3
    After merge fixes

  sql/opt_range.cc
    1.119 04/07/12 07:42:09 monty@mysql.com +2 -2
    After merge fixes

  sql/mysql_priv.h
    1.217 04/07/12 07:42:09 monty@mysql.com +1 -1
    After merge fixes

  sql/ha_myisam.cc
    1.131 04/07/12 07:42:09 monty@mysql.com +3 -2
    After merge fixes

  myisam/myisamdef.h
    1.71 04/07/12 07:42:09 monty@mysql.com +1 -1
    After merge fixes

  myisam/myisamchk.c
    1.106 04/07/12 07:42:09 monty@mysql.com +2 -2
    After merge fixes

ChangeSet
  1.1616.610.11 04/07/12 07:38:46 monty@mysql.com +4 -0
  Don't close already closed files in vio (not critical)

  vio/viosocket.c
    1.23 04/07/12 07:38:44 monty@mysql.com +3 -1
    Added assert.
    Don't close already closed files

  sql/sql_parse.cc
    1.271.1.95 04/07/12 07:38:44 monty@mysql.com +0 -1
    Removed unneeded info

  sql/mysqld.cc
    1.356.1.125 04/07/12 07:38:43 monty@mysql.com +13 -0
    Added comment

  mysys/my_init.c
    1.36 04/07/12 07:38:43 monty@mysql.com +1 -0
    Extra debugging

ChangeSet
  1.1616.610.9 04/07/10 15:21:44 dlenev@brandersnatch.localdomain +1 -0
  Reorder variables to preserve alphabetical sorting.

  sql/set_var.cc
    1.34.1.92 04/07/10 15:21:33 dlenev@brandersnatch.localdomain +3 -3
    Reorder variables to preserve alphabetical sorting.

ChangeSet
  1.1346.1.558 04/07/10 11:13:05 serg@serg.mylan +2 -0
  mysql_find_files() made extern (from static to sql_show.cc)

  sql/sql_show.cc
    1.76.1.49 04/07/10 11:13:03 serg@serg.mylan +1 -4
    mysql_find_files() made extern (from static to sql_show.cc)

  sql/mysql_priv.h
    1.150.1.71 04/07/10 11:13:03 serg@serg.mylan +2 -0
    mysql_find_files() made extern (from static to sql_show.cc)

ChangeSet
  1.1691.1.1 04/07/10 10:17:35 serg@serg.mylan +2 -0
  don't use atoll

  tests/client_test.c
    1.57.1.1 04/07/10 10:16:06 serg@serg.mylan +2 -2
    typos fixed

  sql/parse_file.cc
    1.3 04/07/10 10:16:06 serg@serg.mylan +5 -3
    don't use atoll

ChangeSet
  1.1616.619.2 04/07/09 20:39:50 vva@eagle.mysql.r18.ru +1 -0
  added an optimization in mysql_create_db (sql_db.cc)
  
  as after effect of fix for Bug #4378 
  '"create database IF NOT EXISTS thing" returns an error' 
  
  (avoided an unpack_dirname and 
   changed strcat into strmake)

  sql/sql_db.cc
    1.68.9.2 04/07/09 20:39:48 vva@eagle.mysql.r18.ru +2 -2
    added an optimization in mysql_create_db 
    (avoided an unpack_dirname and 
     changed strcat into strmake)

ChangeSet
  1.1346.656.1 04/07/09 14:30:51 serg@serg.mylan +1 -0
  mysqlhotcopy:
    fix MYI copying with scp
    safer tempfile creation

  scripts/mysqlhotcopy.sh
    1.43 04/07/09 14:30:48 serg@serg.mylan +8 -8
    fix MYI copying with scp
    safer tempfile creation

ChangeSet
  1.1616.610.6 04/07/09 10:55:16 monty@mysql.com +11 -0
  Cleanup of db option cacheing
  Some bug fixes to last pushed code

  sql/table.cc
    1.111 04/07/09 10:55:14 monty@mysql.com +1 -1
    key_read should be tested on key parts, not the whole key

  sql/sql_table.cc
    1.157.2.76 04/07/09 10:55:14 monty@mysql.com +1 -1
    sprintf -> strxmov

  sql/sql_parse.cc
    1.271.1.94 04/07/09 10:55:14 monty@mysql.com +2 -1
    Cleanup of db option cacheing

  sql/sql_db.cc
    1.68.1.46 04/07/09 10:55:13 monty@mysql.com +75 -59
    Cleanup of db option cacheing

  sql/mysqld.cc
    1.356.1.124 04/07/09 10:55:13 monty@mysql.com +9 -9
    Cleanup of db option cacheing

  sql/mysql_priv.h
    1.186.1.116 04/07/09 10:55:13 monty@mysql.com +3 -2
    Cleanup of db option cacheing

  sql/item_strfunc.cc
    1.178.1.2 04/07/09 10:55:13 monty@mysql.com +21 -15
    Cleanup (fixed indentation, removed short variable names)

  sql/ha_berkeley.cc
    1.117.1.23 04/07/09 10:55:13 monty@mysql.com +15 -3
    Fix for index_flags() in new code

  mysql-test/t/ps_1general.test
    1.3 04/07/09 10:55:13 monty@mysql.com +0 -1
    removed wrong error condition

  mysql-test/r/bdb.result
    1.39.1.2 04/07/09 10:55:13 monty@mysql.com +1 -1
    Updated results

  mysql-test/mysql-test-run.sh
    1.194 04/07/09 10:55:13 monty@mysql.com +1 -1
    Fix for new valgrind (2.1.1)

ChangeSet
  1.1346.655.1 04/07/09 02:03:19 monty@mysql.com +1 -0
  Updated result sets (from 4.1)

  mysql-test/r/lowercase_table2.result
    1.2.2.1 04/07/09 02:03:18 monty@mysql.com +2 -2
    Updated result sets (from 4.1)

ChangeSet
  1.1616.618.2 04/07/09 01:35:35 konstantin@mysql.com +1 -0
  my_global.h:
    Define cxa_pure_virtual to print error message and DBUG_ASSERT:
    calls to pure virtual methods should not go unnoticed.

ChangeSet
  1.1346.1.555 04/07/08 16:16:37 mwagner@here.mwagner.org +1 -0
  Do-compile:
    Call my_md5sum with path

  Build-tools/Do-compile
    1.74.1.10 04/07/08 16:15:56 mwagner@here.mwagner.org +2 -2
    Call my_md5sum with path

ChangeSet
  1.1346.653.2 04/07/08 13:51:18 mwagner@here.mwagner.org +1 -0
  Do-compile:
    Added support for MD5 verification of file transfers

  Build-tools/Do-compile
    1.74.1.9 04/07/08 13:50:46 mwagner@here.mwagner.org +18 -1
    Added support for MD5 verification of file transfers

  include/my_global.h
    1.47.1.22 04/07/08 22:26:16 konstantin@mysql.com +5 -1
    Define cxa_pure_virtual to print error message and DBUG_ASSERT:
    calls to pure virtual methods should not go unnoticed.

ChangeSet
  1.1616.619.1 04/07/08 21:25:17 vva@eagle.mysql.r18.ru +1 -0
  fixed Bug #4378 "create database IF NOT EXISTS thing" returns an error

  sql/sql_db.cc
    1.68.9.1 04/07/08 21:25:14 vva@eagle.mysql.r18.ru +3 -2
    discarded final '\' in path for my_stat (for Win32)
    as the fix 
    for Bug #4378 "create database IF NOT EXISTS thing" returns an error

ChangeSet
  1.1346.1.553 04/07/08 17:12:42 jani@a80-186-24-72.elisa-laajakaista.fi +1 -0
  Fixed Bug#4451. According to C/C++ standards, enums should not be used
  out of their range.

  include/my_getopt.h
    1.11.1.1 04/07/08 17:12:40 jani@a80-186-24-72.elisa-laajakaista.fi +12 -3
    Fixed Bug#4451. According to C/C++ standards, enums should not be used
    out of their range.

ChangeSet
  1.1616.618.1 04/07/08 18:54:07 bar@mysql.com +20 -0
  Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/t/show_check.test
    1.33 04/07/08 18:54:03 bar@mysql.com +1 -0
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/t/rpl_ignore_grant.test
    1.3 04/07/08 18:54:03 bar@mysql.com +11 -11
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/t/rpl_do_grant.test
    1.3 04/07/08 18:54:03 bar@mysql.com +7 -7
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/t/rpl000001.test
    1.36 04/07/08 18:54:03 bar@mysql.com +4 -4
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/t/multi_update.test
    1.26.1.12 04/07/08 18:54:03 bar@mysql.com +1 -1
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/t/grant_cache.test
    1.9 04/07/08 18:54:03 bar@mysql.com +9 -0
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/t/grant2.test
    1.6 04/07/08 18:54:03 bar@mysql.com +2 -0
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/t/grant.test
    1.17 04/07/08 18:54:02 bar@mysql.com +2 -0
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/t/connect.test
    1.7 04/07/08 18:54:02 bar@mysql.com +2 -2
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/t/alter_table.test
    1.29 04/07/08 18:54:02 bar@mysql.com +1 -1
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/r/show_check.result
    1.31.1.24 04/07/08 18:54:02 bar@mysql.com +1 -0
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/r/rpl_ignore_grant.result
    1.4 04/07/08 18:54:02 bar@mysql.com +12 -12
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/r/rpl_do_grant.result
    1.4 04/07/08 18:54:02 bar@mysql.com +8 -8
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/r/rpl000001.result
    1.27 04/07/08 18:54:02 bar@mysql.com +4 -4
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/r/multi_update.result
    1.25.1.13 04/07/08 18:54:02 bar@mysql.com +1 -1
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/r/grant_cache.result
    1.13 04/07/08 18:54:02 bar@mysql.com +1 -0
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/r/grant2.result
    1.7 04/07/08 18:54:02 bar@mysql.com +1 -0
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/r/grant.result
    1.21 04/07/08 18:54:02 bar@mysql.com +1 -0
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/r/connect.result
    1.1.1.7 04/07/08 18:54:02 bar@mysql.com +2 -2
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

  mysql-test/r/alter_table.result
    1.38 04/07/08 18:54:02 bar@mysql.com +1 -1
    Bug#4338: mysql-test-run fails if compiled with non-latin1 character set

ChangeSet
  1.1616.617.1 04/07/08 15:45:25 monty@mysql.com +25 -0
  New handler::index_flags() definition to make it easy to check the full used key and a specific key part.
  Added key part to optimize_range() to fix problems when using fields in key parts.
  

  sql/table.cc
    1.110 04/07/08 15:45:22 monty@mysql.com +2 -2
    New handler::index_flags() definition

  sql/sql_update.cc
    1.83.2.44 04/07/08 15:45:22 monty@mysql.com +4 -1
    Removed compiler warnings

  sql/sql_show.cc
    1.122.1.51 04/07/08 15:45:22 monty@mysql.com +3 -2
    Removed compiler warnings

  sql/sql_select.cc
    1.216.1.134 04/07/08 15:45:22 monty@mysql.com +5 -5
    New handler::index_flags() definition

  sql/sql_db.cc
    1.68.8.1 04/07/08 15:45:22 monty@mysql.com +3 -2
    Removed compiler warnings

  sql/set_var.cc
    1.34.1.91 04/07/08 15:45:22 monty@mysql.com +4 -4
    Removed compiler warnings

  sql/opt_sum.cc
    1.38 04/07/08 15:45:22 monty@mysql.com +1 -1
    New handler::index_flags() definition

  sql/opt_range.cc
    1.98.1.27 04/07/08 15:45:22 monty@mysql.com +6 -3
    New handler::index_flags() definition

  sql/log_event.cc
    1.113.1.45 04/07/08 15:45:22 monty@mysql.com +7 -6
    Fixed compiler warnings (and renamed short variable name)

  sql/log.cc
    1.108.1.32 04/07/08 15:45:22 monty@mysql.com +4 -3
    Fixed compiler warnings

  sql/handler.h
    1.89.1.32 04/07/08 15:45:22 monty@mysql.com +1 -1
    New handler::index_flags() definition

  sql/ha_ndbcluster.h
    1.15 04/07/08 15:45:21 monty@mysql.com +1 -1
    New handler::index_flags() definition

  sql/ha_ndbcluster.cc
    1.21 04/07/08 15:45:21 monty@mysql.com +2 -1
    New handler::index_flags() definition

  sql/ha_myisammrg.h
    1.35 04/07/08 15:45:21 monty@mysql.com +3 -3
    New handler::index_flags() definition

  sql/ha_myisam.h
    1.61 04/07/08 15:45:21 monty@mysql.com +3 -3
    New handler::index_flags() definition

  sql/ha_isammrg.h
    1.22 04/07/08 15:45:21 monty@mysql.com +2 -1
    New handler::index_flags() definition

  sql/ha_isam.h
    1.28 04/07/08 15:45:21 monty@mysql.com +1 -1
    New handler::index_flags() definition

  sql/ha_innodb.h
    1.57.1.11 04/07/08 15:45:21 monty@mysql.com +1 -1
    New handler::index_flags() definition

  sql/ha_heap.h
    1.26.1.3 04/07/08 15:45:21 monty@mysql.com +1 -1
    New handler::index_flags() definition

  sql/ha_berkeley.h
    1.57.1.10 04/07/08 15:45:21 monty@mysql.com +1 -7
    New handler::index_flags() definition

  sql/ha_berkeley.cc
    1.117.1.22 04/07/08 15:45:21 monty@mysql.com +17 -0
    New handler::index_flags() definition

  sql/field.h
    1.108 04/07/08 15:45:21 monty@mysql.com +2 -2
    New optimize_range() definition

  sql/field.cc
    1.167 04/07/08 15:45:21 monty@mysql.com +2 -2
    New optimize_range() definition

  sql/examples/ha_example.h
    1.8 04/07/08 15:45:21 monty@mysql.com +6 -2
    New handler::index_flags() definition

  sql/examples/ha_archive.h
    1.5 04/07/08 15:45:21 monty@mysql.com +1 -1
    New handler::index_flags() definition

ChangeSet
  1.1616.611.17 04/07/08 15:19:26 bar@mysql.com +2 -0
  Minor fix: V is primary level, not U.

  strings/ctype-uca.c
    1.19 04/07/08 15:19:21 bar@mysql.com +1 -1
    Minor fix: V is primary level, not U.

  mysql-test/r/ctype_uca.result
    1.3 04/07/08 15:19:21 bar@mysql.com +2 -1
    Minor fix: V is primary level, not U.

ChangeSet
  1.1616.611.16 04/07/08 15:03:01 bar@mysql.com +8 -0
  WL#807 Optimize loading database options in load_db_opt
  also known as
  BUG#2326 Charset of table is determined by charset of db only if "USE db;"

  sql/sql_yacc.yy
    1.203.1.136 04/07/08 15:02:49 bar@mysql.com +2 -2
    WL#807 Optimize loading database options in load_db_opt
    also known as
    BUG#2326 Charset of table is determined by charset of db only if "USE db;"

  sql/sql_table.cc
    1.157.2.75 04/07/08 15:02:48 bar@mysql.com +17 -0
    WL#807 Optimize loading database options in load_db_opt
    also known as
    BUG#2326 Charset of table is determined by charset of db only if "USE db;"

  sql/sql_parse.cc
    1.271.1.93 04/07/08 15:02:48 bar@mysql.com +1 -0
    WL#807 Optimize loading database options in load_db_opt
    also known as
    BUG#2326 Charset of table is determined by charset of db only if "USE db;"

  sql/sql_db.cc
    1.68.1.44 04/07/08 15:02:48 bar@mysql.com +207 -6
    WL#807 Optimize loading database options in load_db_opt
    also known as
    BUG#2326 Charset of table is determined by charset of db only if "USE db;"

  sql/mysqld.cc
    1.356.1.123 04/07/08 15:02:48 bar@mysql.com +5 -1
    WL#807 Optimize loading database options in load_db_opt
    also known as
    BUG#2326 Charset of table is determined by charset of db only if "USE db;"

  sql/mysql_priv.h
    1.186.1.115 04/07/08 15:02:48 bar@mysql.com +3 -1
    WL#807 Optimize loading database options in load_db_opt
    also known as
    BUG#2326 Charset of table is determined by charset of db only if "USE db;"

  mysql-test/t/ctype_create.test
    1.4 04/07/08 15:02:48 bar@mysql.com +32 -9
    WL#807 Optimize loading database options in load_db_opt
    also known as
    BUG#2326 Charset of table is determined by charset of db only if "USE db;"

  mysql-test/r/ctype_create.result
    1.4 04/07/08 15:02:48 bar@mysql.com +32 -10
    WL#807 Optimize loading database options in load_db_opt
    also known as
    BUG#2326 Charset of table is determined by charset of db only if "USE db;"

ChangeSet
  1.1616.611.15 04/07/08 10:11:30 serg@serg.mylan +1 -0
  results fixed

  mysql-test/r/bdb.result
    1.39.1.1 04/07/08 10:11:24 serg@serg.mylan +1 -1
    results fixed

ChangeSet
  1.1616.616.1 04/07/07 23:49:03 serg@serg.mylan +3 -0
  bug#4441 - crash in UNHEX(NULL)

  sql/item_strfunc.cc
    1.178.1.1 04/07/07 23:48:58 serg@serg.mylan +6 -3
    bug#4441 - crash in UNHEX(NULL)

  mysql-test/t/func_str.test
    1.57 04/07/07 23:48:58 serg@serg.mylan +1 -1
    bug#4441 - crash in UNHEX(NULL)

  mysql-test/r/func_str.result
    1.65.1.1 04/07/07 23:48:58 serg@serg.mylan +3 -3
    bug#4441 - crash in UNHEX(NULL)

ChangeSet
  1.1346.646.5 04/07/07 16:28:07 mwagner@here.mwagner.org +1 -0
  my_md5sum:
    Exit properly

  Build-tools/my_md5sum
    1.4 04/07/07 16:27:35 mwagner@here.mwagner.org +7 -1
    Exit properly

ChangeSet
  1.1692 04/07/07 20:54:12 bell@sanja.is.com.ua +1 -0
  syntax fix

  sql/parse_file.h
    1.3 04/07/07 20:54:09 bell@sanja.is.com.ua +5 -5
    syntax fix

ChangeSet
  1.1689.1.1 04/07/07 17:26:43 vva@eagle.mysql.r18.ru +6 -0
  patch for task WL 1941 "NO_C_ESCAPE sql_mode"

  sql/sql_yacc.yy
    1.289.1.1 04/07/07 17:26:26 vva@eagle.mysql.r18.ru +5 -1
    added using of "" as escape by default
     in LIKE function if MODE_NO_BACKSLASH_ESCAPES

  sql/sql_lex.cc
    1.107.1.1 04/07/07 17:26:26 vva@eagle.mysql.r18.ru +2 -1
    added test for MODE_NO_BACKSLASH_ESCAPES when testing escaped character

  sql/mysqld.cc
    1.383.1.1 04/07/07 17:26:26 vva@eagle.mysql.r18.ru +1 -1
    added mode NO_BACKSLASH_ESCAPES

  sql/mysql_priv.h
    1.215.1.1 04/07/07 17:26:26 vva@eagle.mysql.r18.ru +1 -0
    added MODE_NO_BACKSLASH_ESCAPES

  mysql-test/t/sql_mode.test
    1.6 04/07/07 17:26:26 vva@eagle.mysql.r18.ru +95 -0
    added test for WL 1941 "NO_C_ESCAPE sql_mode"

  mysql-test/r/sql_mode.result
    1.9 04/07/07 17:26:26 vva@eagle.mysql.r18.ru +249 -0
    added test for WL 1941 "NO_C_ESCAPE sql_mode"

ChangeSet
  1.1616.611.13 04/07/07 16:39:43 bar@mysql.com +27 -0
  Don't allow badly formed UTF8 identitiers

  sql/sql_yacc.yy
    1.203.1.135 04/07/07 16:39:25 bar@mysql.com +12 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/ukrainian/errmsg.txt
    1.27.19.1 04/07/07 16:39:25 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/swedish/errmsg.txt
    1.64.20.1 04/07/07 16:39:25 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/spanish/errmsg.txt
    1.64.23.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/slovak/errmsg.txt
    1.64.21.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/serbian/errmsg.txt
    1.18.17.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/russian/errmsg.txt
    1.61.19.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/romanian/errmsg.txt
    1.62.22.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/portuguese/errmsg.txt
    1.64.22.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/polish/errmsg.txt
    1.63.20.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/norwegian/errmsg.txt
    1.63.21.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/norwegian-ny/errmsg.txt
    1.63.21.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/korean/errmsg.txt
    1.63.20.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/japanese/errmsg.txt
    1.63.20.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/italian/errmsg.txt
    1.70.21.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/hungarian/errmsg.txt
    1.65.20.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/greek/errmsg.txt
    1.64.20.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/german/errmsg.txt
    1.64.21.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/french/errmsg.txt
    1.63.21.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/estonian/errmsg.txt
    1.64.20.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/english/errmsg.txt
    1.70.24.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/dutch/errmsg.txt
    1.66.21.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/danish/errmsg.txt
    1.62.20.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  sql/share/czech/errmsg.txt
    1.64.21.1 04/07/07 16:39:24 bar@mysql.com +1 -0
    Don't allow badly formed UTF8 identitiers

  mysql-test/t/ctype_recoding.test
    1.15 04/07/07 16:39:24 bar@mysql.com +10 -0
    Don't allow badly formed UTF8 identitiers

  mysql-test/r/ctype_recoding.result
    1.20 04/07/07 16:39:23 bar@mysql.com +6 -0
    Don't allow badly formed UTF8 identitiers

  include/mysqld_error.h
    1.61.16.1 04/07/07 16:39:23 bar@mysql.com +2 -1
    Don't allow badly formed UTF8 identitiers

ChangeSet
  1.1616.611.12 04/07/07 15:20:23 bar@mysql.com +4 -0
  Adding Roman (classical Latin) collation.

  strings/ctype-uca.c
    1.18 04/07/07 15:20:09 bar@mysql.com +58 -0
    Adding Roman (classical Latin) collation.

  mysys/charset-def.c
    1.6 04/07/07 15:20:09 bar@mysql.com +4 -0
    Adding Roman (classical Latin) collation.

  mysql-test/t/ctype_uca.test
    1.2 04/07/07 15:20:08 bar@mysql.com +1 -0
    Adding Roman (classical Latin) collation.

  mysql-test/r/ctype_uca.result
    1.2 04/07/07 15:20:08 bar@mysql.com +106 -0
    Adding Roman (classical Latin) collation.

ChangeSet
  1.1616.611.11 04/07/07 13:47:29 bar@mysql.com +1 -0
  ha_archive.cc:
    Memory was used after it has been alreay freed.
    This led to server crash on FreeBSD.

  sql/examples/ha_archive.cc
    1.6 04/07/07 13:46:19 bar@mysql.com +1 -1
    Memory was used after it has been alreay freed.
    This led to server crash on FreeBSD.

ChangeSet
  1.1616.611.8 04/07/06 17:45:37 joreland@mysql.com +1 -0
  Fixed typo 

  ndb/src/ndbapi/NdbDictionaryImpl.cpp
    1.8 04/07/06 17:45:34 joreland@mysql.com +1 -1
    Fixed typo

ChangeSet
  1.1616.615.1 04/07/06 16:30:50 antony@ltantony.rdg.cyberkinetica.com +2 -0
  Bug#4407 - assertion in ha_myisam.cc
    Fix assertion failure where ha_myisam::index_next() is called
    without first calling ha_myisam::ha_index_init()

  BitKeeper/etc/logging_ok
    1.233.1.89 04/07/06 16:30:49 antony@ltantony.rdg.cyberkinetica.com +1 -0
    Logging to logging@openlogging.org accepted

  sql/sql_acl.cc
    1.74.1.56 04/07/06 16:30:37 antony@ltantony.rdg.cyberkinetica.com +4 -1
    Bug#4407 - assertion in ha_myisam.cc
      Fix assertion failure where ha_myisam::index_next() is called
      without first calling ha_myisam::ha_index_init()

ChangeSet
  1.1616.613.4 04/07/06 16:29:26 serg@serg.mylan +3 -0
  mysql_fix_privilege_tables.sh:
    various fixes (for mysql-test-run at least):
    * accept --no-defaults
    * 4.0 compatible password handling (only it no other argumensts, only if doesn't start with --)
  ps_3innodb.test:
    only run ps_3innodb.test if innodb is present
  mysql-test-run.sh:
    it's --verbose, not --verbose=1

  scripts/mysql_fix_privilege_tables.sh
    1.26 04/07/06 16:29:03 serg@serg.mylan +19 -5
    various fixes (for mysql-test-run at least):
    * accept --no-defaults
    * 4.0 compatible password handling (only it no other argumensts, only if doesn't start with --)

  mysql-test/t/ps_3innodb.test
    1.3 04/07/06 16:29:03 serg@serg.mylan +2 -0
    only run ps_3innodb.test if innodb is present

  mysql-test/mysql-test-run.sh
    1.193 04/07/06 16:29:03 serg@serg.mylan +1 -1
    it's --verbose, not --verbose=1

ChangeSet
  1.1616.613.3 04/07/06 14:24:44 serg@serg.mylan +1 -0
  HAVE_RTREE_KEYS are enabled on windows too

  include/config-win.h
    1.45 04/07/06 14:24:39 serg@serg.mylan +1 -0
    HAVE_RTREE_KEYS are enabled on windows too

ChangeSet
  1.1616.614.2 04/07/06 17:18:04 bar@mysql.com +1 -0
  mysqltest.c:
    Bug #4338  	mysql-test-run fails if compiled with non-latin1 character set.

  client/mysqltest.c
    1.92.9.1 04/07/06 17:17:33 bar@mysql.com +3 -0
    Bug #4338  	mysql-test-run fails if compiled with non-latin1 character set.

ChangeSet
  1.1616.614.1 04/07/06 17:15:43 bar@mysql.com +3 -0
  Bug#4417 binary character set breaks multi-byte table/field name.

  sql/sql_class.cc
    1.105.1.66 04/07/06 17:15:33 bar@mysql.com +8 -6
    Bug#4417 binary character set breaks multi-byte table/field name.

  mysql-test/t/ctype_recoding.test
    1.14 04/07/06 17:15:33 bar@mysql.com +19 -0
    Bug#4417 binary character set breaks multi-byte table/field name.

  mysql-test/r/ctype_recoding.result
    1.19 04/07/06 17:15:33 bar@mysql.com +25 -0
    Bug#4417 binary character set breaks multi-byte table/field name.

ChangeSet
  1.1616.604.3 04/07/06 13:56:50 serg@serg.mylan +1 -0
  re-enable spatial features for windows
  grr

  include/config-win.h
    1.44 04/07/06 13:56:45 serg@serg.mylan +2 -0
    re-enable spatial features for windows
    grr

ChangeSet
  1.1616.613.1 04/07/06 13:43:15 bar@mysql.com +2 -0
  rpl_charset.result, rpl_charset.test:
    An addition to 1.2036 04/07/02: armscii8_bin was referenced to as armscii_bin in a mistake.

  mysql-test/r/rpl_charset.result
    1.4 04/07/06 13:42:47 bar@mysql.com +5 -5
    An addition to 1.2036 04/07/02: armscii8_bin was referenced to as armscii_bin in a mistake.

  mysql-test/t/rpl_charset.test
    1.2 04/07/06 13:41:29 bar@mysql.com +1 -1
    An addition to 1.2036 04/07/02: armscii8_bin was referenced to as armscii_bin in a mistake.

ChangeSet
  1.1616.611.6 04/07/06 10:19:05 joreland@mysql.com +1 -0
  Fix uninit variable

  ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp
    1.6 04/07/06 10:19:03 joreland@mysql.com +1 -1
    Fix uninit variable

ChangeSet
  1.1346.1.551 04/07/05 19:12:23 guilhem@mysql.com +1 -0
  my_lib.c:
    more accurate comment

  mysys/my_lib.c
    1.17 04/07/05 19:11:34 guilhem@mysql.com +4 -2
    more accurate comment

ChangeSet
  1.1346.1.550 04/07/05 19:07:26 guilhem@mysql.com +1 -0
  Windows-specific:
  Fix for BUG#4375 "Windows specific directories are copied during
  replication": in the Windows version of my_dir(), do not show hidden
  or system files which Windows sometimes creates in the root directory
  of drive (like RECYCLER and SYSTEM VOLUME INFORMATION directories) (so
  this problem showed up only when the datadir was the root dir of a
  drive).
  This will make SHOW DATABASES display better, and will do no harm to
  MySQL. For example, DROP DATABASE will not miss some files, as MySQL
  creates no hidden or system files.

  mysys/my_lib.c
    1.16 04/07/05 18:59:52 guilhem@mysql.com +9 -0
    In my_dir(), do not show hidden or system files
    which Windows sometimes creates.

ChangeSet
  1.1616.612.1 04/07/05 07:52:20 mysqldev@melody.local +3 -0
  BUG#4384

  BitKeeper/etc/logging_ok
    1.233.1.88 04/07/05 07:50:40 mysqldev@melody.local +1 -0
    Logging to logging@openlogging.org accepted

  ndb/src/common/util/ConfigValues.cpp
    1.4 04/07/05 07:50:05 mysqldev@melody.local +25 -19
    BUG#4384
    Compute pointers manually instead of using ptr[-x]
    Changed return type from "*&" to "**"
     

  ndb/include/util/ConfigValues.hpp
    1.2 04/07/05 07:50:05 mysqldev@melody.local +4 -4
    BUG#4384

ChangeSet
  1.1616.611.3 04/07/05 07:48:09 lenz@mysql.com +1 -0
   - fixed typo in mysql-test/ndb/ndbcluster.sh that caused a
     "test: argument expected" error when trying to run the NDB test
     suite on Solaris

  mysql-test/ndb/ndbcluster.sh
    1.13 04/07/05 07:48:02 lenz@mysql.com +1 -1
     - fixed typo that caused a "test: argument expected" error when trying
       to run the NDB test suite on Solaris

ChangeSet
  1.1616.611.2 04/07/05 07:14:45 joreland@mysql.com +2 -0
  Fix mysql-test-run ndb order by/endian issue

  mysql-test/t/ndb_index_ordered.test
    1.4 04/07/05 07:14:23 joreland@mysql.com +1 -1
    Fix mysql-test-run ndb order by/endian issue

  mysql-test/r/ndb_index_ordered.result
    1.4 04/07/05 07:14:23 joreland@mysql.com +2 -2
    Fix mysql-test-run ndb order by/endian issue

ChangeSet
  1.1616.610.1 04/07/04 10:40:24 bell@sanja.is.com.ua +5 -0
  do not assign values of left expression of IN/ANN/ANY subquery in case of PS preparation (BUG#4403)

  sql/item_cmpfunc.cc
    1.111.1.30 04/07/04 10:39:56 bell@sanja.is.com.ua +8 -1
    do not assign values of left expression of IN/ANN/ANY subquery in case of PS preparation

  mysql-test/r/ps_6bdb.result
    1.2 04/07/04 10:39:56 bell@sanja.is.com.ua +6 -6
    changes in results of select without order by

  mysql-test/r/ps_5merge.result
    1.2 04/07/04 10:39:56 bell@sanja.is.com.ua +12 -12
    changes in results of select without order by

  mysql-test/r/ps_3innodb.result
    1.2 04/07/04 10:39:55 bell@sanja.is.com.ua +12 -12
    changes in results of select without order by

  mysql-test/r/ps_2myisam.result
    1.2 04/07/04 10:39:55 bell@sanja.is.com.ua +6 -6
    changes in results of select without order by

ChangeSet
  1.1616.1.345 04/07/04 08:46:28 bell@sanja.is.com.ua +5 -0
  aggregate functions check during substitution made only for single row subselects (BUG#4400)
  restoring current senect pointer before PS rexecution (backport from 5.0)
  removed spaces at  lines ends

  sql/sql_prepare.cc
    1.34.1.80 04/07/04 08:46:25 bell@sanja.is.com.ua +1 -0
    restoring current senect pointer before PS rexecution (backport from 5.0)

  sql/item_subselect.h
    1.52.1.1 04/07/04 08:46:25 bell@sanja.is.com.ua +5 -5
    removed spaces at  lines ends

  sql/item_subselect.cc
    1.60.1.44 04/07/04 08:46:24 bell@sanja.is.com.ua +22 -22
    removed spaces at  lines ends
    aggregate functions check during substitution made only for single row subselects

  mysql-test/t/subselect.test
    1.58.1.56 04/07/04 08:46:24 bell@sanja.is.com.ua +10 -0
    Aggregate function comparation with ALL/ANY/SOME subselect test

  mysql-test/r/subselect.result
    1.67.1.65 04/07/04 08:46:24 bell@sanja.is.com.ua +8 -0
    Aggregate function comparation with ALL/ANY/SOME subselect test

ChangeSet
  1.1688.1.2 04/07/03 01:08:46 bell@sanja.is.com.ua +3 -0
  right join print fixed

  sql/sql_select.cc
    1.251 04/07/03 01:08:43 bell@sanja.is.com.ua +3 -7
    right join print fixed

  mysql-test/t/join_nested.test
    1.3 04/07/03 01:08:43 bell@sanja.is.com.ua +8 -0
    right join test

  mysql-test/r/join_nested.result
    1.4 04/07/03 01:08:43 bell@sanja.is.com.ua +14 -0
    right join test

ChangeSet
  1.1616.1.343 04/07/02 16:22:46 paul@ice.snake.net +1 -0
  item_geofunc.cc:
    Minor comment tweaks.

  sql/item_geofunc.cc
    1.12.1.1 04/07/02 16:21:54 paul@ice.snake.net +4 -4
    Minor comment tweaks.

ChangeSet
  1.1616.602.12 04/07/02 20:01:34 gordon@zero.local.lan +10 -0
  Added comments to the PS test files, to prevent modifications which may destroy the tests . 

  mysql-test/t/ps_6bdb.test
    1.2 04/07/02 19:59:46 gordon@zero.local.lan +4 -0
    added comments

  mysql-test/t/ps_5merge.test
    1.2 04/07/02 19:59:46 gordon@zero.local.lan +4 -0
    added comments

  mysql-test/t/ps_4heap.test
    1.2 04/07/02 19:59:46 gordon@zero.local.lan +6 -1
    added and altered comments

  mysql-test/t/ps_3innodb.test
    1.2 04/07/02 19:59:46 gordon@zero.local.lan +4 -0
    added comments

  mysql-test/t/ps_2myisam.test
    1.2 04/07/02 19:59:46 gordon@zero.local.lan +4 -0
    Added comments

  mysql-test/t/ps_1general.test
    1.2 04/07/02 19:59:46 gordon@zero.local.lan +101 -9
    Description of the test structure and rules how to extend the tests added and one comment modified .

  mysql-test/include/ps_query.inc
    1.2 04/07/02 19:59:46 gordon@zero.local.lan +32 -3
    Added and modified comments

  mysql-test/include/ps_modify1.inc
    1.2 04/07/02 19:59:46 gordon@zero.local.lan +37 -0
    Added comments

  mysql-test/include/ps_modify.inc
    1.2 04/07/02 19:59:46 gordon@zero.local.lan +32 -0
    added comments

  mysql-test/include/ps_create.inc
    1.2 04/07/02 19:59:46 gordon@zero.local.lan +14 -0
    Added comments

ChangeSet
  1.1346.1.549 04/07/02 19:20:30 guilhem@mysql.com +1 -0
  Fixing a bug in mysqltest.c:
  if a command has a comment at the end of line, like:
  error 2002 ; # this is error 2002
  then the parsing of comment should not make mysqltest
  forget about the value of expected error.
  Reason it forgot it (so the next query caused the test to fail)
  is that internally the above line is 2 queries.
  

  client/mysqltest.c
    1.77.1.42 04/07/02 19:17:43 guilhem@mysql.com +11 -8
    if a command has a comment at the end of line, like:
    error 2002 ; # this is error 2002
    then the parsing of comment should not make mysqltest
    forget about the value of expected error.

ChangeSet
  1.1616.602.11 04/07/02 16:52:02 bar@mysql.com +3 -0
  Bug #4374  	SHOW TABLE STATUS FROM ignores collation_connection

  sql/sql_yacc.yy
    1.203.1.134 04/07/02 16:51:43 bar@mysql.com +3 -1
    Bug #4374  	SHOW TABLE STATUS FROM ignores collation_connection

  mysql-test/t/show_check.test
    1.32 04/07/02 16:51:43 bar@mysql.com +8 -0
    Bug #4374  	SHOW TABLE STATUS FROM ignores collation_connection

  mysql-test/r/show_check.result
    1.31.1.23 04/07/02 16:51:43 bar@mysql.com +7 -0
    Bug #4374  	SHOW TABLE STATUS FROM ignores collation_connection

ChangeSet
  1.1616.604.2 04/07/02 11:02:21 serg@serg.mylan +1 -0
  unused (and unnecessary) mysqltest commands removed

  client/mysqltest.c
    1.92.1.50 04/07/02 11:02:16 serg@serg.mylan +3 -65
    unused (and unnecessary) commands removed

ChangeSet
  1.1616.602.10 04/07/02 13:33:26 bar@mysql.com +1 -0
  configure.in:
    armscii8_bin was referenced to as armscii_bin.

  configure.in
    1.201.22.6 04/07/02 13:32:52 bar@mysql.com +1 -1
    armscii8_bin was referenced to as armscii_bin.

ChangeSet
  1.1616.602.9 04/07/02 13:27:46 bar@mysql.com +2 -0
  armscii8_bin was referenced to as armscii_bin in a mistake.

  sql/share/charsets/armscii8.xml
    1.4 04/07/02 13:27:42 bar@mysql.com +1 -1
    armscii8_bin was referenced to as armscii_bin in a mistake.

  sql/share/charsets/Index.xml
    1.32 04/07/02 13:27:42 bar@mysql.com +1 -1
    armscii8_bin was referenced to as armscii_bin in a mistake.

ChangeSet
  1.1688.1.1 04/07/01 23:46:43 bell@sanja.is.com.ua +5 -0
  fixed join_nested test independence of environment
  spaces at line end in fresh definitions removed
  fixed printing of nested joins (BUG#4352)

  sql/table.h
    1.61 04/07/01 23:46:39 bell@sanja.is.com.ua +8 -6
    spaces at line end in fresh definitions removed
    method for table printing

  sql/sql_select.cc
    1.250 04/07/01 23:46:39 bell@sanja.is.com.ua +88 -86
    fixed printing of nested joins

  sql/sql_lex.h
    1.135 04/07/01 23:46:39 bell@sanja.is.com.ua +1 -1
    space at line end in fresh definition removed

  mysql-test/t/join_nested.test
    1.2 04/07/01 23:46:39 bell@sanja.is.com.ua +13 -12
    fixed join_nested test independence of environment
    print of nested join test added

  mysql-test/r/join_nested.result
    1.3 04/07/01 23:46:39 bell@sanja.is.com.ua +33 -22
    fixed join_nested test independence of environment
    print of nested join test added

ChangeSet
  1.1689 04/07/01 23:31:48 sergefp@mysql.com +1 -0
  Remove compiler warning

  sql/parse_file.h
    1.2 04/07/01 23:31:44 sergefp@mysql.com +1 -1
    Remove compiler warning

ChangeSet
  1.1616.609.1 04/07/01 16:30:29 gordon@zero.local.lan +18 -0
  WL#1564 Intensive test of prepared statements via 'mysqltest'

  BitKeeper/etc/logging_ok
    1.233.1.87 04/07/01 16:27:09 gordon@zero.local.lan +1 -0
    Logging to logging@openlogging.org accepted

ChangeSet
  1.1616.602.6 04/07/01 17:26:45 monty@mysql.com +3 -0
  Portability fixes (For Netware)

  netware/BUILD/compile-netware-standard
    1.3.1.3 04/07/01 17:26:43 monty@mysql.com +1 -0
    Patch from novell

  mysql-test/t/rpl_delete_all.test
    1.2 04/07/01 17:26:43 monty@mysql.com +3 -2
    Portability fix

  mysql-test/r/rpl_delete_all.result
    1.2 04/07/01 17:26:43 monty@mysql.com +1 -1
    Portability fix

  mysql-test/t/ps_6bdb.test
    1.1 04/07/01 16:26:29 gordon@zero.local.lan +18 -0

  mysql-test/t/ps_5merge.test
    1.1 04/07/01 16:26:29 gordon@zero.local.lan +78 -0

  mysql-test/t/ps_4heap.test
    1.1 04/07/01 16:26:29 gordon@zero.local.lan +43 -0

  mysql-test/t/ps_3innodb.test
    1.1 04/07/01 16:26:29 gordon@zero.local.lan +17 -0

  mysql-test/t/ps_2myisam.test
    1.1 04/07/01 16:26:29 gordon@zero.local.lan +17 -0

  mysql-test/t/ps_1general.test
    1.1 04/07/01 16:26:29 gordon@zero.local.lan +739 -0

  mysql-test/t/ps_6bdb.test
    1.0 04/07/01 16:26:29 gordon@zero.local.lan +0 -0
    BitKeeper file /GORDON/MySQL/mysql-4.1/src/mysql-test/t/ps_6bdb.test

  mysql-test/t/ps_5merge.test
    1.0 04/07/01 16:26:29 gordon@zero.local.lan +0 -0
    BitKeeper file /GORDON/MySQL/mysql-4.1/src/mysql-test/t/ps_5merge.test

  mysql-test/t/ps_4heap.test
    1.0 04/07/01 16:26:29 gordon@zero.local.lan +0 -0
    BitKeeper file /GORDON/MySQL/mysql-4.1/src/mysql-test/t/ps_4heap.test

  mysql-test/t/ps_3innodb.test
    1.0 04/07/01 16:26:29 gordon@zero.local.lan +0 -0
    BitKeeper file /GORDON/MySQL/mysql-4.1/src/mysql-test/t/ps_3innodb.test

  mysql-test/t/ps_2myisam.test
    1.0 04/07/01 16:26:29 gordon@zero.local.lan +0 -0
    BitKeeper file /GORDON/MySQL/mysql-4.1/src/mysql-test/t/ps_2myisam.test

  mysql-test/t/ps_1general.test
    1.0 04/07/01 16:26:29 gordon@zero.local.lan +0 -0
    BitKeeper file /GORDON/MySQL/mysql-4.1/src/mysql-test/t/ps_1general.test

  mysql-test/r/ps_6bdb.result
    1.1 04/07/01 16:26:28 gordon@zero.local.lan +1269 -0

  mysql-test/r/ps_5merge.result
    1.1 04/07/01 16:26:28 gordon@zero.local.lan +2410 -0

  mysql-test/r/ps_4heap.result
    1.1 04/07/01 16:26:28 gordon@zero.local.lan +1270 -0

  mysql-test/r/ps_3innodb.result
    1.1 04/07/01 16:26:28 gordon@zero.local.lan +1269 -0

  mysql-test/r/ps_2myisam.result
    1.1 04/07/01 16:26:28 gordon@zero.local.lan +1269 -0

  mysql-test/r/ps_1general.result
    1.1 04/07/01 16:26:28 gordon@zero.local.lan +745 -0

  mysql-test/include/ps_renew.inc
    1.1 04/07/01 16:26:28 gordon@zero.local.lan +34 -0

  mysql-test/r/ps_6bdb.result
    1.0 04/07/01 16:26:28 gordon@zero.local.lan +0 -0
    BitKeeper file /GORDON/MySQL/mysql-4.1/src/mysql-test/r/ps_6bdb.result

  mysql-test/r/ps_5merge.result
    1.0 04/07/01 16:26:28 gordon@zero.local.lan +0 -0
    BitKeeper file /GORDON/MySQL/mysql-4.1/src/mysql-test/r/ps_5merge.result

  mysql-test/r/ps_4heap.result
    1.0 04/07/01 16:26:28 gordon@zero.local.lan +0 -0
    BitKeeper file /GORDON/MySQL/mysql-4.1/src/mysql-test/r/ps_4heap.result

  mysql-test/r/ps_3innodb.result
    1.0 04/07/01 16:26:28 gordon@zero.local.lan +0 -0
    BitKeeper file /GORDON/MySQL/mysql-4.1/src/mysql-test/r/ps_3innodb.result

  mysql-test/r/ps_2myisam.result
    1.0 04/07/01 16:26:28 gordon@zero.local.lan +0 -0
    BitKeeper file /GORDON/MySQL/mysql-4.1/src/mysql-test/r/ps_2myisam.result

  mysql-test/r/ps_1general.result
    1.0 04/07/01 16:26:28 gordon@zero.local.lan +0 -0
    BitKeeper file /GORDON/MySQL/mysql-4.1/src/mysql-test/r/ps_1general.result

  mysql-test/include/ps_renew.inc
    1.0 04/07/01 16:26:28 gordon@zero.local.lan +0 -0
    BitKeeper file /GORDON/MySQL/mysql-4.1/src/mysql-test/include/ps_renew.inc

  mysql-test/include/ps_query.inc
    1.1 04/07/01 16:26:27 gordon@zero.local.lan +587 -0

  mysql-test/include/ps_modify1.inc
    1.1 04/07/01 16:26:27 gordon@zero.local.lan +60 -0

  mysql-test/include/ps_modify.inc
    1.1 04/07/01 16:26:27 gordon@zero.local.lan +207 -0

  mysql-test/include/ps_create.inc
    1.1 04/07/01 16:26:27 gordon@zero.local.lan +29 -0

  mysql-test/include/ps_query.inc
    1.0 04/07/01 16:26:27 gordon@zero.local.lan +0 -0
    BitKeeper file /GORDON/MySQL/mysql-4.1/src/mysql-test/include/ps_query.inc

  mysql-test/include/ps_modify1.inc
    1.0 04/07/01 16:26:27 gordon@zero.local.lan +0 -0
    BitKeeper file /GORDON/MySQL/mysql-4.1/src/mysql-test/include/ps_modify1.inc

  mysql-test/include/ps_modify.inc
    1.0 04/07/01 16:26:27 gordon@zero.local.lan +0 -0
    BitKeeper file /GORDON/MySQL/mysql-4.1/src/mysql-test/include/ps_modify.inc

  mysql-test/include/ps_create.inc
    1.0 04/07/01 16:26:27 gordon@zero.local.lan +0 -0
    BitKeeper file /GORDON/MySQL/mysql-4.1/src/mysql-test/include/ps_create.inc

ChangeSet
  1.1616.602.5 04/07/01 14:41:51 lenz@mysql.com +1 -0
   - tagged ChangeSet 1.2023 as "mysql-4.1.3"
   - bumped up version number in configure.in: 4.1.3-beta -> 4.1.4-beta

  configure.in
    1.201.22.5 04/07/01 14:41:46 lenz@mysql.com +1 -1
     - bumped up version number: 4.1.3-beta -> 4.1.4-beta

ChangeSet
  1.1616.564.3 04/06/30 23:29:47 mwagner@here.mwagner.org +1 -0
  mysql-copyright:
    Fix for the condition when "the_fat" doesn't end with 'dnl\n', but ')\n'.

  Build-tools/mysql-copyright
    1.15 04/06/30 23:10:11 mwagner@here.mwagner.org +17 -1
    Fix for the condition when "the_fat" doesn't end with 'dnl\n', but ')\n'.

ChangeSet
  1.1616.602.4 04/06/30 22:18:41 paul@kite-hub.kitebird.com +4 -0
  client.c, libmysql.c:
    Symbol spelling change.
  errmsg.c:
    Client error message edits.
  errmsg.h:
    Two symbol spelling changes.

  sql-common/client.c
    1.46.1.20 04/06/30 22:17:57 paul@kite-hub.kitebird.com +2 -2
    Symbol spelling change.

  libmysql/libmysql.c
    1.156.1.99 04/06/30 22:17:39 paul@kite-hub.kitebird.com +1 -1
    Symbol spelling change.

  libmysql/errmsg.c
    1.29 04/06/30 22:17:25 paul@kite-hub.kitebird.com +2 -2
    Client error message edits.

  include/errmsg.h
    1.23 04/06/30 22:16:20 paul@kite-hub.kitebird.com +4 -4
    Two symbol spelling changes.

ChangeSet
  1.1688 04/07/01 01:52:05 bell@sanja.is.com.ua +1 -0
  fixed WHERE condition optimisation in PS

  sql/sql_prepare.cc
    1.62 04/07/01 01:51:46 bell@sanja.is.com.ua +3 -0
    reset current_select before query rexecution
    assirn prepared statement arena in time of execution

ChangeSet
  1.1346.638.2 04/06/30 15:41:35 guilhem@mysql.com +1 -0
  Fix for BUG#4326 "Replicated LOAD DATA INFILE show nothing in
  processlist on slave":
  we now report in SHOW PROCESSLIST that we are writing to the temp
  files or loading the table. When we are writing to the tmp file:
  | 3  | system user |                 |    | Connect | 6    | Making temp file /tmp/SQL_LOAD-2-1-2.data | 
  and when we are actually loading the .data temp file into the table:
  | 3  | system user |                 | test | Connect | 2    | | LOAD DATA INFILE '/tmp/SQL_LOAD-2-1-2.data' INTO TABLE `t` <...> |

  sql/log_event.cc
    1.77.1.80 04/06/30 15:35:03 guilhem@mysql.com +29 -4
    Replication of LOAD DATA INFILE:
    we now report in SHOW PROCESSLIST that we are creating
    the temp files or loading the table.
    Plus removing a line which had a comment "should not be needed"
    and a guarding assertion which we have never heard fail (and logic
    says it should not fail).

ChangeSet
  1.1686 04/06/30 05:54:32 igor@rurik.mysql.com +7 -0
  subselect2.result, select.result:
    Post-merge fixes for nested joins.
    The join_tab_cmp function in sql_select has been changed.
  join_nested.result:
    Post-merge fixes for nested joins. 
    The join_tab_cmp function in sql_select has been changed
  sql_select.cc:
    Post-merge fixes for nested joins.
    Avoided re-execution of eliminate_not_funcs and simplify_joins
    in optimize_cond.
    Changed the join_tab_cmp function to take into account
    the dependent relation.
  sql_lex.cc, sql_lex.h:
    Added the first_cond_optimization flag to st_select_lex to avoid
    re-execution of some optimizations in optimize_cond.
  sql_base.cc:
    Post-merge fixes for nested joins. 
    Fixed problems with a proper column list substituted for '*' in
    queries with natural joins.

ChangeSet
  1.1616.606.1 04/06/30 14:01:31 lenz@mysql.com +1 -0
  - fixed server RPM postinstall (mysql_install_db was called with the
    wrong parameter)

  support-files/mysql.spec.sh
    1.78 04/06/30 14:01:18 lenz@mysql.com +6 -1
    - fixed server RPM postinstall (mysql_install_db was called with the
      wrong parameter)

ChangeSet
  1.1616.605.1 04/06/30 14:45:08 bar@mysql.com +1 -0
  ctype-uca.c:
    mbminlen was wrong for UTF8.

  strings/ctype-uca.c
    1.17 04/06/30 14:44:36 bar@mysql.com +14 -14
    mbminlen was wrong for UTF8.

ChangeSet
  1.1616.603.1 04/06/30 10:40:15 serg@serg.mylan +6 -0
  fowwlowup fixes for index_flags()

  sql/table.cc
    1.109 04/06/30 10:40:07 serg@serg.mylan +6 -9
    fowwlowup fixes for index_flags()

  sql/sql_show.cc
    1.122.1.50 04/06/30 10:40:07 serg@serg.mylan +1 -1
    fowwlowup fixes for index_flags()

  sql/sql_select.cc
    1.216.1.133 04/06/30 10:40:07 serg@serg.mylan +7 -4
    fowwlowup fixes for index_flags()

  sql/opt_sum.cc
    1.37 04/06/30 10:40:07 serg@serg.mylan +7 -6
    fowwlowup fixes for index_flags()

  sql/handler.h
    1.89.12.1 04/06/30 10:40:07 serg@serg.mylan +1 -1
    fowwlowup fixes for index_flags()

  sql/ha_berkeley.h
    1.57.1.9 04/06/30 10:40:07 serg@serg.mylan +1 -2
    fowwlowup fixes for index_flags()

ChangeSet
  1.1616.602.2 04/06/29 12:28:45 paul@kite-hub.kitebird.com +1 -0
  Reword some client error messages.

  libmysql/errmsg.c
    1.28 04/06/29 12:28:43 paul@kite-hub.kitebird.com +56 -56
    Reword some client error messages.

ChangeSet
  1.1616.601.1 04/06/29 18:19:35 monty@mysql.com +4 -0
  Apply patch from Novell

  netware/mysql_test_run.c
    1.3.1.5 04/06/29 18:19:34 monty@mysql.com +37 -35
    Portability fix (log -> log_msg)

  netware/init_db.sql
    1.6 04/06/29 18:19:34 monty@mysql.com +13 -0
    Add time_zone tables

  netware/BUILD/mwenv
    1.4.1.5 04/06/29 18:19:34 monty@mysql.com +1 -1
    Apply patch from Novell

  netware/BUILD/compile-linux-tools
    1.3.1.3 04/06/29 18:19:34 monty@mysql.com +1 -1
    Apply patch from Novell

ChangeSet
  1.1616.566.62 04/06/29 19:55:13 hf@deer.(none) +28 -0
  WL#1600 (Warn if result is truncatet due to max_allowed_packet)

  sql/share/ukrainian/errmsg.txt
    1.27.1.56 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/swedish/errmsg.txt
    1.64.1.58 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/spanish/errmsg.txt
    1.64.1.59 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/slovak/errmsg.txt
    1.64.1.59 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/serbian/errmsg.txt
    1.18.1.53 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/russian/errmsg.txt
    1.61.1.56 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/romanian/errmsg.txt
    1.62.1.60 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/portuguese/errmsg.txt
    1.64.1.58 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/polish/errmsg.txt
    1.63.1.59 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/norwegian/errmsg.txt
    1.63.1.60 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/norwegian-ny/errmsg.txt
    1.63.1.59 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/korean/errmsg.txt
    1.63.1.59 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/japanese/errmsg.txt
    1.63.1.57 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/italian/errmsg.txt
    1.70.1.59 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/hungarian/errmsg.txt
    1.65.1.58 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/greek/errmsg.txt
    1.64.1.58 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/german/errmsg.txt
    1.64.1.54 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/french/errmsg.txt
    1.63.1.59 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/estonian/errmsg.txt
    1.64.1.57 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/english/errmsg.txt
    1.70.1.63 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/dutch/errmsg.txt
    1.66.1.58 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/danish/errmsg.txt
    1.62.1.57 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/share/czech/errmsg.txt
    1.64.1.60 04/06/29 19:54:39 hf@deer.(none) +1 -0
    Warning added

  sql/item_strfunc.cc
    1.179 04/06/29 19:54:39 hf@deer.(none) +56 -9
    warning issued

  sql/item_geofunc.cc
    1.13 04/06/29 19:54:39 hf@deer.(none) +5 -0
    warning issued

  mysql-test/r/packet.result
    1.6 04/06/29 19:54:39 hf@deer.(none) +2 -0
    test resut fixed

  mysql-test/r/func_str.result
    1.66 04/06/29 19:54:39 hf@deer.(none) +2 -0
    test result fixed

  include/mysqld_error.h
    1.61.1.42 04/06/29 19:54:39 hf@deer.(none) +2 -1
    Warning added

  mysql-test/r/subselect2.result
    1.6 04/06/29 04:54:19 igor@rurik.mysql.com +1 -1
    Post-merge fixes for nested joins.
    The join_tab_cmp function in sql_select has been changed.

  mysql-test/r/select.result
    1.42 04/06/29 04:53:39 igor@rurik.mysql.com +6 -6
    Post-merge fixes for nested joins.
    The join_tab_cmp function in sql_select has been changed.

  mysql-test/r/join_nested.result
    1.2 04/06/29 04:52:04 igor@rurik.mysql.com +8 -8
    Post-merge fixes for nested joins. 
    The join_tab_cmp function in sql_select has been changed

  sql/sql_select.cc
    1.249 04/06/29 03:58:10 igor@rurik.mysql.com +45 -14
    Post-merge fixes for nested joins.
    Avoided re-execution of eliminate_not_funcs and simplify_joins
    in optimize_cond.
    Changed the join_tab_cmp function to take into account
    the dependent relation.

  sql/sql_lex.cc
    1.107 04/06/29 03:56:44 igor@rurik.mysql.com +1 -0
    Added the first_cond_optimization flag to st_select_lex to avoid
    re-execution of some optimizations in optimize_cond.

  sql/sql_lex.h
    1.134 04/06/29 03:53:22 igor@rurik.mysql.com +1 -0
    Added the first_cond_optimization flag to st_select_lex to avoid
    re-execution of some optimizations in optimize_cond.

  sql/sql_base.cc
    1.163 04/06/29 03:48:27 igor@rurik.mysql.com +28 -5
    Post-merge fixes for nested joins. 
    Fixed problems with a proper column list substituted for '*' in
    queries with natural joins.

ChangeSet
  1.1616.590.3 04/06/29 13:49:50 ram@gw.mysql.r18.ru +3 -0
  a fix (bug #4304: TRUNCATE <table of type BDB> , wrong result).

  sql/handler.h
    1.89.11.1 04/06/29 13:49:47 ram@gw.mysql.r18.ru +2 -1
    a fix (bug #4304: TRUNCATE <table of type BDB> , wrong result).

  mysql-test/t/bdb.test
    1.35.1.1 04/06/29 13:49:47 ram@gw.mysql.r18.ru +11 -0
    a fix (bug #4304: TRUNCATE <table of type BDB> , wrong result).

  mysql-test/r/bdb.result
    1.37.1.1 04/06/29 13:49:47 ram@gw.mysql.r18.ru +7 -0
    a fix (bug #4304: TRUNCATE <table of type BDB> , wrong result).

ChangeSet
  1.1346.646.4 04/06/29 02:13:24 mwagner@here.mwagner.org +1 -0
  my_md5sum:
    Added code to use locally installed perl modules first

  Build-tools/my_md5sum
    1.3 04/06/29 02:12:32 mwagner@here.mwagner.org +12 -1
    Added code to use locally installed perl modules first

ChangeSet
  1.1616.600.1 04/06/28 20:01:11 bell@sanja.is.com.ua +1 -0
  unused field removed

  sql/item.h
    1.56.1.82 04/06/28 20:00:42 bell@sanja.is.com.ua +0 -6
    unused field removed

ChangeSet
  1.1616.566.59 04/06/28 11:26:54 paul@kite-hub.kitebird.com +2 -0
  Message/comment touchup.

  scripts/mysql_fix_privilege_tables.sql
    1.4.1.4 04/06/28 11:26:52 paul@kite-hub.kitebird.com +1 -1
    Comment touchup.

  scripts/mysql_fix_privilege_tables.sh
    1.25 04/06/28 11:26:52 paul@kite-hub.kitebird.com +1 -1
    Message touchup.

ChangeSet
  1.1616.599.1 04/06/28 15:37:42 guilhem@mysql.com +1 -0
  Fix for BUG#4240 "mysql_fix_privilege_tables Does not use --password properly"
  Pass password if it is NOT empty. Typo fixed.

  scripts/mysql_fix_privilege_tables.sh
    1.21.1.1 04/06/28 15:35:30 guilhem@mysql.com +2 -2
    Pass password if it is NOT empty. Typo fixed.

ChangeSet
  1.1682.1.1 04/06/28 16:49:09 sergefp@mysql.com +1 -0
  Fixed test results to reflect range optimizer fixes

  mysql-test/r/bdb.result
    1.35.1.1 04/06/28 16:48:19 sergefp@mysql.com +3 -3
    Fixed test results to reflect optimizer fixes

ChangeSet
  1.1346.1.546 04/06/28 15:53:49 vva@eagle.mysql.r18.ru +6 -0
  s/\r\n/\n/ in mysql-test/*/system_mysql_db*
  according to http://www.bitkeeper.com/Documentation.FAQS.Windows_NT.html

  mysql-test/r/system_mysql_db_refs.result
    1.2.1.1 04/06/28 15:51:04 vva@eagle.mysql.r18.ru +28 -28
    s/\r\n/\n/

  mysql-test/r/system_mysql_db.result
    1.1.2.1 04/06/28 15:51:03 vva@eagle.mysql.r18.ru +0 -0
    s/\r\n/\n/

  mysql-test/t/system_mysql_db_refs.test
    1.2.1.1 04/06/28 15:51:01 vva@eagle.mysql.r18.ru +87 -87
    s/\r\n/\n/

  mysql-test/t/system_mysql_db_fix.test
    1.2.1.1 04/06/28 15:50:59 vva@eagle.mysql.r18.ru +75 -75
    s/\r\n/\n/

  mysql-test/t/system_mysql_db_fix-master.opt
    1.1.1.2 04/06/28 15:50:52 vva@eagle.mysql.r18.ru +0 -0
    s/\r\n/\n/

  mysql-test/t/system_mysql_db.test
    1.1.1.1 04/06/28 15:50:33 vva@eagle.mysql.r18.ru +8 -8
    s/\r\n/\n/

ChangeSet
  1.1616.566.57 04/06/28 11:06:22 serg@serg.mylan +1 -0
  after merge fix

  mysql-test/r/lowercase_table3.result
    1.5 04/06/28 11:06:17 serg@serg.mylan +1 -1
    after merge fix

ChangeSet
  1.1616.598.1 04/06/28 00:42:02 monty@mysql.com +4 -0
  Added missing my_time.c file to mysqlclient project
  Moved include <assert.h> to my_global.h

  sql/sql_table.cc
    1.157.2.74 04/06/28 00:42:00 monty@mysql.com +1 -0
    Initialize forgotten variable

  include/my_global.h
    1.47.1.21 04/06/28 00:42:00 monty@mysql.com +7 -0
    Added assert.h as this is included in a lot of places

  include/my_dbug.h
    1.10 04/06/28 00:42:00 monty@mysql.com +1 -4
    Moved include <assert.h> to my_global.h
    Removed NDEBUG as asserts should be indenpendent of if we are using DBUG or not
    

  VC++Files/client/mysqlclient.dsp
    1.28 04/06/28 00:42:00 monty@mysql.com +4 -0
    Added missing my_time.c file to mysqlclient project

ChangeSet
  1.1616.566.55 04/06/27 20:30:48 serg@serg.mylan +1 -0
  portability fix

  sql/ha_berkeley.h
    1.57.1.8 04/06/27 20:30:43 serg@serg.mylan +1 -1
    portability fix

ChangeSet
  1.1616.566.54 04/06/27 20:17:32 serg@serg.mylan +1 -0
  tell make how to create mysql_tzinfo_to_sql.cc

  sql/Makefile.am
    1.77.1.25 04/06/27 20:17:28 serg@serg.mylan +5 -3
    tell make how to create mysql_tzinfo_to_sql.cc

ChangeSet
  1.1616.566.53 04/06/27 20:07:21 monty@mysql.com +1 -0
  Ensure that we don't create long temporary .o file (breaks on qnx)

  sql/Makefile.am
    1.77.1.24 04/06/27 20:07:20 monty@mysql.com +6 -6
    Ensure that we don't create long temporary .o file (breaks on qnx)

ChangeSet
  1.1346.651.5 04/06/27 18:20:06 monty@mysql.com +2 -0
  Fix to be able to cross-compile for modesto

  configure.in
    1.191.1.114 04/06/27 18:20:05 monty@mysql.com +1 -1
    Fix to be able to cross-compile for modesto

ChangeSet
  1.1616.566.51 04/06/27 17:16:05 serg@serg.mylan +1 -0
  correct casting void->char

  include/my_global.h
    1.47.1.20 04/06/27 17:16:01 serg@serg.mylan +10 -10
    correct casting void->char

ChangeSet
  1.1616.566.50 04/06/27 13:16:19 serg@serg.mylan +3 -0
  after merge fix

  mysql-test/t/lowercase_table3.test
    1.6 04/06/27 13:16:13 serg@serg.mylan +1 -1
    after merge fix

  mysql-test/r/lowercase_table3.result
    1.4 04/06/27 13:16:13 serg@serg.mylan +2 -2
    after merge fix

  mysql-test/r/lowercase_table2.result
    1.7 04/06/27 13:11:25 serg@serg.mylan +2 -2
    results updated

ChangeSet
  1.1616.566.49 04/06/27 11:57:08 serg@serg.mylan +1 -0
  make lowercase_table3 to work

  mysql-test/t/lowercase_table3.test
    1.5 04/06/27 11:57:03 serg@serg.mylan +1 -1
    make lowercase_table3 to work

ChangeSet
  1.1616.566.48 04/06/27 01:32:52 serg@serg.mylan +1 -0
  memory leak in tz code closed
  (table opened in my_tz_init, was removed from thd->open_tables in
  tz_load_from_db w/o being unlocked, so it was stayng in open_cache
  forever preventing the latter from being free'd in table_cache_free)

  sql/tztime.cc
    1.8 04/06/27 01:32:47 serg@serg.mylan +4 -2
    memory leak in tz code closed
    (table opened in my_tz_init, was removed from thd->open_tables in
    tz_load_from_db w/o being unlocked, so it was stayng in open_cache
    forever preventing the latter from being free'd in table_cache_free)

ChangeSet
  1.1616.566.47 04/06/27 00:34:05 serg@serg.mylan +5 -0
  removed using lex->select_lex.options is SHOW TABLE [STATUS] commands (BUG#4288)

  sql/sql_yacc.yy
    1.203.1.133 04/06/27 00:33:59 serg@serg.mylan +1 -3
    removed unneed initialization of lex->select_lex.options

  sql/sql_parse.cc
    1.271.1.92 04/06/27 00:33:59 serg@serg.mylan +1 -1
    Use lex->describe instead of lex->select_lex.options

  mysql-test/t/ps.test
    1.11 04/06/27 00:33:59 serg@serg.mylan +12 -0
    SHOW TABLE STATUS test

  mysql-test/r/ps.result
    1.14 04/06/27 00:33:59 serg@serg.mylan +10 -0
    SHOW TABLE STATUS test

  mysql-test/r/func_group.result
    1.29.1.3 04/06/27 00:33:59 serg@serg.mylan +2 -2
    fixed

ChangeSet
  1.1616.566.46 04/06/26 23:55:38 serg@serg.mylan +3 -0
  correct eq() method for Item_param (BUG#4233)

  sql/item.h
    1.56.1.81 04/06/26 23:55:32 serg@serg.mylan +2 -0
    correct eq() method for Item_param

  mysql-test/t/ps.test
    1.10 04/06/26 23:55:32 serg@serg.mylan +15 -0
    eq() for parameters test

  mysql-test/r/ps.result
    1.13 04/06/26 23:55:32 serg@serg.mylan +17 -0
    eq() for parameters test

ChangeSet
  1.1616.566.45 04/06/26 23:00:23 serg@serg.mylan +1 -0
  restored --all as an alias to --create-options for backward compatibility

  client/mysqldump.c
    1.138 04/06/26 23:00:19 serg@serg.mylan +4 -1
    restored --all as an alias to --create-options for backward compatibility

ChangeSet
  1.1616.566.44 04/06/26 19:37:48 serg@serg.mylan +1 -0
  BUG#4276 - socket path too long

  sql/mysqld.cc
    1.356.1.122 04/06/26 19:37:43 serg@serg.mylan +6 -0
    BUG#4276 - socket path too long

ChangeSet
  1.1616.566.42 04/06/26 14:21:32 serg@serg.mylan +9 -0
  after merge fixed

  sql/sql_yacc.yy
    1.203.1.132 04/06/26 14:21:27 serg@serg.mylan +4 -5
    alias is not db-qualified

  sql/sql_select.cc
    1.216.1.132 04/06/26 14:21:27 serg@serg.mylan +4 -3
    after merge fixed

  sql/ha_berkeley.cc
    1.117.1.21 04/06/26 14:21:27 serg@serg.mylan +0 -6
    after merge fixed

  mysql-test/t/innodb_cache.test
    1.9 04/06/26 14:21:27 serg@serg.mylan +3 -3
    after merge fixed

  mysql-test/t/flush_table.test
    1.6 04/06/26 14:21:27 serg@serg.mylan +3 -59
    after merge fixed
    duplicated tests removed

  mysql-test/r/range.result
    1.28 04/06/26 14:21:26 serg@serg.mylan +1 -1
    after merge fixed

  mysql-test/r/innodb_cache.result
    1.11 04/06/26 14:21:26 serg@serg.mylan +4 -4
    after merge fixed

  mysql-test/r/func_group.result
    1.29.1.2 04/06/26 14:21:26 serg@serg.mylan +2 -2
    after merge fixed

  mysql-test/r/flush_table.result
    1.3 04/06/26 14:21:26 serg@serg.mylan +7 -61
    after merge fixed
    duplicated tests removed

ChangeSet
  1.1616.597.4 04/06/26 10:57:00 monty@mysql.com +3 -0
  Cleanup for creating windows source distribution

  scripts/mysql_create_system_tables.sh
    1.7.1.6 04/06/26 10:56:59 monty@mysql.com +0 -1
    Remove duplicate entry

  scripts/make_win_src_distribution.sh
    1.20 04/06/26 10:56:59 monty@mysql.com +10 -7
    Don't copy InstallShield files if we are in a normal bk tree

  BitKeeper/etc/ignore
    1.153.1.41 04/06/26 10:56:11 monty@mysql.com +1 -0
    added sql/mysql_tzinfo_to_sql.cc

ChangeSet
  1.1616.597.3 04/06/25 19:25:36 patg@krsna.patg.net +1 -0
  make_win_src_distribution.sh:
    4.1 tree must use installshield project files due to new tables

  scripts/make_win_src_distribution.sh
    1.19 04/06/25 19:25:24 patg@krsna.patg.net +1 -1
    4.1 tree must use installshield project files due to new tables

ChangeSet
  1.1616.597.2 04/06/25 19:11:46 patg@krsna.patg.net +1 -0
  mysql_create_system_tables.sh:
    fix to user table during make_win_src_distribution

  scripts/mysql_create_system_tables.sh
    1.7.1.5 04/06/25 19:11:11 patg@krsna.patg.net +4 -1
    fix to user table during make_win_src_distribution

ChangeSet
  1.1616.597.1 04/06/26 04:54:11 konstantin@mysql.com +2 -0
  Fix for compilation failure on high-byte-first platforms.

  libmysql/libmysql.c
    1.156.1.98 04/06/26 04:54:09 konstantin@mysql.com +3 -3
    - suppress possible warnings

  include/my_global.h
    1.47.1.19 04/06/26 04:54:08 konstantin@mysql.com +14 -13
    Fix for libmysql compilation failure on high-byte-first systems:
    - add typecasting to char * in shortstore, longstore, doublestore macros 

ChangeSet
  1.1616.596.1 04/06/25 21:43:02 serg@serg.mylan +2 -0
  release cursors in return_zero_rows

  sql/sql_select.cc
    1.216.79.1 04/06/25 21:42:57 serg@serg.mylan +2 -0
    release cursors in return_zero_rows

  sql/opt_range.cc
    1.98.8.1 04/06/25 21:42:57 serg@serg.mylan +1 -4
    incorrect fix removed. range optimizer is made slightly more stable vs. compiler optimizations

ChangeSet
  1.1616.566.40 04/06/25 23:21:14 konstantin@mysql.com +1 -0
  Fix for 'make dist' 'make distclean' goals work even if ./configure
  called without NDB enabled.

  mysql-test/Makefile.am
    1.31 04/06/25 23:21:12 konstantin@mysql.com +7 -0
    Fix for 'make dist' 'make distclean' goals work even if ./configure
    called without NDB enabled.

ChangeSet
  1.1616.594.3 04/06/25 21:56:23 monty@mysql.com +5 -0
  After merge fixes

  sql/sql_insert.cc
    1.86.2.54 04/06/25 21:56:21 monty@mysql.com +4 -2
    Fixed indentation

  sql/sql_handler.cc
    1.53 04/06/25 21:56:21 monty@mysql.com +1 -1
    Fixed typo during merge

  sql/opt_range.cc
    1.98.1.25 04/06/25 21:56:21 monty@mysql.com +3 -1
    Make bdb.test repeatable (and assume that table scans is a little bit slower)

  sql-common/client.c
    1.46.1.19 04/06/25 21:56:21 monty@mysql.com +4 -0
    Allow client.c to compile after changes to mysql.h

  include/mysql.h
    1.132 04/06/25 21:56:21 monty@mysql.com +0 -1
    Cleanup

ChangeSet
  1.1616.595.1 04/06/25 21:04:48 dlenev@brandersnatch.localdomain +3 -0
  Removed mysql_tzinfo_to_sql dependancy on sql/mysql_priv.h for circumventing
  problems with unresolved dependancies on some platforms.

  sql/tztime.h
    1.2 04/06/25 21:04:45 dlenev@brandersnatch.localdomain +8 -0
    Moved my_time_t definitions to tztime.h to avoid mysql_tzinfo_to_sql dependancy
    on mysql_priv.h. 

  sql/tztime.cc
    1.7 04/06/25 21:04:44 dlenev@brandersnatch.localdomain +14 -0
    Removed mysql_tzinfo_to_sql dependancy from mysql_priv.h

  sql/mysql_priv.h
    1.186.1.113 04/06/25 21:04:42 dlenev@brandersnatch.localdomain +0 -8
    Moved my_time_t definitions to tztime.h to avoid mysql_tzinfo_to_sql dependancy
    on mysql_priv.h. 

  scripts/make_win_src_distribution.sh
    1.7.2.1 04/06/25 19:48:03 monty@mysql.com +0 -0
    Change mode to -rw-rw-r--

ChangeSet
  1.1346.651.3 04/06/25 18:54:43 monty@mysql.com +2 -0
  Add missing .cnf files to windows installation (Bug #4216)

  scripts/make_win_src_distribution.sh
    1.7.1.5 04/06/25 18:54:42 monty@mysql.com +17 -12
    Add missing .cnf files (Bug #4216)
    Align code with MySQL 4.1

  scripts/make_win_binary_distribution.sh
    1.2 04/06/25 18:54:42 monty@mysql.com +4 -1
    Add missing .cnf files (Bug #4216)

ChangeSet
  1.1616.594.1 04/06/25 18:49:36 monty@mysql.com +19 -0
  Added missing root user to mysql.user on windows. (Bug #4242)
  Set default max_allowed_packet to be able to read help tables even if an my.cnf file with this option is present. (Bug #3938)
  Don't use default arguments for ha_rnd_init()
  Simple code cleanups since last pull
  

  sql/sql_select.cc
    1.216.1.129 04/06/25 18:49:10 monty@mysql.com +3 -3
    Don't use default arguments for ha_rnd_init()

  sql/records.cc
    1.19.1.8 04/06/25 18:49:10 monty@mysql.com +1 -1
    Don't use default arguments for ha_rnd_init()

  sql/handler.h
    1.89.1.29 04/06/25 18:49:10 monty@mysql.com +2 -2
    Keep bool variables together (better alignment)

  sql/handler.cc
    1.103.1.34 04/06/25 18:49:10 monty@mysql.com +2 -4
    Code cleanup

  sql/ha_ndbcluster.h
    1.14 04/06/25 18:49:10 monty@mysql.com +1 -1
    Don't use default arguments for ha_rnd_init()

  sql/ha_myisammrg.h
    1.34 04/06/25 18:49:10 monty@mysql.com +1 -1
    Don't use default arguments for ha_rnd_init()

  sql/ha_myisam.h
    1.60 04/06/25 18:49:10 monty@mysql.com +1 -1
    Don't use default arguments for ha_rnd_init()

  sql/ha_myisam.cc
    1.115.1.31 04/06/25 18:49:10 monty@mysql.com +24 -23
    Fixed wrong previous patch (New code used 'and' between two conditions when it should be 'or' as in original code)

  sql/ha_isammrg.h
    1.21 04/06/25 18:49:10 monty@mysql.com +1 -1
    Don't use default arguments for ha_rnd_init()

  sql/ha_isam.h
    1.27 04/06/25 18:49:10 monty@mysql.com +1 -1
    Don't use default arguments for ha_rnd_init()

  sql/ha_innodb.h
    1.57.1.10 04/06/25 18:49:10 monty@mysql.com +1 -1
    Don't use default arguments for ha_rnd_init()

  sql/ha_heap.h
    1.26.1.2 04/06/25 18:49:10 monty@mysql.com +1 -1
    Don't use default arguments for ha_rnd_init()

  sql/ha_berkeley.h
    1.57.1.7 04/06/25 18:49:10 monty@mysql.com +1 -1
    Don't use default arguments for ha_rnd_init()

  sql/ha_berkeley.cc
    1.117.1.19 04/06/25 18:49:10 monty@mysql.com +6 -2
    Better to use #ifdef than // to disable code
    Removed not needed setting of active_index (It's set in index_end)

  sql/filesort.cc
    1.70.1.16 04/06/25 18:49:10 monty@mysql.com +1 -1
    Don't use default arguments for ha_rnd_init()

  scripts/mysql_install_db.sh
    1.37.1.27 04/06/25 18:49:10 monty@mysql.com +1 -1
    Set default max_allowed_packet to be able to read help tables even if an my.cnf file with this option is present. (Bug #3938)

  scripts/mysql_create_system_tables.sh
    1.7.1.4 04/06/25 18:49:10 monty@mysql.com +3 -2
    Added missing root user to mysql.user on windows. (Bug #4242)

  scripts/make_win_src_distribution.sh
    1.17 04/06/25 18:49:10 monty@mysql.com +1 -2
    Safer remove of SCCS directories

  scripts/make_win_src_distribution.sh
    1.16 04/06/25 17:01:52 monty@mysql.com +0 -0
    Change mode to -rw-rw-r--

  scripts/fill_func_tables.sh
    1.2 04/06/25 17:00:30 monty@mysql.com +0 -0
    Change mode to -rw-rw-r--

ChangeSet
  1.1616.593.1 04/06/25 16:00:17 lenz@mysql.com +142 -0
   - removed the VC++Files/InstallShield directory per Montys request
     (moved it into another BK tree instead)

  BitKeeper/deleted/.del-Setup.rul~4b7637f769f52a25
    1.2 04/06/25 15:57:18 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/Script Files/Setup.rul

  BitKeeper/deleted/.del-Setup.obs~4fd60fb740a22ea
    1.2 04/06/25 15:57:18 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/Script Files/Setup.obs

  BitKeeper/deleted/.del-Setup.ins~f3a796be563fc9bd
    1.2 04/06/25 15:57:18 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/Script Files/Setup.ins

  BitKeeper/deleted/.del-Setup.ino~b3932b7bb121e4ec
    1.2 04/06/25 15:57:18 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/Script Files/Setup.ino

  BitKeeper/deleted/.del-Setup.dbg~cd24ecd832b2e2f
    1.2 04/06/25 15:57:18 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/Script Files/Setup.dbg

  BitKeeper/deleted/.del-value.shl~358b883967c1285b
    1.2 04/06/25 15:57:17 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/String Tables/0009-English/value.shl

  BitKeeper/deleted/.del-setup.bmp~c14772c028869268
    1.2 04/06/25 15:57:17 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/Setup Files/Uncompressed Files/Language Independent/OS Independent/setup.bmp

  BitKeeper/deleted/.del-Setup.tsb~cbf0b4216f1fc07a
    1.2 04/06/25 15:57:17 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/Text Substitutions/Setup.tsb

  BitKeeper/deleted/.del-Default.shl~dfd37ac3a14f1c26
    1.2 04/06/25 15:57:17 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/String Tables/Default.shl

  BitKeeper/deleted/.del-Default.shl~49bfb4a6b7be3ae6
    1.2 04/06/25 15:57:17 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/Shell Objects/Default.shl

  BitKeeper/deleted/.del-Build.tsb~3ad8803f587e4caa
    1.2 04/06/25 15:57:17 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/Text Substitutions/Build.tsb

  BitKeeper/deleted/.del-setup.rul~d2b63cdb81ac804d
    1.2 04/06/25 15:57:16 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/Script Files/setup.rul

  BitKeeper/deleted/.del-infolist.txt~c82d6e1266aed24c
    1.2 04/06/25 15:57:16 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt

  BitKeeper/deleted/.del-Setup.rul.old~9030a494640d6daa
    1.2 04/06/25 15:57:16 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.rul.old

  BitKeeper/deleted/.del-Setup.obs~64620a6aef850ccd
    1.2 04/06/25 15:57:16 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.obs

  BitKeeper/deleted/.del-Setup.ins~96063fd05aef5bdd
    1.2 04/06/25 15:57:16 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.ins

  BitKeeper/deleted/.del-Setup.ino~38f5a71ce8fcbe9
    1.2 04/06/25 15:57:16 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.ino

  BitKeeper/deleted/.del-Setup.dbg~212d5bfdb120acb6
    1.2 04/06/25 15:57:15 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.dbg

  BitKeeper/deleted/.del-Servers.fgl~d05b8c0ae046fa41
    1.2 04/06/25 15:57:15 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/File Groups/Servers.fgl

  BitKeeper/deleted/.del-Grant Tables.fgl~47169111ae90357a
    1.2 04/06/25 15:57:15 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/File Groups/Grant Tables.fgl

  BitKeeper/deleted/.del-Documentation.fgl~d9e4c6ada79d1bac
    1.2 04/06/25 15:57:15 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/File Groups/Documentation.fgl

  BitKeeper/deleted/.del-Default.rge~182983f3c2d89dd
    1.2 04/06/25 15:57:15 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/Registry Entries/Default.rge

  BitKeeper/deleted/.del-4.1.XX-pro.ipr~d3a8737b2c663290
    1.2 04/06/25 15:57:15 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/4.1.XX-pro.ipr

  BitKeeper/deleted/.del-Setup.tsb~f8934afe5f574bdd
    1.2 04/06/25 15:57:14 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/Text Substitutions/Setup.tsb

  BitKeeper/deleted/.del-Development.fgl~ed903f815ee63bcb
    1.2 04/06/25 15:57:14 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/File Groups/Development.fgl

  BitKeeper/deleted/.del-Default.shl~4c733f5e5a550568
    1.2 04/06/25 15:57:14 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/String Tables/Default.shl

  BitKeeper/deleted/.del-Default.fgl~15216384a36ae045
    1.2 04/06/25 15:57:14 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/Component Definitions/Default.fgl

  BitKeeper/deleted/.del-Default.fdf~5ceb672212520fa2
    1.2 04/06/25 15:57:14 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/File Groups/Default.fdf

  BitKeeper/deleted/.del-Default.cdf~7223553f7189e23c
    1.2 04/06/25 15:57:14 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/Component Definitions/Default.cdf

  BitKeeper/deleted/.del-Clients and Tools.fgl~1b0f3a93a76880b6
    1.2 04/06/25 15:57:14 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-pro/File Groups/Clients and Tools.fgl

  BitKeeper/deleted/.del-Build.tsb~90ad5f0b7f8ac7d4
    1.2 04/06/25 15:57:14 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/Text Substitutions/Build.tsb

  BitKeeper/deleted/.del-value.shl~76bc7b15a3f85461
    1.2 04/06/25 15:57:13 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/String Tables/0009-English/value.shl

  BitKeeper/deleted/.del-setup.rul~da60fc2eeb0a2b65
    1.2 04/06/25 15:57:13 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/Script Files/setup.rul

  BitKeeper/deleted/.del-setup.bmp~f86070b6f6eae728
    1.2 04/06/25 15:57:13 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/Setup Files/Uncompressed Files/Language Independent/OS Independent/setup.bmp

  BitKeeper/deleted/.del-infolist.txt~ea6e889113272829
    1.2 04/06/25 15:57:13 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt

  BitKeeper/deleted/.del-Setup.rul.old~248669ae84dc238b
    1.2 04/06/25 15:57:13 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.rul.old

  BitKeeper/deleted/.del-Default.shl~fd30955919785bdc
    1.2 04/06/25 15:57:13 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/Shell Objects/Default.shl

  BitKeeper/deleted/.del-Setup.obs~523a1459782433bf
    1.2 04/06/25 15:57:12 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.obs

  BitKeeper/deleted/.del-Setup.ins~77fa34bac070a42f
    1.2 04/06/25 15:57:12 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.ins

  BitKeeper/deleted/.del-Setup.ino~ec4ed614ca648f0c
    1.2 04/06/25 15:57:12 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.ino

  BitKeeper/deleted/.del-Setup.dbg~50904d3a4c3ce326
    1.2 04/06/25 15:57:12 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.dbg

  BitKeeper/deleted/.del-4.1.XX-gpl.ipr~1ef9c8dd6b2c260a
    1.2 04/06/25 15:57:12 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/4.1.XX-gpl.ipr

  BitKeeper/deleted/.del-Servers.fgl~3c93fd095c43d910
    1.2 04/06/25 15:57:11 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/File Groups/Servers.fgl

  BitKeeper/deleted/.del-Grant Tables.fgl~c4d1d3c2196ba489
    1.2 04/06/25 15:57:11 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/File Groups/Grant Tables.fgl

  BitKeeper/deleted/.del-Documentation.fgl~d3b32a44ccef30cf
    1.2 04/06/25 15:57:11 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/File Groups/Documentation.fgl

  BitKeeper/deleted/.del-Development.fgl~4212e9d59f5dded6
    1.2 04/06/25 15:57:11 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/File Groups/Development.fgl

  BitKeeper/deleted/.del-Default.rge~aa8ec10d20cc2ea6
    1.2 04/06/25 15:57:11 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/Registry Entries/Default.rge

  BitKeeper/deleted/.del-Default.fdf~ecc75c1fdcbe199
    1.2 04/06/25 15:57:11 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/File Groups/Default.fdf

  BitKeeper/deleted/.del-value.shl~91651502780ef02d
    1.2 04/06/25 15:57:10 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/String Tables/0009-English/value.shl

  BitKeeper/deleted/.del-Setup.tsb~7f688fa1a1305779
    1.2 04/06/25 15:57:10 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/Text Substitutions/Setup.tsb

  BitKeeper/deleted/.del-Default.shl~97ed43aad5287eb3
    1.2 04/06/25 15:57:10 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/String Tables/Default.shl

  BitKeeper/deleted/.del-Default.fgl~2ca50676b41365a1
    1.2 04/06/25 15:57:10 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/Component Definitions/Default.fgl

  BitKeeper/deleted/.del-Default.cdf~2acf82e34190f422
    1.2 04/06/25 15:57:10 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/Component Definitions/Default.cdf

  BitKeeper/deleted/.del-Clients and Tools.fgl~bfb5a5bca615aa7b
    1.2 04/06/25 15:57:10 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-gpl/File Groups/Clients and Tools.fgl

  BitKeeper/deleted/.del-Build.tsb~a33d3beb4a03d10a
    1.2 04/06/25 15:57:10 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/Text Substitutions/Build.tsb

  BitKeeper/deleted/.del-setup.rul~d4ed758f1dfd1aea
    1.2 04/06/25 15:57:09 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/Script Files/setup.rul

  BitKeeper/deleted/.del-setup.bmp~fb43da1cf301abc0
    1.2 04/06/25 15:57:09 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/Setup Files/Uncompressed Files/Language Independent/OS Independent/setup.bmp

  BitKeeper/deleted/.del-infolist.txt~7bf03fefb6c8d966
    1.2 04/06/25 15:57:09 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt

  BitKeeper/deleted/.del-Setup.rul.old~ebca9651260dc1e
    1.2 04/06/25 15:57:09 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.rul.old

  BitKeeper/deleted/.del-Default.shl~a62e3dc1dbd86b19
    1.2 04/06/25 15:57:09 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/Shell Objects/Default.shl

  BitKeeper/deleted/.del-Setup.obs~e616ceb8e2f038b
    1.2 04/06/25 15:57:08 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.obs

  BitKeeper/deleted/.del-Setup.ins~2aa4ceafa981c904
    1.2 04/06/25 15:57:08 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.ins

  BitKeeper/deleted/.del-Setup.ino~b11e1526c27a69ac
    1.2 04/06/25 15:57:08 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.ino

  BitKeeper/deleted/.del-Setup.dbg~c9d441dd9eab9848
    1.2 04/06/25 15:57:08 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.dbg

  BitKeeper/deleted/.del-Servers.fgl~8660bf8e58bb8c46
    1.2 04/06/25 15:57:08 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/File Groups/Servers.fgl

  BitKeeper/deleted/.del-4.1.XX-classic.ipr~ab85e2e8f9fba85f
    1.2 04/06/25 15:57:08 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/4.1.XX-classic.ipr

  BitKeeper/deleted/.del-Grant Tables.fgl~fad9ca55f7f65bd8
    1.2 04/06/25 15:57:07 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/File Groups/Grant Tables.fgl

  BitKeeper/deleted/.del-Documentation.fgl~93cd161ff57066b7
    1.2 04/06/25 15:57:07 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/File Groups/Documentation.fgl

  BitKeeper/deleted/.del-Development.fgl~a4bf062672f150ab
    1.2 04/06/25 15:57:07 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/File Groups/Development.fgl

  BitKeeper/deleted/.del-Default.fgl~9ff0bebf571edd92
    1.2 04/06/25 15:57:07 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/Component Definitions/Default.fgl

  BitKeeper/deleted/.del-Default.fdf~bae55f5ef75fb20
    1.2 04/06/25 15:57:07 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/File Groups/Default.fdf

  BitKeeper/deleted/.del-Default.cdf~21d59372769a480b
    1.2 04/06/25 15:57:07 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/Component Definitions/Default.cdf

  BitKeeper/deleted/.del-Clients and Tools.fgl~105c8773e185916b
    1.2 04/06/25 15:57:07 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.1.XX-classic/File Groups/Clients and Tools.fgl

  BitKeeper/deleted/.del-value.shl~79f89b845796b76f
    1.4 04/06/25 15:57:06 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/String Tables/0009-English/value.shl

  BitKeeper/deleted/.del-setup.bmp~12a72abe3e2d4504
    1.2 04/06/25 15:57:06 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/Setup Files/Uncompressed Files/Language Independent/OS Independent/setup.bmp

  BitKeeper/deleted/.del-Setup.tsb~f72bf507743c85a
    1.2 04/06/25 15:57:06 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/Text Substitutions/Setup.tsb

  BitKeeper/deleted/.del-Default.shl~8442d4f931175ce4
    1.2 04/06/25 15:57:06 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/String Tables/Default.shl

  BitKeeper/deleted/.del-Default.shl~756db7a4f061ef5a
    1.2 04/06/25 15:57:06 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/Shell Objects/Default.shl

  BitKeeper/deleted/.del-Build.tsb~feef4151eb46197c
    1.2 04/06/25 15:57:06 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/Text Substitutions/Build.tsb

  BitKeeper/deleted/.del-setup.rul~7e5ceffa1633b324
    1.2 04/06/25 15:57:05 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/Script Files/setup.rul

  BitKeeper/deleted/.del-infolist.txt~dac49e5a74c0bc49
    1.3 04/06/25 15:57:05 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt

  BitKeeper/deleted/.del-Setup.rul.old~cda35eff331ba28
    1.3 04/06/25 15:57:05 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/Script Files/Setup.rul.old

  BitKeeper/deleted/.del-Setup.obs~5350fafc16a5f824
    1.2 04/06/25 15:57:05 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/Script Files/Setup.obs

  BitKeeper/deleted/.del-Setup.ins~cca39d17ddbeb287
    1.2 04/06/25 15:57:05 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/Script Files/Setup.ins

  BitKeeper/deleted/.del-Setup.ino~428cd086735edb
    1.2 04/06/25 15:57:04 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/Script Files/Setup.ino

  BitKeeper/deleted/.del-Setup.dbg~bc0ea214cda7c317
    1.2 04/06/25 15:57:04 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/Script Files/Setup.dbg

  BitKeeper/deleted/.del-Servers.fgl~23867318e40f08ab
    1.4 04/06/25 15:57:04 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/File Groups/Servers.fgl

  BitKeeper/deleted/.del-Grant Tables.fgl~11f1ba8dd2959c0
    1.2 04/06/25 15:57:04 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/File Groups/Grant Tables.fgl

  BitKeeper/deleted/.del-Documentation.fgl~77f5dc6633481f26
    1.2 04/06/25 15:57:04 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/File Groups/Documentation.fgl

  BitKeeper/deleted/.del-Default.rge~5b912d9ca1ac7bca
    1.2 04/06/25 15:57:04 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/Registry Entries/Default.rge

  BitKeeper/deleted/.del-4.0.XX-pro.ipr~af4304a46891ea4f
    1.2 04/06/25 15:57:04 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/4.0.XX-pro.ipr

  BitKeeper/deleted/.del-Setup.tsb~72f2ecdeb296ae24
    1.2 04/06/25 15:57:03 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/Text Substitutions/Setup.tsb

  BitKeeper/deleted/.del-Development.fgl~d2fa1510dfb65f72
    1.3 04/06/25 15:57:03 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/File Groups/Development.fgl

  BitKeeper/deleted/.del-Default.fgl~aa69adc3d2c9d8e
    1.2 04/06/25 15:57:03 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/Component Definitions/Default.fgl

  BitKeeper/deleted/.del-Default.fdf~34238898d44490
    1.2 04/06/25 15:57:03 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/File Groups/Default.fdf

  BitKeeper/deleted/.del-Default.cdf~49cc1dec1e65c351
    1.2 04/06/25 15:57:03 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/Component Definitions/Default.cdf

  BitKeeper/deleted/.del-Clients and Tools.fgl~14feac1c737b4104
    1.3 04/06/25 15:57:03 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-pro/File Groups/Clients and Tools.fgl

  BitKeeper/deleted/.del-value.shl~926e24e7dc9e4e79
    1.4 04/06/25 15:57:02 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/String Tables/0009-English/value.shl

  BitKeeper/deleted/.del-setup.bmp~2e4262a3dfa4d35d
    1.2 04/06/25 15:57:02 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/Setup Files/Uncompressed Files/Language Independent/OS Independent/setup.bmp

  BitKeeper/deleted/.del-infolist.txt~674d51f7b326518b
    1.3 04/06/25 15:57:02 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt

  BitKeeper/deleted/.del-Setup.rul.old~566b97cdedfedf29
    1.3 04/06/25 15:57:02 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/Script Files/Setup.rul.old

  BitKeeper/deleted/.del-Default.shl~f3e5b5b97a54dee6
    1.2 04/06/25 15:57:02 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/String Tables/Default.shl

  BitKeeper/deleted/.del-Default.shl~9063a06da7f33f3
    1.2 04/06/25 15:57:02 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/Shell Objects/Default.shl

  BitKeeper/deleted/.del-Build.tsb~aff1897b9edad5e2
    1.2 04/06/25 15:57:02 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/Text Substitutions/Build.tsb

  BitKeeper/deleted/.del-setup.rul~458000bbbdf1205e
    1.2 04/06/25 15:57:01 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/Script Files/setup.rul

  BitKeeper/deleted/.del-Setup.obs~d09ce92c1e558c6e
    1.2 04/06/25 15:57:01 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/Script Files/Setup.obs

  BitKeeper/deleted/.del-Setup.ins~83eb271b4c91a6ba
    1.2 04/06/25 15:57:01 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/Script Files/Setup.ins

  BitKeeper/deleted/.del-Setup.ino~cdbb7d4bd8db360f
    1.2 04/06/25 15:57:01 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/Script Files/Setup.ino

  BitKeeper/deleted/.del-Setup.dbg~4ccb196b7d55031d
    1.2 04/06/25 15:57:01 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/Script Files/Setup.dbg

  BitKeeper/deleted/.del-4.0.XX-gpl.ipr~f5909a9e9bd8094
    1.1.1.1 04/06/25 15:57:01 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/4.0.XX-gpl.ipr

  BitKeeper/deleted/.del-Servers.fgl~3a0649a7c6aadc83
    1.4 04/06/25 15:57:00 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/File Groups/Servers.fgl

  BitKeeper/deleted/.del-Grant Tables.fgl~959c4efc58bc0814
    1.2 04/06/25 15:57:00 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/File Groups/Grant Tables.fgl

  BitKeeper/deleted/.del-Documentation.fgl~e9b823d7a5c391c4
    1.2 04/06/25 15:57:00 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/File Groups/Documentation.fgl

  BitKeeper/deleted/.del-Development.fgl~6392ce285e73f5fc
    1.2.1.1 04/06/25 15:57:00 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/File Groups/Development.fgl

  BitKeeper/deleted/.del-Default.rge~c514c1e9be51be19
    1.2 04/06/25 15:57:00 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/Registry Entries/Default.rge

  BitKeeper/deleted/.del-Default.fdf~d6f33b9f4717e65c
    1.2 04/06/25 15:57:00 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/File Groups/Default.fdf

  BitKeeper/deleted/.del-value.shl~139b49dbd00913e5
    1.4 04/06/25 15:56:59 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/String Tables/0009-English/value.shl

  BitKeeper/deleted/.del-Setup.tsb~53ee5a5dea9af84e
    1.2 04/06/25 15:56:59 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/Text Substitutions/Setup.tsb

  BitKeeper/deleted/.del-Default.shl~348d0fe86c90183f
    1.2 04/06/25 15:56:59 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/String Tables/Default.shl

  BitKeeper/deleted/.del-Default.fgl~239a3d5c75a17d6f
    1.2 04/06/25 15:56:59 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/Component Definitions/Default.fgl

  BitKeeper/deleted/.del-Default.cdf~258c3c6c88ee9c1a
    1.2 04/06/25 15:56:59 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/Component Definitions/Default.cdf

  BitKeeper/deleted/.del-Clients and Tools.fgl~bf0f776883577f02
    1.2.1.1 04/06/25 15:56:59 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-gpl/File Groups/Clients and Tools.fgl

  BitKeeper/deleted/.del-Build.tsb~2115a92aa9011cc0
    1.2 04/06/25 15:56:59 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/Text Substitutions/Build.tsb

  BitKeeper/deleted/.del-setup.rul~b60736dcf4dd2009
    1.2 04/06/25 15:56:58 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/Script Files/setup.rul

  BitKeeper/deleted/.del-setup.bmp~a94c8610ab87e06c
    1.2 04/06/25 15:56:58 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/Setup Files/Uncompressed Files/Language Independent/OS Independent/setup.bmp

  BitKeeper/deleted/.del-infolist.txt~c2044c845067562f
    1.3 04/06/25 15:56:58 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt

  BitKeeper/deleted/.del-Setup.rul.old~ca45dde660f56d93
    1.3 04/06/25 15:56:58 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/Script Files/Setup.rul.old

  BitKeeper/deleted/.del-Setup.obs~2c6932da5ab5d1b1
    1.2 04/06/25 15:56:58 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/Script Files/Setup.obs

  BitKeeper/deleted/.del-Default.shl~53f36034d502f789
    1.2 04/06/25 15:56:58 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/Shell Objects/Default.shl

  BitKeeper/deleted/.del-Setup.ins~fc1164dbe4fab00a
    1.2 04/06/25 15:56:57 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/Script Files/Setup.ins

  BitKeeper/deleted/.del-Setup.ino~a4a8e4ff4ecb9208
    1.2 04/06/25 15:56:57 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/Script Files/Setup.ino

  BitKeeper/deleted/.del-Setup.dbg~fda938d4672b152f
    1.2 04/06/25 15:56:57 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/Script Files/Setup.dbg

  BitKeeper/deleted/.del-Servers.fgl~bfa9c448fb6677a8
    1.4 04/06/25 15:56:57 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/File Groups/Servers.fgl

  BitKeeper/deleted/.del-Default.rge~6749c71897080659
    1.2 04/06/25 15:56:57 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/Registry Entries/Default.rge

  BitKeeper/deleted/.del-4.0.XX-classic.ipr~300f789dff606645
    1.2 04/06/25 15:56:57 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/4.0.XX-classic.ipr

  BitKeeper/deleted/.del-Grant Tables.fgl~4e70fbbf80f7c08a
    1.2 04/06/25 15:56:56 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/File Groups/Grant Tables.fgl

  BitKeeper/deleted/.del-Documentation.fgl~9b6931b2da84ca08
    1.2 04/06/25 15:56:56 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/File Groups/Documentation.fgl

  BitKeeper/deleted/.del-Development.fgl~ac14d1ef148e8a98
    1.3 04/06/25 15:56:56 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/File Groups/Development.fgl

  BitKeeper/deleted/.del-Default.fgl~833ee740287c6f79
    1.2 04/06/25 15:56:56 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/Component Definitions/Default.fgl

  BitKeeper/deleted/.del-Default.fdf~4953a6c975a34ea
    1.2 04/06/25 15:56:56 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/File Groups/Default.fdf

  BitKeeper/deleted/.del-Clients and Tools.fgl~2bbd9a12ecb9c515
    1.3 04/06/25 15:56:56 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/File Groups/Clients and Tools.fgl

  BitKeeper/deleted/.del-Default.cdf~b6e79894b8a945c7
    1.2 04/06/25 15:56:55 lenz@mysql.com +0 -0
    Delete: VC++Files/InstallShield/4.0.XX-classic/Component Definitions/Default.cdf

ChangeSet
  1.1685 04/06/25 06:54:01 igor@rurik.mysql.com +2 -0
  af

  sql/sql_yacc.yy
    1.289 04/06/25 06:53:57 igor@rurik.mysql.com +0 -0
    After merge fix

  sql/sql_select.cc
    1.248 04/06/25 06:53:57 igor@rurik.mysql.com +3 -12
    After merge fix

ChangeSet
  1.1684 04/06/25 06:52:01 igor@rurik.mysql.com +2 -0
  After merge fix

  sql/table.h
    1.60 04/06/25 06:51:56 igor@rurik.mysql.com +0 -0
    After merge fix

  sql/sql_base.cc
    1.162 04/06/25 06:51:56 igor@rurik.mysql.com +49 -56
    After merge fix

ChangeSet
  1.1616.592.1 04/06/25 15:12:13 serg@serg.mylan +3 -0
  bug#4008 - merge table cannot determine what key caused "dupl. key" error

  mysql-test/t/merge.test
    1.27 04/06/25 15:12:08 serg@serg.mylan +8 -0
    bug#4008

  mysql-test/r/merge.result
    1.30 04/06/25 15:12:08 serg@serg.mylan +18 -0
    bug#4008

  myisammrg/myrg_write.c
    1.6 04/06/25 15:12:08 serg@serg.mylan +2 -2
    set info->current_table correctly

ChangeSet
  1.1616.566.34 04/06/25 17:04:33 konstantin@mysql.com +3 -0
  Type of MYSQL_BIND::buffer changed to void *

  tests/client_test.c
    1.51.1.50 04/06/25 17:04:30 konstantin@mysql.com +168 -168
    Type of MYSQL_BIND::buffer changed to void *

  libmysql/libmysql.c
    1.156.1.96 04/06/25 17:04:30 konstantin@mysql.com +4 -4
    Type of MYSQL_BIND::buffer changed to void *

  include/mysql.h
    1.130 04/06/25 17:04:30 konstantin@mysql.com +1 -1
    Type of MYSQL_BIND::buffer changed to void *

ChangeSet
  1.1616.591.1 04/06/25 15:16:00 bell@sanja.is.com.ua +4 -0
  type of parameter assignment for parameters from variables added (BUG#4280)

  sql/item.h
    1.56.1.80 04/06/25 15:15:12 bell@sanja.is.com.ua +10 -10
    removed spaces at line ends in Item_param definition

  sql/item.cc
    1.58.1.93 04/06/25 15:15:12 bell@sanja.is.com.ua +4 -0
    type of parameter assignment for parameters from variables

  mysql-test/t/ps.test
    1.7.1.1 04/06/25 15:15:12 bell@sanja.is.com.ua +14 -0
    parameters from variables (for field creation)

  mysql-test/r/ps.result
    1.10.1.1 04/06/25 15:15:12 bell@sanja.is.com.ua +14 -0
    parameters from variables (for field creation)

ChangeSet
  1.1616.566.31 04/06/25 13:11:02 serg@serg.mylan +1 -0
  Bug#3808 - fulltext index, delete, 2-level tree, the word on the 1st level has different length than the key (latin1_german2_ci)

  myisam/mi_delete.c
    1.29 04/06/25 13:10:57 serg@serg.mylan +1 -0
    Bug#3808 - fulltext index, delete, 2-level tree, the word on the 1st level has different length than the key (latin1_german2_ci)

ChangeSet
  1.1616.590.2 04/06/25 15:26:50 ram@gw.mysql.r18.ru +1 -0
  Changed a comment.

  scripts/mysql_fix_privilege_tables.sh
    1.23 04/06/25 15:26:47 ram@gw.mysql.r18.ru +1 -1
    Changed a comment.

ChangeSet
  1.1616.590.1 04/06/25 15:09:26 ram@gw.mysql.r18.ru +1 -0
  a fix (bug #4241: system_mysql_db_fix.test fails)

  scripts/mysql_fix_privilege_tables.sh
    1.22 04/06/25 15:09:23 ram@gw.mysql.r18.ru +1 -0
    a fix (bug #4241: system_mysql_db_fix.test fails)

ChangeSet
  1.1644.8.3 04/06/25 02:54:05 igor@rurik.mysql.com +2 -0
  sql_select.cc, sql_parse.cc:
    Nested joins: review modifications.

  sql/sql_select.cc
    1.235.2.2 04/06/25 02:53:10 igor@rurik.mysql.com +13 -19
    Nested joins: review modifications.

  sql/sql_parse.cc
    1.323.1.2 04/06/25 02:45:07 igor@rurik.mysql.com +0 -1
    Nested joins: review modifications.

ChangeSet
  1.1346.1.543 04/06/25 11:35:37 ingo@mysql.com +1 -0
  Prevent potential problems on 32-Bit machines.

  mysys/my_lock.c
    1.10.1.1 04/06/25 11:34:58 ingo@mysql.com +4 -4
    Prevent potential problems on 32-Bit machines.

ChangeSet
  1.1616.566.30 04/06/25 11:33:03 serg@serg.mylan +3 -0
  remove ^M's
  compile even without InnoDB

  sql/mysqld.cc
    1.356.1.121 04/06/25 11:32:57 serg@serg.mylan +2 -0
    compile even without InnoDB !

  mysql-test/t/system_mysql_db_refs.test
    1.5 04/06/25 11:32:57 serg@serg.mylan +1 -0
    remove ^M's

  mysql-test/t/system_mysql_db_fix.test
    1.5 04/06/25 11:32:57 serg@serg.mylan +1 -0
    remove ^M's

ChangeSet
  1.1616.589.1 04/06/25 11:37:43 bell@sanja.is.com.ua +4 -0
  fixed EXPLAIN behaviour with prepared statements (BUG#4271)

  sql/sql_select.cc
    1.216.78.1 04/06/25 11:37:17 bell@sanja.is.com.ua +0 -1
    removed unneed assignment

  sql/sql_prepare.cc
    1.34.1.79 04/06/25 11:37:17 bell@sanja.is.com.ua +12 -10
    explain pave to be prepared, too
    cleanup options after explain execution

  mysql-test/t/ps.test
    1.8 04/06/25 11:37:17 bell@sanja.is.com.ua +27 -1
    fix layout and table removing of previous tests
    test of prepared EXPLAIN

  mysql-test/r/ps.result
    1.11 04/06/25 11:37:17 bell@sanja.is.com.ua +42 -0
    test of prepared EXPLAIN

ChangeSet
  1.1616.566.29 04/06/25 00:43:14 patg@krsna.patg.net +68 -0
  Many files:
    new file

  VC++Files/InstallShield/4.1.XX-pro/Text Substitutions/Setup.tsb
    1.1 04/06/25 00:42:17 patg@krsna.patg.net +76 -0

  VC++Files/InstallShield/4.1.XX-pro/Text Substitutions/Setup.tsb
    1.0 04/06/25 00:42:17 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/Text Substitutions/Setup.tsb

  VC++Files/InstallShield/4.1.XX-pro/Text Substitutions/Build.tsb
    1.1 04/06/25 00:42:16 patg@krsna.patg.net +56 -0

  VC++Files/InstallShield/4.1.XX-pro/Text Substitutions/Build.tsb
    1.0 04/06/25 00:42:16 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/Text Substitutions/Build.tsb

  VC++Files/InstallShield/4.1.XX-pro/String Tables/Default.shl
    1.1 04/06/25 00:42:15 patg@krsna.patg.net +74 -0

  VC++Files/InstallShield/4.1.XX-pro/String Tables/Default.shl
    1.0 04/06/25 00:42:15 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/String Tables/Default.shl

  VC++Files/InstallShield/4.1.XX-pro/String Tables/0009-English/value.shl
    1.1 04/06/25 00:42:14 patg@krsna.patg.net +23 -0

  VC++Files/InstallShield/4.1.XX-pro/String Tables/0009-English/value.shl
    1.0 04/06/25 00:42:14 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/String Tables/0009-English/value.shl

  VC++Files/InstallShield/4.1.XX-pro/Shell Objects/Default.shl
    1.1 04/06/25 00:42:13 patg@krsna.patg.net +12 -0

  VC++Files/InstallShield/4.1.XX-pro/Shell Objects/Default.shl
    1.0 04/06/25 00:42:13 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/Shell Objects/Default.shl

  VC++Files/InstallShield/4.1.XX-pro/Setup Files/Uncompressed Files/Language Independent/OS Independent/setup.bmp
    1.1 04/06/25 00:42:12 patg@krsna.patg.net +350 -0

  VC++Files/InstallShield/4.1.XX-pro/Setup Files/Uncompressed Files/Language Independent/OS Independent/setup.bmp
    1.0 04/06/25 00:42:12 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/Setup Files/Uncompressed Files/Language Independent/OS Independent/setup.bmp

  VC++Files/InstallShield/4.1.XX-pro/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt
    1.1 04/06/25 00:42:11 patg@krsna.patg.net +25 -0

  VC++Files/InstallShield/4.1.XX-pro/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt
    1.0 04/06/25 00:42:11 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt

  VC++Files/InstallShield/4.1.XX-pro/Script Files/setup.rul
    1.1 04/06/25 00:42:10 patg@krsna.patg.net +641 -0

  VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.rul.old
    1.1 04/06/25 00:42:10 patg@krsna.patg.net +640 -0

  VC++Files/InstallShield/4.1.XX-pro/Script Files/setup.rul
    1.0 04/06/25 00:42:10 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/Script Files/setup.rul

  VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.rul.old
    1.0 04/06/25 00:42:10 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.rul.old

  VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.obs
    1.1 04/06/25 00:42:09 patg@krsna.patg.net +1460 -0

  VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.obs
    1.0 04/06/25 00:42:09 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.obs

  VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.ins
    1.1 04/06/25 00:42:08 patg@krsna.patg.net +1271 -0

  VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.ino
    1.1 04/06/25 00:42:08 patg@krsna.patg.net +1304 -0

  VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.ins
    1.0 04/06/25 00:42:08 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.ins

  VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.ino
    1.0 04/06/25 00:42:08 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.ino

  VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.dbg
    1.1 04/06/25 00:42:07 patg@krsna.patg.net +634 -0

  VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.dbg
    1.0 04/06/25 00:42:07 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/Script Files/Setup.dbg

  VC++Files/InstallShield/4.1.XX-pro/Registry Entries/Default.rge
    1.1 04/06/25 00:42:06 patg@krsna.patg.net +4 -0

  VC++Files/InstallShield/4.1.XX-pro/Registry Entries/Default.rge
    1.0 04/06/25 00:42:06 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/Registry Entries/Default.rge

  VC++Files/InstallShield/4.1.XX-pro/File Groups/Servers.fgl
    1.1 04/06/25 00:42:05 patg@krsna.patg.net +251 -0

  VC++Files/InstallShield/4.1.XX-pro/File Groups/Servers.fgl
    1.0 04/06/25 00:42:05 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/File Groups/Servers.fgl

  VC++Files/InstallShield/4.1.XX-pro/File Groups/Grant Tables.fgl
    1.1 04/06/25 00:42:04 patg@krsna.patg.net +51 -0

  VC++Files/InstallShield/4.1.XX-pro/File Groups/Grant Tables.fgl
    1.0 04/06/25 00:42:04 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/File Groups/Grant Tables.fgl

  VC++Files/InstallShield/4.1.XX-pro/File Groups/Documentation.fgl
    1.1 04/06/25 00:42:00 patg@krsna.patg.net +100 -0

  VC++Files/InstallShield/4.1.XX-pro/File Groups/Development.fgl
    1.1 04/06/25 00:42:00 patg@krsna.patg.net +242 -0

  VC++Files/InstallShield/4.1.XX-pro/File Groups/Documentation.fgl
    1.0 04/06/25 00:42:00 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/File Groups/Documentation.fgl

  VC++Files/InstallShield/4.1.XX-pro/File Groups/Development.fgl
    1.0 04/06/25 00:42:00 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/File Groups/Development.fgl

  VC++Files/InstallShield/4.1.XX-pro/File Groups/Default.fdf
    1.1 04/06/25 00:41:20 patg@krsna.patg.net +82 -0

  VC++Files/InstallShield/4.1.XX-pro/File Groups/Default.fdf
    1.0 04/06/25 00:41:20 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/File Groups/Default.fdf

  VC++Files/InstallShield/4.1.XX-pro/File Groups/Clients and Tools.fgl
    1.1 04/06/25 00:41:19 patg@krsna.patg.net +34 -0

  VC++Files/InstallShield/4.1.XX-pro/File Groups/Clients and Tools.fgl
    1.0 04/06/25 00:41:19 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/File Groups/Clients and Tools.fgl

  VC++Files/InstallShield/4.1.XX-pro/Component Definitions/Default.fgl
    1.1 04/06/25 00:41:18 patg@krsna.patg.net +42 -0

  VC++Files/InstallShield/4.1.XX-pro/Component Definitions/Default.cdf
    1.1 04/06/25 00:41:18 patg@krsna.patg.net +192 -0

  VC++Files/InstallShield/4.1.XX-pro/Component Definitions/Default.fgl
    1.0 04/06/25 00:41:18 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/Component Definitions/Default.fgl

  VC++Files/InstallShield/4.1.XX-pro/Component Definitions/Default.cdf
    1.0 04/06/25 00:41:18 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/Component Definitions/Default.cdf

  VC++Files/InstallShield/4.1.XX-pro/4.1.XX-pro.ipr
    1.1 04/06/25 00:41:17 patg@krsna.patg.net +52 -0

  VC++Files/InstallShield/4.1.XX-gpl/Text Substitutions/Setup.tsb
    1.1 04/06/25 00:41:17 patg@krsna.patg.net +76 -0

  VC++Files/InstallShield/4.1.XX-pro/4.1.XX-pro.ipr
    1.0 04/06/25 00:41:17 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-pro/4.1.XX-pro.ipr

  VC++Files/InstallShield/4.1.XX-gpl/Text Substitutions/Setup.tsb
    1.0 04/06/25 00:41:17 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/Text Substitutions/Setup.tsb

  VC++Files/InstallShield/4.1.XX-gpl/Text Substitutions/Build.tsb
    1.1 04/06/25 00:41:16 patg@krsna.patg.net +56 -0

  VC++Files/InstallShield/4.1.XX-gpl/Text Substitutions/Build.tsb
    1.0 04/06/25 00:41:16 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/Text Substitutions/Build.tsb

  VC++Files/InstallShield/4.1.XX-gpl/String Tables/Default.shl
    1.1 04/06/25 00:41:15 patg@krsna.patg.net +74 -0

  VC++Files/InstallShield/4.1.XX-gpl/String Tables/0009-English/value.shl
    1.1 04/06/25 00:41:15 patg@krsna.patg.net +23 -0

  VC++Files/InstallShield/4.1.XX-gpl/String Tables/Default.shl
    1.0 04/06/25 00:41:15 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/String Tables/Default.shl

  VC++Files/InstallShield/4.1.XX-gpl/String Tables/0009-English/value.shl
    1.0 04/06/25 00:41:15 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/String Tables/0009-English/value.shl

  VC++Files/InstallShield/4.1.XX-gpl/Shell Objects/Default.shl
    1.1 04/06/25 00:41:12 patg@krsna.patg.net +12 -0

  VC++Files/InstallShield/4.1.XX-gpl/Setup Files/Uncompressed Files/Language Independent/OS Independent/setup.bmp
    1.1 04/06/25 00:41:12 patg@krsna.patg.net +350 -0

  VC++Files/InstallShield/4.1.XX-gpl/Shell Objects/Default.shl
    1.0 04/06/25 00:41:12 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/Shell Objects/Default.shl

  VC++Files/InstallShield/4.1.XX-gpl/Setup Files/Uncompressed Files/Language Independent/OS Independent/setup.bmp
    1.0 04/06/25 00:41:12 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/Setup Files/Uncompressed Files/Language Independent/OS Independent/setup.bmp

  VC++Files/InstallShield/4.1.XX-gpl/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt
    1.1 04/06/25 00:41:10 patg@krsna.patg.net +25 -0

  VC++Files/InstallShield/4.1.XX-gpl/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt
    1.0 04/06/25 00:41:10 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt

  VC++Files/InstallShield/4.1.XX-gpl/Script Files/setup.rul
    1.1 04/06/25 00:41:07 patg@krsna.patg.net +641 -0

  VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.rul.old
    1.1 04/06/25 00:41:07 patg@krsna.patg.net +640 -0

  VC++Files/InstallShield/4.1.XX-gpl/Script Files/setup.rul
    1.0 04/06/25 00:41:07 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/Script Files/setup.rul

  VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.rul.old
    1.0 04/06/25 00:41:07 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.rul.old

  VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.obs
    1.1 04/06/25 00:41:06 patg@krsna.patg.net +1460 -0

  VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.obs
    1.0 04/06/25 00:41:06 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.obs

  VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.ins
    1.1 04/06/25 00:41:05 patg@krsna.patg.net +1271 -0

  VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.ino
    1.1 04/06/25 00:41:05 patg@krsna.patg.net +1304 -0

  VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.ins
    1.0 04/06/25 00:41:05 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.ins

  VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.ino
    1.0 04/06/25 00:41:05 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.ino

  VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.dbg
    1.1 04/06/25 00:41:04 patg@krsna.patg.net +634 -0

  VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.dbg
    1.0 04/06/25 00:41:04 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/Script Files/Setup.dbg

  VC++Files/InstallShield/4.1.XX-gpl/Registry Entries/Default.rge
    1.1 04/06/25 00:41:03 patg@krsna.patg.net +4 -0

  VC++Files/InstallShield/4.1.XX-gpl/Registry Entries/Default.rge
    1.0 04/06/25 00:41:03 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/Registry Entries/Default.rge

  VC++Files/InstallShield/4.1.XX-gpl/File Groups/Servers.fgl
    1.1 04/06/25 00:41:02 patg@krsna.patg.net +253 -0

  VC++Files/InstallShield/4.1.XX-gpl/File Groups/Grant Tables.fgl
    1.1 04/06/25 00:41:02 patg@krsna.patg.net +52 -0

  VC++Files/InstallShield/4.1.XX-gpl/File Groups/Servers.fgl
    1.0 04/06/25 00:41:02 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/File Groups/Servers.fgl

  VC++Files/InstallShield/4.1.XX-gpl/File Groups/Grant Tables.fgl
    1.0 04/06/25 00:41:02 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/File Groups/Grant Tables.fgl

  VC++Files/InstallShield/4.1.XX-gpl/File Groups/Documentation.fgl
    1.1 04/06/25 00:41:01 patg@krsna.patg.net +100 -0

  VC++Files/InstallShield/4.1.XX-gpl/File Groups/Documentation.fgl
    1.0 04/06/25 00:41:01 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/File Groups/Documentation.fgl

  VC++Files/InstallShield/4.1.XX-gpl/File Groups/Development.fgl
    1.1 04/06/25 00:41:00 patg@krsna.patg.net +243 -0

  VC++Files/InstallShield/4.1.XX-gpl/File Groups/Development.fgl
    1.0 04/06/25 00:41:00 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/File Groups/Development.fgl

  VC++Files/InstallShield/4.1.XX-gpl/File Groups/Default.fdf
    1.1 04/06/25 00:40:58 patg@krsna.patg.net +82 -0

  VC++Files/InstallShield/4.1.XX-gpl/File Groups/Default.fdf
    1.0 04/06/25 00:40:58 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/File Groups/Default.fdf

  VC++Files/InstallShield/4.1.XX-gpl/File Groups/Clients and Tools.fgl
    1.1 04/06/25 00:40:57 patg@krsna.patg.net +35 -0

  VC++Files/InstallShield/4.1.XX-gpl/Component Definitions/Default.fgl
    1.1 04/06/25 00:40:57 patg@krsna.patg.net +42 -0

  VC++Files/InstallShield/4.1.XX-gpl/File Groups/Clients and Tools.fgl
    1.0 04/06/25 00:40:57 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/File Groups/Clients and Tools.fgl

  VC++Files/InstallShield/4.1.XX-gpl/Component Definitions/Default.fgl
    1.0 04/06/25 00:40:57 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/Component Definitions/Default.fgl

  VC++Files/InstallShield/4.1.XX-gpl/Component Definitions/Default.cdf
    1.1 04/06/25 00:40:56 patg@krsna.patg.net +192 -0

  VC++Files/InstallShield/4.1.XX-gpl/4.1.XX-gpl.ipr
    1.1 04/06/25 00:40:56 patg@krsna.patg.net +51 -0

  VC++Files/InstallShield/4.1.XX-gpl/Component Definitions/Default.cdf
    1.0 04/06/25 00:40:56 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/Component Definitions/Default.cdf

  VC++Files/InstallShield/4.1.XX-gpl/4.1.XX-gpl.ipr
    1.0 04/06/25 00:40:56 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-gpl/4.1.XX-gpl.ipr

  VC++Files/InstallShield/4.1.XX-classic/Text Substitutions/Setup.tsb
    1.1 04/06/25 00:40:55 patg@krsna.patg.net +76 -0

  VC++Files/InstallShield/4.1.XX-classic/Text Substitutions/Build.tsb
    1.1 04/06/25 00:40:55 patg@krsna.patg.net +56 -0

  VC++Files/InstallShield/4.1.XX-classic/Text Substitutions/Setup.tsb
    1.0 04/06/25 00:40:55 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/Text Substitutions/Setup.tsb

  VC++Files/InstallShield/4.1.XX-classic/Text Substitutions/Build.tsb
    1.0 04/06/25 00:40:55 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/Text Substitutions/Build.tsb

  VC++Files/InstallShield/4.1.XX-classic/String Tables/Default.shl
    1.1 04/06/25 00:40:54 patg@krsna.patg.net +74 -0

  VC++Files/InstallShield/4.1.XX-classic/String Tables/Default.shl
    1.0 04/06/25 00:40:54 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/String Tables/Default.shl

  VC++Files/InstallShield/4.1.XX-classic/String Tables/0009-English/value.shl
    1.1 04/06/25 00:40:53 patg@krsna.patg.net +23 -0

  VC++Files/InstallShield/4.1.XX-classic/String Tables/0009-English/value.shl
    1.0 04/06/25 00:40:53 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/String Tables/0009-English/value.shl

  VC++Files/InstallShield/4.1.XX-classic/Shell Objects/Default.shl
    1.1 04/06/25 00:40:51 patg@krsna.patg.net +12 -0

  VC++Files/InstallShield/4.1.XX-classic/Shell Objects/Default.shl
    1.0 04/06/25 00:40:51 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/Shell Objects/Default.shl

  VC++Files/InstallShield/4.1.XX-classic/Setup Files/Uncompressed Files/Language Independent/OS Independent/setup.bmp
    1.1 04/06/25 00:40:50 patg@krsna.patg.net +350 -0

  VC++Files/InstallShield/4.1.XX-classic/Setup Files/Uncompressed Files/Language Independent/OS Independent/setup.bmp
    1.0 04/06/25 00:40:50 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/Setup Files/Uncompressed Files/Language Independent/OS Independent/setup.bmp

  VC++Files/InstallShield/4.1.XX-classic/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt
    1.1 04/06/25 00:40:48 patg@krsna.patg.net +25 -0

  VC++Files/InstallShield/4.1.XX-classic/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt
    1.0 04/06/25 00:40:48 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt

  VC++Files/InstallShield/4.1.XX-classic/Script Files/setup.rul
    1.1 04/06/25 00:40:47 patg@krsna.patg.net +641 -0

  VC++Files/InstallShield/4.1.XX-classic/Script Files/setup.rul
    1.0 04/06/25 00:40:47 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/Script Files/setup.rul

  VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.rul.old
    1.1 04/06/25 00:40:46 patg@krsna.patg.net +640 -0

  VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.obs
    1.1 04/06/25 00:40:46 patg@krsna.patg.net +1460 -0

  VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.rul.old
    1.0 04/06/25 00:40:46 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.rul.old

  VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.obs
    1.0 04/06/25 00:40:46 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.obs

  VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.ins
    1.1 04/06/25 00:40:45 patg@krsna.patg.net +1271 -0

  VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.ins
    1.0 04/06/25 00:40:45 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.ins

  VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.ino
    1.1 04/06/25 00:40:44 patg@krsna.patg.net +1304 -0

  VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.ino
    1.0 04/06/25 00:40:44 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.ino

  VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.dbg
    1.1 04/06/25 00:40:43 patg@krsna.patg.net +634 -0

  VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.dbg
    1.0 04/06/25 00:40:43 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/Script Files/Setup.dbg

  VC++Files/InstallShield/4.1.XX-classic/File Groups/Servers.fgl
    1.1 04/06/25 00:40:42 patg@krsna.patg.net +251 -0

  VC++Files/InstallShield/4.1.XX-classic/File Groups/Servers.fgl
    1.0 04/06/25 00:40:42 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/File Groups/Servers.fgl

  VC++Files/InstallShield/4.1.XX-classic/File Groups/Grant Tables.fgl
    1.1 04/06/25 00:40:41 patg@krsna.patg.net +52 -0

  VC++Files/InstallShield/4.1.XX-classic/File Groups/Documentation.fgl
    1.1 04/06/25 00:40:41 patg@krsna.patg.net +100 -0

  VC++Files/InstallShield/4.1.XX-classic/File Groups/Grant Tables.fgl
    1.0 04/06/25 00:40:41 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/File Groups/Grant Tables.fgl

  VC++Files/InstallShield/4.1.XX-classic/File Groups/Documentation.fgl
    1.0 04/06/25 00:40:41 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/File Groups/Documentation.fgl

  VC++Files/InstallShield/4.1.XX-classic/File Groups/Development.fgl
    1.1 04/06/25 00:40:40 patg@krsna.patg.net +241 -0

  VC++Files/InstallShield/4.1.XX-classic/File Groups/Development.fgl
    1.0 04/06/25 00:40:40 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/File Groups/Development.fgl

  VC++Files/InstallShield/4.1.XX-classic/File Groups/Default.fdf
    1.1 04/06/25 00:40:38 patg@krsna.patg.net +82 -0

  VC++Files/InstallShield/4.1.XX-classic/File Groups/Default.fdf
    1.0 04/06/25 00:40:38 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/File Groups/Default.fdf

  VC++Files/InstallShield/4.1.XX-classic/File Groups/Clients and Tools.fgl
    1.1 04/06/25 00:40:27 patg@krsna.patg.net +34 -0

  VC++Files/InstallShield/4.1.XX-classic/File Groups/Clients and Tools.fgl
    1.0 04/06/25 00:40:27 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/File Groups/Clients and Tools.fgl

  VC++Files/InstallShield/4.1.XX-classic/Component Definitions/Default.fgl
    1.1 04/06/25 00:40:26 patg@krsna.patg.net +42 -0

  VC++Files/InstallShield/4.1.XX-classic/Component Definitions/Default.fgl
    1.0 04/06/25 00:40:26 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/Component Definitions/Default.fgl

  VC++Files/InstallShield/4.1.XX-classic/Component Definitions/Default.cdf
    1.1 04/06/25 00:40:22 patg@krsna.patg.net +192 -0

  VC++Files/InstallShield/4.1.XX-classic/4.1.XX-classic.ipr
    1.1 04/06/25 00:40:22 patg@krsna.patg.net +51 -0

  VC++Files/InstallShield/4.1.XX-classic/Component Definitions/Default.cdf
    1.0 04/06/25 00:40:22 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/Component Definitions/Default.cdf

  VC++Files/InstallShield/4.1.XX-classic/4.1.XX-classic.ipr
    1.0 04/06/25 00:40:22 patg@krsna.patg.net +0 -0
    BitKeeper file /home/patg/mysql-4.1/VC++Files/InstallShield/4.1.XX-classic/4.1.XX-classic.ipr

ChangeSet
  1.1616.566.28 04/06/25 10:30:24 dlenev@brandersnatch.localdomain +1 -0
  Small build fix.
  Add my_time.h to list of headers which should be put ot include/ during make dist.

  include/Makefile.am
    1.48 04/06/25 10:30:01 dlenev@brandersnatch.localdomain +1 -1
    Add my_time.h to list of headers which should be put ot include/ during make dist.

ChangeSet
  1.1616.566.27 04/06/25 01:43:41 serg@serg.mylan +1 -0
  undone

  sql/sql_select.cc
    1.216.1.127 04/06/25 01:43:35 serg@serg.mylan +1 -1
    undone

ChangeSet
  1.1616.566.26 04/06/25 01:25:02 serg@serg.mylan +1 -0
  workaround for gcc 2.95.3 bug
  anybody knows how to distinguish 2.95.3 from 2.95.4 (which is ok) ?

  sql/opt_range.cc
    1.98.1.24 04/06/25 01:24:54 serg@serg.mylan +3 -0
    workaround for gcc 2.95.3 bug
    anybody knows how to distinguish 2.95.3 from 2.95.4 (which is ok) ?

ChangeSet
  1.1616.588.1 04/06/25 00:50:48 serg@serg.mylan +1 -0
  free open cursors

  sql/sql_select.cc
    1.216.1.126 04/06/25 00:50:37 serg@serg.mylan +1 -1
    free open cursors

ChangeSet
  1.1616.566.24 04/06/25 01:30:43 konstantin@mysql.com +1 -0
  One more const method.

  sql/handler.h
    1.89.1.28 04/06/25 01:30:39 konstantin@mysql.com +1 -1
    One more const method.

ChangeSet
  1.1616.566.23 04/06/25 01:19:54 konstantin@mysql.com +3 -0
  Followup to cleanup in handler interface.

  sql/handler.h
    1.89.1.27 04/06/25 01:19:09 konstantin@mysql.com +2 -2
    - max_supported_key_part_length() is const now
    - removed warning about wrong order of initializer in handler ocnstructor.

  sql/ha_myisammrg.h
    1.33 04/06/25 01:19:09 konstantin@mysql.com +1 -1
    - max_supported_key_part_length() is const now

  sql/ha_myisam.h
    1.59 04/06/25 01:19:09 konstantin@mysql.com +1 -1
    - max_supported_key_part_length() is const now

ChangeSet
  1.1616.586.1 04/06/25 01:14:12 vva@eagle.mysql.r18.ru +1 -0
  fixed bug #1851 "mysqldump does not return 
  an error code if the output device is filled"

  client/mysqldump.c
    1.133.2.1 04/06/25 01:14:07 vva@eagle.mysql.r18.ru +103 -0
    fixed bug #1851 "mysqldump does not return 
    an error code if the output device is filled"

ChangeSet
  1.676.1.767 04/06/24 22:15:15 bell@sanja.is.com.ua +2 -0
  parameter of my_yyoverflow made independed from YYSIZE_T (BUG#4204)

  sql/sql_yacc.yy
    1.82.2.16 04/06/24 22:15:07 bell@sanja.is.com.ua +2 -2
    parameter of my_yyoverflow made independed from YYSIZE_T

  sql/sql_parse.cc
    1.120.2.42 04/06/24 22:15:07 bell@sanja.is.com.ua +2 -2
    parameter of my_yyoverflow made independed from YYSIZE_T

ChangeSet
  1.1616.566.20 04/06/24 22:47:05 konstantin@mysql.com +1 -0
  Previous commit didn't make it (tree fix): I'd forgotten semicolon.

  Makefile.am
    1.58 04/06/24 22:47:01 konstantin@mysql.com +1 -1
    Previous commit didn't make it: I'd forgotten semicolon.

ChangeSet
  1.1616.585.2 04/06/24 22:33:40 konstantin@mysql.com +1 -0
  Fix of broken 4.1 tree: 
  Initially my_time.c was added to sql/ link_sources target only.
  As it turns out this target is sometimes not called; instead of it
  make calls one hard-coded in top-level Makefile.am.
  Now adding linking of my_time.c to the top-level Makefile.am
  to (hopefully) cover all cases.

  Makefile.am
    1.57 04/06/24 22:32:14 konstantin@mysql.com +2 -1
    Fix of broken 4.1 tree: 
    - my_time.c was added to link_sources target.

ChangeSet
  1.1616.584.1 04/06/24 21:50:04 konstantin@mysql.com +1 -0
  A little fix in libmysqld: my_time.c was added twice.

  libmysqld/Makefile.am
    1.29.1.25 04/06/24 21:50:01 konstantin@mysql.com +1 -1
    A little fix in libmysqld: my_time.c was added twice.

ChangeSet
  1.1616.583.1 04/06/24 19:46:50 serg@serg.mylan +5 -0
  bug#4089 - JOIN::join_free calling mysql_unlock w/o index_end() before

  sql/sql_select.cc
    1.216.77.1 04/06/24 19:46:45 serg@serg.mylan +26 -8
    JOIN::join_free - pass it down the tree (of selects)
    call mysql_unlock_tables only in top-level select

  sql/opt_range.cc
    1.98.1.23 04/06/24 19:46:45 serg@serg.mylan +2 -1
    be sloppy

  mysql-test/t/bdb.test
    1.35 04/06/24 19:46:45 serg@serg.mylan +10 -7
    bug#4089

  mysql-test/r/bdb.result
    1.37 04/06/24 19:46:45 serg@serg.mylan +20 -0
    bug#4089

  sql/ha_myisam.h
    1.58 04/06/24 19:37:46 serg@serg.mylan +1 -1
    cleanup

ChangeSet
  1.1346.648.2 04/06/24 12:22:48 mwagner@here.mwagner.org +2 -0
  logger.pm, Bootstrap:
    Updates for output enhanced Bootstrap

  Build-tools/logger.pm
    1.4 04/06/24 12:21:43 mwagner@here.mwagner.org +11 -4
    Updates for output enhanced Bootstrap

  Build-tools/Bootstrap
    1.8.1.12 04/06/24 12:21:24 mwagner@here.mwagner.org +5 -4
    Updates for output enhanced Bootstrap

ChangeSet
  1.1616.580.3 04/06/24 19:16:44 lenz@mysql.com +1 -0
   - start the ndb cluster on different TCP ports when running another
     build thread

  Build-tools/Do-compile
    1.90 04/06/24 19:16:39 lenz@mysql.com +7 -1
     - start the ndb cluster on different TCP ports when running another
       build thread

ChangeSet
  1.1616.580.2 04/06/24 18:17:47 lenz@mysql.com +1 -0
   - Windows compile fix: added missing file tztime.cpp to the mysqld
     project file

  VC++Files/sql/mysqld.dsp
    1.17.2.1 04/06/24 18:17:40 lenz@mysql.com +4 -0
     - added missing file tztime.cpp to the mysqld project file

ChangeSet
  1.1616.566.15 04/06/24 20:08:42 konstantin@mysql.com +3 -0
  - fixed test_frm_bug test to work with increased number of columns in
  result of SHOW TABLE STATUS

  sql-common/my_time.c
    1.1 04/06/24 20:08:39 konstantin@mysql.com +561 -0

  tests/client_test.c
    1.51.1.49 04/06/24 20:08:39 konstantin@mysql.com +2 -2
    - fixed test_frm_bug test to work with increased number of columns in
    result of SHOW TABLE STATUS

  sql-common/my_time.c
    1.0 04/06/24 20:08:39 konstantin@mysql.com +0 -0
    BitKeeper file /home/kostja/mysql/mysql-4.1-4030/sql-common/my_time.c

  BitKeeper/etc/ignore
    1.153.1.39 04/06/24 20:02:29 konstantin@mysql.com +1 -0
    added libmysqld/my_time.c

  BitKeeper/etc/ignore
    1.153.1.38 04/06/24 20:02:24 konstantin@mysql.com +1 -0
    added libmysql/my_time.c

  BitKeeper/etc/ignore
    1.153.1.37 04/06/24 20:02:19 konstantin@mysql.com +1 -0
    added sql/my_time.c

ChangeSet
  1.1616.579.1 04/06/24 19:08:36 konstantin@mysql.com +25 -0
  Fix for Bug#4030 "Client side conversion string -> date type doesn't 
  work (prepared statements)" and after-review fixes:
  - str_to_TIME renamed to str_to_datetime to pair with str_to_time
  - functions str_to_time and str_to_TIME moved to sql-common
  - send_data_str now supports MYSQL_TYPE_TIME, MYSQL_TIME_DATE,
    MYSQL_TIME_DATETIME types of user input buffers.
  - few more comments in the client library
  - a test case added.

  include/mysql_time.h
    1.1 04/06/24 19:08:32 konstantin@mysql.com +37 -0

  include/my_time.h
    1.1 04/06/24 19:08:32 konstantin@mysql.com +46 -0

  tests/client_test.c
    1.51.1.48 04/06/24 19:08:32 konstantin@mysql.com +76 -0
    - a test case for Bug#4030 "Client side conversion string -> date type 
    doesn't work (prepared statements)"

  sql/tztime.cc
    1.2.2.1 04/06/24 19:08:32 konstantin@mysql.com +3 -3
    - TIMESTAMP_{TIME,DATE,DATETIME,...} renamed to 
      MYSQL_TIMESTAMP_{TIME,DATETIME,DATE,...}

  sql/time.cc
    1.48 04/06/24 19:08:32 konstantin@mysql.com +28 -557
    - str_to_time and str_to_TIME moved to mysys
    - TIMESTAMP_{TIME,DATE,DATETIME,...} renamed to 
      MYSQL_TIMESTAMP_{TIME,DATETIME,DATE,...} as these names are now
      exported to client.
    - str_to_TIME renamed to str_to_datetime to pair with str_to_time
    - str_to_TIME_with_warn renamed accordingly

  sql/structs.h
    1.36.1.1 04/06/24 19:08:32 konstantin@mysql.com +7 -16
    - declarations for TIME and timestamp_type replaced with typedefs
    - str_to_datetime arguments moved to mysys headers

  sql/sql_yacc.yy
    1.203.111.1 04/06/24 19:08:32 konstantin@mysql.com +3 -3
    - s/\<TIMESTAMP_/MYSQL_TIMESTAMP/gc

  sql/sql_prepare.cc
    1.34.22.1 04/06/24 19:08:32 konstantin@mysql.com +6 -39
    - TIMESTAMP_{TIME,DATE,DATETIME} were renamed to
      MYSQL_TIMESTAMP_{TIME,DATE,DATETIME}
    - embedded library implementation of set_param_{time,date,datetime} is
    much simplier now, as MYSQL_TIME is the same as TIME.

  sql/set_var.h
    1.54 04/06/24 19:08:32 konstantin@mysql.com +1 -1
    - fixed timestamp_type usage to be compatible with typedef.

  sql/set_var.cc
    1.34.1.90 04/06/24 19:08:32 konstantin@mysql.com +3 -3
    - TIMESTAMP_{TIME,DATE,DATETIME,...} renamed to 
      MYSQL_TIMESTAMP_{TIME,DATETIME,DATE,...}

  sql/mysqld.cc
    1.356.62.1 04/06/24 19:08:32 konstantin@mysql.com +9 -18
    - log_10_int moved to mysys (it's used by str_to_TIME and str_to_time)
    - enum values TIMESTAMP_{TIME,DATE,DATETIME} were renamed to
      MYSQL_TIMESTAMP_{TIME,DATE,DATETIME}

  sql/mysql_priv.h
    1.186.78.1 04/06/24 19:08:32 konstantin@mysql.com +3 -5
    - added typedefs for TIME and timestamp_type
    - removed declarations for str_to_time and str_to_TIME (now this functions
      reside in mysys)

  sql/item_timefunc.cc
    1.51.1.13 04/06/24 19:08:32 konstantin@mysql.com +34 -32
    - TIMESTAMP_{TIME,DATE,DATETIME,...} renamed to 
      MYSQL_TIMESTAMP_{TIME,DATETIME,DATE,...}

  include/mysql_time.h
    1.0 04/06/24 19:08:32 konstantin@mysql.com +0 -0
    BitKeeper file /home/kostja/mysql/mysql-4.1-4030/include/mysql_time.h

  include/my_time.h
    1.0 04/06/24 19:08:32 konstantin@mysql.com +0 -0
    BitKeeper file /home/kostja/mysql/mysql-4.1-4030/include/my_time.h

  sql/item.cc
    1.58.1.92 04/06/24 19:08:31 konstantin@mysql.com +2 -2
    - TIMESTAMP_{TIME,DATE,DATETIME,...} renamed to 
      MYSQL_TIMESTAMP_{TIME,DATETIME,DATE,...}

  sql/field.cc
    1.163.1.1 04/06/24 19:08:31 konstantin@mysql.com +44 -41
    - TIMESTAMP_{TIME,DATE,DATETIME,...} renamed to 
      MYSQL_TIMESTAMP_{TIME,DATETIME,DATE,...}

  sql/Makefile.am
    1.77.1.23 04/06/24 19:08:31 konstantin@mysql.com +4 -1
    my_time.c added to the list of mysqld sources.

  sql-common/Makefile.am
    1.2 04/06/24 19:08:31 konstantin@mysql.com +1 -1
    - my_time.c added to the list of files included into source distribution.

  libmysqld/Makefile.am
    1.29.1.24 04/06/24 19:08:31 konstantin@mysql.com +3 -2
    - my_time.c added

  libmysql/libmysql.c
    1.156.1.95 04/06/24 19:08:31 konstantin@mysql.com +61 -27
    Fix for bug#4030 "Client side conversion string -> date type doesn't work
     (prepared statements)" and cleanup.
    - added case labels for TIME/DATE/DATETIME types to send_data_str
    - comments for read_binary_{date,time,datetime}, fetch_result_*, fetch_results.

  libmysql/Makefile.shared
    1.53 04/06/24 19:08:31 konstantin@mysql.com +1 -1
    - my_time.lo added to the list of libmysql objects

  include/mysql.h
    1.129 04/06/24 19:08:31 konstantin@mysql.com +1 -17
    - declarations for MYSQL_TIME and enum_mysql_timestamp_type moved to 
    mysql_time.h, which is in shared use of client library and mysys.

  include/Makefile.am
    1.47 04/06/24 19:08:31 konstantin@mysql.com +1 -1
    - mysql_time.h added to the list of installed client library headers

  VC++Files/sql/mysqld.dsp
    1.17.1.10 04/06/24 19:08:31 konstantin@mysql.com +4 -0
    new file: my_time.c

  VC++Files/libmysqld/libmysqld.dsp
    1.12.2.1 04/06/24 19:08:31 konstantin@mysql.com +4 -0
    new file: my_time.c

  VC++Files/libmysql/libmysql.dsp
    1.26 04/06/24 19:08:31 konstantin@mysql.com +4 -0
    new file: my_time.c

ChangeSet
  1.1616.578.1 04/06/24 18:46:41 bar@mysql.com +5 -0
  "Version" column in SHOW TABLE STATUS.

  sql/table.h
    1.55.1.10 04/06/24 18:46:34 bar@mysql.com +1 -0
    "Version" column in SHOW TABLE STATUS.

  sql/table.cc
    1.106.1.1 04/06/24 18:46:34 bar@mysql.com +1 -0
    "Version" column in SHOW TABLE STATUS.

  sql/sql_show.cc
    1.122.1.49 04/06/24 18:46:34 bar@mysql.com +3 -0
    "Version" column in SHOW TABLE STATUS.

  mysql-test/t/show_check.test
    1.31 04/06/24 18:46:34 bar@mysql.com +7 -7
    "Version" column in SHOW TABLE STATUS.

  mysql-test/r/show_check.result
    1.31.1.22 04/06/24 18:46:34 bar@mysql.com +29 -29
    "Version" column in SHOW TABLE STATUS.

ChangeSet
  1.1616.577.1 04/06/24 13:28:15 tomas@poseidon.bredbandsbolaget.se +3 -0
  added posr switch to mysql-test-run

  mysql-test/ndb/ndbcluster.sh
    1.12 04/06/24 13:28:11 tomas@poseidon.bredbandsbolaget.se +11 -9
    added posr switch to mysql-test-run

  mysql-test/ndb/ndb_config_2_node.ini
    1.5 04/06/24 13:28:11 tomas@poseidon.bredbandsbolaget.se +2 -4
    added posr switch to mysql-test-run

  mysql-test/mysql-test-run.sh
    1.191 04/06/24 13:28:10 tomas@poseidon.bredbandsbolaget.se +5 -3
    added posr switch to mysql-test-run

ChangeSet
  1.1346.650.1 04/06/24 15:06:56 ingo@mysql.com +6 -0
  bug#3565 - HANDLER and FLUSH TABLE/TABLES deadlock.
  Redesigned the handler close functions so that they are usable
  at different places where waiting for closing tables is done.

  sql/sql_table.cc
    1.112.12.1 04/06/24 15:06:54 ingo@mysql.com +3 -3
    bug#3565 - HANDLER and FLUSH TABLE/TABLES deadlock.
    Replaced the obsolte mysql_ha_closeall() by the new mysql_ha_close().

  sql/sql_handler.cc
    1.19.1.23 04/06/24 15:06:54 ingo@mysql.com +159 -27
    bug#3565 - HANDLER and FLUSH TABLE/TABLES deadlock.
    Redesigned the internal function find_table_ptr_by_name().
    It can now suppress locking and tells if the requested table
    has been flushed by itself.
    Extended mysql_ha_close() so that it can now suppres locking
    and error reporting. That way it can be used at more places and the
    old function mysql_ha_closeall() is now obsolete.
    Added a new function mysql_ha_close_list() which closes a whole list
    of HANDLER tables or all HANDLER tables, if the list is NULL.
    Furthermore is can close all 'old' (marked for flush) HANDLER tables.

  sql/sql_base.cc
    1.117.1.63 04/06/24 15:06:54 ingo@mysql.com +5 -0
    bug#3565 - HANDLER and FLUSH TABLE/TABLES deadlock.
    Added proper close calls before some wait points to avoid deadlocks
    or infinite loops.

  sql/mysql_priv.h
    1.150.1.70 04/06/24 15:06:54 ingo@mysql.com +3 -3
    bug#3565 - HANDLER and FLUSH TABLE/TABLES deadlock.
    Made mysql_ha_close() more flexible.
    Removed mysql_ha_closeall(), which closed only one table despite its name.
    Added mysql_ha_close_list(), which closes the complete list or all tables and does not lock.
    Removed a duplicate declaration.

  mysql-test/t/flush_table.test
    1.5 04/06/24 15:06:54 ingo@mysql.com +108 -7
    bug#3565 - HANDLER and FLUSH TABLE/TABLES deadlock.
    Activated old test case.
    Added new test cases.

  mysql-test/r/flush_table.result
    1.2 04/06/24 15:06:54 ingo@mysql.com +120 -0
    bug#3565 - HANDLER and FLUSH TABLE/TABLES deadlock.
    Added the test results.

ChangeSet
  1.1346.649.1 04/06/24 14:54:28 ingo@mysql.com +5 -0
  bug#2686 - index_merge select on BerkeleyDB table with varchar PK causes mysqld to crash.
  Added put_length() to get_length() and unpack_key() to pack_key().
  Keys were packed with the minimum size of the length field for the key part and 
  unpacked with length size of the base column. 
  For the purpose of optimal key packing we have the method pack_key(), while rows are 
  packed with pack(). Now keys are unpacked with unpack_key() and no longer with 
  unpack() which is used for rows.

  sql/ha_berkeley.cc
    1.105.2.1 04/06/24 14:54:23 ingo@mysql.com +2 -2
    bug#2686 - index_merge select on BerkeleyDB table with varchar PK causes mysqld to crash.
    Now keys are unpacked with unpack_key() and no longer with unpack() which is used for rows.
    For most field types, however, this simply calls unpack().

  sql/field.h
    1.33.1.23 04/06/24 14:54:23 ingo@mysql.com +6 -0
    bug#2686 - index_merge select on BerkeleyDB table with varchar PK causes mysqld to crash.
    Added put_length() to get_length() and unpack_key() to pack_key().
    The default implementation simply calls unpack() for those field types that don't need 
    a special key unpacking.

  sql/field.cc
    1.51.1.37 04/06/24 14:54:23 ingo@mysql.com +80 -0
    bug#2686 - index_merge select on BerkeleyDB table with varchar PK causes mysqld to crash.
    Added put_length() to get_length() and unpack_key() to pack_key().
    Keys were packed with the minimum size of the length field for the key part and 
    unpacked with length size of the base column. 
    For the purpose of optimal key packing we have the method pack_key(), while rows are packed 
    with pack(). Now keys are unpacked with unpack_key() and no longer with unpack() which is 
    used for rows.

  mysql-test/t/bdb.test
    1.27.2.1 04/06/24 14:54:23 ingo@mysql.com +19 -0
    bug#2686 - index_merge select on BerkeleyDB table with varchar PK causes mysqld to crash.
    Added the test case.

  mysql-test/r/bdb.result
    1.22.3.1 04/06/24 14:54:23 ingo@mysql.com +16 -0
    bug#2686 - index_merge select on BerkeleyDB table with varchar PK causes mysqld to crash.
    Added the test case results.

ChangeSet
  1.1616.575.2 04/06/24 14:49:34 mskold@mysql.com +2 -0
  Cosmetic fixes

  sql/handler.cc
    1.103.9.2 04/06/24 14:49:10 mskold@mysql.com +1 -1
    Cosmetic fixes

  sql/ha_ndbcluster.cc
    1.20 04/06/24 14:49:10 mskold@mysql.com +2 -2
    Cosmetic fixes

ChangeSet
  1.1616.576.1 04/06/24 14:42:56 guilhem@mysql.com +2 -0
  Enabling the --innodb-safe-binlog option in code. If you wish to disable it,
  you just need to change this line of mysqld.cc:
  #if MYSQL_VERSION_ID >= 40103
  to, say,
  #if MYSQL_VERSION_ID > 40103
  I am noticing a failure of bdb.test; I believe this is not related to the
  code I added yesterday and today, but I am checking. In any case I push this
  changeset as it cannot by itself bring more mess that I *may* (or not)
  already have brought with previous pushes.

  sql/mysqld.cc
    1.356.1.119 04/06/24 14:42:48 guilhem@mysql.com +2 -5
    only a warning if --innodb-safe-binlog without InnoDB (it's true this situation will not hurt).
    Enabling the --innodb-safe-binlog option.

  sql/handler.cc
    1.103.1.32 04/06/24 14:42:47 guilhem@mysql.com +1 -1
    if innodb_active_trans is true then innobase_tid too.

ChangeSet
  1.1616.572.3 04/06/24 11:52:50 tomas@poseidon.bredbandsbolaget.se +2 -0
  added order by

  mysql-test/t/ndb_autodiscover2.test
    1.2 04/06/24 11:52:47 tomas@poseidon.bredbandsbolaget.se +1 -1
    added order by

  mysql-test/r/ndb_autodiscover2.result
    1.2 04/06/24 11:52:46 tomas@poseidon.bredbandsbolaget.se +3 -3
    added order by

  mysql-test/r/flush_table.result
    1.1 04/06/24 13:39:32 ingo@mysql.com +0 -0

  mysql-test/r/flush_table.result
    1.0 04/06/24 13:39:32 ingo@mysql.com +0 -0
    BitKeeper file /home/mydev/mysql-4.0-bug3565/mysql-test/r/flush_table.result

ChangeSet
  1.1616.575.1 04/06/24 12:04:22 mskold@mysql.com +3 -0
  Modified index flags and added ndbcluster_print_error

  sql/handler.cc
    1.103.9.1 04/06/24 12:03:10 mskold@mysql.com +8 -2
    Modified index flags and added ndbcluster_print_error

  sql/ha_ndbcluster.h
    1.13 04/06/24 12:03:10 mskold@mysql.com +7 -5
    Modified index flags and added ndbcluster_print_error

  sql/ha_ndbcluster.cc
    1.19 04/06/24 12:03:10 mskold@mysql.com +19 -19
    Modified index flags and added ndbcluster_print_error

ChangeSet
  1.1616.574.1 04/06/24 11:45:06 lenz@mysql.com +2 -0
   - Windows compile fix: added srv/srv0que.c to the innobase project
     file and sql/tztime.cpp to the libmysqld project file

  VC++Files/libmysqld/libmysqld.dsp
    1.12.1.8 04/06/24 11:45:01 lenz@mysql.com +4 -0
     - added missing file sql/tztime.cpp to the project file

  VC++Files/innobase/innobase.dsp
    1.19 04/06/24 11:45:01 lenz@mysql.com +4 -0
     - added missing file srv/srv0que.c to the project file

ChangeSet
  1.1616.573.1 04/06/24 11:42:44 joreland@mysql.com +3 -0
  fixes for solaris build issues with ndb
  (the previous commit was in "non" fresh clone :-()

  ndb/src/ndbapi/Ndbinit.cpp
    1.7 04/06/24 11:42:22 joreland@mysql.com +11 -17
    fixes for solaris build issues

  ndb/src/ndbapi/Ndb.cpp
    1.12 04/06/24 11:42:22 joreland@mysql.com +16 -28
    fixes for solaris build issues

  ndb/src/kernel/SimBlockList.cpp
    1.5 04/06/24 11:42:22 joreland@mysql.com +22 -19
    fixes for solaris build issues

ChangeSet
  1.1616.571.1 04/06/24 11:38:57 guilhem@mysql.com +5 -0
  Final part of WL#1717 "innodb/binlog consistency". This is to resolve
  a limitation of yesterday's implementation:
  if there was an unfinished transaction (COMMIT not typed), and some MyISAM tables were
  then updated, and then mysqld crashes, then at restart the server would use the too old
  binlog offset known by InnoDB to cut the binlog, thus cutting the successful MyISAM
  updates. We fix this by reporting the binlog offset into InnoDB even if InnoDB was not
  affected at all by the update.
  But the feature is still disabled until we decide if it can go into 4.1.3.

  sql/mysqld.cc
    1.356.1.118 04/06/24 11:38:53 guilhem@mysql.com +8 -3
    No innodb-safe-binlog if no InnoDB.
    Updating message as now we work with MyISAM.

  sql/mysql_priv.h
    1.186.1.111 04/06/24 11:38:53 guilhem@mysql.com +1 -1
    need to see opt_innodb_safe_binlog in handler.cc

  sql/log.cc
    1.108.1.31 04/06/24 11:38:53 guilhem@mysql.com +11 -4
    clearer messages when truncating binlog.

  sql/handler.h
    1.89.1.26 04/06/24 11:38:53 guilhem@mysql.com +1 -1
    removing warning (noticed this)

  sql/handler.cc
    1.103.1.31 04/06/24 11:38:53 guilhem@mysql.com +12 -4
    How we report the binlog offset into InnoDB:
    - if the update affected InnoDB, it will happen naturally
    - otherwise (for example MyISAM update not in an InnoDB transaction), we explicitely report it.

ChangeSet
  1.1616.566.6 04/06/24 09:22:45 lenz@mysql.com +2 -0
   - added mysql_tzinfo_to_sql to binary distributions

  support-files/mysql.spec.sh
    1.77 04/06/24 09:22:39 lenz@mysql.com +7 -1
     - added mysql_tzinfo_to_sql to the server subpackage
     - run "make clean" instead of "make distclean"

  scripts/make_binary_distribution.sh
    1.55.1.10 04/06/24 09:22:39 lenz@mysql.com +1 -1
     - added mysql_tzinfo_to_sql to binary distribution

ChangeSet
  1.1346.1.541 04/06/23 21:02:37 patg@krsna.patg.net +3 -0
  Development.fgl:
    add typelib.h to filelist
  Clients and Tools.fgl:
    add libmysql.dll to file list
  4.0.XX-gpl.ipr:
    Various fixes to installshield project file (added files)

  VC++Files/InstallShield/4.0.XX-gpl/File Groups/Development.fgl
    1.3 04/06/23 21:02:14 patg@krsna.patg.net +1 -0
    add typelib.h to filelist

  VC++Files/InstallShield/4.0.XX-gpl/File Groups/Clients and Tools.fgl
    1.3 04/06/23 21:02:14 patg@krsna.patg.net +1 -0
    add libmysql.dll to file list

  VC++Files/InstallShield/4.0.XX-gpl/4.0.XX-gpl.ipr
    1.2 04/06/23 21:02:14 patg@krsna.patg.net +23 -23
    Various fixes to installshield project file (added files)

ChangeSet
  1.1346.1.540 04/06/23 20:26:20 patg@krsna.patg.net +1 -0
  Do-rpm:
    Small fix to handle the src rpm file correctly (contains '0', release number in spec file)

  Build-tools/Do-rpm
    1.30 04/06/23 20:25:30 patg@krsna.patg.net +38 -29
    Small fix to handle the src rpm file correctly (contains '0', release number in spec file)

ChangeSet
  1.1616.569.1 04/06/24 02:57:57 bell@sanja.is.com.ua +4 -0
  parameter of my_yyoverflow made independed from YYSIZE_T (BUG#4204)

  sql/sql_yacc.yy
    1.203.110.1 04/06/24 02:57:54 bell@sanja.is.com.ua +2 -2
    parameter of my_yyoverflow made independed from YYSIZE_T

  sql/sql_parse.cc
    1.271.1.90 04/06/24 02:57:54 bell@sanja.is.com.ua +2 -2
    parameter of my_yyoverflow made independed from YYSIZE_T

  mysql-test/t/union.test
    1.70 04/06/24 02:57:54 bell@sanja.is.com.ua +32 -0
    test of correct parser stack overflow handling

  mysql-test/r/union.result
    1.46.1.30 04/06/24 02:57:54 bell@sanja.is.com.ua +28 -0
    test of correct parser stack overflow handling

ChangeSet
  1.1616.566.5 04/06/24 01:06:48 guilhem@mysql.com +19 -0
  disabling the --innodb-safe-binlog option. It should be fixed to work with MyISAM too,
  before being available to users. That will be the case in 4.1.4.
  The "bk commit in mysqldoc" corresponding to this feature was not pushed.
  Removing the 6 tests, they'll be pushed again later.

  sql/mysqld.cc
    1.356.1.117 04/06/24 01:06:42 guilhem@mysql.com +8 -1
    disabling the --innodb-safe-binlog option. It should be fixed to work with MyISAM too,
    before being available to users. That will be the case in 4.1.4.

  BitKeeper/deleted/.del-rpl_crash_binlog_ib_3b.test~d283dc272a38175
    1.2 04/06/24 01:01:22 guilhem@mysql.com +0 -0
    Delete: mysql-test/t/rpl_crash_binlog_ib_3b.test

  BitKeeper/deleted/.del-rpl_crash_binlog_ib_3b-master.opt~5a878d6ca9b620ba
    1.2 04/06/24 01:01:22 guilhem@mysql.com +0 -0
    Delete: mysql-test/t/rpl_crash_binlog_ib_3b-master.opt

  BitKeeper/deleted/.del-rpl_crash_binlog_ib_3a.test~c3cf56608fa38ab2
    1.2 04/06/24 01:01:21 guilhem@mysql.com +0 -0
    Delete: mysql-test/t/rpl_crash_binlog_ib_3a.test

  BitKeeper/deleted/.del-rpl_crash_binlog_ib_3a-master.opt~233787f10a34d70
    1.2 04/06/24 01:01:21 guilhem@mysql.com +0 -0
    Delete: mysql-test/t/rpl_crash_binlog_ib_3a-master.opt

  BitKeeper/deleted/.del-rpl_crash_binlog_ib_2b.test~95e00750688e5950
    1.2 04/06/24 01:01:21 guilhem@mysql.com +0 -0
    Delete: mysql-test/t/rpl_crash_binlog_ib_2b.test

  BitKeeper/deleted/.del-rpl_crash_binlog_ib_2b-master.opt~5cb4dc88644cac71
    1.2 04/06/24 01:01:20 guilhem@mysql.com +0 -0
    Delete: mysql-test/t/rpl_crash_binlog_ib_2b-master.opt

  BitKeeper/deleted/.del-rpl_crash_binlog_ib_2a.test~8a3a7646227ad59
    1.2 04/06/24 01:01:20 guilhem@mysql.com +0 -0
    Delete: mysql-test/t/rpl_crash_binlog_ib_2a.test

  BitKeeper/deleted/.del-rpl_crash_binlog_ib_2a-master.opt~d8e2c519c1a8d580
    1.2 04/06/24 01:01:20 guilhem@mysql.com +0 -0
    Delete: mysql-test/t/rpl_crash_binlog_ib_2a-master.opt

  BitKeeper/deleted/.del-rpl_crash_binlog_ib_1b.test~450096adbbe9214
    1.2 04/06/24 01:01:19 guilhem@mysql.com +0 -0
    Delete: mysql-test/t/rpl_crash_binlog_ib_1b.test

  BitKeeper/deleted/.del-rpl_crash_binlog_ib_1b-master.opt~d8ad8b1c484b86c3
    1.2 04/06/24 01:01:19 guilhem@mysql.com +0 -0
    Delete: mysql-test/t/rpl_crash_binlog_ib_1b-master.opt

  BitKeeper/deleted/.del-rpl_crash_binlog_ib_1a.test~ca1e5ae4b81c69ce
    1.2 04/06/24 01:01:18 guilhem@mysql.com +0 -0
    Delete: mysql-test/t/rpl_crash_binlog_ib_1a.test

  BitKeeper/deleted/.del-rpl_crash_binlog_ib_1a-master.opt~f9cc9d326400bc96
    1.2 04/06/24 01:01:18 guilhem@mysql.com +0 -0
    Delete: mysql-test/t/rpl_crash_binlog_ib_1a-master.opt

  BitKeeper/deleted/.del-rpl_crash_binlog_ib_3b.result~ce5077d6b541e48c
    1.2 04/06/24 01:01:17 guilhem@mysql.com +0 -0
    Delete: mysql-test/r/rpl_crash_binlog_ib_3b.result

  BitKeeper/deleted/.del-rpl_crash_binlog_ib_3a.result~81a4b08a5259aef1
    1.2 04/06/24 01:01:17 guilhem@mysql.com +0 -0
    Delete: mysql-test/r/rpl_crash_binlog_ib_3a.result

  BitKeeper/deleted/.del-rpl_crash_binlog_ib_2b.result~8d03dd3a2da8b228
    1.2 04/06/24 01:01:17 guilhem@mysql.com +0 -0
    Delete: mysql-test/r/rpl_crash_binlog_ib_2b.result

  BitKeeper/deleted/.del-rpl_crash_binlog_ib_2a.result~9a8bcdcc9218e280
    1.2 04/06/24 01:01:16 guilhem@mysql.com +0 -0
    Delete: mysql-test/r/rpl_crash_binlog_ib_2a.result

  BitKeeper/deleted/.del-rpl_crash_binlog_ib_1b.result~437e146cd203b120
    1.2 04/06/24 01:01:16 guilhem@mysql.com +0 -0
    Delete: mysql-test/r/rpl_crash_binlog_ib_1b.result

  BitKeeper/deleted/.del-rpl_crash_binlog_ib_1a.result~c9ecac961121bd4e
    1.2 04/06/24 01:01:15 guilhem@mysql.com +0 -0
    Delete: mysql-test/r/rpl_crash_binlog_ib_1a.result

ChangeSet
  1.1616.568.3 04/06/24 00:09:29 guilhem@mysql.com +1 -0
  removing forgotten line (had not noticed as I build with LINT_INIT undefined :( ).

  client/mysqltest.c
    1.92.1.49 04/06/24 00:09:24 guilhem@mysql.com +0 -1
    'res' does not exist here

ChangeSet
  1.1616.539.2 04/06/23 23:51:40 guilhem@mysql.com +3 -0
  WL#1717 "binlog/innodb consistency".
  Final push. Printing some warnings at startup, as --innodb-safe-binlog requires
  some other options, to work as expected.
  Adding 6 new tests (3 pairs). If they fail on some platforms (so far they have been run only on my Linux),
  they should be ignored for the 4.1.3 build (you can just
  rm mysql-test/*/rpl_crash_*).
  Now going to update doc.

  sql/mysqld.cc
    1.356.61.3 04/06/23 23:51:35 guilhem@mysql.com +33 -1
    When using --innodb-safe-binlog, some options need to automatically be turned on.

  sql/log.cc
    1.108.1.29 04/06/23 23:51:35 guilhem@mysql.com +1 -1
    VC++ does not know (ulonglong)(-1)

  mysql-test/misc/kill_master.sh
    1.2 04/06/23 23:51:35 guilhem@mysql.com +3 -0
    If the mysqld process has already gone away, 'kill' will fail, so we need to explicitely
    exit 0, so that the non-zero return code of kill does not make mysqltest stop.

ChangeSet
  1.1616.567.1 04/06/23 23:41:56 serg@serg.mylan +1 -0
  followup

  sql/tztime.cc
    1.3.1.1 04/06/23 23:41:51 serg@serg.mylan +422 -422
    followup

ChangeSet
  1.1616.541.33 04/06/23 23:33:28 joreland@mysql.com +5 -0
  Fixes for gcc-3.4.0

  ndb/src/kernel/vm/SLList.hpp
    1.2 04/06/23 23:33:11 joreland@mysql.com +2 -2
    Fixes for gcc-3.4.0

  ndb/src/kernel/vm/DataBuffer.hpp
    1.2 04/06/23 23:33:11 joreland@mysql.com +2 -2
    Fixes for gcc-3.4.0

  ndb/src/kernel/vm/DLList.hpp
    1.2 04/06/23 23:33:11 joreland@mysql.com +2 -2
    Fixes for gcc-3.4.0

  ndb/src/kernel/vm/DLFifoList.hpp
    1.3 04/06/23 23:33:11 joreland@mysql.com +2 -2
    Fixes for gcc-3.4.0

  ndb/src/kernel/vm/ArrayPool.hpp
    1.4 04/06/23 23:33:11 joreland@mysql.com +12 -12
    Fixes for gcc-3.4.0

ChangeSet
  1.1616.561.2 04/06/24 01:08:07 dlenev@brandersnatch.localdomain +1 -0
  Fixed compilation on windows.

  sql/tztime.cc
    1.2.1.1 04/06/24 01:08:02 dlenev@brandersnatch.localdomain +5 -4
    Fixed compilation on Windows.
    Added casts to avoid warnings.
    2nd argument of hash_search should be of type const byte *.

ChangeSet
  1.1616.541.30 04/06/23 21:46:17 serg@serg.mylan +3 -0
  Bug#4261 - mysqldump omits NULLs with --skip-extended-insert

  mysql-test/t/mysqldump.test
    1.19 04/06/23 21:46:13 serg@serg.mylan +3 -2
    Bug#4261 - mysqldump omits NULLs with --skip-extended-insert

  mysql-test/r/mysqldump.result
    1.9.1.21 04/06/23 21:46:13 serg@serg.mylan +2 -1
    Bug#4261 - mysqldump omits NULLs with --skip-extended-insert

  client/mysqldump.c
    1.133.1.1 04/06/23 21:46:13 serg@serg.mylan +2 -0
    Bug#4261 - mysqldump omits NULLs with --skip-extended-insert

ChangeSet
  1.1616.541.29 04/06/23 21:26:34 serg@serg.mylan +9 -0
  followup to handler cleanup

  sql/sql_select.cc
    1.216.73.6 04/06/23 21:26:28 serg@serg.mylan +1 -5
    cleanup

  sql/ha_berkeley.h
    1.57.1.6 04/06/23 21:26:28 serg@serg.mylan +1 -1
    followup to handler cleanup

  sql/ha_berkeley.cc
    1.117.1.18 04/06/23 21:26:28 serg@serg.mylan +1 -1
    followup to handler cleanup

  sql/examples/ha_example.h
    1.7 04/06/23 21:26:28 serg@serg.mylan +53 -29
    followup to handler cleanup

  sql/examples/ha_example.cc
    1.7 04/06/23 21:26:27 serg@serg.mylan +63 -58
    followup to handler cleanup

  sql/examples/ha_archive.h
    1.4 04/06/23 21:26:26 serg@serg.mylan +9 -12
    followup to handler cleanup

  sql/examples/ha_archive.cc
    1.5 04/06/23 21:26:26 serg@serg.mylan +9 -9
    followup to handler cleanup

  mysql-test/t/bdb.test
    1.34 04/06/23 21:26:26 serg@serg.mylan +25 -0
    bug#4000

  mysql-test/r/bdb.result
    1.36 04/06/23 21:26:26 serg@serg.mylan +9 -0
    bug#4000

ChangeSet
  1.1616.564.2 04/06/23 13:48:16 mwagner@here.mwagner.org +1 -0
  mysql-copyright:
    Fixed vim to expandtab's, retab'd code
    Fixed CWD bug in trim_the_fat()

  Build-tools/mysql-copyright
    1.14 04/06/23 13:47:14 mwagner@here.mwagner.org +25 -23
    Fixed vim to expandtab's, retab'd code
    Fixed CWD bug in trim_the_fat()

ChangeSet
  1.1616.563.3 04/06/23 12:37:34 paul@kite-hub.kitebird.com +1 -0
  mysqldump.c:
    Fix typo.

  client/mysqldump.c
    1.135 04/06/23 12:37:23 paul@kite-hub.kitebird.com +1 -1
    Fix typo.

ChangeSet
  1.1616.564.1 04/06/23 12:31:10 mwagner@here.mwagner.org +2 -0
  mysql-copyright:
    Cleaned-up trim_the_fat()

  BitKeeper/etc/logging_ok
    1.233.1.85 04/06/23 12:31:09 mwagner@here.mwagner.org +1 -0
    Logging to logging@openlogging.org accepted

  Build-tools/mysql-copyright
    1.13 04/06/23 12:28:33 mwagner@here.mwagner.org +38 -21
    Cleaned-up trim_the_fat()

ChangeSet
  1.1616.563.2 04/06/23 12:21:49 paul@kite-hub.kitebird.com +1 -0
  mysqldump.c:
    Correct the help text for mysqldump --set-charset option.

  client/mysqldump.c
    1.134 04/06/23 12:21:21 paul@kite-hub.kitebird.com +1 -1
    Correct the help text for mysqldump --set-charset option.

ChangeSet
  1.1616.563.1 04/06/23 18:28:50 lenz@mysql.com +1 -0
   - using "--with-libedit" is sufficient (--without-readline throws
     weird compile errors)

  Build-tools/Do-compile
    1.89 04/06/23 18:28:42 lenz@mysql.com +1 -1
     - using "--with-libedit" is sufficient

ChangeSet
  1.1616.559.5 04/06/23 16:57:34 lenz@mysql.com +1 -0
   - fixed a compile error on Windows (incompatible cast)

  sql/sql_prepare.cc
    1.34.1.77 04/06/23 16:57:29 lenz@mysql.com +1 -1
     - fixed a compile error on Windows (incompatible cast)

ChangeSet
  1.1616.559.3 04/06/23 18:45:27 bar@mysql.com +1 -0
  configure.in:
    --with-charset=binary didn't really work after my previous change.

ChangeSet
  1.1616.561.1 04/06/23 18:13:25 gluh@gluh.mysql.r18.ru +1 -0
  Fix for bug#3950: Check/Repair caused by "Field List" doesn't show table name in processlist

  sql/ha_myisam.cc
    1.115.11.1 04/06/23 18:13:21 gluh@gluh.mysql.r18.ru +22 -9
    Fix for bug#3950: Check/Repair caused by "Field List" doesn't show table name in processlist

  configure.in
    1.201.23.1 04/06/23 18:44:44 bar@mysql.com +6 -0
    --with-charset=binary didn't really work after my previous change.

ChangeSet
  1.1346.1.538 04/06/23 16:44:34 monty@mysql.com +7 -0
  lower_case_table_names=2 (Keep case for table names) was not honored
  with ALTER TABLE and CREATE/DROP INDEX. (Bug #3109)
  Make net_buffer_length visible for mysql clients (Bug #4206)

  sql/sql_table.cc
    1.112.1.66 04/06/23 16:44:32 monty@mysql.com +4 -1
    lower_case_table_names=2 (Keep case for table names) was not honored
    with ALTER TABLE and CREATE/DROP INDEX. (Bug #3109)

  scripts/mysql_install_db.sh
    1.35.1.16 04/06/23 16:44:32 monty@mysql.com +1 -1
    Removed not used variable

  mysql-test/t/lowercase_table2.test
    1.2.1.1 04/06/23 16:44:32 monty@mysql.com +11 -0
    Test name conversion with ALTER TABLE / CREATE INDEX (Bug #3109)

  mysql-test/r/lowercase_table2.result
    1.2.1.1 04/06/23 16:44:32 monty@mysql.com +10 -0
    Test name conversion with ALTER TABLE / CREATE INDEX (Bug #3109)

  mysql-test/mysql-test-run.sh
    1.146.1.49 04/06/23 16:44:32 monty@mysql.com +1 -1
    Don't give warning for some common 'safe' warnings

  libmysql/libmysql.c
    1.95.1.54 04/06/23 16:44:32 monty@mysql.com +2 -0
    Make net_buffer_length visible for mysql clients

  include/mysql.h
    1.42.1.13 04/06/23 16:44:32 monty@mysql.com +1 -1
    Make net_buffer_length visible for mysql clients

ChangeSet
  1.1616.560.1 04/06/23 16:39:56 monty@mysql.com +2 -0
  Fixed warning about unitialized mutex when mysqld couldn't start.

  sql/tztime.cc
    1.3 04/06/23 16:39:54 monty@mysql.com +13 -9
    Fixed warning about unitialized mutex when mysqld couldn't start.

  sql/handler.cc
    1.103.8.1 04/06/23 16:39:54 monty@mysql.com +11 -10
    Cleaned up comments

ChangeSet
  1.1616.559.1 04/06/23 18:34:26 bar@mysql.com +1 -0
  log.cc:
    rpl_charset failed on  Linux/AMD64.

  sql/log.cc
    1.108.5.1 04/06/23 18:32:20 bar@mysql.com +6 -6
    rpl_charset failed on  Linux/AMD64.

ChangeSet
  1.1616.470.10 04/06/23 12:29:05 serg@serg.mylan +38 -0
  handler interface cleanups:
    more logical table/index_flags
    return  HA_ERR_WRONG_COMMAND instead of abstract methods where appropriate
    max_keys and other limits renamed to max_supported_keys/etc
    max_keys/etc are now wrappers to max_supported_keys/etc 
    ha_index_init/ha_rnd_init/ha_index_end/ha_rnd_end are now wrappers to real {index,rnd}_{init,end} to enforce strict pairing

  sql/table.cc
    1.105.1.1 04/06/23 12:29:00 serg@serg.mylan +3 -11
    table/index_flags cleanup

  sql/sql_yacc.yy
    1.203.103.16 04/06/23 12:29:00 serg@serg.mylan +9 -9
    INDEX -> INDEX_SYM

  sql/sql_update.cc
    1.83.16.1 04/06/23 12:29:00 serg@serg.mylan +12 -9
    index_init/index_end/rnd_init/rnd_end strict pairing fixed

  sql/sql_table.cc
    1.157.36.1 04/06/23 12:29:00 serg@serg.mylan +17 -7
    index_init/index_end/rnd_init/rnd_end strict pairing fixed
    table/index_flags cleanup

  sql/sql_select.cc
    1.216.76.1 04/06/23 12:28:59 serg@serg.mylan +47 -56
    index_init/index_end/rnd_init/rnd_end strict pairing fixed
    table/index_flags cleanup

  sql/sql_insert.cc
    1.86.16.1 04/06/23 12:28:59 serg@serg.mylan +1 -1
    table/index_flags cleanup

  sql/sql_help.cc
    1.26.1.1 04/06/23 12:28:59 serg@serg.mylan +107 -129
    index_init/index_end/rnd_init/rnd_end strict pairing fixed

  sql/sql_handler.cc
    1.51 04/06/23 12:28:59 serg@serg.mylan +14 -7
    index_init/index_end/rnd_init/rnd_end strict pairing fixed

  sql/sql_delete.cc
    1.99.10.1 04/06/23 12:28:59 serg@serg.mylan +2 -2
    index_init/index_end/rnd_init/rnd_end strict pairing fixed

  sql/sql_cache.cc
    1.46.9.1 04/06/23 12:28:59 serg@serg.mylan +6 -6
    cleanup

  sql/sql_acl.cc
    1.74.20.1 04/06/23 12:28:59 serg@serg.mylan +8 -20
    index_init/index_end/rnd_init/rnd_end strict pairing fixed

  sql/records.cc
    1.19.1.7 04/06/23 12:28:59 serg@serg.mylan +6 -4
    index_init/index_end/rnd_init/rnd_end strict pairing fixed

  sql/opt_sum.cc
    1.36 04/06/23 12:28:59 serg@serg.mylan +8 -18
    index_init/index_end/rnd_init/rnd_end strict pairing fixed
    table/index_flags cleanup

  sql/opt_range.h
    1.28.1.7 04/06/23 12:28:59 serg@serg.mylan +1 -1
    index_init/index_end/rnd_init/rnd_end strict pairing fixed

  sql/opt_range.cc
    1.98.7.1 04/06/23 12:28:59 serg@serg.mylan +6 -36
    index_init/index_end/rnd_init/rnd_end strict pairing fixed
    table/index_flags cleanup

  sql/lex.h
    1.82.22.3 04/06/23 12:28:59 serg@serg.mylan +1 -1
    renamed to avoid conflicts

  sql/item_subselect.cc
    1.60.23.1 04/06/23 12:28:59 serg@serg.mylan +6 -2
    index_init/index_end/rnd_init/rnd_end strict pairing fixed

  sql/handler.h
    1.89.10.1 04/06/23 12:28:59 serg@serg.mylan +161 -99
    handler interface cleanups:
      more logical table/index_flags
      return  HA_ERR_WRONG_COMMAND instead of abstract methods
      max_keys and other limits renamed to max_supported_keys/etc
      max_keys/etc are now wrappers to max_supported_keys/etc 
      ha_index_init/ha_rnd_init/ha_index_end/ha_rnd_end are now wrappers to enforce strict pairing

  sql/handler.cc
    1.103.7.1 04/06/23 12:28:59 serg@serg.mylan +30 -84
    handler interface cleanups

  sql/ha_myisammrg.h
    1.32 04/06/23 12:28:59 serg@serg.mylan +11 -13
    table/index_flags revamped

  sql/ha_myisam.h
    1.57 04/06/23 12:28:59 serg@serg.mylan +12 -15
    table/index_flags revamped

  sql/ha_myisam.cc
    1.115.1.29 04/06/23 12:28:59 serg@serg.mylan +7 -0
    ensure index is accessed only after index_init (esp. important for temp tables)

  sql/ha_isammrg.h
    1.20 04/06/23 12:28:59 serg@serg.mylan +3 -7
    table/index_flags revamped

  sql/ha_isam.h
    1.26 04/06/23 12:28:59 serg@serg.mylan +8 -8
    table/index_flags revamped

  sql/ha_innodb.h
    1.57.2.1 04/06/23 12:28:59 serg@serg.mylan +9 -26
    table/index_flags revamped

  sql/ha_innodb.cc
    1.90.7.1 04/06/23 12:28:58 serg@serg.mylan +3 -29
    don't workaround MySQL sloppiness

  sql/ha_heap.h
    1.26.1.1 04/06/23 12:28:58 serg@serg.mylan +7 -10
    table/index_flags revamped

  sql/ha_heap.cc
    1.42 04/06/23 12:28:58 serg@serg.mylan +6 -0
    ensure index is accessed only after index_init (esp. important for temp tables)

  sql/ha_berkeley.h
    1.57.1.5 04/06/23 12:28:58 serg@serg.mylan +14 -13
    table/index_flags revamped

  sql/ha_berkeley.cc
    1.117.4.1 04/06/23 12:28:58 serg@serg.mylan +6 -4
    cleanup

  sql/filesort.cc
    1.70.1.15 04/06/23 12:28:58 serg@serg.mylan +5 -4
    rnd_init -> ha_rnd_init
    rnd_end -> ha_rnd_end

  sql/field.cc
    1.158.1.1 04/06/23 12:28:58 serg@serg.mylan +3 -4
    index_flags

  mysql-test/r/rpl_user_variables.result
    1.5.2.1 04/06/23 12:28:58 serg@serg.mylan +17 -17
    followup

  mysql-test/r/fulltext.result
    1.63.1.1 04/06/23 12:28:58 serg@serg.mylan +3 -3
    fulltext indexes are not ordered

  mysql-test/Makefile.am
    1.28.1.1 04/06/23 12:28:58 serg@serg.mylan +1 -0
    followup

  myisam/mi_static.c
    1.16 04/06/23 12:28:58 serg@serg.mylan +1 -1
    warning removed

  include/my_base.h
    1.58.1.1 04/06/23 12:28:58 serg@serg.mylan +0 -3
    handler interface cleanup

ChangeSet
  1.1616.558.1 04/06/23 13:07:00 dlenev@brandersnatch.localdomain +2 -0
  Final solution to mysql_tzinfo_to_sql problem.

  BitKeeper/etc/ignore
    1.153.1.36 04/06/23 13:06:57 dlenev@brandersnatch.localdomain +1 -0
    Added sql/mysql_tzinfo_to_sql_tztime.cc to the ignore list

  sql/Makefile.am
    1.77.1.22 04/06/23 13:06:54 dlenev@brandersnatch.localdomain +9 -0
    Final solution to mysql_tzinfo_to_sql problem:
    We can't put it in extra/ directory since it depends on sql/sql_yacc.h and
    sql/ directory depends on extra/comp_err. So this utility have to stay in
    sql/ for a while.

ChangeSet
  1.1616.557.1 04/06/23 13:40:59 ram@gw.mysql.r18.ru +1 -0
  A fix (Bug #4237: Server crash with a subquery SELECT).
  Original test case was too big to add it.
  Unfortunately I didn't manage to reduce it.

  sql/sql_select.cc
    1.216.75.1 04/06/23 13:40:55 ram@gw.mysql.r18.ru +18 -9
    a fix (Bug #4237: Server crash with a subquery SELECT).

ChangeSet
  1.1616.556.1 04/06/23 11:40:42 sergefp@mysql.com +3 -0
  Fix and test case for BUG#3899

  sql/sql_yacc.yy
    1.203.1.127 04/06/23 11:40:38 sergefp@mysql.com +1 -1
    Fix for BUG#3899: call ALTER_INFO::reset to clear ALTER_INFO::drop_list and ALTER_INFO::alter_list

  mysql-test/t/alter_table.test
    1.28 04/06/23 11:40:38 sergefp@mysql.com +8 -0
    Test case for BUG#3899

  mysql-test/r/alter_table.result
    1.37 04/06/23 11:40:38 sergefp@mysql.com +6 -0
    Test case for BUG#3899

  include/myisam.h
    1.62 04/06/23 09:28:15 serg@serg.mylan +1 -1
    increasing myisam_max_temp_file_length

ChangeSet
  1.1616.541.24 04/06/23 02:48:47 dlenev@brandersnatch.localdomain +1 -0
  Disabling broken building of mysql_tztime_to_sql utility to allow perform test builds.

  extra/Makefile.am
    1.17 04/06/23 02:48:42 dlenev@brandersnatch.localdomain +1 -10
    Disabling broken building of mysql_tztime_to_sql utility to allow perform test builds.

ChangeSet
  1.1616.555.1 04/06/22 23:36:26 dlenev@brandersnatch.localdomain +3 -0
  Fix for build from bk failures with old automake.
  mysql_tzinfo_to_sql converter was moved to extra/ directory and its build was made 
  compatible with older automake versions.

  BitKeeper/etc/ignore
    1.153.1.35 04/06/22 23:36:22 dlenev@brandersnatch.localdomain +2 -0
    Added extra/tztime.cc extra/mysql_tzinfo_to_sql to the ignore list

  sql/Makefile.am
    1.77.1.21 04/06/22 23:36:21 dlenev@brandersnatch.localdomain +0 -5
    mysql_tzinfo_to_sql converter was moved to extra/ directory and its build was made
    compatible with older automake versions.

  extra/Makefile.am
    1.16 04/06/22 23:36:17 dlenev@brandersnatch.localdomain +12 -2
    mysql_tzinfo_to_sql converter was moved to extra/ directory and its build was made 
    compatible with older automake versions.

ChangeSet
  1.1616.541.22 04/06/22 23:07:08 konstantin@mysql.com +2 -0
  Fixes to make client_test run on 64 bit Sun: a bug in libmysql and 
  test suite fixed.

  tests/client_test.c
    1.51.1.47 04/06/22 23:07:06 konstantin@mysql.com +44 -21
    Fixes to make client_test run on 64 bit Sun:
    - strlen() doesn't accept NULL input
    - Sun is high byte first, so we can't store bind 32-bit variables to 16-bit
    to MYSQL_TYPE_SHORT/TINY

  libmysql/libmysql.c
    1.156.1.94 04/06/22 23:07:06 konstantin@mysql.com +5 -5
    - fixed a bug in protocol -> host integer conversions in send_data_str

ChangeSet
  1.1346.647.1 04/06/22 12:57:52 mwagner@here.mwagner.org +1 -0
  my_md5sum:
    Change behaviour to be like the md5sum in GNU coreutils

  Build-tools/my_md5sum
    1.2 04/06/22 12:56:53 mwagner@here.mwagner.org +4 -3
    Change behaviour to be like the md5sum in GNU coreutils

ChangeSet
  1.1616.554.1 04/06/22 19:38:07 pem@mysql.comhem.se +6 -0
  Fixed BUG#3486: FOUND_ROWS() fails inside stored procedure [and prepared statement].

  sql/sql_select.cc
    1.216.73.4 04/06/22 19:38:04 pem@mysql.com +5 -1
    Don't reset thd->limit_found_rows too early, or FOUND_ROWS() wont work.

  sql/item_func.h
    1.68.1.40 04/06/22 19:38:03 pem@mysql.com +10 -0
    New class Item_func_found_rows for FOUND_ROWS() function.

  sql/item_func.cc
    1.124.1.78 04/06/22 19:38:03 pem@mysql.com +9 -0
    Added val_int() method for new Item_func_found_rows class.

  sql/item_create.cc
    1.33.1.32 04/06/22 19:38:03 pem@mysql.com +1 -1
    Create an Item_func_found_rows() at parse time, not an Item_int.

  mysql-test/t/ps.test
    1.7 04/06/22 19:38:03 pem@mysql.com +16 -0
    New test case for BUG#3486.

  mysql-test/r/ps.result
    1.10 04/06/22 19:38:03 pem@mysql.com +18 -0
    New test case for BUG#3486.

ChangeSet
  1.1346.645.3 04/06/22 17:54:38 lenz@mysql.com +1 -0
   - rephrased comment

  mysys/hash.c
    1.15.1.6 04/06/22 17:54:34 lenz@mysql.com +2 -1
     - rephrased comment

ChangeSet
  1.1346.645.2 04/06/22 17:35:34 lenz@mysql.com +5 -0
   - Applied some portability fixes for SGI IRIX/MipsPro compiler
     (e.g. a fix for BUG#3507 and some modifications recommended
     by Andrea Suatoni and Joerg Behrens - thank you!)

  vio/test-sslserver.c
    1.9 04/06/22 17:35:31 lenz@mysql.com +5 -0
     - portability fix for SGI MipsPro compiler: define client_len as
       "socklen_t" instead of "size_t"

  mysys/hash.c
    1.15.1.5 04/06/22 17:35:31 lenz@mysql.com +1 -1
     - portability fix: some compilers can't handle inlining of rec_hashnr
       (BUG#3507)

  man/mysqldump.1.in
    1.9 04/06/22 17:35:31 lenz@mysql.com +1 -1
     - cosmetical fix

  man/mysqlaccess.1.in
    1.9 04/06/22 17:35:31 lenz@mysql.com +1 -2
     - cosmetical fix

  acinclude.m4
    1.77.1.21 04/06/22 17:35:31 lenz@mysql.com +3 -2
     - OpenSSL libs are installed in /usr/freeware/include and
       /usr/freeware/lib32 on SGI IRIX - expanded search list

ChangeSet
  1.1346.643.5 04/06/22 17:27:57 ingo@mysql.com +3 -0
  bug#2688 - Wrong index_merge query results for BDB table with variable length primary key.
  dded code to clear the tail of the reference buffer if the actual key length 
  is less than the maximum key length.

  sql/ha_berkeley.cc
    1.105.1.11 04/06/22 17:27:40 ingo@mysql.com +31 -0
    bug#2688 - Wrong index_merge query results for BDB table with variable length primary key.
    Added code to clear the tail of the reference buffer if the actual key length 
    is less than the maximum key length.

  mysql-test/t/bdb.test
    1.27.1.4 04/06/22 17:27:40 ingo@mysql.com +18 -0
    bug#2688 - Wrong index_merge query results for BDB table with variable length primary key.
    Added the test case.

  mysql-test/r/bdb.result
    1.22.1.8 04/06/22 17:27:40 ingo@mysql.com +18 -0
    bug#2688 - Wrong index_merge query results for BDB table with variable length primary key.
    Added the test case results.

ChangeSet
  1.1616.553.1 04/06/22 19:27:16 dlenev@brandersnatch.localdomain +6 -0
  Fix for Bug# 4200 "Parse error on LIKE ESCAPE with parameter binding"
  Now ESCAPE in LIKE will accept not only string literal but constant 
  delimited expression.

  sql/sql_yacc.yy
    1.203.108.1 04/06/22 19:27:13 dlenev@brandersnatch.localdomain +8 -4
    Now ESCAPE clause of LIKE accepts not only string literal but constant delimited expression
    (the most important case is prepared statement parameter of course).

  sql/sql_help.cc
    1.27 04/06/22 19:27:12 dlenev@brandersnatch.localdomain +1 -1
    Item_func_like now accepts Item* as third argument.

  sql/item_cmpfunc.h
    1.73.6.1 04/06/22 19:27:11 dlenev@brandersnatch.localdomain +4 -2
    Now ESCAPE clause in LIKE will accept not only string literal but constant delimited 
    expression. Thus added member to Item_func_like for storing Item corresponding to this
    expression and changed third argument of cons to be Item* instead of char*.

  sql/item_cmpfunc.cc
    1.111.12.1 04/06/22 19:27:10 dlenev@brandersnatch.localdomain +50 -37
    Added support for accepting of constant delimited expression as ESCAPE argument to
    Item_func_like.

  mysql-test/t/func_like.test
    1.13 04/06/22 19:27:09 dlenev@brandersnatch.localdomain +11 -2
    Added test for bug# 4200 "Parse error on LIKE ESCAPE with parameter binding"

  mysql-test/r/func_like.result
    1.12.1.1 04/06/22 19:27:05 dlenev@brandersnatch.localdomain +6 -0
    Added test for bug# 4200 "Parse error on LIKE ESCAPE with parameter binding"

ChangeSet
  1.1346.641.5 04/06/22 16:15:58 marko@hundin.mysql.fi +2 -0
  lexyy.c, pars0lex.l:
    Document the handling of quoted strings

  innobase/pars/lexyy.c
    1.10.1.5 04/06/22 16:13:14 marko@hundin.mysql.fi +133 -111
    Document the handling of quoted strings

  innobase/pars/pars0lex.l
    1.8 04/06/22 16:12:57 marko@hundin.mysql.fi +25 -2
    Document the handling of quoted strings

ChangeSet
  1.1616.552.1 04/06/22 16:03:25 bar@mysql.com +1 -0
  configure.in:
    ./configure --with-charset=binary
    is now possible.

  configure.in
    1.201.22.1 04/06/22 16:02:28 bar@mysql.com +3 -1
    --with-charset-binary is now possible.

ChangeSet
  1.1616.541.17 04/06/22 14:47:41 konstantin@mysql.com +1 -0
  - automatic dependency tracking for client_test enabled

  tests/Makefile.am
    1.13 04/06/22 14:47:39 konstantin@mysql.com +0 -1
    - automatic dependency tracking for client_test enabled

ChangeSet
  1.1616.549.2 04/06/22 13:41:57 bell@sanja.is.com.ua +2 -0
  post-review changes (Bug#4090)

  mysql-test/t/subselect.test
    1.58.1.54 04/06/22 13:41:53 bell@sanja.is.com.ua +9 -1
    prepare statement test added

  mysql-test/r/subselect.result
    1.67.1.63 04/06/22 13:41:53 bell@sanja.is.com.ua +20 -5
    prepare statement test added

ChangeSet
  1.1616.548.1 04/06/22 13:19:25 dlenev@brandersnatch.localdomain +1 -0
  Removed building of test_time test since it was not needed/used really and caused problems
  on many platforms (the other option was providing portable setenv() replacement).

  sql/Makefile.am
    1.77.1.20 04/06/22 13:19:18 dlenev@brandersnatch.localdomain +1 -5
    Removed building of test_time since it was not needed/used really and caused problems on 
    many platforms.

ChangeSet
  1.1616.541.14 04/06/22 14:10:50 bar@mysql.com +2 -0
  auto_increment.test, auto_increment.result:
    Drop t2 in the beginning.
    ,

  mysql-test/t/auto_increment.test
    1.18 04/06/22 14:10:24 bar@mysql.com +1 -0
    Drop t2 in the beginning.
    ,

  mysql-test/r/auto_increment.result
    1.27 04/06/22 14:09:55 bar@mysql.com +1 -0
    Drop t2 in the beginning.
    ,

ChangeSet
  1.1616.541.13 04/06/22 11:04:41 konstantin@mysql.com +2 -0
  Fix for bug#4236 "Server crash on attempt to execute non-prepared
   statement": check that statement is not null when accessing it's name.

  tests/client_test.c
    1.51.1.46 04/06/22 11:04:39 konstantin@mysql.com +30 -0
    A test case for bug#4236

  sql/sql_class.h
    1.146.38.1 04/06/22 11:04:39 konstantin@mysql.com +1 -1
    Fix for bug#4236 "Server crash on attempt to execute non-prepared
     statement": check that statement is not null when accessing it's name.

ChangeSet
  1.1682 04/06/22 04:47:28 sergefp@mysql.com +14 -0
  Range optimizer fix: 
  If cost(full_scan_on_shortest_covering_index) < cost(best_range_scan) <  cost(full_table_scan)
    use full_scan_on_shortest_covering_index
  (before this fix best_range_scan was used)

  sql/opt_range.cc
    1.117 04/06/22 04:46:20 sergefp@mysql.com +11 -11
    Range optimizer fix: 
    If cost(full_scan_on_shortest_covering_index) < cost(best_range_scan) <  cost(full_table_scan)
      use full_scan_on_shortest_covering_index
    (before this fix best_range_scan was used)

  mysql-test/r/select.result
    1.40 04/06/22 04:46:20 sergefp@mysql.com +2 -2
    Range optimizer fix: 
    If cost(full_scan_on_shortest_covering_index) < cost(best_range_scan) <  cost(full_table_scan)
      use full_scan_on_shortest_covering_index
    (before this fix best_range_scan was used)

  mysql-test/r/range.result
    1.25.1.1 04/06/22 04:46:20 sergefp@mysql.com +3 -3
    Range optimizer fix: 
    If cost(full_scan_on_shortest_covering_index) < cost(best_range_scan) <  cost(full_table_scan)
      use full_scan_on_shortest_covering_index
    (before this fix best_range_scan was used)

  mysql-test/r/order_by.result
    1.41 04/06/22 04:46:20 sergefp@mysql.com +2 -2
    Range optimizer fix: 
    If cost(full_scan_on_shortest_covering_index) < cost(best_range_scan) <  cost(full_table_scan)
      use full_scan_on_shortest_covering_index
    (before this fix best_range_scan was used)

  mysql-test/r/null_key.result
    1.26.1.1 04/06/22 04:46:20 sergefp@mysql.com +3 -3
    Range optimizer fix: 
    If cost(full_scan_on_shortest_covering_index) < cost(best_range_scan) <  cost(full_table_scan)
      use full_scan_on_shortest_covering_index
    (before this fix best_range_scan was used)

  mysql-test/r/key.result
    1.17.1.1 04/06/22 04:46:20 sergefp@mysql.com +2 -2
    Range optimizer fix: 
    If cost(full_scan_on_shortest_covering_index) < cost(best_range_scan) <  cost(full_table_scan)
      use full_scan_on_shortest_covering_index
    (before this fix best_range_scan was used)

  mysql-test/r/join_outer.result
    1.29 04/06/22 04:46:20 sergefp@mysql.com +1 -1
    Range optimizer fix: 
    If cost(full_scan_on_shortest_covering_index) < cost(best_range_scan) <  cost(full_table_scan)
      use full_scan_on_shortest_covering_index
    (before this fix best_range_scan was used)

  mysql-test/r/heap_hash.result
    1.10 04/06/22 04:46:20 sergefp@mysql.com +1 -1
    Range optimizer fix: 
    If cost(full_scan_on_shortest_covering_index) < cost(best_range_scan) <  cost(full_table_scan)
      use full_scan_on_shortest_covering_index
    (before this fix best_range_scan was used)

  mysql-test/r/heap_btree.result
    1.18 04/06/22 04:46:20 sergefp@mysql.com +1 -1
    Range optimizer fix: 
    If cost(full_scan_on_shortest_covering_index) < cost(best_range_scan) <  cost(full_table_scan)
      use full_scan_on_shortest_covering_index
    (before this fix best_range_scan was used)

  mysql-test/r/heap.result
    1.21 04/06/22 04:46:20 sergefp@mysql.com +1 -1
    Range optimizer fix: 
    If cost(full_scan_on_shortest_covering_index) < cost(best_range_scan) <  cost(full_table_scan)
      use full_scan_on_shortest_covering_index
    (before this fix best_range_scan was used)

  mysql-test/r/func_like.result
    1.13 04/06/22 04:46:20 sergefp@mysql.com +2 -2
    Range optimizer fix: 
    If cost(full_scan_on_shortest_covering_index) < cost(best_range_scan) <  cost(full_table_scan)
      use full_scan_on_shortest_covering_index
    (before this fix best_range_scan was used)

  mysql-test/r/func_group.result
    1.31 04/06/22 04:46:20 sergefp@mysql.com +3 -3
    Range optimizer fix: 
    If cost(full_scan_on_shortest_covering_index) < cost(best_range_scan) <  cost(full_table_scan)
      use full_scan_on_shortest_covering_index
    (before this fix best_range_scan was used)

  mysql-test/r/derived.result
    1.46.1.1 04/06/22 04:46:20 sergefp@mysql.com +2 -2
    Range optimizer fix: 
    If cost(full_scan_on_shortest_covering_index) < cost(best_range_scan) <  cost(full_table_scan)
      use full_scan_on_shortest_covering_index
    (before this fix best_range_scan was used)

  mysql-test/r/ctype_ucs.result
    1.10.1.1 04/06/22 04:46:19 sergefp@mysql.com +2 -2
    Range optimizer fix: 
    If cost(full_scan_on_shortest_covering_index) < cost(best_range_scan) <  cost(full_table_scan)
      use full_scan_on_shortest_covering_index
    (before this fix best_range_scan was used)

ChangeSet
  1.1616.547.1 04/06/22 02:15:52 lenz@mysql.com +1 -0
   - explicitely enable libedit in Do-compile, when readline is not
     requested

  Build-tools/Do-compile
    1.88 04/06/22 02:15:47 lenz@mysql.com +8 -1
     - explicitely enable libedit, when readline is not requested

ChangeSet
  1.1616.546.1 04/06/22 03:25:54 sergefp@mysql.com +1 -0
  Coding style fixes

  sql/item.cc
    1.58.1.91 04/06/22 03:25:19 sergefp@mysql.com +33 -34
    Coding style fixes

ChangeSet
  1.1616.545.1 04/06/22 03:10:30 dlenev@brandersnatch.localdomain +1 -0
  Small cleanup in time zone handling code:
  Now we are using time zone abbreviations in debug builds or in utlities only.
  Tried to remove warnings generated by compiler by using more proper types for
  members of time zone describing structures. Removed unused variables. 
  Fixed test_time to be able to build on FreeBSD without much problems.
  Portability fix: resolved ambiguity of abs() function.

  sql/tztime.cc
    1.2 04/06/22 03:10:25 dlenev@brandersnatch.localdomain +39 -38
    Small cleanup in time zone handling code:
    Now we are using time zone abbreviations in debug builds or in utlities only.
    Tried to remove warnings generated by compiler by using more proper types for
    members of time zone describing structures. Removed unused variables. 
    Fixed test_time to be able to build on FreeBSD without much problems.
    Portability fix: resolved ambiguity of abs() function.

ChangeSet
  1.1616.544.1 04/06/21 23:04:50 guilhem@mysql.com +2 -0
  Including in enum_shutdown_level the 2 types of KILL of 5.0
  (enum_shutdown_level is going to replace enum killed_state in 5.0).

  include/mysql_com.h
    1.67.1.33 04/06/21 23:04:46 guilhem@mysql.com +5 -1
    putting in place the two types of KILL of 5.0

  VC++Files/winmysqladmin/mysql_com.h
    1.4 04/06/21 23:04:45 guilhem@mysql.com +5 -1
    putting in place the 2 types of KILL of 5.0

ChangeSet
  1.1616.541.7 04/06/22 00:00:36 bell@sanja.is.com.ua +1 -0
  fixed picture in comment.

  sql/sql_lex.h
    1.102.38.1 04/06/22 00:00:15 bell@sanja.is.com.ua +2 -2
    fixed picture in comment.

ChangeSet
  1.1346.644.1 04/06/21 19:42:00 serg@sergbook.mysql.com +2 -0
  use ref not range for ... WHERE key IN (val)

  sql/sql_select.cc
    1.152.1.129 04/06/21 19:41:55 serg@sergbook.mysql.com +3 -1
    use ref not range for ... WHERE key IN (val)

  mysql-test/r/range.result
    1.6.2.1 04/06/21 19:41:54 serg@sergbook.mysql.com +1 -1
    use ref not range for ... WHERE key IN (val)

ChangeSet
  1.1616.541.6 04/06/21 20:39:19 konstantin@mysql.com +7 -0
  Unused variables removed (many files).

  sql/time.cc
    1.47 04/06/21 20:39:16 konstantin@mysql.com +0 -2
    Unused variable 'str_begin' removed.

  sql/sql_prepare.cc
    1.34.21.1 04/06/21 20:39:16 konstantin@mysql.com +0 -1
    Unused variable 'res' removed.

  sql/sql_parse.cc
    1.271.76.5 04/06/21 20:39:16 konstantin@mysql.com +0 -2
    Unused variables 'pstr' and 'create_info' removed.

  sql/sql_derived.cc
    1.43.1.29 04/06/21 20:39:16 konstantin@mysql.com +0 -1
    Unused variable 'is_subsel' removed.

  sql/slave.cc
    1.188.1.61 04/06/21 20:39:16 konstantin@mysql.com +0 -1
    Unused variable 'return_val' removed.

  sql/item_subselect.cc
    1.60.22.1 04/06/21 20:39:16 konstantin@mysql.com +0 -1
    Unused variable 'type' removed.

  sql/item_func.cc
    1.124.1.77 04/06/21 20:39:16 konstantin@mysql.com +0 -2
    Unused variable 'thd' removed.

ChangeSet
  1.1616.543.1 04/06/21 16:36:28 guilhem@mysql.com +2 -0
  changing order of enum_shutdown_level (easier; we can test if we should die with
  "if (thd->killed > thd->killable)", if we simply do
  thd->killed= level;

  include/mysql_com.h
    1.67.1.32 04/06/21 16:36:23 guilhem@mysql.com +6 -5
    changing order of enum_shutdown_level (easier; we can test if we should die with
    "if (thd->killed > thd->killable)", if we simply do
    thd->killed= level;

  VC++Files/winmysqladmin/mysql_com.h
    1.3 04/06/21 16:36:23 guilhem@mysql.com +6 -5
    changing order of enum_shutdown_level (easier; we can test if we should die with
    "if (thd->killed > thd->killable)", if we simply do
    thd->killed= level;

ChangeSet
  1.1616.541.3 04/06/21 11:24:08 tomas@poseidon.elisa-laajakaista.fi +2 -0
  ndb file missing in src dist

  BitKeeper/etc/logging_ok
    1.233.1.84 04/06/21 11:24:08 tomas@poseidon.elisa-laajakaista.fi +1 -0
    Logging to logging@openlogging.org accepted

  ndb/test/ndbapi/bank/Makefile.am
    1.4 04/06/21 11:24:01 tomas@poseidon.elisa-laajakaista.fi +1 -1
    ndb file missing in src dist

ChangeSet
  1.1616.542.1 04/06/21 15:17:07 ram@gw.mysql.r18.ru +3 -0
  a fix (bug #4198: Incorrect key file for table).

  sql/sql_select.cc
    1.216.74.2 04/06/21 15:16:29 ram@gw.mysql.r18.ru +2 -1
    a fix (bug #4198: Incorrect key file for table).

  mysql-test/t/delete.test
    1.16 04/06/21 15:16:28 ram@gw.mysql.r18.ru +11 -0
    a fix (bug #4198: Incorrect key file for table).

  mysql-test/r/delete.result
    1.17 04/06/21 15:16:28 ram@gw.mysql.r18.ru +10 -0
    a fix (bug #4198: Incorrect key file for table).

ChangeSet
  1.1616.537.5 04/06/21 14:11:51 ram@gw.mysql.r18.ru +2 -0
  proper test of warnings for group_concat().

  mysql-test/t/func_gconcat.test
    1.18 04/06/21 14:11:21 ram@gw.mysql.r18.ru +1 -1
    proper test of warnings for group_concat().

  mysql-test/r/func_gconcat.result
    1.27 04/06/21 14:11:20 ram@gw.mysql.r18.ru +5 -2
    proper test of warnings for group_concat().

ChangeSet
  1.1616.541.2 04/06/21 11:27:40 monty@mysql.com +3 -0
  Field_geom should have same max_length as Field_blob
  Updated tests
  After merge fix

  sql/field.h
    1.106 04/06/21 11:27:34 monty@mysql.com +0 -1
    Field_geom should have same max_length as Field_blob

  sql/field.cc
    1.163 04/06/21 11:27:34 monty@mysql.com +5 -2
    After merge fix
    Removed compiler warning

  mysql-test/r/func_time.result
    1.23.1.11 04/06/21 11:27:34 monty@mysql.com +2 -0
    Updated tests

ChangeSet
  1.1616.531.3 04/06/21 10:21:20 monty@mysql.com +20 -0
  After merge fixes
  Return NULL if a time argument is given to date_add(). (Warning will be shown after Dimitri's timezone patch is pushed)

  sql/table.cc
    1.106 04/06/21 10:21:18 monty@mysql.com +1 -1
    Better comment

  sql/sql_class.cc
    1.105.22.1 04/06/21 10:21:18 monty@mysql.com +2 -1
    Removed compiler warning

  sql/net_serv.cc
    1.63.1.3 04/06/21 10:21:18 monty@mysql.com +11 -1
    More debugging (if DEBUG_DATA_PACKETS is set)
    

  sql/field.h
    1.102.1.2 04/06/21 10:21:18 monty@mysql.com +1 -1
    After merge fix

  sql/field.cc
    1.159.1.2 04/06/21 10:21:18 monty@mysql.com +14 -3
    Fixed that get_date(time) gives a warning
    

  sql-common/client.c
    1.46.1.18 04/06/21 10:21:18 monty@mysql.com +2 -1
    After merge fix

  netware/mysqld_safe.c
    1.7 04/06/21 10:21:18 monty@mysql.com +270 -260
    Removed end \r
    Run program through indent-ex to get MySQL indentation
    

  mysql-test/t/type_date.test
    1.8 04/06/21 10:21:18 monty@mysql.com +3 -2
    Addded missing explanation for bug

  mysql-test/t/rpl_get_lock.test
    1.11 04/06/21 10:21:18 monty@mysql.com +1 -1
    Test was depending on when server was restarted.

  mysql-test/t/func_time.test
    1.21.1.7 04/06/21 10:21:18 monty@mysql.com +0 -2
    Removed comment that is not needed anymore
    (After Dimitri's timezone patch is pushed, we should get a warning for the date_add(time...) entry)

  mysql-test/r/type_decimal.result
    1.22.1.2 04/06/21 10:21:18 monty@mysql.com +1 -1
    After merge fix

  mysql-test/r/type_date.result
    1.10 04/06/21 10:21:18 monty@mysql.com +1 -1
    After merge fix

  mysql-test/r/rpl_get_lock.result
    1.13 04/06/21 10:21:18 monty@mysql.com +3 -3
    Test was depending on when server was restarted.

  mysql-test/r/rpl_free_items.result
    1.2 04/06/21 10:21:18 monty@mysql.com +2 -2
    After merge fix

  mysql-test/r/func_time.result
    1.23.2.1 04/06/21 10:21:18 monty@mysql.com +1 -1
    Return NULL if a time argument is given to date_add()

  myisam/mi_unique.c
    1.20 04/06/21 10:21:18 monty@mysql.com +4 -5
    Better checksum handling

  innobase/log/log0recv.c
    1.36 04/06/21 10:21:18 monty@mysql.com +0 -1
    After merge fix

  innobase/fil/fil0fil.c
    1.33.1.1 04/06/21 10:21:18 monty@mysql.com +1 -2
    After merge fix

  innobase/data/data0type.c
    1.13 04/06/21 10:21:18 monty@mysql.com +0 -1
    After merge fix

  client/mysqltest.c
    1.92.1.47 04/06/21 10:21:18 monty@mysql.com +24 -10
    Added MAX_VAR_NAME which was lost in merge
    Added more debugging
    Fixed bug in 'eval'
    

ChangeSet
  1.1346.643.3 04/06/20 23:44:21 bell@sanja.is.com.ua +3 -0
  do not clear list of changed tables on one statement rollback (Bug #4213)

  sql/handler.cc
    1.82.1.27 04/06/20 23:44:12 bell@sanja.is.com.ua +2 -3
    clear changed tables list only for total roll back

  mysql-test/t/innodb_cache.test
    1.4.1.1 04/06/20 23:44:12 bell@sanja.is.com.ua +22 -1
    test of rollback one statement in transaction

  mysql-test/r/innodb_cache.result
    1.2.2.1 04/06/20 23:44:12 bell@sanja.is.com.ua +20 -1
    test of rollback one statement in transaction

ChangeSet
  1.1616.539.1 04/06/20 19:11:02 guilhem@mysql.com +31 -0
  Robustness feature.
  Won't be pushed as is - separate email sent for internal review.
  WL#1717 "binlog-innodb consistency".
  Now when mysqld starts, if InnoDB does a crash recovery, we use the binlog name
  and position retrieved from InnoDB (corresponding to the last transaction
  successfully committed by InnoDB) to cut any rolled back transaction from
  the binary log. This is triggered by the --innodb-safe-binlog option.
  Provided you configure mysqld to fsync() InnoDB at every commit (using
  flush_log_at_trx_commit) and to fsync() the binlog at every write
  (using --sync-binlog=1), this behaviour guarantees that a master always has
  consistency between binlog and InnoDB, whenever the crash happens.
  6 tests to verify that it works.

  mysql-test/t/rpl_crash_binlog_ib_3b.test
    1.1 04/06/20 19:10:58 guilhem@mysql.com +32 -0

  mysql-test/t/rpl_crash_binlog_ib_3b-master.opt
    1.1 04/06/20 19:10:58 guilhem@mysql.com +1 -0

  mysql-test/t/rpl_crash_binlog_ib_3b.test
    1.0 04/06/20 19:10:58 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/t/rpl_crash_binlog_ib_3b.test

  mysql-test/t/rpl_crash_binlog_ib_3b-master.opt
    1.0 04/06/20 19:10:58 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/t/rpl_crash_binlog_ib_3b-master.opt

  mysql-test/t/rpl_crash_binlog_ib_3a.test
    1.1 04/06/20 19:10:57 guilhem@mysql.com +40 -0

  mysql-test/t/rpl_crash_binlog_ib_3a-master.opt
    1.1 04/06/20 19:10:57 guilhem@mysql.com +1 -0

  mysql-test/t/rpl_crash_binlog_ib_2b.test
    1.1 04/06/20 19:10:57 guilhem@mysql.com +32 -0

  mysql-test/t/rpl_crash_binlog_ib_2b-master.opt
    1.1 04/06/20 19:10:57 guilhem@mysql.com +1 -0

  mysql-test/t/rpl_crash_binlog_ib_2a.test
    1.1 04/06/20 19:10:57 guilhem@mysql.com +42 -0

  mysql-test/t/rpl_crash_binlog_ib_3a.test
    1.0 04/06/20 19:10:57 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/t/rpl_crash_binlog_ib_3a.test

  mysql-test/t/rpl_crash_binlog_ib_3a-master.opt
    1.0 04/06/20 19:10:57 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/t/rpl_crash_binlog_ib_3a-master.opt

  mysql-test/t/rpl_crash_binlog_ib_2b.test
    1.0 04/06/20 19:10:57 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/t/rpl_crash_binlog_ib_2b.test

  mysql-test/t/rpl_crash_binlog_ib_2b-master.opt
    1.0 04/06/20 19:10:57 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/t/rpl_crash_binlog_ib_2b-master.opt

  mysql-test/t/rpl_crash_binlog_ib_2a.test
    1.0 04/06/20 19:10:57 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/t/rpl_crash_binlog_ib_2a.test

  mysql-test/t/rpl_crash_binlog_ib_2a-master.opt
    1.1 04/06/20 19:10:56 guilhem@mysql.com +1 -0

  mysql-test/t/rpl_crash_binlog_ib_1b.test
    1.1 04/06/20 19:10:56 guilhem@mysql.com +38 -0

  mysql-test/t/rpl_crash_binlog_ib_1b-master.opt
    1.1 04/06/20 19:10:56 guilhem@mysql.com +1 -0

  mysql-test/t/rpl_crash_binlog_ib_1a.test
    1.1 04/06/20 19:10:56 guilhem@mysql.com +71 -0

  mysql-test/t/rpl_crash_binlog_ib_1a-master.opt
    1.1 04/06/20 19:10:56 guilhem@mysql.com +1 -0

  mysql-test/t/rpl_crash_binlog_ib_2a-master.opt
    1.0 04/06/20 19:10:56 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/t/rpl_crash_binlog_ib_2a-master.opt

  mysql-test/t/rpl_crash_binlog_ib_1b.test
    1.0 04/06/20 19:10:56 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/t/rpl_crash_binlog_ib_1b.test

  mysql-test/t/rpl_crash_binlog_ib_1b-master.opt
    1.0 04/06/20 19:10:56 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/t/rpl_crash_binlog_ib_1b-master.opt

  mysql-test/t/rpl_crash_binlog_ib_1a.test
    1.0 04/06/20 19:10:56 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/t/rpl_crash_binlog_ib_1a.test

  mysql-test/t/rpl_crash_binlog_ib_1a-master.opt
    1.0 04/06/20 19:10:56 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/t/rpl_crash_binlog_ib_1a-master.opt

  mysql-test/r/rpl_crash_binlog_ib_3b.result
    1.1 04/06/20 19:10:55 guilhem@mysql.com +20 -0

  mysql-test/r/rpl_crash_binlog_ib_3a.result
    1.1 04/06/20 19:10:55 guilhem@mysql.com +25 -0

  mysql-test/r/rpl_crash_binlog_ib_2b.result
    1.1 04/06/20 19:10:55 guilhem@mysql.com +28 -0

  mysql-test/r/rpl_crash_binlog_ib_2a.result
    1.1 04/06/20 19:10:55 guilhem@mysql.com +32 -0

  mysql-test/r/rpl_crash_binlog_ib_1b.result
    1.1 04/06/20 19:10:55 guilhem@mysql.com +24 -0

  mysql-test/r/rpl_crash_binlog_ib_3b.result
    1.0 04/06/20 19:10:55 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/r/rpl_crash_binlog_ib_3b.result

  mysql-test/r/rpl_crash_binlog_ib_3a.result
    1.0 04/06/20 19:10:55 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/r/rpl_crash_binlog_ib_3a.result

  mysql-test/r/rpl_crash_binlog_ib_2b.result
    1.0 04/06/20 19:10:55 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/r/rpl_crash_binlog_ib_2b.result

  mysql-test/r/rpl_crash_binlog_ib_2a.result
    1.0 04/06/20 19:10:55 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/r/rpl_crash_binlog_ib_2a.result

  mysql-test/r/rpl_crash_binlog_ib_1b.result
    1.0 04/06/20 19:10:55 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/r/rpl_crash_binlog_ib_1b.result

  mysql-test/r/rpl_crash_binlog_ib_1a.result
    1.1 04/06/20 19:10:54 guilhem@mysql.com +27 -0

  mysql-test/r/have_debug.require
    1.1 04/06/20 19:10:54 guilhem@mysql.com +2 -0

  mysql-test/misc/kill_master.sh
    1.1 04/06/20 19:10:54 guilhem@mysql.com +1 -0

  mysql-test/include/have_debug.inc
    1.1 04/06/20 19:10:54 guilhem@mysql.com +4 -0

  sql/sql_class.h
    1.146.1.95 04/06/20 19:10:54 guilhem@mysql.com +2 -0
    new methods for MYSQL_LOG.

  sql/mysqld.cc
    1.356.61.2 04/06/20 19:10:54 guilhem@mysql.com +34 -2
    New option --innodb-safe-binlog and --crash-binlog-innodb (the latter is for testing, it makes mysqld crash).
    Just after opening the logs and opening the storage engines, cut any wrong statement from the binlog, based
    on info read from InnoDB.

  mysql-test/r/rpl_crash_binlog_ib_1a.result
    1.0 04/06/20 19:10:54 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/r/rpl_crash_binlog_ib_1a.result

  mysql-test/r/have_debug.require
    1.0 04/06/20 19:10:54 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/r/have_debug.require

  mysql-test/misc/kill_master.sh
    1.0 04/06/20 19:10:54 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/misc/kill_master.sh

  mysql-test/include/have_debug.inc
    1.0 04/06/20 19:10:54 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-1717/mysql-test/include/have_debug.inc

  sql/mysql_priv.h
    1.186.1.110 04/06/20 19:10:53 guilhem@mysql.com +1 -0
    new option, to crash (use for testing only)

  sql/log.cc
    1.108.1.28 04/06/20 19:10:53 guilhem@mysql.com +181 -4
    Added my_sync() when we create a binlog (my_sync of the binlog and of the index file);
    this is always done, whether --sync-binlog or not (binlog creation is rare, so no speed
    problem, and I like to have the existence of the binlog always reliably recorded, even if
    later content is not).
    If --crash-binlog-innodb, crash between the binlog write and the InnoDB commit.
    New methods:
    - report_pos_in_innodb() to store the binlog name and position into InnoDB (used only when
    we create a new binlog: at startup and at FLUSH LOGS)
    - cut_spurious_tail() to possibly cut the tail of a binlog based on the info we read
    from InnoDB (does something only if InnoDB has just done a crash recovery).

  sql/ha_innodb.h
    1.57.1.8 04/06/20 19:10:53 guilhem@mysql.com +3 -0
    ethods to read from InnoDB the binlog coords stored into it

  sql/ha_innodb.cc
    1.90.1.48 04/06/20 19:10:53 guilhem@mysql.com +15 -0
    methods to read from InnoDB the binlog coords stored into it

  mysql-test/mysql-test-run.sh
    1.189 04/06/20 19:10:53 guilhem@mysql.com +12 -4
    The tests which check that the binlog is cut at restart, need to not delete those binlogs, of course.
    And not delete replication info, so that we can test that the slave does not receive anything
    wrong from the cut binlog.

  innobase/trx/trx0sys.c
    1.28.1.1 04/06/20 19:10:53 guilhem@mysql.com +29 -11
    when InnoDB does crash recovery, we now save the binlog coords it prints, into variables for later use.

  innobase/include/trx0sys.h
    1.13 04/06/20 19:10:53 guilhem@mysql.com +8 -0
    when InnoDB does crash recovery, we now save the binlog coords it prints, into variables for later use.

  client/mysqltest.c
    1.92.8.1 04/06/20 19:10:53 guilhem@mysql.com +25 -1
    New command require_os (only "unix" accepted for now).

ChangeSet
  1.1616.537.4 04/06/20 20:27:50 konstantin@mysql.com +1 -0
  A typo fixed.

  acinclude.m4
    1.101 04/06/20 20:27:47 konstantin@mysql.com +2 -2
    A typo fixed.

ChangeSet
  1.1616.537.3 04/06/20 03:52:05 konstantin@mysql.com +1 -0
  Fix for bug in build scripts making everything to be reconfigured
  at each 'make' invocation (pushing as two devs tested that the patch is ok).

  Makefile.am
    1.56 04/06/20 03:52:02 konstantin@mysql.com +1 -1
    Fix for bug in build scripts making everything to be reconfigured
    at each 'make' invocation.

ChangeSet
  1.1616.537.2 04/06/19 15:35:41 guilhem@mysql.com +1 -0
  swapping lines to make gcc happy

  libmysql/libmysql.c
    1.156.1.92 04/06/19 15:35:37 guilhem@mysql.com +1 -1
    fix to make autobuild happy.

ChangeSet
  1.1616.535.3 04/06/19 13:32:15 pekka@mysql.com +7 -0
  tux optim 11 - use TUP method to read min/max prefixes

  ndb/src/kernel/blocks/dbtux/Times.txt
    1.12 04/06/19 13:31:53 pekka@mysql.com +3 -0
    tux optim 11 - use TUP method to read min/max prefixes

  ndb/src/kernel/blocks/dbtux/DbtuxTree.cpp
    1.7 04/06/19 13:31:53 pekka@mysql.com +2 -2
    tux optim 11 - use TUP method to read min/max prefixes

  ndb/src/kernel/blocks/dbtux/DbtuxNode.cpp
    1.8 04/06/19 13:31:53 pekka@mysql.com +8 -21
    tux optim 11 - use TUP method to read min/max prefixes

  ndb/src/kernel/blocks/dbtux/DbtuxMaint.cpp
    1.9 04/06/19 13:31:53 pekka@mysql.com +2 -2
    tux optim 11 - use TUP method to read min/max prefixes

  ndb/src/kernel/blocks/dbtux/DbtuxGen.cpp
    1.7 04/06/19 13:31:53 pekka@mysql.com +74 -1
    tux optim 11 - use TUP method to read min/max prefixes

  ndb/src/kernel/blocks/dbtux/DbtuxCmp.cpp
    1.4 04/06/19 13:31:53 pekka@mysql.com +2 -2
    tux optim 11 - use TUP method to read min/max prefixes

  ndb/src/kernel/blocks/dbtux/Dbtux.hpp
    1.16 04/06/19 13:31:53 pekka@mysql.com +14 -37
    tux optim 11 - use TUP method to read min/max prefixes

ChangeSet
  1.1616.538.1 04/06/19 13:26:39 bell@sanja.is.com.ua +4 -0
  cleanup for Item_func_regex (Bug #4199)

  sql/item_cmpfunc.h
    1.73.5.1 04/06/19 13:26:36 bell@sanja.is.com.ua +1 -1
    cleanup for Item_func_regex

  sql/item_cmpfunc.cc
    1.111.11.1 04/06/19 13:26:36 bell@sanja.is.com.ua +5 -1
    cleanup for Item_func_regex

  mysql-test/t/func_regexp.test
    1.8 04/06/19 13:26:36 bell@sanja.is.com.ua +13 -0
    test of cleaning regex in PS

  mysql-test/r/func_regexp.result
    1.9 04/06/19 13:26:36 bell@sanja.is.com.ua +17 -0
    test of cleaning regex in PS

ChangeSet
  1.1346.643.2 04/06/19 12:12:00 heikki@hundin.mysql.fi +1 -0
  mem0dbg.c:
    InnoDB with UNIV_MEM_DEBUG did not compile because a global variable was forgotten when we put back mem_print_info() functions 2 days ago; add that variable

  innobase/mem/mem0dbg.c
    1.5.1.10 04/06/19 12:11:40 heikki@hundin.mysql.fi +2 -1
    InnoDB with UNIV_MEM_DEBUG did not compile because a global variable was forgotten when we put back mem_print_info() functions 2 days ago; add that variable

ChangeSet
  1.1616.510.3 04/06/18 23:50:04 guilhem@mysql.com +6 -0
  API change: mysql_shutdown() now requires a 2nd argument, the shutdown level.
  mysqld >=4.1.3 will however understand shutdown requests sent by clients <4.1.3.
  And mysqld <4.1.3 will understand shutdown requests sent by clients >=4.1.3
  (it will ignore the level). Those shutdown level are just PLACEHOLDERS now.
  So this change is just to make the 4.1 API suitable before it is frozen. Later
  we will actually implement the shutdown levels.

  sql/sql_parse.cc
    1.271.76.2 04/06/18 23:49:58 guilhem@mysql.com +10 -7
    with SHUTDOWN_DEFAULT==0, no need for testing packet_length.

  libmysql/libmysql.c
    1.156.17.2 04/06/18 23:49:58 guilhem@mysql.com +1 -2
    correcting mistake (how come that my tests still all worked with this? - should recheck, for curiosity).

  include/mysql_com.h
    1.67.1.31 04/06/18 23:49:58 guilhem@mysql.com +2 -2
    SHUTDOWN_DEFAULT is now 0 instead of 255, this saves one test in sql_parse.cc

  VC++Files/winmysqladmin/mysql_com.h
    1.2 04/06/18 23:49:58 guilhem@mysql.com +21 -0
    Several types of shutdown now.

  VC++Files/winmysqladmin/mysql.h
    1.2 04/06/18 23:49:58 guilhem@mysql.com +3 -1
    2nd argument to mysql_shutdown()

  VC++Files/winmysqladmin/main.cpp
    1.2 04/06/18 23:49:58 guilhem@mysql.com +1 -1
    2nd argument to mysql_shutdown()

ChangeSet
  1.1346.642.1 04/06/18 14:57:42 mwagner@here.mwagner.org +2 -0
  my_md5sum:
    new file, simulates 'md5sum' as a perl script

  BitKeeper/etc/logging_ok
    1.206.28.1 04/06/18 14:57:42 mwagner@here.mwagner.org +1 -0
    Logging to logging@openlogging.org accepted

  Build-tools/my_md5sum
    1.1 04/06/18 14:55:25 mwagner@here.mwagner.org +123 -0

  Build-tools/my_md5sum
    1.0 04/06/18 14:55:25 mwagner@here.mwagner.org +0 -0
    BitKeeper file /Volumes/BK/mysql-4.0-work/Build-tools/my_md5sum

ChangeSet
  1.1616.529.18 04/06/18 12:14:27 paul@ice.snake.net +1 -0
  configure.in:
    Fix typo.

  configure.in
    1.201.1.74 04/06/18 12:12:03 paul@ice.snake.net +2 -2
    Fix typo.

ChangeSet
  1.1616.536.1 04/06/18 11:19:29 paul@ice.snake.net +1 -0
  perror.c:
    MySql -> MySQL (Bug #4182)

  extra/perror.c
    1.28 04/06/18 11:18:23 paul@ice.snake.net +1 -1
    MySql -> MySQL (Bug #4182)

ChangeSet
  1.1346.641.2 04/06/18 15:54:19 marko@hundin.mysql.fi +4 -0
  mach0data.ic, mach0data.h:
    Improve documentation of mach_*write_*compressed()
  mtr0log.ic, mtr0log.h:
    Improve documentation of mlog_write_initial_log_record_fast()

  innobase/include/mach0data.ic
    1.3.1.2 04/06/18 15:53:47 marko@hundin.mysql.fi +2 -2
    Improve documentation of mach_*write_*compressed()

  innobase/include/mach0data.h
    1.3 04/06/18 15:53:47 marko@hundin.mysql.fi +3 -3
    Improve documentation of mach_*write_*compressed()

  innobase/include/mtr0log.ic
    1.2.1.3 04/06/18 15:52:53 marko@hundin.mysql.fi +3 -1
    Improve documentation of mlog_write_initial_log_record_fast()

  innobase/include/mtr0log.h
    1.1.1.3 04/06/18 15:52:53 marko@hundin.mysql.fi +3 -1
    Improve documentation of mlog_write_initial_log_record_fast()

ChangeSet
  1.1616.535.2 04/06/18 14:42:35 pekka@mysql.com +5 -0
  tux optim 10 - use TUP method to read entry keys

  ndb/src/kernel/blocks/dbtux/Times.txt
    1.11 04/06/18 14:42:13 pekka@mysql.com +3 -0
    tux optim 10 - use TUP method to read entry keys

  ndb/src/kernel/blocks/dbtux/DbtuxTree.cpp
    1.6 04/06/18 14:42:13 pekka@mysql.com +10 -23
    tux optim 10 - use TUP method to read entry keys

  ndb/src/kernel/blocks/dbtux/DbtuxMaint.cpp
    1.8 04/06/18 14:42:13 pekka@mysql.com +3 -6
    tux optim 10 - use TUP method to read entry keys

  ndb/src/kernel/blocks/dbtux/DbtuxCmp.cpp
    1.3 04/06/18 14:42:13 pekka@mysql.com +59 -4
    tux optim 10 - use TUP method to read entry keys

  ndb/src/kernel/blocks/dbtux/Dbtux.hpp
    1.15 04/06/18 14:42:13 pekka@mysql.com +3 -19
    tux optim 10 - use TUP method to read entry keys

ChangeSet
  1.1616.535.1 04/06/18 13:46:46 pekka@mysql.com +10 -0
  tux optim 9 - use TUP method to read search key

  ndb/src/kernel/blocks/dbtux/Times.txt
    1.10 04/06/18 13:46:05 pekka@mysql.com +2 -0
    tux optim 9 - use TUP method to read search key

  ndb/src/kernel/blocks/dbtux/DbtuxTree.cpp
    1.5 04/06/18 13:46:05 pekka@mysql.com +14 -26
    tux optim 9 - use TUP method to read search key

  ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp
    1.7 04/06/18 13:46:05 pekka@mysql.com +6 -6
    tux optim 9 - use TUP method to read search key

  ndb/src/kernel/blocks/dbtux/DbtuxNode.cpp
    1.7 04/06/18 13:46:05 pekka@mysql.com +3 -0
    tux optim 9 - use TUP method to read search key

  ndb/src/kernel/blocks/dbtux/DbtuxMaint.cpp
    1.7 04/06/18 13:46:05 pekka@mysql.com +8 -13
    tux optim 9 - use TUP method to read search key

  ndb/src/kernel/blocks/dbtux/DbtuxGen.cpp
    1.6 04/06/18 13:46:05 pekka@mysql.com +5 -2
    tux optim 9 - use TUP method to read search key

  ndb/src/kernel/blocks/dbtux/DbtuxCmp.cpp
    1.2 04/06/18 13:46:05 pekka@mysql.com +12 -22
    tux optim 9 - use TUP method to read search key

  ndb/src/kernel/blocks/dbtux/Dbtux.hpp
    1.14 04/06/18 13:46:05 pekka@mysql.com +57 -32
    tux optim 9 - use TUP method to read search key

  ndb/src/kernel/blocks/dbtup/DbtupIndex.cpp
    1.4 04/06/18 13:46:05 pekka@mysql.com +63 -6
    tux optim 9 - use TUP method to read search key

  ndb/src/kernel/blocks/dbtup/Dbtup.hpp
    1.5 04/06/18 13:46:05 pekka@mysql.com +9 -4
    tux optim 9 - use TUP method to read search key

ChangeSet
  1.1616.529.16 04/06/18 13:12:47 bar@mysql.com +1 -0

  acconfig.h
    1.41 04/06/18 13:12:23 bar@mysql.com +1 -0

ChangeSet
  1.1616.533.1 04/06/18 12:09:21 bar@deer.(none) +1 -0
  configure.in:
    New collations were added.

  configure.in
    1.201.1.73 04/06/18 12:09:00 bar@mysql.com +30 -3
    New collations were added.

ChangeSet
  1.1616.532.1 04/06/18 10:11:31 dlenev@brandersnatch.localdomain +81 -0
  WL#1264 "Per-thread time zone support infrastructure".
  Added basic per-thread time zone functionality (based on public
  domain elsie-code). Now user can select current time zone
  (from the list of time zones described in system tables).
  All NOW-like functions honor this time zone, values of TIMESTAMP
  type are interpreted as values in this time zone, so now
  our TIMESTAMP type behaves similar to Oracle's TIMESTAMP WITH
  LOCAL TIME ZONE (or proper PostgresSQL type).
    
  WL#1266 "CONVERT_TZ() - basic time with time zone conversion 
  function".
    
  Fixed problems described in Bug #2336 (Different number of warnings 
  when inserting bad datetime as string or as number). This required
  reworking of datetime realted warning hadling (they now generated 
  at Field object level not in conversion functions).
    
  Optimization: Now Field class descendants use table->in_use member
  instead of current_thd macro.

  sql/tztime.h
    1.1 04/06/18 10:11:24 dlenev@brandersnatch.localdomain +71 -0

  BitKeeper/etc/ignore
    1.153.12.1 04/06/18 10:11:25 dlenev@brandersnatch.localdomain +3 -0
    Added sql/test_time sql/mysql_tzinfo_to_sql libmysqld/tztime.cc to the ignore list

  sql/tztime.h
    1.0 04/06/18 10:11:24 dlenev@brandersnatch.localdomain +0 -0
    BitKeeper file /home/dlenev/src/mysql-4.1-tz-push/sql/tztime.h

  sql/tztime.cc
    1.1 04/06/18 10:11:23 dlenev@brandersnatch.localdomain +2559 -0

  sql/tztime.cc
    1.0 04/06/18 10:11:23 dlenev@brandersnatch.localdomain +0 -0
    BitKeeper file /home/dlenev/src/mysql-4.1-tz-push/sql/tztime.cc

  sql/tzfile.h
    1.1 04/06/18 10:11:22 dlenev@brandersnatch.localdomain +137 -0

  sql/tzfile.h
    1.0 04/06/18 10:11:22 dlenev@brandersnatch.localdomain +0 -0
    BitKeeper file /home/dlenev/src/mysql-4.1-tz-push/sql/tzfile.h

  mysql-test/t/timezone2.test
    1.1 04/06/18 10:11:21 dlenev@brandersnatch.localdomain +189 -0

  mysql-test/t/rpl_timezone.test
    1.1 04/06/18 10:11:21 dlenev@brandersnatch.localdomain +84 -0

  mysql-test/t/timezone2.test
    1.0 04/06/18 10:11:21 dlenev@brandersnatch.localdomain +0 -0
    BitKeeper file /home/dlenev/src/mysql-4.1-tz-push/mysql-test/t/timezone2.test

  mysql-test/t/rpl_timezone.test
    1.0 04/06/18 10:11:21 dlenev@brandersnatch.localdomain +0 -0
    BitKeeper file /home/dlenev/src/mysql-4.1-tz-push/mysql-test/t/rpl_timezone.test

  mysql-test/t/rpl_timezone-slave.opt
    1.1 04/06/18 10:11:20 dlenev@brandersnatch.localdomain +1 -0

  mysql-test/t/rpl_timezone-slave.opt
    1.0 04/06/18 10:11:20 dlenev@brandersnatch.localdomain +0 -0
    BitKeeper file /home/dlenev/src/mysql-4.1-tz-push/mysql-test/t/rpl_timezone-slave.opt

  mysql-test/t/rpl_timezone-master.opt
    1.1 04/06/18 10:11:19 dlenev@brandersnatch.localdomain +1 -0

  mysql-test/t/rpl_timezone-master.opt
    1.0 04/06/18 10:11:19 dlenev@brandersnatch.localdomain +0 -0
    BitKeeper file /home/dlenev/src/mysql-4.1-tz-push/mysql-test/t/rpl_timezone-master.opt

  mysql-test/r/timezone2.result
    1.1 04/06/18 10:11:18 dlenev@brandersnatch.localdomain +246 -0

  mysql-test/r/timezone2.result
    1.0 04/06/18 10:11:18 dlenev@brandersnatch.localdomain +0 -0
    BitKeeper file /home/dlenev/src/mysql-4.1-tz-push/mysql-test/r/timezone2.result

  mysql-test/r/rpl_timezone.result
    1.1 04/06/18 10:11:14 dlenev@brandersnatch.localdomain +77 -0

  mysql-test/r/rpl_timezone.result
    1.0 04/06/18 10:11:14 dlenev@brandersnatch.localdomain +0 -0
    BitKeeper file /home/dlenev/src/mysql-4.1-tz-push/mysql-test/r/rpl_timezone.result

  sql/unireg.cc
    1.40.1.1 04/06/18 10:11:13 dlenev@brandersnatch.localdomain +1 -0
    Now we are setting TABLE::in_use member for all tables (which assume
      calls to Field::store or val_ methods).

  sql/time.cc
    1.46 04/06/18 10:11:13 dlenev@brandersnatch.localdomain +235 -64
    Added support for per-thread time zones for TIMESTAMP type and
    reworked generation of warnings for TIMESTAMP and DATETIME types.
    (Introduced new TIME_to_timestamp() function. Removed hours 
    normalisation from former my_gmt_sec() since it was not working 
    and not used anywhere now, but breaks parameter constness, added
    to this function generation of warning if we are falling in spring 
    time-gap. Removed str_to_timestamp and str_to_datetime functions 
    which are no longer used. Moved fix_datetime function from
    sql/field.cc to this file as number_to_TIME() function. Added
    out parameter for str_to_TIME and str_to_time functions which
    indicates if value was truncated during conversion, removed direct 
    generation of warnings from this functions.)

  sql/sql_show.cc
    1.122.1.48 04/06/18 10:11:12 dlenev@brandersnatch.localdomain +3 -7
    Now using per thread time zone for extended show tables.

  sql/sql_select.cc
    1.216.74.1 04/06/18 10:11:12 dlenev@brandersnatch.localdomain +1 -0
    Now we are setting TABLE::in_use member for all tables (which assume
    calls to Field::store or val_ methods).

  sql/sql_parse.cc
    1.271.78.1 04/06/18 10:11:11 dlenev@brandersnatch.localdomain +3 -2
    Resetting THD::time_zone_used variable in the end of query
    processing.

  sql/sql_load.cc
    1.46.3.29 04/06/18 10:11:10 dlenev@brandersnatch.localdomain +1 -1
    Field::set_warning() now has one more argument now.

  sql/sql_insert.cc
    1.86.2.52 04/06/18 10:11:10 dlenev@brandersnatch.localdomain +4 -0
    We should set TABLE::in_use member pointing to thread which is called
    INSERT DELAYED and not to worker thread.

  sql/sql_class.h
    1.146.1.94 04/06/18 10:11:09 dlenev@brandersnatch.localdomain +3 -0
    Added per-thread time zone variable. Added THD::time_zone_used
    variable indicating that this query uses per thread time zone
    so if this is updating query the time zone should be logged to 
    binlog.

  sql/sql_class.cc
    1.105.1.64 04/06/18 10:11:08 dlenev@brandersnatch.localdomain +2 -2
    Added THD::time_zone_used variable indicating that this query
    uses per thread time zone.

  sql/sql_cache.cc
    1.46.1.31 04/06/18 10:11:08 dlenev@brandersnatch.localdomain +5 -2
    Added time zone as one more query distinguishing parameter
    for query cache.

  sql/sql_base.cc
    1.145.1.66 04/06/18 10:11:07 dlenev@brandersnatch.localdomain +1 -0
    Now we are setting TABLE::in_use member for all tables (which assume
    calls to Field::store or val_ methods).

  sql/slave.cc
    1.188.1.60 04/06/18 10:11:06 dlenev@brandersnatch.localdomain +24 -1
    In order to support replication of statements using time zones in 4.1 we should 
    ensure that both master and slave have same default time zone.

  sql/share/ukrainian/errmsg.txt
    1.27.1.55 04/06/18 10:11:06 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/swedish/errmsg.txt
    1.64.1.57 04/06/18 10:11:05 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/spanish/errmsg.txt
    1.64.1.58 04/06/18 10:11:04 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/slovak/errmsg.txt
    1.64.1.58 04/06/18 10:11:03 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/serbian/errmsg.txt
    1.18.1.52 04/06/18 10:11:03 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/russian/errmsg.txt
    1.61.1.55 04/06/18 10:11:02 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/romanian/errmsg.txt
    1.62.1.59 04/06/18 10:11:01 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/portuguese/errmsg.txt
    1.64.1.57 04/06/18 10:11:00 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/polish/errmsg.txt
    1.63.1.58 04/06/18 10:11:00 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/norwegian/errmsg.txt
    1.63.1.59 04/06/18 10:10:58 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/norwegian-ny/errmsg.txt
    1.63.1.58 04/06/18 10:10:58 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/korean/errmsg.txt
    1.63.1.58 04/06/18 10:10:57 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/japanese/errmsg.txt
    1.63.1.56 04/06/18 10:10:56 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/italian/errmsg.txt
    1.70.1.58 04/06/18 10:10:56 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/hungarian/errmsg.txt
    1.65.1.57 04/06/18 10:10:55 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/greek/errmsg.txt
    1.64.1.57 04/06/18 10:10:54 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/german/errmsg.txt
    1.64.1.53 04/06/18 10:10:54 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/french/errmsg.txt
    1.63.1.58 04/06/18 10:10:53 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/estonian/errmsg.txt
    1.64.1.56 04/06/18 10:10:53 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/english/errmsg.txt
    1.70.1.62 04/06/18 10:10:52 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/dutch/errmsg.txt
    1.66.1.57 04/06/18 10:10:51 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/danish/errmsg.txt
    1.62.1.56 04/06/18 10:10:50 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/share/czech/errmsg.txt
    1.64.1.59 04/06/18 10:10:49 dlenev@brandersnatch.localdomain +2 -0
    Added error message for barking when incorrect time zone name or
    specifiaction is provided and for warning about invalid TIMESTAMP
    values (e.g. falling into the spring time-gap).

  sql/set_var.h
    1.53 04/06/18 10:10:49 dlenev@brandersnatch.localdomain +24 -0
    Added support for per-thread time_zone variable.

  sql/set_var.cc
    1.34.1.89 04/06/18 10:10:48 dlenev@brandersnatch.localdomain +75 -1
    Added support for per-thread time_zone variable.
    Renamed old timezone variable to system_time_zone.

  sql/mysqld.cc
    1.356.61.1 04/06/18 10:10:47 dlenev@brandersnatch.localdomain +19 -4
    Added per-thread time zone support initialization.
    Added new startup parameter --default-time-zone.

  sql/mysql_priv.h
    1.186.1.109 04/06/18 10:10:46 dlenev@brandersnatch.localdomain +21 -6
    Now including headers with per-thread time zone support functions
    and classes. Added portable replacement of time_t - my_time_t type. 
    Added time zone as one of query distinguishing parameters for
    query cache. 
    Fixed declarations of str_to_TIME, str_to_time and 
    my_system_gmt_sec (former my_gmt_sec) since now they have one more
    out parameter which informs about wrong datetime value or data 
    truncation during conversion.
    Added warning generating version of str_to_TIME() and str_to_time()
    functions.
    Thrown away str_to_datetime/timestamp functions since they are not
    needed any longer. Added number_to_TIME function.

  sql/log.cc
    1.108.1.27 04/06/18 10:10:46 dlenev@brandersnatch.localdomain +16 -2
    Added support for replication of statements depending on time zone.

  sql/lex.h
    1.82.1.62 04/06/18 10:10:45 dlenev@brandersnatch.localdomain +1 -0
    Added support of CONVERT_TZ function.

  sql/item_timefunc.h
    1.42.1.5 04/06/18 10:10:44 dlenev@brandersnatch.localdomain +37 -19
    Added support of per-thread time zone to NOW-like and
    FROM_UNIXTIME, UNIX_TIMESTAMP functions.
    Added support of CONVERT_TZ function.

  sql/item_timefunc.cc
    1.51.1.12 04/06/18 10:10:44 dlenev@brandersnatch.localdomain +197 -95
    Added support of per-thread time zone to NOW-like and FROM_UNIXTIME,
    UNIX_TIMESTAMP functions. 
    Added support for CONVERT_TZ function.
    Removed call to str_to_timestamp function which caused non-optimal
    behavior in certain cases. Replaced calls to str_to_time() function 
    with its warning generating analog.

  sql/item_create.h
    1.34.1.4 04/06/18 10:10:43 dlenev@brandersnatch.localdomain +1 -0
    Added creation of CONVERT_TZ function as FUNC_ARG3.

  sql/item_create.cc
    1.33.1.31 04/06/18 10:10:42 dlenev@brandersnatch.localdomain +5 -0
    Added creation of CONVERT_TZ function as FUNC_ARG3.

  sql/item.cc
    1.58.54.1 04/06/18 10:10:42 dlenev@brandersnatch.localdomain +2 -2
    Replaced calls to str_to_time() and str_to_TIME() funcs with their warning
    generating analogs.

  sql/ha_berkeley.cc
    1.117.1.16 04/06/18 10:10:41 dlenev@brandersnatch.localdomain +4 -4
    Now we set table->in_use for temporary tables so we have to use
    table->tmp_table for checking if table is temporary.

  sql/field_conv.cc
    1.28 04/06/18 10:10:40 dlenev@brandersnatch.localdomain +7 -5
    Field::set_warning() method with 2 arguments was replaced with more 
    generic set_warning() method with 3 arguments.

  sql/field.h
    1.104 04/06/18 10:10:39 dlenev@brandersnatch.localdomain +14 -1
    Added comment about places where we can use table->in_use member
    instead of current_thd.
    Added 3rd parameter to Field::set_warning() method and set_datetime_warning()
    family of methods.

  sql/field.cc
    1.161 04/06/18 10:10:39 dlenev@brandersnatch.localdomain +403 -282
    Now we are using per-thread time zone for TIMESTAMP <-> whatever conversion.
    Fixed generation of warnings for datetime types (DATETIME/TIMESTAMP/DATE/...) and
    any other Field to datetime conversion (now we are generating warnings no in lower
    level functions like in str_to_TIME() but in Field methods. This allows generate
    better and more consistent warnings and to reuse code of str_to_TIME() outside of
    server).
    
    Added 3rd parameter to set_warning() method to be able to not increment cut fields
    but still produce a warning. Also added set_datetime_warning() family of auxiliary 
    methods which allow easier generate datetime related warnings.
    Also replaced occurences of current_thd with table->in_use member, added
    asserts for catching all places there we need to set table->in_use
    accordingly. Renamed fix_datetime() function to number_to_TIME() and
    moved it to sql/time.cc there it fits better.

  sql/Makefile.am
    1.77.1.19 04/06/18 10:10:38 dlenev@brandersnatch.localdomain +13 -4
    Added files implementing time zone support to server, also added
    rules for building of mysql_tzinfo_to_sql converter and test_time
    test. 

  scripts/mysql_fix_privilege_tables.sql
    1.4.1.3 04/06/18 10:10:37 dlenev@brandersnatch.localdomain +39 -0
    Added mysql.time_zone* tables family.

  scripts/mysql_create_system_tables.sh
    1.7.1.3 04/06/18 10:10:36 dlenev@brandersnatch.localdomain +339 -0
    Added creation of tables with time zone descriptions.
    Also added descriptions of time zones used in tests.

  mysql-test/t/type_timestamp.test
    1.13 04/06/18 10:10:36 dlenev@brandersnatch.localdomain +17 -2
    Separated and extended test of values and warnings produced for bad
    values stored in TIMESTAMP fields.

  mysql-test/t/type_datetime.test
    1.13 04/06/18 10:10:35 dlenev@brandersnatch.localdomain +17 -2
    Separated and extended test of values and warnings produced for bad
    values stored in DATETTIME fields.

  mysql-test/t/timezone.test
    1.7 04/06/18 10:10:34 dlenev@brandersnatch.localdomain +13 -2
    Updated timezone.test to use new system variable which shows system time zone.
    Added test of warning which is produced if someone tries to store non-existing (due 
    falling into spring time-gap) datetime value into TIMESTAMP field.

  mysql-test/t/select.test
    1.24 04/06/18 10:10:34 dlenev@brandersnatch.localdomain +3 -1
    Updated test to make it less ambigous for reader.

  mysql-test/r/type_timestamp.result
    1.17 04/06/18 10:10:33 dlenev@brandersnatch.localdomain +52 -18
    Separated and extended test of values and warnings produced for bad
    values stored in TIMESTAMP fields.

  mysql-test/r/type_time.result
    1.12 04/06/18 10:10:32 dlenev@brandersnatch.localdomain +2 -2
    Now we are producing more consistent warning when we are truncating datetime value while
    storing it in TIME field.

  mysql-test/r/type_datetime.result
    1.21 04/06/18 10:10:32 dlenev@brandersnatch.localdomain +46 -24
    Separated and extended test of values and warnings produced for bad values stored in 
    DATETTIME fields.

  mysql-test/r/timezone.result
    1.6 04/06/18 10:10:31 dlenev@brandersnatch.localdomain +9 -2
    Updated timezone.test to use new system variable which shows system time zone.
    Added test of warning which is produced if someone tries to store non-existing (due 
    falling into spring time-gap) datetime value into TIMESTAMP field.

  mysql-test/r/system_mysql_db.result
    1.6.1.1 04/06/18 10:10:31 dlenev@brandersnatch.localdomain +5 -0
    Updated test result because new system tables holding time zone descriptions were 
    added.

  mysql-test/r/select.result
    1.37.1.2 04/06/18 10:10:30 dlenev@brandersnatch.localdomain +8 -1
    New warnings about truncation occured during conversion to datetime value added due
    their better handling. Also tweaked test a bit to made it less ambigious for reader.

  mysql-test/r/func_time.result
    1.23.1.9 04/06/18 10:10:29 dlenev@brandersnatch.localdomain +6 -0
    New warnings about truncation occured during conversion to datetime value added due
    their better handling.

  mysql-test/r/func_sapdb.result
    1.2.1.4 04/06/18 10:10:29 dlenev@brandersnatch.localdomain +6 -0
    New warnings about truncation occured during conversion to datetime value added due
    their better handling.

  mysql-test/r/date_formats.result
    1.12 04/06/18 10:10:28 dlenev@brandersnatch.localdomain +8 -8
    Now when truncation occurs during conversion to datetime value we are producing Warnings 
    instead of Notes. Also we are giving more clear warnings about this in some cases. 

  mysql-test/r/connect.result
    1.1.1.6 04/06/18 10:10:28 dlenev@brandersnatch.localdomain +15 -0
    Updated test result since now mysql database contains more
    system tables.

  libmysqld/lib_sql.cc
    1.75.1.38 04/06/18 10:10:27 dlenev@brandersnatch.localdomain +7 -5
    Added initialization of time zones infrastructure to embedded server.

  libmysqld/Makefile.am
    1.29.4.1 04/06/18 10:10:27 dlenev@brandersnatch.localdomain +1 -1
    Added main per-thread time zone support file to libmysqld

  include/mysqld_error.h
    1.61.1.41 04/06/18 10:10:26 dlenev@brandersnatch.localdomain +3 -1
    Added error-code for invalid timestamp warning and error-code
    for wrong or unknown time zone specification.

  include/my_global.h
    1.47.7.1 04/06/18 10:10:23 dlenev@brandersnatch.localdomain +8 -0
    Added macro for reading of 32-bit ints stored in network order from
    unaligned memory location.

ChangeSet
  1.1616.529.13 04/06/18 11:00:51 bar@deer.(none) +1 -0
  ctype-uca.c:
    Code optimization to make it look better and work faster.

  strings/ctype-uca.c
    1.16 04/06/18 10:59:53 bar@mysql.com +35 -28
    Code optimization to make it look better and work faster.

ChangeSet
  1.1616.529.12 04/06/18 10:24:31 bar@deer.(none) +1 -0
  ctype-uca.c:
    Fix for compilation failure when HAVE_CHARSET_ucs2 is not defined.

  strings/ctype-uca.c
    1.15 04/06/18 10:23:44 bar@mysql.com +3 -3
    Fix for compilation failure when HAVE_CHARSET_ucs2 is not defined.

ChangeSet
  1.1346.640.1 04/06/18 01:42:28 miguel@hegel.txg +2 -0
  Fix for bug #4182

  BitKeeper/etc/logging_ok
    1.206.1.109 04/06/18 01:42:27 miguel@hegel.txg +1 -0
    Logging to logging@openlogging.org accepted

  extra/perror.c
    1.20.1.4 04/06/18 01:42:14 miguel@hegel.txg +1 -1
    Fix for bug #4182

ChangeSet
  1.1346.1.537 04/06/18 04:22:43 monty@mysql.com +3 -0
  ke it possible to use mysys functions in netware/mysql_test_run.c
  Don't pass --user to mysqld if --user is not used

  scripts/mysql_install_db.sh
    1.35.1.15 04/06/18 04:22:42 monty@mysql.com +6 -1
    Don't pass --user to mysqld if --user is not used

  netware/mysql_test_run.c
    1.3.2.1 04/06/18 04:22:42 monty@mysql.com +2 -8
    Make it possible to use mysys functions in mysql_test_run.c

  netware/Makefile.am
    1.6.1.4 04/06/18 04:22:42 monty@mysql.com +2 -0
    Make it possible to use mysys functions in mysql_test_run.c

ChangeSet
  1.1346.1.536 04/06/18 03:26:28 monty@mysql.com +1 -0
  Removed not used file sql_olap.cc

  libmysqld/Makefile.am
    1.19.1.7 04/06/18 03:26:26 monty@mysql.com +1 -1
    Removed not used file sql_olap.cc

ChangeSet
  1.1346.1.535 04/06/18 03:23:08 monty@mysql.com +3 -0
  Applied patch from Novell (2004-06-03)

  netware/BUILD/nwbootstrap
    1.4.2.2 04/06/18 03:23:06 monty@mysql.com +5 -0
    Applied patch from Novell (2004-06-03)

  netware/BUILD/mwenv
    1.3.1.3 04/06/18 03:23:06 monty@mysql.com +6 -6
    Applied patch from Novell (2004-06-03)

  mysys/mf_tempfile.c
    1.19.1.1 04/06/18 03:23:06 monty@mysql.com +1 -1
    Applied patch from Novell (2004-06-03)

ChangeSet
  1.1616.529.11 04/06/18 02:45:52 konstantin@mysql.com +4 -0
  Fix for bug#4105 "Server crash on attempt to prepare a statement with 
  character set introducer": add new item type to be returned before from 
  Item_param until it's value is set.
  This way items like Item_bool_func2 and udf_handler won't treat this item
  as constant literal when statement is prepared.

ChangeSet
  1.1616.529.10 04/06/18 00:16:07 tomas@poseidon.bredbandsbolaget.se +1 -0
  cannot include my_config.h directly, breaks some makes

  ndb/include/ndb_types.h
    1.6 04/06/18 00:16:04 tomas@poseidon.bredbandsbolaget.se +1 -1
    cannot include my_config.h directly, breaks some makes

ChangeSet
  1.1616.531.1 04/06/18 03:02:29 monty@mysql.com +15 -0
  Fixed some byte order bugs with prepared statements on machines with high-byte-first. (Bug #4173)
  Fixed problem with NULL and derived tables (Bug #4097)
  Cleanup of new pushed code

  sql/sql_yacc.yy
    1.203.1.125 04/06/18 03:02:26 monty@mysql.com +7 -1
    Allow one to use DROP PREPARE ...

  sql/sql_string.cc
    1.77.2.1 04/06/18 03:02:26 monty@mysql.com +1 -1
    Code cleanup

  sql/sql_select.cc
    1.216.73.1 04/06/18 03:02:26 monty@mysql.com +21 -18
    Fixed problem with NULL and derived tables (Bug #4097)
    Indentation fixes

  sql/mysqld.cc
    1.356.1.113 04/06/18 03:02:26 monty@mysql.com +0 -8
    Remove not used defines

  mysql-test/t/subselect.test
    1.58.39.1 04/06/18 03:02:26 monty@mysql.com +11 -0
    Test problem with NULL and derived tables (Bug #4097)

  mysql-test/r/subselect.result
    1.67.56.1 04/06/18 03:02:26 monty@mysql.com +10 -0
    Test problem with NULL and derived tables (Bug #4097)

  mysql-test/mysql-test-run.sh
    1.187.1.1 04/06/18 03:02:26 monty@mysql.com +2 -2
    Simple cleanup

  myisam/myisamchk.c
    1.92.1.23 04/06/18 03:02:26 monty@mysql.com +4 -4
    Portability fix.

  myisam/mi_unique.c
    1.19 04/06/18 03:02:26 monty@mysql.com +6 -3
    crc must be of type ha_checksum.

  myisam/mi_check.c
    1.105.1.31 04/06/18 03:02:26 monty@mysql.com +0 -2
    Removed not needed check (check is done in check_index())

  myisam/ft_boolean_search.c
    1.81 04/06/18 03:02:26 monty@mysql.com +5 -4
    Comment cleanup

  libmysql/libmysql.c
    1.156.18.1 04/06/18 03:02:26 monty@mysql.com +15 -12
    Fixed some byte order bugs with prepared statements on machines with
    high-byte-first. (Bug #4173)

  innobase/os/os0file.c
    1.80 04/06/18 03:02:26 monty@mysql.com +1 -1
    fix for netware

  client/mysqltest.c
    1.92.1.45 04/06/18 03:02:26 monty@mysql.com +11 -8
    simple cleanup

  BitKeeper/etc/ignore
    1.153.1.33 04/06/18 03:00:40 monty@mysql.com +1 -0
    added mysql-test/ndb/ndbcluster

ChangeSet
  1.1346.639.1 04/06/18 02:31:11 monty@mysql.com +3 -0
  Fixed unlikely bug in the range optimzer when using many IN() queries on different key parts. (Bug #4157)

  sql/opt_range.cc
    1.54.1.45 04/06/18 02:31:10 monty@mysql.com +21 -9
    Fixed unlikely bug in the range optimzer when using many IN() queries on
    different key parts. (Bug #4157)

  mysql-test/t/range.test
    1.4.1.12 04/06/18 02:31:10 monty@mysql.com +25 -0
    Test of range optimizer bug

  mysql-test/r/range.result
    1.6.1.13 04/06/18 02:31:10 monty@mysql.com +21 -0
    Test of range optimizer bug

  sql/item.h
    1.56.1.78 04/06/18 02:45:49 konstantin@mysql.com +2 -1
    Fix for bug#4105 "Server crash on attempt to prepare a statement with 
    character set introducer": add new item type to be returned before from 
    Item_param until it's value is set.

  sql/item.cc
    1.58.1.89 04/06/18 02:45:49 konstantin@mysql.com +11 -1
    Fix for bug#4105 "Server crash on attempt to prepare a statement with 
    character set introducer": add new item type to be returned before from 
    Item_param until it's value is set.

  mysql-test/t/ps.test
    1.6 04/06/18 02:45:49 konstantin@mysql.com +8 -1
    Followup to bug #4105: a test case.

  mysql-test/r/ps.result
    1.9 04/06/18 02:45:49 konstantin@mysql.com +6 -0
    Test results fixed (test case for bug #4105)

ChangeSet
  1.1616.529.9 04/06/17 22:32:49 tomas@poseidon.bredbandsbolaget.se +1 -0
  mgmapi.cpp:
    hpux make fix

  ndb/src/mgmapi/mgmapi.cpp
    1.5 04/06/17 22:32:28 tomas@poseidon.bredbandsbolaget.se +2 -2
    hpux make fix

ChangeSet
  1.1616.530.1 04/06/17 22:18:05 tomas@poseidon.bredbandsbolaget.se +4 -0
  removed need for specifying TCP connections in MySQL Cluster configuration

  ndb/src/common/mgmcommon/InitConfigFileParser.cpp
    1.5.1.1 04/06/17 22:17:50 tomas@poseidon.bredbandsbolaget.se +26 -8
    removed need for specifying TCP connections in MySQL Cluster configuration

  ndb/src/common/mgmcommon/ConfigInfo.hpp
    1.3 04/06/17 22:17:50 tomas@poseidon.bredbandsbolaget.se +16 -0
    removed need for specifying TCP connections in MySQL Cluster configuration

  ndb/src/common/mgmcommon/ConfigInfo.cpp
    1.6 04/06/17 22:17:49 tomas@poseidon.bredbandsbolaget.se +104 -7
    removed need for specifying TCP connections in MySQL Cluster configuration

  mysql-test/ndb/ndb_config_2_node.ini
    1.4 04/06/17 22:17:49 tomas@poseidon.bredbandsbolaget.se +1 -59
    removed need for specifying TCP connections in MySQL Cluster configuration

ChangeSet
  1.1616.529.7 04/06/17 21:06:21 tomas@poseidon.bredbandsbolaget.se +2 -0
  hpux compile fixes

  ndb/include/ndb_global.h
    1.9 04/06/17 21:06:17 tomas@poseidon.bredbandsbolaget.se +7 -1
    hpux compile fixes

  configure.in
    1.201.1.72 04/06/17 21:06:16 tomas@poseidon.bredbandsbolaget.se +2 -1
    hpux compile fixes

ChangeSet
  1.1616.529.6 04/06/17 17:38:05 tomas@poseidon.bredbandsbolaget.se +1 -0
  Tru64 fixes

  ndb/include/util/BaseString.hpp
    1.4 04/06/17 17:38:02 tomas@poseidon.bredbandsbolaget.se +2 -2
    Tru64 fixes

ChangeSet
  1.1616.529.5 04/06/17 17:32:03 tomas@poseidon.bredbandsbolaget.se +1 -0
  removed warnings on Tru64 

  ndb/include/util/NdbSqlUtil.hpp
    1.3 04/06/17 17:31:59 tomas@poseidon.bredbandsbolaget.se +0 -14
    removed warnings on Tru64 

ChangeSet
  1.1616.529.4 04/06/17 17:12:45 tomas@poseidon.bredbandsbolaget.se +1 -0
  FsReadWriteReq.cpp:
    compile error on hpux

  ndb/src/common/debugger/signaldata/FsReadWriteReq.cpp
    1.2 04/06/17 16:58:16 tomas@poseidon.bredbandsbolaget.se +3 -3
    compile error on hpux

ChangeSet
  1.1346.1.532 04/06/17 17:30:33 heikki@hundin.mysql.fi +2 -0
  mem0dbg.h, mem0dbg.c:
    Put back mem_print_info() functions that are used to analyze memory leaks; Marko removed them by accident in his Feb 20th, 2004 patch; these functions are very important for debugging, and should always be kept in the source code base

  innobase/include/mem0dbg.h
    1.6 04/06/17 17:30:24 heikki@hundin.mysql.fi +13 -0
    Put back mem_print_info() functions that are used to analyze memory leaks; Marko removed them by accident in his Feb 20th, 2004 patch; these functions are very important for debugging, and should always be kept in the source code base

  innobase/mem/mem0dbg.c
    1.5.1.9 04/06/17 17:30:16 heikki@hundin.mysql.fi +125 -0
    Put back mem_print_info() functions that are used to analyze memory leaks; Marko removed them by accident in his Feb 20th, 2004 patch; these functions are very important for debugging, and should always be kept in the source code base

ChangeSet
  1.676.320.1 04/06/17 15:40:13 guilhem@mysql.com +1 -0
  Fix for BUG#4017 "mysql_real_connect buffer overflow"

  libmysql/libmysql.c
    1.56.2.1 04/06/17 15:40:12 guilhem@mysql.com +2 -1
    safety fix

ChangeSet
  1.1616.529.3 04/06/17 13:25:38 tomas@poseidon.ndb.mysql.com +1 -0

  ndb/src/common/mgmcommon/InitConfigFileParser.cpp
    1.6 04/06/17 13:25:10 tomas@poseidon.ndb.mysql.com +1 -1

ChangeSet
  1.1346.1.531 04/06/17 16:05:19 heikki@hundin.mysql.fi +2 -0
  que0que.c, srv0que.c:
    Put asserts that make sure srv_que_task_enqueue() is never called under MySQL

  innobase/que/que0que.c
    1.9.1.12 04/06/17 16:04:30 heikki@hundin.mysql.fi +4 -0
    Put asserts that make sure srv_que_task_enqueu() is never called under MySQL

  innobase/srv/srv0que.c
    1.2 04/06/17 16:01:16 heikki@hundin.mysql.fi +2 -0
    Put asserts that make sure srv_que_task_enqueu() is never called under MySQL

ChangeSet
  1.1346.1.530 04/06/17 15:13:27 heikki@hundin.mysql.fi +1 -0
  log0recv.c:
    Revert the patch that put log debug code behind UNIV_LOG_DEBUG

  innobase/log/log0recv.c
    1.19.1.12 04/06/17 15:13:15 heikki@hundin.mysql.fi +3 -1
    Revert the patch that put log debug code behind UNIV_LOG_DEBUG

ChangeSet
  1.1346.1.529 04/06/17 15:11:37 heikki@hundin.mysql.fi +4 -0
  log0log.h:
    Revert the patch that put log debug code behind UNIV_LOG_DEBUG
  log0log.ic, log0recv.c, log0log.c, log0log.h:
    Revert 1.1730.18.1 about UNIV_LOG_DEBUG: debug code is often needed in debugging the production version

  innobase/include/log0log.h
    1.10.1.6 04/06/17 15:10:49 heikki@hundin.mysql.fi +0 -2
    Revert the patch that put log debug code behind UNIV_LOG_DEBUG

ChangeSet
  1.1346.1.528 04/06/17 13:34:14 heikki@hundin.mysql.fi +3 -0
  Cset exclude: marko@hundin.mysql.fi|ChangeSet|20040316101802|63386

ChangeSet
  1.1346.638.1 04/06/17 15:01:54 gluh@gluh.mysql.r18.ru +1 -0
  Fixed issue 'the definition of macro DES_ede3_cbc_encrypt is corrupt'

  include/violite.h
    1.21.3.6 04/06/17 15:01:52 gluh@gluh.mysql.r18.ru +1 -1
    Fixed issue 'the definition of macro DES_ede3_cbc_encrypt is corrupt'

  innobase/include/log0log.ic
    1.4.1.4 04/06/17 13:59:13 heikki@hundin.mysql.fi +0 -2
    Revert 1.1730.18.1 about UNIV_LOG_DEBUG: debug code is often needed in debugging the production version

  innobase/log/log0recv.c
    1.19.1.11 04/06/17 13:57:36 heikki@hundin.mysql.fi +1 -23
    Revert 1.1730.18.1 about UNIV_LOG_DEBUG: debug code is often needed in debugging the production version

  innobase/log/log0log.c
    1.20.1.16 04/06/17 13:57:29 heikki@hundin.mysql.fi +2 -32
    Revert 1.1730.18.1 about UNIV_LOG_DEBUG: debug code is often needed in debugging the production version

  innobase/include/log0log.h
    1.10.1.5 04/06/17 13:56:26 heikki@hundin.mysql.fi +0 -2
    Revert 1.1730.18.1 about UNIV_LOG_DEBUG: debug code is often needed in debugging the production version

ChangeSet
  1.1616.529.2 04/06/17 13:48:31 bell@sanja.is.com.ua +4 -0
  after review fix (BUG#4067)

  sql/item.h
    1.56.1.77 04/06/17 13:48:28 bell@sanja.is.com.ua +1 -0
    method getting maximum display length for fields

  sql/item.cc
    1.58.1.88 04/06/17 13:48:28 bell@sanja.is.com.ua +1 -45
    code cleanup
    switch replaced with new method

  sql/field.h
    1.103 04/06/17 13:48:28 bell@sanja.is.com.ua +14 -0
    method getting maximum display length for fields

  sql/field.cc
    1.160 04/06/17 13:48:28 bell@sanja.is.com.ua +27 -0
    method getting maximum display length for fields

  innobase/que/que0que.c
    1.9.1.11 04/06/17 13:34:10 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/include/que0que.ic
    1.4 04/06/17 13:34:10 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/include/que0que.h
    1.9 04/06/17 13:34:10 heikki@hundin.mysql.fi +0 -0
    Exclude

ChangeSet
  1.1346.1.526 04/06/17 13:25:06 heikki@hundin.mysql.fi +14 -0
  Cset exclude: marko@hundin.mysql.fi|ChangeSet|20040311211202|05613

  innobase/thr/thr0loc.c
    1.3.1.4 04/06/17 13:25:02 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/row/row0upd.c
    1.18.1.7 04/06/17 13:25:02 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/row/row0ins.c
    1.26.1.10 04/06/17 13:25:02 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/include/row0upd.h
    1.11 04/06/17 13:25:02 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/include/row0ins.h
    1.6 04/06/17 13:25:02 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/include/mtr0mtr.h
    1.3.1.7 04/06/17 13:25:02 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/include/hash0hash.ic
    1.4 04/06/17 13:25:02 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/include/hash0hash.h
    1.1.1.3 04/06/17 13:25:02 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/include/dict0mem.h
    1.14.1.3 04/06/17 13:25:02 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/include/data0data.h
    1.11.1.1 04/06/17 13:25:02 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/ha/hash0hash.c
    1.1.1.2 04/06/17 13:25:02 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/dict/dict0mem.c
    1.9.1.4 04/06/17 13:25:02 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/dict/dict0dict.c
    1.26.1.29 04/06/17 13:25:02 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/trx/trx0sys.c
    1.13.1.13 04/06/17 13:09:24 heikki@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_HOT_BACKUP: best to keep the codebase as uniform as possible

ChangeSet
  1.1346.1.525 04/06/17 12:40:09 heikki@hundin.mysql.fi +1 -0
  Cset exclude: marko@hundin.mysql.fi|ChangeSet|20040526164114|35829

  innobase/que/que0que.c
    1.9.1.10 04/06/17 12:40:05 heikki@hundin.mysql.fi +0 -0
    Exclude

ChangeSet
  1.1346.1.524 04/06/17 12:35:04 heikki@hundin.mysql.fi +2 -0
  srv0que.c:
    Revert Marko's untested changeset 1.1844.1.6 to the stable 4.0 version; stable 4.0 must NOT BE modified except in case of bugs
  srv0que.c, srv0que.h:
    new file

  innobase/srv/srv0que.c
    1.1 04/06/17 12:34:37 heikki@hundin.mysql.fi +111 -0
    Revert Marko's untested changeset 1.1844.1.6 to the stable 4.0 version; stable 4.0 must NOT BE modified except in case of bugs

  innobase/srv/srv0que.c
    1.0 04/06/17 12:34:37 heikki@hundin.mysql.fi +0 -0
    BitKeeper file /home/heikki/mysql-4.0/innobase/srv/srv0que.c

  innobase/include/srv0que.h
    1.1 04/06/17 12:33:09 heikki@hundin.mysql.fi +53 -0

  innobase/include/srv0que.h
    1.0 04/06/17 12:33:09 heikki@hundin.mysql.fi +0 -0
    BitKeeper file /home/heikki/mysql-4.0/innobase/include/srv0que.h

ChangeSet
  1.1346.1.523 04/06/17 11:57:45 heikki@hundin.mysql.fi +14 -0
  Cset exclude: marko@hundin.mysql.fi|ChangeSet|20040525171209|56870

  innobase/usr/usr0sess.c
    1.1.1.4 04/06/17 11:57:42 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/trx/trx0trx.c
    1.20.1.20 04/06/17 11:57:42 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/trx/trx0roll.c
    1.10.1.9 04/06/17 11:57:42 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/trx/trx0purge.c
    1.9.1.7 04/06/17 11:57:42 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/srv/srv0srv.c
    1.35.1.37 04/06/17 11:57:42 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/include/Makefile.am
    1.10 04/06/17 11:57:42 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/srv/Makefile.am
    1.4 04/06/17 11:57:41 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/que/que0que.c
    1.9.1.9 04/06/17 11:57:41 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/include/usr0sess.h
    1.5 04/06/17 11:57:41 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/include/trx0trx.h
    1.30.1.2 04/06/17 11:57:41 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/include/trx0roll.h
    1.3.1.2 04/06/17 11:57:41 heikki@hundin.mysql.fi +0 -0
    Exclude

  innobase/include/que0que.h
    1.8 04/06/17 11:57:41 heikki@hundin.mysql.fi +0 -0
    Exclude

  BitKeeper/deleted/.del-srv0que.h~f12ecb4b5afe203e
    1.3 04/06/17 11:57:41 heikki@hundin.mysql.fi +0 -0
    Exclude

  BitKeeper/deleted/.del-srv0que.c~d1feebb77b5a9b96
    1.4 04/06/17 11:57:41 heikki@hundin.mysql.fi +0 -0
    Exclude

ChangeSet
  1.1346.1.522 04/06/17 11:57:24 heikki@hundin.mysql.fi +0 -0

ChangeSet
  1.1346.1.521 04/06/17 11:53:17 heikki@hundin.mysql.fi +1 -0
  Cset exclude: heikki@hundin.mysql.fi|ChangeSet|20040617084849|64488

  sql/sql_parse.cc
    1.218.1.158 04/06/17 11:53:13 heikki@hundin.mysql.fi +0 -0
    Exclude

ChangeSet
  1.1616.528.2 04/06/17 10:51:25 pekka@mysql.com +4 -0
  tux optim 8 - store complete AttributeDescriptor (prepare for next step)

  ndb/src/kernel/blocks/dbtux/Times.txt
    1.9 04/06/17 10:50:58 pekka@mysql.com +4 -0
    tux optim 8 - store complete AttributeDescriptor (prepare for next step)

  ndb/src/kernel/blocks/dbtux/DbtuxMeta.cpp
    1.5 04/06/17 10:50:58 pekka@mysql.com +1 -2
    tux optim 8 - store complete AttributeDescriptor (prepare for next step)

  ndb/src/kernel/blocks/dbtux/DbtuxDebug.cpp
    1.6 04/06/17 10:50:58 pekka@mysql.com +1 -1
    tux optim 8 - store complete AttributeDescriptor (prepare for next step)

  ndb/src/kernel/blocks/dbtux/Dbtux.hpp
    1.13 04/06/17 10:50:58 pekka@mysql.com +3 -4
    tux optim 8 - store complete AttributeDescriptor (prepare for next step)

ChangeSet
  1.1346.1.520 04/06/17 11:48:49 heikki@hundin.mysql.fi +1 -0
  Cset exclude: guilhem@mysql.com|ChangeSet|20040609132715|17355

  sql/sql_parse.cc
    1.218.1.157 04/06/17 11:48:44 heikki@hundin.mysql.fi +0 -0
    Exclude

ChangeSet
  1.1616.528.1 04/06/17 10:03:08 pekka@mysql.com +11 -0
  tux optim 7 - use physical TUP address for index entries

  ndb/src/kernel/blocks/dbtux/Times.txt
    1.8 04/06/17 10:02:35 pekka@mysql.com +3 -0
    tux optim 7 - use physical TUP address for index entries

  ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp
    1.6 04/06/17 10:02:35 pekka@mysql.com +4 -4
    tux optim 7 - use physical TUP address for index entries

  ndb/src/kernel/blocks/dbtux/DbtuxMaint.cpp
    1.6 04/06/17 10:02:35 pekka@mysql.com +9 -8
    tux optim 7 - use physical TUP address for index entries

  ndb/src/kernel/blocks/dbtux/DbtuxGen.cpp
    1.5 04/06/17 10:02:35 pekka@mysql.com +3 -3
    tux optim 7 - use physical TUP address for index entries

  ndb/src/kernel/blocks/dbtux/DbtuxDebug.cpp
    1.5 04/06/17 10:02:35 pekka@mysql.com +2 -2
    tux optim 7 - use physical TUP address for index entries

  ndb/src/kernel/blocks/dbtux/Dbtux.hpp
    1.12 04/06/17 10:02:35 pekka@mysql.com +29 -17
    tux optim 7 - use physical TUP address for index entries

  ndb/src/kernel/blocks/dbtup/DbtupTrigger.cpp
    1.2 04/06/17 10:02:35 pekka@mysql.com +8 -5
    tux optim 7 - use physical TUP address for index entries

  ndb/src/kernel/blocks/dbtup/DbtupIndex.cpp
    1.3 04/06/17 10:02:35 pekka@mysql.com +101 -69
    tux optim 7 - use physical TUP address for index entries

  ndb/src/kernel/blocks/dbtup/Dbtup.hpp
    1.4 04/06/17 10:02:35 pekka@mysql.com +12 -0
    tux optim 7 - use physical TUP address for index entries

  ndb/src/common/debugger/signaldata/TuxMaint.cpp
    1.2 04/06/17 10:02:35 pekka@mysql.com +4 -4
    tux optim 7 - use physical TUP address for index entries

  ndb/include/kernel/signaldata/TuxMaint.hpp
    1.2 04/06/17 10:02:35 pekka@mysql.com +5 -4
    tux optim 7 - use physical TUP address for index entries

ChangeSet
  1.1616.520.2 04/06/17 12:47:58 ram@gw.mysql.r18.ru +2 -0
  a test case (Bug #4102 Crash with a DBUG window after a request)

  mysql-test/t/subselect.test
    1.58.38.1 04/06/17 12:47:54 ram@gw.mysql.r18.ru +12 -0
    a test case (Bug #4102 Crash with a DBUG window after a request)

  mysql-test/r/subselect.result
    1.67.55.1 04/06/17 12:47:54 ram@gw.mysql.r18.ru +9 -0
    a test case (Bug #4102 Crash with a DBUG window after a request)

ChangeSet
  1.1616.527.1 04/06/17 00:34:05 tomas@poseidon.bredbandsbolaget.se +3 -0
  build fixes for ndb

  ndb/src/ndbapi/Ndb.cpp
    1.11 04/06/17 00:33:56 tomas@poseidon.bredbandsbolaget.se +4 -0
    build fixes for ndb

  ndb/src/common/portlib/NdbThread.c
    1.10 04/06/17 00:33:55 tomas@poseidon.bredbandsbolaget.se +2 -0
    build fixes for ndb

  ndb/src/common/debugger/signaldata/BackupImpl.cpp
    1.2 04/06/17 00:33:55 tomas@poseidon.bredbandsbolaget.se +1 -1
    build fixes for ndb

ChangeSet
  1.1616.526.1 04/06/17 02:03:15 konstantin@mysql.com +1 -0
  - mysql_stmt_send_long_data commented. A few other comments.

  libmysql/libmysql.c
    1.156.1.90 04/06/17 02:03:12 konstantin@mysql.com +35 -7
    - mysql_stmt_send_long_data commented. A few other comments.

ChangeSet
  1.1616.1.307 04/06/17 00:21:41 heikki@hundin.mysql.fi +1 -0
  fil0fil.c:
    Remove the use of mem_realloc in fil0fil.c; mem_realloc() was broken and the patch to remove its definition will propagate from the 4.0 tree; crash recovery with innodb_file_per_table has to be tested after this patch, not tested yet

  innobase/fil/fil0fil.c
    1.35 04/06/17 00:10:45 heikki@hundin.mysql.fi +4 -5
    Remove the use of mem_realloc in fil0fil.c; mem_alloc() was broken and the patch to remove its definition will propagate from the 4.0 tree; crash recovery with innodb_file_per_table has to be tested after this patch, not tested yet

ChangeSet
  1.1346.1.519 04/06/16 23:46:47 heikki@hundin.mysql.fi +1 -0
  ut0mem.c:
    Remove printf's that were accidentally pushed in the last push

  innobase/ut/ut0mem.c
    1.8.1.11 04/06/16 23:46:35 heikki@hundin.mysql.fi +0 -7
    Remove printf's that were accidentally pushed in the last push

ChangeSet
  1.1346.1.518 04/06/16 23:42:58 heikki@hundin.mysql.fi +4 -0
  ut0mem.h, ut0mem.c:
    Implement ut_realloc
  lexyy.c, pars0lex.l:
    Start using ut_malloc, ut_free, ut_realloc in pars0lex.l and lexyy.c; mem_realloc was broken; eliminate possible memcpy(NULL, ..., 0) from string_append()

  innobase/include/ut0mem.h
    1.5.1.6 04/06/16 23:42:04 heikki@hundin.mysql.fi +31 -0
    Implement ut_realloc

  innobase/ut/ut0mem.c
    1.8.1.10 04/06/16 23:41:56 heikki@hundin.mysql.fi +82 -0
    Implement ut_realloc

  innobase/pars/lexyy.c
    1.10.1.4 04/06/16 23:41:14 heikki@hundin.mysql.fi +9 -9
    Start using ut_malloc, ut_free, ut_realloc in pars0lex.l and lexyy.c; mem_realloc was broken; eliminate possible memcpy(NULL, ..., 0) from string_append()

  innobase/pars/pars0lex.l
    1.7 04/06/16 23:41:05 heikki@hundin.mysql.fi +9 -9
    Start using ut_malloc, ut_free, ut_realloc in pars0lex.l and lexyy.c; mem_realloc was broken; eliminate possible memcpy(NULL, ..., 0) from string_append()

ChangeSet
  1.1616.525.1 04/06/16 23:11:02 konstantin@mysql.com +2 -0
  Comments and cleanups in client library.

  libmysql/libmysql.c
    1.156.1.89 04/06/16 23:10:59 konstantin@mysql.com +236 -154
    - more comments
    - trailing spaces stripped
    - update_statement_metadata moved to appropriate section (from 'Statement
    close and error reporting' section)
    - store_param_type moved to store_ functions

  include/mysql.h
    1.126.1.1 04/06/16 23:10:59 konstantin@mysql.com +1 -1
    mysql_bind_param -> mysql_stmt_bind_param

ChangeSet
  1.1346.1.517 04/06/16 20:24:35 heikki@hundin.mysql.fi +2 -0
  mem0mem.ic, mem0mem.h:
    Remove broken mem_realloc(); a patch to remove its uses in pars0lex.l and fil0fil.c will soon follow

  innobase/include/mem0mem.ic
    1.7.1.2 04/06/16 20:24:28 heikki@hundin.mysql.fi +0 -29
    Remove broken mem_realloc(); a patch to remove its uses in pars0lex.l and fil0fil.c will soon follow

  innobase/include/mem0mem.h
    1.7.1.1 04/06/16 20:24:21 heikki@hundin.mysql.fi +0 -12
    Remove broken mem_realloc(); a patch to remove its uses in pars0lex.l and fil0fil.c will soon follow

ChangeSet
  1.1616.1.305 04/06/16 11:12:53 paul@kite-hub.kitebird.com +20 -0
  Error message edits.

ChangeSet
  1.1616.521.5 04/06/16 16:59:33 tomas@poseidon.bredbandsbolaget.se +3 -0
  .del-mysqlclusterd~7ebaf8faea0a1100:
    Delete: ndb/bin/mysqlclusterd
  .del-mysqlcluster_install_db~f363f803506081a6:
    Delete: ndb/bin/mysqlcluster_install_db
  .del-mysqlcluster~26c9c37938503734:
    Delete: ndb/bin/mysqlcluster

  BitKeeper/deleted/.del-mysqlclusterd~7ebaf8faea0a1100
    1.2 04/06/16 16:59:20 tomas@poseidon.bredbandsbolaget.se +0 -0
    Delete: ndb/bin/mysqlclusterd

  BitKeeper/deleted/.del-mysqlcluster_install_db~f363f803506081a6
    1.2 04/06/16 16:59:16 tomas@poseidon.bredbandsbolaget.se +0 -0
    Delete: ndb/bin/mysqlcluster_install_db

  BitKeeper/deleted/.del-mysqlcluster~26c9c37938503734
    1.2 04/06/16 16:59:13 tomas@poseidon.bredbandsbolaget.se +0 -0
    Delete: ndb/bin/mysqlcluster

ChangeSet
  1.1616.523.1 04/06/16 16:50:05 tomas@poseidon.bredbandsbolaget.se +1 -0
  bug fix in ndb make

  acinclude.m4
    1.100 04/06/16 16:49:55 tomas@poseidon.bredbandsbolaget.se +1 -1
    bug fix in ndb make

ChangeSet
  1.1679.1.1 04/06/16 11:23:06 paul@kite-hub.kitebird.com +23 -0
  Error message edits.

  sql/share/ukrainian/errmsg.txt
    1.64.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +1 -1
    Error message edits.

  sql/share/swedish/errmsg.txt
    1.102.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/spanish/errmsg.txt
    1.101.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/slovak/errmsg.txt
    1.101.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/serbian/errmsg.txt
    1.55.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/russian/errmsg.txt
    1.99.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +1 -1
    Error message edits.

  sql/share/romanian/errmsg.txt
    1.98.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/portuguese/errmsg.txt
    1.100.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/polish/errmsg.txt
    1.101.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/norwegian/errmsg.txt
    1.100.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/norwegian-ny/errmsg.txt
    1.100.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/korean/errmsg.txt
    1.100.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/japanese/errmsg.txt
    1.100.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/italian/errmsg.txt
    1.107.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/hungarian/errmsg.txt
    1.102.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/greek/errmsg.txt
    1.101.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/german/errmsg.txt
    1.100.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/french/errmsg.txt
    1.100.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/estonian/errmsg.txt
    1.102.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/english/errmsg.txt
    1.109.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/dutch/errmsg.txt
    1.104.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/danish/errmsg.txt
    1.100.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/czech/errmsg.txt
    1.100.1.1 04/06/16 11:23:03 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

ChangeSet
  1.1616.522.4 04/06/16 18:21:38 pekka@mysql.com +9 -0
  tux optim 6 - remove node cache

  ndb/src/kernel/blocks/dbtux/Times.txt
    1.7 04/06/16 18:21:18 pekka@mysql.com +2 -1
    tux optim 6 - remove node cache

  ndb/src/kernel/blocks/dbtux/DbtuxTree.cpp
    1.4 04/06/16 18:21:18 pekka@mysql.com +208 -208
    tux optim 6 - remove node cache

  ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp
    1.5 04/06/16 18:21:17 pekka@mysql.com +33 -45
    tux optim 6 - remove node cache

  ndb/src/kernel/blocks/dbtux/DbtuxNode.cpp
    1.6 04/06/16 18:21:17 pekka@mysql.com +54 -140
    tux optim 6 - remove node cache

  ndb/src/kernel/blocks/dbtux/DbtuxMeta.cpp
    1.4 04/06/16 18:21:17 pekka@mysql.com +0 -6
    tux optim 6 - remove node cache

  ndb/src/kernel/blocks/dbtux/DbtuxMaint.cpp
    1.5 04/06/16 18:21:17 pekka@mysql.com +6 -7
    tux optim 6 - remove node cache

  ndb/src/kernel/blocks/dbtux/DbtuxGen.cpp
    1.4 04/06/16 18:21:17 pekka@mysql.com +0 -1
    tux optim 6 - remove node cache

  ndb/src/kernel/blocks/dbtux/DbtuxDebug.cpp
    1.4 04/06/16 18:21:17 pekka@mysql.com +20 -22
    tux optim 6 - remove node cache

  ndb/src/kernel/blocks/dbtux/Dbtux.hpp
    1.11 04/06/16 18:21:17 pekka@mysql.com +69 -85
    tux optim 6 - remove node cache

  sql/share/ukrainian/errmsg.txt
    1.27.1.54 04/06/16 11:12:51 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/swedish/errmsg.txt
    1.64.1.56 04/06/16 11:12:51 paul@kite-hub.kitebird.com +1 -1
    Error message edits.

  sql/share/spanish/errmsg.txt
    1.64.1.57 04/06/16 11:12:51 paul@kite-hub.kitebird.com +1 -1
    Error message edits.

  sql/share/slovak/errmsg.txt
    1.64.1.57 04/06/16 11:12:50 paul@kite-hub.kitebird.com +4 -4
    Error message edits.

  sql/share/romanian/errmsg.txt
    1.62.1.58 04/06/16 11:12:50 paul@kite-hub.kitebird.com +1 -1
    Error message edits.

  sql/share/portuguese/errmsg.txt
    1.64.1.56 04/06/16 11:12:50 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/polish/errmsg.txt
    1.63.1.57 04/06/16 11:12:50 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/norwegian/errmsg.txt
    1.63.1.58 04/06/16 11:12:50 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/norwegian-ny/errmsg.txt
    1.63.1.57 04/06/16 11:12:50 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/korean/errmsg.txt
    1.63.1.57 04/06/16 11:12:50 paul@kite-hub.kitebird.com +1 -1
    Error message edits.

  sql/share/japanese/errmsg.txt
    1.63.1.55 04/06/16 11:12:50 paul@kite-hub.kitebird.com +3 -3
    Error message edits.

  sql/share/italian/errmsg.txt
    1.70.1.57 04/06/16 11:12:50 paul@kite-hub.kitebird.com +1 -1
    Error message edits.

  sql/share/hungarian/errmsg.txt
    1.65.1.56 04/06/16 11:12:50 paul@kite-hub.kitebird.com +1 -1
    Error message edits.

  sql/share/greek/errmsg.txt
    1.64.1.56 04/06/16 11:12:50 paul@kite-hub.kitebird.com +2 -2
    Error message edits.

  sql/share/german/errmsg.txt
    1.64.1.52 04/06/16 11:12:50 paul@kite-hub.kitebird.com +1 -1
    Error message edits.

  sql/share/french/errmsg.txt
    1.63.1.57 04/06/16 11:12:50 paul@kite-hub.kitebird.com +1 -1
    Error message edits.

  sql/share/english/errmsg.txt
    1.70.1.61 04/06/16 11:12:50 paul@kite-hub.kitebird.com +7 -7
    Error message edits.

  sql/share/dutch/errmsg.txt
    1.66.1.56 04/06/16 11:12:50 paul@kite-hub.kitebird.com +1 -1
    Error message edits.

  sql/share/danish/errmsg.txt
    1.62.1.55 04/06/16 11:12:50 paul@kite-hub.kitebird.com +1 -1
    Error message edits.

  sql/share/czech/errmsg.txt
    1.64.1.58 04/06/16 11:12:50 paul@kite-hub.kitebird.com +1 -1
    Error message edits.

ChangeSet
  1.1616.522.3 04/06/16 17:54:08 pekka@mysql.com +6 -0
  tux optim 5 - move node ops to class level (prepare to remove node cache)

  ndb/src/kernel/blocks/dbtux/Times.txt
    1.6 04/06/16 17:53:37 pekka@mysql.com +5 -0
    tux optim 5 - move node ops to class level (prepare to remove node cache)

  ndb/src/kernel/blocks/dbtux/DbtuxTree.cpp
    1.3 04/06/16 17:53:37 pekka@mysql.com +11 -11
    tux optim 5 - move node ops to class level (prepare to remove node cache)

  ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp
    1.4 04/06/16 17:53:37 pekka@mysql.com +8 -8
    tux optim 5 - move node ops to class level (prepare to remove node cache)

  ndb/src/kernel/blocks/dbtux/DbtuxNode.cpp
    1.5 04/06/16 17:53:37 pekka@mysql.com +111 -105
    tux optim 5 - move node ops to class level (prepare to remove node cache)

  ndb/src/kernel/blocks/dbtux/DbtuxMaint.cpp
    1.4 04/06/16 17:53:37 pekka@mysql.com +0 -94
    tux optim 5 - move node ops to class level (prepare to remove node cache)

  ndb/src/kernel/blocks/dbtux/Dbtux.hpp
    1.10 04/06/16 17:53:37 pekka@mysql.com +18 -21
    tux optim 5 - move node ops to class level (prepare to remove node cache)

ChangeSet
  1.1616.522.2 04/06/16 17:14:29 pekka@mysql.com +4 -0
  tux optim 4 - update prefixes at once (prepare to remove node cache)

  ndb/src/kernel/blocks/dbtux/Times.txt
    1.5 04/06/16 17:14:03 pekka@mysql.com +4 -0
    tux optim 4 - update prefixes at once (prepare to remove node cache)

  ndb/src/kernel/blocks/dbtux/DbtuxNode.cpp
    1.4 04/06/16 17:14:03 pekka@mysql.com +21 -46
    tux optim 4 - update prefixes at once (prepare to remove node cache)

  ndb/src/kernel/blocks/dbtux/DbtuxDebug.cpp
    1.3 04/06/16 17:14:03 pekka@mysql.com +0 -1
    tux optim 4 - update prefixes at once (prepare to remove node cache)

  ndb/src/kernel/blocks/dbtux/Dbtux.hpp
    1.9 04/06/16 17:14:03 pekka@mysql.com +1 -14
    tux optim 4 - update prefixes at once (prepare to remove node cache)

ChangeSet
  1.1616.522.1 04/06/16 16:28:17 pekka@mysql.com +9 -0
  tux optim 3 - use TUP methods instead of TUP_STORE_TH signal

  ndb/test/ndbapi/testOIBasic.cpp
    1.7 04/06/16 16:27:56 pekka@mysql.com +1 -1
    tux optim 3 - use TUP methods instead of TUP_STORE_TH signal

  ndb/src/kernel/blocks/dbtux/Times.txt
    1.4 04/06/16 16:27:56 pekka@mysql.com +2 -0
    tux optim 3 - use TUP methods instead of TUP_STORE_TH signal

  ndb/src/kernel/blocks/dbtux/Makefile.am
    1.2 04/06/16 16:27:56 pekka@mysql.com +2 -0
    tux optim 3 - use TUP methods instead of TUP_STORE_TH signal

  ndb/src/kernel/blocks/dbtux/DbtuxNode.cpp
    1.3 04/06/16 16:27:56 pekka@mysql.com +39 -47
    tux optim 3 - use TUP methods instead of TUP_STORE_TH signal

  ndb/src/kernel/blocks/dbtux/DbtuxGen.cpp
    1.3 04/06/16 16:27:56 pekka@mysql.com +4 -1
    tux optim 3 - use TUP methods instead of TUP_STORE_TH signal

  ndb/src/kernel/blocks/dbtux/Dbtux.hpp
    1.8 04/06/16 16:27:56 pekka@mysql.com +6 -0
    tux optim 3 - use TUP methods instead of TUP_STORE_TH signal

  ndb/src/kernel/blocks/dbtup/DbtupIndex.cpp
    1.2 04/06/16 16:27:56 pekka@mysql.com +58 -0
    tux optim 3 - use TUP methods instead of TUP_STORE_TH signal

  ndb/src/kernel/blocks/dbtup/Dbtup.hpp
    1.3 04/06/16 16:27:56 pekka@mysql.com +8 -0
    tux optim 3 - use TUP methods instead of TUP_STORE_TH signal

  ndb/include/kernel/signaldata/TupAccess.hpp
    1.3 04/06/16 16:27:56 pekka@mysql.com +3 -3
    tux optim 3 - use TUP methods instead of TUP_STORE_TH signal

ChangeSet
  1.1346.1.516 04/06/16 17:22:35 marko@hundin.mysql.fi +1 -0
  InnoDB bug fix: mem_realloc() didn't preserve the block contents

  innobase/include/mem0mem.ic
    1.7.1.1 04/06/16 17:19:51 marko@hundin.mysql.fi +14 -2
    mem_realloc(): preserve the old buffer contents

ChangeSet
  1.1616.521.2 04/06/16 18:32:53 bar@mysql.com +3 -0
  Critical fixes after review:
  - mutex was unlocked before the end of the critical sesion,
  - Portability issue: It's better to use (*alloc)(x) instead of alloc(x),
    if alloc is a function passed as an argument.
  - Use {} around if() block, to avoid possible problems with some Windows compilers.

ChangeSet
  1.1616.521.1 04/06/16 14:06:44 tomas@poseidon.ndb.mysql.com +1 -0
  cxx compile fix for ndb

  ndb/src/common/debugger/signaldata/CreateTrig.cpp
    1.2 04/06/16 14:06:42 tomas@poseidon.ndb.mysql.com +1 -1
    cxx compile fix for ndb

ChangeSet
  1.1616.520.1 04/06/16 18:43:05 ram@gw.mysql.r18.ru +1 -0
  a fix (Bug #4102 Crash with a DBUG window after a request)

  sql/item.h
    1.56.31.1 04/06/16 18:42:22 ram@gw.mysql.r18.ru +4 -1
    a fix (Bug #4102 Crash with a DBUG window after a request)

  strings/ctype-uca.c
    1.14 04/06/16 18:32:43 bar@mysql.com +8 -6
    Critical fixes after review:
    - mutex was unlocked before the end of the critical sesion,
    - Portability issue: It's better to use (*alloc)(x) instead of alloc(x),
      if alloc is a function passed as an argument.
    - Use {} around if() block, to avoid possible problems with some Windows compilers.

  sql/sql_string.cc
    1.77.1.7 04/06/16 18:32:43 bar@mysql.com +1 -1
    Critical fixes after review:
    - mutex was unlocked before the end of the critical sesion,
    - Portability issue: It's better to use (*alloc)(x) instead of alloc(x),
      if alloc is a function passed as an argument.
    - Use {} around if() block, to avoid possible problems with some Windows compilers.

  mysys/charset.c
    1.129 04/06/16 18:32:42 bar@mysql.com +1 -1
    Critical fixes after review:
    - mutex was unlocked before the end of the critical sesion,
    - Portability issue: It's better to use (*alloc)(x) instead of alloc(x),
      if alloc is a function passed as an argument.
    - Use {} around if() block, to avoid possible problems with some Windows compilers.

ChangeSet
  1.1616.519.2 04/06/16 13:31:35 tomas@poseidon.ndb.mysql.com +1 -0
  Makefile.am:
    missing file

  ndb/include/Makefile.am
    1.4 04/06/16 13:31:18 tomas@poseidon.ndb.mysql.com +1 -0
    missing file

ChangeSet
  1.1616.516.3 04/06/16 15:10:13 pekka@mysql.com +9 -0
  tux optim 2 - use physical TUP address for index nodes

  ndb/src/kernel/blocks/dbtux/Times.txt
    1.3 04/06/16 15:09:49 pekka@mysql.com +9 -2
    tux optim 2 - use physical TUP address for index nodes

  ndb/src/kernel/blocks/dbtux/DbtuxTree.cpp
    1.2 04/06/16 15:09:49 pekka@mysql.com +89 -90
    tux optim 2 - use physical TUP address for index nodes

  ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp
    1.3 04/06/16 15:09:49 pekka@mysql.com +28 -28
    tux optim 2 - use physical TUP address for index nodes

  ndb/src/kernel/blocks/dbtux/DbtuxNode.cpp
    1.2 04/06/16 15:09:49 pekka@mysql.com +13 -13
    tux optim 2 - use physical TUP address for index nodes

  ndb/src/kernel/blocks/dbtux/DbtuxMeta.cpp
    1.3 04/06/16 15:09:49 pekka@mysql.com +3 -2
    tux optim 2 - use physical TUP address for index nodes

  ndb/src/kernel/blocks/dbtux/DbtuxMaint.cpp
    1.3 04/06/16 15:09:49 pekka@mysql.com +7 -10
    tux optim 2 - use physical TUP address for index nodes

  ndb/src/kernel/blocks/dbtux/DbtuxDebug.cpp
    1.2 04/06/16 15:09:49 pekka@mysql.com +28 -13
    tux optim 2 - use physical TUP address for index nodes

  ndb/src/kernel/blocks/dbtux/Dbtux.hpp
    1.7 04/06/16 15:09:49 pekka@mysql.com +222 -176
    tux optim 2 - use physical TUP address for index nodes

  ndb/include/kernel/signaldata/TupAccess.hpp
    1.2 04/06/16 15:09:49 pekka@mysql.com +4 -2
    tux optim 2 - use physical TUP address for index nodes

ChangeSet
  1.1616.517.3 04/06/16 16:06:30 bell@sanja.is.com.ua +5 -0
  new length detection for non-string in UNION (BUG#4067)

  sql/item.h
    1.56.1.76 04/06/16 16:06:09 bell@sanja.is.com.ua +1 -0
    new length detection for non-string

  sql/item.cc
    1.58.1.87 04/06/16 16:06:09 bell@sanja.is.com.ua +69 -3
    new length detection for non-string

  mysql-test/t/union.test
    1.69 04/06/16 16:06:09 bell@sanja.is.com.ua +8 -0
    test of int with wrong display length

  mysql-test/r/union.result
    1.46.1.29 04/06/16 16:06:09 bell@sanja.is.com.ua +11 -4
    new length in UNION
    test of int with wrong display length

  mysql-test/r/subselect.result
    1.67.54.3 04/06/16 16:06:09 bell@sanja.is.com.ua +7 -7
    new length in UNION

ChangeSet
  1.1680 04/06/16 14:49:35 pem@mysql.comhem.se +23 -0
  Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/ukrainian/errmsg.txt
    1.65 04/06/16 14:49:31 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/swedish/errmsg.txt
    1.103 04/06/16 14:49:31 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/spanish/errmsg.txt
    1.102 04/06/16 14:49:31 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/slovak/errmsg.txt
    1.102 04/06/16 14:49:31 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/serbian/errmsg.txt
    1.56 04/06/16 14:49:30 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/russian/errmsg.txt
    1.100 04/06/16 14:49:30 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/romanian/errmsg.txt
    1.99 04/06/16 14:49:30 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/portuguese/errmsg.txt
    1.101 04/06/16 14:49:30 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/polish/errmsg.txt
    1.102 04/06/16 14:49:30 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/norwegian/errmsg.txt
    1.101 04/06/16 14:49:30 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/norwegian-ny/errmsg.txt
    1.101 04/06/16 14:49:30 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/korean/errmsg.txt
    1.101 04/06/16 14:49:30 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/japanese/errmsg.txt
    1.101 04/06/16 14:49:30 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/italian/errmsg.txt
    1.108 04/06/16 14:49:30 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/hungarian/errmsg.txt
    1.103 04/06/16 14:49:30 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/greek/errmsg.txt
    1.102 04/06/16 14:49:30 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/german/errmsg.txt
    1.101 04/06/16 14:49:30 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/french/errmsg.txt
    1.101 04/06/16 14:49:30 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/estonian/errmsg.txt
    1.103 04/06/16 14:49:30 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/english/errmsg.txt
    1.110 04/06/16 14:49:30 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/dutch/errmsg.txt
    1.105 04/06/16 14:49:30 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/danish/errmsg.txt
    1.101 04/06/16 14:49:30 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

  sql/share/czech/errmsg.txt
    1.101 04/06/16 14:49:30 pem@mysql.com +1 -1
    Fixed error message (assumed to be fixed by earlier changeset, but wasn't).

ChangeSet
  1.1616.516.2 04/06/16 14:30:49 pekka@mysql.com +9 -0
  tux optim 1 - use physical fragment addresses

  ndb/test/ndbapi/testOIBasic.cpp
    1.6 04/06/16 14:30:22 pekka@mysql.com +50 -9
    tux optim 1 - use physical fragment addresses

  ndb/src/kernel/blocks/dbtux/Times.txt
    1.2 04/06/16 14:30:22 pekka@mysql.com +3 -0
    tux optim 1 - use physical fragment addresses

  ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp
    1.2 04/06/16 14:30:22 pekka@mysql.com +1 -2
    tux optim 1 - use physical fragment addresses

  ndb/src/kernel/blocks/dbtux/DbtuxMeta.cpp
    1.2 04/06/16 14:30:22 pekka@mysql.com +5 -0
    tux optim 1 - use physical fragment addresses

  ndb/src/kernel/blocks/dbtux/DbtuxMaint.cpp
    1.2 04/06/16 14:30:22 pekka@mysql.com +3 -3
    tux optim 1 - use physical fragment addresses

  ndb/src/kernel/blocks/dbtux/Dbtux.hpp
    1.6 04/06/16 14:30:22 pekka@mysql.com +9 -1
    tux optim 1 - use physical fragment addresses

  ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
    1.5 04/06/16 14:30:21 pekka@mysql.com +12 -0
    tux optim 1 - use physical fragment addresses

  ndb/src/kernel/blocks/dbacc/DbaccMain.cpp
    1.3 04/06/16 14:30:21 pekka@mysql.com +1 -0
    tux optim 1 - use physical fragment addresses

  ndb/include/kernel/signaldata/TupFrag.hpp
    1.2 04/06/16 14:30:21 pekka@mysql.com +4 -1
    tux optim 1 - use physical fragment addresses

ChangeSet
  1.1616.470.9 04/06/16 15:13:17 serg@sergbook.mysql.com +1 -0
  don't bother creating Makefiles that are not needed

  configure.in
    1.201.19.2 04/06/16 15:12:38 serg@sergbook.mysql.com +4 -3
    don't bother creating Makefiles that are not needed

  ndb/src/kernel/blocks/dbtux/Times.txt
    1.1 04/06/16 14:07:42 pekka@mysql.com +15 -0

  ndb/src/kernel/blocks/dbtux/Times.txt
    1.0 04/06/16 14:07:42 pekka@mysql.com +0 -0
    BitKeeper file /space/pekka/ndb/version/my41/ndb/src/kernel/blocks/dbtux/Times.txt

ChangeSet
  1.1616.518.1 04/06/16 13:57:45 lenz@mysql.com +1 -0
   - Modified Do-compile to build, package and test NDB cluster, when
     enabled

  Build-tools/Do-compile
    1.86 04/06/16 13:57:40 lenz@mysql.com +7 -7
     - removed redundant option "--without-ndbcluster" (we already have
       "--with-cluster" for that)
     - make sure to add the cluster files in the binary distribution
     - make sure to run mysql-test-run with NDB tests enabled

ChangeSet
  1.1346.1.515 04/06/16 13:41:14 marko@hundin.mysql.fi +36 -0
  InnoDB: Revert most of ChangeSet@1.1772, as the debug functions may
  be needed when testing production releases

  innobase/trx/trx0roll.c
    1.10.1.8 04/06/16 13:09:28 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/sync/sync0sync.c
    1.16.1.13 04/06/16 13:09:28 marko@hundin.mysql.fi +2 -8
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/sync/sync0rw.c
    1.7.1.5 04/06/16 13:09:28 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/srv/srv0start.c
    1.37.1.21 04/06/16 13:09:28 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/pars/pars0opt.c
    1.6.1.4 04/06/16 13:09:28 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/mtr/mtr0mtr.c
    1.3.1.6 04/06/16 13:09:28 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/mem/mem0pool.c
    1.9.1.7 04/06/16 13:09:28 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/mem/mem0dbg.c
    1.5.1.8 04/06/16 13:09:28 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/lock/lock0lock.c
    1.20.1.17 04/06/16 13:09:28 marko@hundin.mysql.fi +1 -13
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/include/sync0sync.h
    1.9.1.8 04/06/16 13:09:28 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/include/sync0rw.h
    1.6.1.1 04/06/16 13:09:28 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/include/pars0opt.h
    1.3 04/06/16 13:09:28 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/include/mtr0mtr.h
    1.3.1.6 04/06/16 13:09:28 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/include/mem0pool.h
    1.4.1.2 04/06/16 13:09:28 marko@hundin.mysql.fi +1 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/include/mem0dbg.ic
    1.3.1.1 04/06/16 13:09:28 marko@hundin.mysql.fi +1 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/include/mem0dbg.h
    1.5 04/06/16 13:09:28 marko@hundin.mysql.fi +0 -4
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/include/lock0lock.h
    1.7.1.6 04/06/16 13:09:28 marko@hundin.mysql.fi +0 -6
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/include/fut0lst.h
    1.3 04/06/16 13:09:28 marko@hundin.mysql.fi +1 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/include/fsp0fsp.h
    1.4.1.2 04/06/16 13:09:28 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/include/dict0dict.h
    1.17.1.9 04/06/16 13:09:28 marko@hundin.mysql.fi +6 -8
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/include/data0type.h
    1.4.1.2 04/06/16 13:09:28 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/include/buf0lru.h
    1.1.1.3 04/06/16 13:09:28 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/include/buf0flu.h
    1.5 04/06/16 13:09:27 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/include/buf0buf.ic
    1.7.1.6 04/06/16 13:09:27 marko@hundin.mysql.fi +4 -0
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/include/buf0buf.h
    1.12.1.6 04/06/16 13:09:27 marko@hundin.mysql.fi +3 -7
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/include/btr0btr.h
    1.12 04/06/16 13:09:27 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/ibuf/ibuf0ibuf.c
    1.18.1.8 04/06/16 13:09:27 marko@hundin.mysql.fi +2 -6
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/fut/fut0lst.c
    1.2.1.3 04/06/16 13:09:27 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/fsp/fsp0fsp.c
    1.15.1.8 04/06/16 13:09:27 marko@hundin.mysql.fi +1 -5
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/dict/dict0dict.c
    1.26.1.28 04/06/16 13:09:27 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/data/data0type.c
    1.5.1.3 04/06/16 13:09:27 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/buf/buf0rea.c
    1.5.1.3 04/06/16 13:09:27 marko@hundin.mysql.fi +0 -10
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/buf/buf0lru.c
    1.9.1.11 04/06/16 13:09:26 marko@hundin.mysql.fi +0 -4
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/buf/buf0flu.c
    1.14.1.10 04/06/16 13:09:26 marko@hundin.mysql.fi +0 -10
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/buf/buf0buf.c
    1.17.1.15 04/06/16 13:09:26 marko@hundin.mysql.fi +1 -13
    Remove #ifdef UNIV_DEBUG around debug code

  innobase/btr/btr0btr.c
    1.21.1.8 04/06/16 13:09:26 marko@hundin.mysql.fi +0 -2
    Remove #ifdef UNIV_DEBUG around debug code

ChangeSet
  1.1616.517.2 04/06/16 14:06:39 konstantin@mysql.com +1 -0
  Another place where Bug#4079 "error checking in prepared statements"
  pops up fixed.

  libmysql/libmysql.c
    1.156.1.88 04/06/16 14:06:34 konstantin@mysql.com +1 -0
    Another place where Bug#4079 pops up fixed.

ChangeSet
  1.1616.470.8 04/06/16 12:51:59 serg@sergbook.mysql.com +1 -0
  minor cleanup

  sql/unireg.cc
    1.41 04/06/16 12:51:19 serg@sergbook.mysql.com +0 -1
    minor cleanup

ChangeSet
  1.1616.517.1 04/06/16 11:29:22 konstantin@mysql.com +1 -0
  Compilation error on AIX (IBM C Compiler Version 6) fixed.

  tests/client_test.c
    1.51.1.45 04/06/16 11:29:20 konstantin@mysql.com +1 -1
    Compilation error on AIX (IBM C Compiler Version 6) fixed.

ChangeSet
  1.1346.1.514 04/06/15 23:05:12 patg@krsna.patg.net +2 -0
  mysql-copyright:
    * added 'local $/' to keep from undef-ing $/ (the newline setting) for the whole script
    * removed the target dir removal (target dir is not a temp dir!)
    * use split to create filelist (cleaner way than using chomp!)
    * removed use of chomp because it caused some file names to be mangled
    * print out which file is being processed if verbose
  mysql-copyright-2:
    * added cpp to list of files to be processed (for windows archives)

  Build-tools/mysql-copyright
    1.8.1.4 04/06/15 23:04:51 patg@krsna.patg.net +15 -16
    * added 'local $/' to keep from undef-ing $/ (the newline setting) for the whole script
    * removed the target dir removal (target dir is not a temp dir!)
    * use split to create filelist (cleaner way than using chomp!)
    * removed use of chomp because it caused some file names to be mangled
    * print out which file is being processed if verbose

  Build-tools/mysql-copyright-2
    1.5.1.2 04/06/15 23:04:51 patg@krsna.patg.net +1 -0
    * added cpp to list of files to be processed (for windows archives)

ChangeSet
  1.1679 04/06/16 00:46:26 paul@kite-hub.kitebird.com +2 -0
  variables.result, sp-error.result:
    fix up test result.

  mysql-test/r/variables.result
    1.47 04/06/16 00:45:10 paul@kite-hub.kitebird.com +1 -1
    fix up test result.

  mysql-test/r/sp-error.result
    1.41 04/06/16 00:45:04 paul@kite-hub.kitebird.com +6 -6
    fix up test result.

ChangeSet
  1.1616.1.303 04/06/15 23:50:03 paul@kite-hub.kitebird.com +2 -0
  packet.result, alter_table.result:
    fix up test result.

  mysql-test/r/packet.result
    1.5 04/06/15 23:49:10 paul@kite-hub.kitebird.com +1 -1
    fix up test result.

  mysql-test/r/alter_table.result
    1.36 04/06/15 23:48:42 paul@kite-hub.kitebird.com +1 -1
    fix up test result.

ChangeSet
  1.1678 04/06/15 23:23:56 paul@ice.snake.net +23 -0
  Language/consistency edits to error messages.

  sql/share/ukrainian/errmsg.txt
    1.64 04/06/15 23:21:54 paul@ice.snake.net +3 -3
    Language/consistency edits to error messages.

  sql/share/swedish/errmsg.txt
    1.102 04/06/15 23:21:54 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/spanish/errmsg.txt
    1.101 04/06/15 23:21:53 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/slovak/errmsg.txt
    1.101 04/06/15 23:21:53 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/serbian/errmsg.txt
    1.55 04/06/15 23:21:53 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/russian/errmsg.txt
    1.99 04/06/15 23:21:53 paul@ice.snake.net +3 -3
    Language/consistency edits to error messages.

  sql/share/romanian/errmsg.txt
    1.98 04/06/15 23:21:52 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/portuguese/errmsg.txt
    1.100 04/06/15 23:21:52 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/polish/errmsg.txt
    1.101 04/06/15 23:21:52 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/norwegian/errmsg.txt
    1.100 04/06/15 23:21:52 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/norwegian-ny/errmsg.txt
    1.100 04/06/15 23:21:51 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/korean/errmsg.txt
    1.100 04/06/15 23:21:51 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/japanese/errmsg.txt
    1.100 04/06/15 23:21:51 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/italian/errmsg.txt
    1.107 04/06/15 23:21:50 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/hungarian/errmsg.txt
    1.102 04/06/15 23:21:50 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/greek/errmsg.txt
    1.101 04/06/15 23:21:50 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/german/errmsg.txt
    1.100 04/06/15 23:21:50 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/french/errmsg.txt
    1.100 04/06/15 23:21:50 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/estonian/errmsg.txt
    1.102 04/06/15 23:21:49 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/english/errmsg.txt
    1.109 04/06/15 23:21:49 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/dutch/errmsg.txt
    1.104 04/06/15 23:21:49 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/danish/errmsg.txt
    1.100 04/06/15 23:21:49 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

  sql/share/czech/errmsg.txt
    1.100 04/06/15 23:21:48 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages.

ChangeSet
  1.1616.1.301 04/06/15 22:18:20 paul@ice.snake.net +57 -0
  Language/consistency edits to error messages
  and affected test results.

  sql/share/ukrainian/errmsg.txt
    1.27.1.53 04/06/15 22:18:09 paul@ice.snake.net +11 -11
    Language/consistency edits to error messages
    and affected test results.

  sql/share/swedish/errmsg.txt
    1.64.1.55 04/06/15 22:18:09 paul@ice.snake.net +10 -10
    Language/consistency edits to error messages
    and affected test results.

  sql/share/spanish/errmsg.txt
    1.64.1.56 04/06/15 22:18:09 paul@ice.snake.net +6 -6
    Language/consistency edits to error messages
    and affected test results.

  sql/share/slovak/errmsg.txt
    1.64.1.56 04/06/15 22:18:08 paul@ice.snake.net +19 -19
    Language/consistency edits to error messages
    and affected test results.

  sql/share/serbian/errmsg.txt
    1.18.1.51 04/06/15 22:18:08 paul@ice.snake.net +11 -11
    Language/consistency edits to error messages
    and affected test results.

  sql/share/russian/errmsg.txt
    1.61.1.54 04/06/15 22:18:08 paul@ice.snake.net +11 -11
    Language/consistency edits to error messages
    and affected test results.

  sql/share/romanian/errmsg.txt
    1.62.1.57 04/06/15 22:18:07 paul@ice.snake.net +12 -12
    Language/consistency edits to error messages
    and affected test results.

  sql/share/portuguese/errmsg.txt
    1.64.1.55 04/06/15 22:18:07 paul@ice.snake.net +6 -6
    Language/consistency edits to error messages
    and affected test results.

  sql/share/polish/errmsg.txt
    1.63.1.56 04/06/15 22:18:07 paul@ice.snake.net +26 -26
    Language/consistency edits to error messages
    and affected test results.

  sql/share/norwegian/errmsg.txt
    1.63.1.57 04/06/15 22:18:06 paul@ice.snake.net +24 -24
    Language/consistency edits to error messages
    and affected test results.

  sql/share/norwegian-ny/errmsg.txt
    1.63.1.56 04/06/15 22:18:06 paul@ice.snake.net +24 -24
    Language/consistency edits to error messages
    and affected test results.

  sql/share/korean/errmsg.txt
    1.63.1.56 04/06/15 22:18:06 paul@ice.snake.net +15 -15
    Language/consistency edits to error messages
    and affected test results.

  sql/share/japanese/errmsg.txt
    1.63.1.54 04/06/15 22:18:05 paul@ice.snake.net +21 -21
    Language/consistency edits to error messages
    and affected test results.

  sql/share/italian/errmsg.txt
    1.70.1.56 04/06/15 22:18:05 paul@ice.snake.net +11 -11
    Language/consistency edits to error messages
    and affected test results.

  sql/share/hungarian/errmsg.txt
    1.65.1.55 04/06/15 22:18:05 paul@ice.snake.net +12 -12
    Language/consistency edits to error messages
    and affected test results.

  sql/share/greek/errmsg.txt
    1.64.1.55 04/06/15 22:18:04 paul@ice.snake.net +17 -17
    Language/consistency edits to error messages
    and affected test results.

  sql/share/german/errmsg.txt
    1.64.1.51 04/06/15 22:18:04 paul@ice.snake.net +6 -6
    Language/consistency edits to error messages
    and affected test results.

  sql/share/french/errmsg.txt
    1.63.1.56 04/06/15 22:18:04 paul@ice.snake.net +11 -11
    Language/consistency edits to error messages
    and affected test results.

  sql/share/estonian/errmsg.txt
    1.64.1.55 04/06/15 22:18:03 paul@ice.snake.net +11 -11
    Language/consistency edits to error messages
    and affected test results.

  sql/share/english/errmsg.txt
    1.70.1.60 04/06/15 22:18:03 paul@ice.snake.net +28 -28
    Language/consistency edits to error messages
    and affected test results.

  sql/share/dutch/errmsg.txt
    1.66.1.55 04/06/15 22:18:03 paul@ice.snake.net +11 -11
    Language/consistency edits to error messages
    and affected test results.

  sql/share/danish/errmsg.txt
    1.62.1.54 04/06/15 22:18:02 paul@ice.snake.net +13 -13
    Language/consistency edits to error messages
    and affected test results.

  sql/share/czech/errmsg.txt
    1.64.1.57 04/06/15 22:18:02 paul@ice.snake.net +11 -11
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/warnings.result
    1.27 04/06/15 22:18:02 paul@ice.snake.net +8 -8
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/variables.result
    1.21.1.31 04/06/15 22:18:02 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/varbinary.result
    1.14 04/06/15 22:18:01 paul@ice.snake.net +1 -1
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/union.result
    1.46.1.28 04/06/15 22:18:01 paul@ice.snake.net +2 -2
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/type_uint.result
    1.8 04/06/15 22:18:01 paul@ice.snake.net +1 -1
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/type_time.result
    1.11 04/06/15 22:18:01 paul@ice.snake.net +3 -3
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/type_ranges.result
    1.24 04/06/15 22:18:00 paul@ice.snake.net +19 -19
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/type_float.result
    1.21 04/06/15 22:18:00 paul@ice.snake.net +2 -2
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/type_decimal.result
    1.23 04/06/15 22:18:00 paul@ice.snake.net +50 -50
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/type_datetime.result
    1.20 04/06/15 22:17:59 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/type_blob.result
    1.39 04/06/15 22:17:59 paul@ice.snake.net +1 -1
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/subselect.result
    1.67.54.2 04/06/15 22:17:58 paul@ice.snake.net +2 -2
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/show_check.result
    1.31.1.21 04/06/15 22:17:58 paul@ice.snake.net +8 -8
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/select_safe.result
    1.14 04/06/15 22:17:57 paul@ice.snake.net +3 -3
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/ps.result
    1.8 04/06/15 22:17:57 paul@ice.snake.net +9 -9
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/openssl_1.result
    1.9 04/06/15 22:17:56 paul@ice.snake.net +4 -4
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/null_key.result
    1.27 04/06/15 22:17:56 paul@ice.snake.net +1 -1
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/null.result
    1.18.1.5 04/06/15 22:17:55 paul@ice.snake.net +9 -9
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/ndb_replace.result
    1.2 04/06/15 22:17:55 paul@ice.snake.net +1 -1
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/multi_update.result
    1.25.1.12 04/06/15 22:17:54 paul@ice.snake.net +1 -1
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/key_cache.result
    1.12 04/06/15 22:17:54 paul@ice.snake.net +2 -2
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/key.result
    1.18 04/06/15 22:17:54 paul@ice.snake.net +2 -2
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/join_outer.result
    1.24.1.5 04/06/15 22:17:53 paul@ice.snake.net +4 -4
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/join.result
    1.26 04/06/15 22:17:53 paul@ice.snake.net +1 -1
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/insert_select.result
    1.16.1.3 04/06/15 22:17:52 paul@ice.snake.net +2 -2
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/insert.result
    1.12.1.11 04/06/15 22:17:52 paul@ice.snake.net +44 -44
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/innodb_handler.result
    1.10 04/06/15 22:17:52 paul@ice.snake.net +1 -1
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/handler.result
    1.20 04/06/15 22:17:52 paul@ice.snake.net +2 -2
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/grant_cache.result
    1.12 04/06/15 22:17:51 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/grant2.result
    1.6 04/06/15 22:17:51 paul@ice.snake.net +1 -1
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/derived.result
    1.48 04/06/15 22:17:51 paul@ice.snake.net +3 -3
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/create.result
    1.74 04/06/15 22:17:50 paul@ice.snake.net +5 -5
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/auto_increment.result
    1.26 04/06/15 22:17:50 paul@ice.snake.net +3 -3
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/alter_table.result
    1.35 04/06/15 22:17:50 paul@ice.snake.net +1 -1
    Language/consistency edits to error messages
    and affected test results.

ChangeSet
  1.1616.487.40 04/06/16 04:08:07 heikki@hundin.mysql.fi +1 -0
  row0ins.c:
    Return the code of row_ins_foreign_check_on_constraint() as close to 4.0 as possible, except that we use mem_strdup() to allocate the memory for the modified table name

  innobase/row/row0ins.c
    1.36 04/06/16 04:07:56 heikki@hundin.mysql.fi +10 -8
    Return the code of row_ins_foreign_check_on_constraint() as close to 4.0 as possible, except that we use mem_strdup() to allocate the memory for the modified table name

ChangeSet
  1.1616.487.39 04/06/16 01:55:24 marko@hundin.mysql.fi +2 -0
  InnoDB: fix bug in call to innobase_invalidate_query_cache(),
    introduced in ChangeSet@1.1843.1.25
  InnoDB: fix bug in the error exit of
    fil_create_new_single_table_tablespace(), introduced in
    ChangeSet@1.1843.1.11

  innobase/fil/fil0fil.c
    1.34 04/06/16 01:41:14 marko@hundin.mysql.fi +2 -4
    fil_create_new_single_table_tablespace():
     delete the file if fil_space_create() fails

  innobase/row/row0ins.c
    1.35 04/06/16 01:39:14 marko@hundin.mysql.fi +10 -10
    row_ins_foreign_check_on_constraint():
     the string passed to innobase_invalidate_query_cache() was truncated;
     now it is passed correctly again

ChangeSet
  1.1616.515.1 04/06/15 23:48:08 joreland@mysql.com +1 -0
  1) Send CM_REGCONF JBA so that CM_ADD doesn't "pass"
  2) Fix = -> == in coupl eof require's

  ndb/src/kernel/blocks/qmgr/QmgrMain.cpp
    1.3 04/06/15 23:47:45 joreland@mysql.com +3 -3
    1) Send CM_REGCONF JBA so that CM_ADD doesn't "pass"
    2) Fix = -> == in coupl eof require's

ChangeSet
  1.1616.514.2 04/06/15 23:18:56 ndbdev@ndbmaster.mysql.com +1 -0
  wl1292 - fix report

  ndb/test/run-test/make-html-reports.sh
    1.3 04/06/15 23:18:40 ndbdev@ndbmaster.mysql.com +1 -1
    result is relative report.html

ChangeSet
  1.1616.513.1 04/06/15 22:57:21 ndbdev@ndbmaster.mysql.com +1 -0
  wl1292 - updated make-html-reports.sh script

  ndb/test/run-test/make-html-reports.sh
    1.2 04/06/15 22:56:50 ndbdev@ndbmaster.mysql.com +77 -325
    wl1292 - updated make-html-reports.sh script

ChangeSet
  1.1616.487.38 04/06/15 15:38:36 paul@kite-hub.kitebird.com +44 -0
  Language/consistency edits to error messages
  and affected test results.

  sql/share/ukrainian/errmsg.txt
    1.27.1.52 04/06/15 15:38:33 paul@kite-hub.kitebird.com +14 -14
    Language/consistency edits to error messages
    and affected test results.

  sql/share/swedish/errmsg.txt
    1.64.1.54 04/06/15 15:38:33 paul@kite-hub.kitebird.com +5 -5
    Language/consistency edits to error messages
    and affected test results.

  sql/share/slovak/errmsg.txt
    1.64.1.55 04/06/15 15:38:33 paul@kite-hub.kitebird.com +19 -19
    Language/consistency edits to error messages
    and affected test results.

  sql/share/serbian/errmsg.txt
    1.18.1.50 04/06/15 15:38:33 paul@kite-hub.kitebird.com +12 -12
    Language/consistency edits to error messages
    and affected test results.

  sql/share/russian/errmsg.txt
    1.61.1.53 04/06/15 15:38:33 paul@kite-hub.kitebird.com +9 -9
    Language/consistency edits to error messages
    and affected test results.

  sql/share/romanian/errmsg.txt
    1.62.1.56 04/06/15 15:38:33 paul@kite-hub.kitebird.com +23 -23
    Language/consistency edits to error messages
    and affected test results.

  sql/share/portuguese/errmsg.txt
    1.64.1.54 04/06/15 15:38:33 paul@kite-hub.kitebird.com +1 -1
    Language/consistency edits to error messages
    and affected test results.

  sql/share/polish/errmsg.txt
    1.63.1.55 04/06/15 15:38:33 paul@kite-hub.kitebird.com +25 -25
    Language/consistency edits to error messages
    and affected test results.

  sql/share/norwegian/errmsg.txt
    1.63.1.56 04/06/15 15:38:33 paul@kite-hub.kitebird.com +23 -23
    Language/consistency edits to error messages
    and affected test results.

  sql/share/norwegian-ny/errmsg.txt
    1.63.1.55 04/06/15 15:38:33 paul@kite-hub.kitebird.com +23 -23
    Language/consistency edits to error messages
    and affected test results.

  sql/share/korean/errmsg.txt
    1.63.1.55 04/06/15 15:38:33 paul@kite-hub.kitebird.com +23 -23
    Language/consistency edits to error messages
    and affected test results.

  sql/share/japanese/errmsg.txt
    1.63.1.53 04/06/15 15:38:33 paul@kite-hub.kitebird.com +24 -24
    Language/consistency edits to error messages
    and affected test results.

  sql/share/italian/errmsg.txt
    1.70.1.55 04/06/15 15:38:33 paul@kite-hub.kitebird.com +10 -10
    Language/consistency edits to error messages
    and affected test results.

  sql/share/hungarian/errmsg.txt
    1.65.1.54 04/06/15 15:38:33 paul@kite-hub.kitebird.com +23 -23
    Language/consistency edits to error messages
    and affected test results.

  sql/share/greek/errmsg.txt
    1.64.1.54 04/06/15 15:38:33 paul@kite-hub.kitebird.com +23 -23
    Language/consistency edits to error messages
    and affected test results.

  sql/share/french/errmsg.txt
    1.63.1.55 04/06/15 15:38:33 paul@kite-hub.kitebird.com +14 -14
    Language/consistency edits to error messages
    and affected test results.

  sql/share/estonian/errmsg.txt
    1.64.1.54 04/06/15 15:38:33 paul@kite-hub.kitebird.com +18 -18
    Language/consistency edits to error messages
    and affected test results.

  sql/share/english/errmsg.txt
    1.70.1.59 04/06/15 15:38:33 paul@kite-hub.kitebird.com +39 -39
    Language/consistency edits to error messages
    and affected test results.

  sql/share/dutch/errmsg.txt
    1.66.1.54 04/06/15 15:38:33 paul@kite-hub.kitebird.com +10 -10
    Language/consistency edits to error messages
    and affected test results.

  sql/share/danish/errmsg.txt
    1.62.1.53 04/06/15 15:38:33 paul@kite-hub.kitebird.com +17 -17
    Language/consistency edits to error messages
    and affected test results.

  sql/share/czech/errmsg.txt
    1.64.1.56 04/06/15 15:38:33 paul@kite-hub.kitebird.com +23 -23
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/warnings.result
    1.26 04/06/15 15:38:33 paul@kite-hub.kitebird.com +4 -4
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/variables.result
    1.21.1.30 04/06/15 15:38:33 paul@kite-hub.kitebird.com +1 -1
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/union.result
    1.46.1.27 04/06/15 15:38:33 paul@kite-hub.kitebird.com +6 -6
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/type_timestamp.result
    1.16 04/06/15 15:38:33 paul@kite-hub.kitebird.com +5 -5
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/type_time.result
    1.10 04/06/15 15:38:33 paul@kite-hub.kitebird.com +2 -2
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/subselect.result
    1.67.54.1 04/06/15 15:38:33 paul@kite-hub.kitebird.com +10 -10
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/rpl_until.result
    1.10.1.6 04/06/15 15:38:33 paul@kite-hub.kitebird.com +5 -5
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/rpl_temporary.result
    1.3.1.9 04/06/15 15:38:33 paul@kite-hub.kitebird.com +2 -2
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/rpl_rotate_logs.result
    1.53.1.1 04/06/15 15:38:33 paul@kite-hub.kitebird.com +3 -3
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/query_cache.result
    1.26.1.22 04/06/15 15:38:33 paul@kite-hub.kitebird.com +4 -4
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/ps.result
    1.7 04/06/15 15:38:33 paul@kite-hub.kitebird.com +1 -1
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/loaddata.result
    1.14 04/06/15 15:38:33 paul@kite-hub.kitebird.com +2 -2
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/isam.result
    1.22 04/06/15 15:38:32 paul@kite-hub.kitebird.com +1 -1
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/innodb_handler.result
    1.9 04/06/15 15:38:32 paul@kite-hub.kitebird.com +1 -1
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/handler.result
    1.19 04/06/15 15:38:32 paul@kite-hub.kitebird.com +2 -2
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/grant_cache.result
    1.11 04/06/15 15:38:32 paul@kite-hub.kitebird.com +1 -1
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/grant.result
    1.20 04/06/15 15:38:32 paul@kite-hub.kitebird.com +1 -1
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/func_compress.result
    1.12 04/06/15 15:38:32 paul@kite-hub.kitebird.com +1 -1
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/fulltext.result
    1.64 04/06/15 15:38:32 paul@kite-hub.kitebird.com +2 -2
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/derived.result
    1.47 04/06/15 15:38:32 paul@kite-hub.kitebird.com +2 -2
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/date_formats.result
    1.11 04/06/15 15:38:32 paul@kite-hub.kitebird.com +8 -8
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/create.result
    1.73 04/06/15 15:38:32 paul@kite-hub.kitebird.com +1 -1
    Language/consistency edits to error messages
    and affected test results.

  mysql-test/r/bdb-deadlock.result
    1.8 04/06/15 15:38:32 paul@kite-hub.kitebird.com +1 -1
    Language/consistency edits to error messages
    and affected test results.

ChangeSet
  1.1346.1.513 04/06/15 22:09:09 marko@hundin.mysql.fi +1 -0
  InnoDB bug fix (row0mysql.c): make reserved table names innodb_* special again

  innobase/row/row0mysql.c
    1.39.1.28 04/06/15 21:34:09 marko@hundin.mysql.fi +33 -17
    row_create_table_for_mysql(), row_drop_table_for_mysql():
     Make InnoDB recognize the special table names innodb_* again.

ChangeSet
  1.1677 04/06/15 15:42:28 pem@mysql.comhem.se +7 -0
  Fixed BUG#3339: Stored procedures in nonexistent schemas are uncallable.
  Also added some related security tests and corrected related error messages.

  sql/sql_parse.cc
    1.340 04/06/15 15:42:24 pem@mysql.com +10 -5
    Check error return for create stored routine (non existing database),
    and corrected the error output for some other commands. (Use qualified
    name, not just name.)

  sql/sp.h
    1.16 04/06/15 15:42:24 pem@mysql.com +1 -0
    New error return value for sp_create_* functions, for non existing database.

  sql/sp.cc
    1.52 04/06/15 15:42:24 pem@mysql.com +12 -0
    Check existance (and access rights) for database when creating a stored routine.

  mysql-test/t/sp-security.test
    1.7 04/06/15 15:42:24 pem@mysql.com +19 -0
    Added tests for creating procedures in another database with and wihout
    access rights.

  mysql-test/t/sp-error.test
    1.40 04/06/15 15:42:24 pem@mysql.com +7 -1
    New test case for BUG#3339.

  mysql-test/r/sp-security.result
    1.7 04/06/15 15:42:24 pem@mysql.com +10 -0
    Added tests for creating procedures in another database with and wihout
    access rights.

  mysql-test/r/sp-error.result
    1.40 04/06/15 15:42:24 pem@mysql.com +8 -6
    New test case for BUG#3339, and updated results for other modified error messages.

ChangeSet
  1.1616.508.8 04/06/15 14:37:45 lenz@mysql.com +1 -0
   - make sure to define NDEBUG in my_dbug.h, when DBUG_OFF is defined
     (to disable assertions)

  include/my_dbug.h
    1.9 04/06/15 14:37:36 lenz@mysql.com +3 -0
     - make sure to define NDEBUG, when DBUG_OFF is defined (to disable
       assertions)

ChangeSet
  1.1616.510.2 04/06/15 14:28:00 guilhem@mysql.com +1 -0
  Adding SHUTDOWN_WAIT_STATEMENTS to the possible arguments of mysql_shutdown().
  Comments on names still welcome.

  include/mysql_com.h
    1.67.1.30 04/06/15 14:27:56 guilhem@mysql.com +3 -2
    one more possible shutdown level

ChangeSet
  1.1676 04/06/15 14:26:19 pem@mysql.comhem.se +3 -0
  Fixed BUG#3368: Stored procedure crash if group_concat(variable).

  sql/item.h
    1.84 04/06/15 14:26:16 pem@mysql.com +1 -1
    Corrected const_item() for item_splocal. (Confusing semantics here, but this
    makes group_concat() behave as expected, instead of crashing, and does not
    appear to affect anything else.)

  mysql-test/t/sp.test
    1.69 04/06/15 14:26:16 pem@mysql.com +19 -0
    New test case for BUG#3368.

  mysql-test/r/sp.result
    1.69 04/06/15 14:26:16 pem@mysql.com +15 -0
    New test case for BUG#3368.

ChangeSet
  1.1616.488.2 04/06/15 16:01:43 ram@gw.mysql.r18.ru +2 -0
  We don't need tmp_value member in the Item_func_left.

  sql/item_strfunc.h
    1.84 04/06/15 16:01:40 ram@gw.mysql.r18.ru +0 -1
    We don't need tmp_value member here.

  sql/item_strfunc.cc
    1.176.1.2 04/06/15 16:01:40 ram@gw.mysql.r18.ru +2 -2
    We don't need tmp_value member here.

ChangeSet
  1.1616.508.7 04/06/15 12:58:58 lenz@mysql.com +1 -0
   - compile fix for regex/regcomp.c spotted on Mac OS X
     (too few arguments)

  regex/regcomp.c
    1.14 04/06/15 12:58:53 lenz@mysql.com +1 -1
     - compile fix spotted on Mac OS X (too few arguments)

ChangeSet
  1.1616.510.1 04/06/15 11:35:23 guilhem@mysql.com +6 -0
  API change: mysql_shutdown() now needs a 2nd parameter, the shutdown level.
  Server will however still accept shutdown without specified level; so that old
  mysqladmin can still shut server down.
  I would like your comments on the names of shutdown level which I chose. You
  are welcome to propose better names. Please however check WL#709 before.
  Reason for the names I propose is to be accurate, thus leaving possibility
  for other levels which we may imagine in the future; that's why I have rejected
  names like "fast", "smart", "graceful" so far. My position is that WAIT_ALL_BUFFERS
  or WAIT_CRITICAL_BUFFERS say what the shutdown does, whereas for "smart", "fast" you
  need to remember what it does.
  This should be pushed in 4.1.3 but only after your comments.

  tools/mysqlmanager.c
    1.41 04/06/15 11:34:58 guilhem@mysql.com +1 -1
    2nd parameter to mysql_shutdown

  sql/sql_parse.cc
    1.271.76.1 04/06/15 11:34:58 guilhem@mysql.com +19 -1
    check for the shutdown level in dispatch_command(). Though its value is ignored for now.

  libmysql/libmysql.c
    1.156.17.1 04/06/15 11:34:57 guilhem@mysql.com +5 -2
    passing the requested shutdown level

  include/mysql_com.h
    1.67.1.29 04/06/15 11:34:57 guilhem@mysql.com +20 -0
    4 types of shutdown

  include/mysql.h
    1.127 04/06/15 11:34:57 guilhem@mysql.com +3 -1
    2nd paramater for mysql_shutdown()

  client/mysqladmin.c
    1.84 04/06/15 11:34:56 guilhem@mysql.com +1 -1
    2nd parameter for mysql_shutdown()

ChangeSet
  1.1616.508.6 04/06/15 12:29:22 konstantin@mysql.com +1 -0
  Fixed to compile with IBM C Compiler for AIX Version 6

  libmysql/libmysql.c
    1.156.1.87 04/06/15 12:29:15 konstantin@mysql.com +3 -3
    Fixed to compile with IBM C Compiler for AIX Version 6

ChangeSet
  1.1346.1.512 04/06/15 00:12:14 patg@krsna.patg.net +4 -0
  mysql-copyright -> more fixes to deal with problems in removing temporary tar directory. Had to use `cd $WD` vs chdir($WD).
  Servers.fgl -> made sure all charset files were accounted for (cp 1256 was missing)

  VC++Files/InstallShield/4.0.XX-pro/File Groups/Servers.fgl
    1.3 04/06/15 00:12:09 patg@krsna.patg.net +48 -24
    made sure all charset files were accounted for (cp 1256 was missing)

  VC++Files/InstallShield/4.0.XX-gpl/File Groups/Servers.fgl
    1.3 04/06/15 00:12:09 patg@krsna.patg.net +47 -23
    made sure all charset files were accounted for (cp 1256 was missing)

  VC++Files/InstallShield/4.0.XX-classic/File Groups/Servers.fgl
    1.3 04/06/15 00:12:09 patg@krsna.patg.net +48 -24
    made sure all charset files were accounted for (cp 1256 was missing)

  Build-tools/mysql-copyright
    1.8.1.3 04/06/15 00:12:09 patg@krsna.patg.net +35 -20
    more fixes to deal with problems in removing temporary tar directory. Had to use `cd $WD` vs chdir($WD).

ChangeSet
  1.1616.487.33 04/06/15 09:01:36 tomas@mc05.(none) +3 -0
  adden ndb faster start to mysql-test-run

  mysql-test/ndb/ndbcluster.sh
    1.11 04/06/15 09:01:33 tomas@mc05.(none) +38 -6
    adden ndb faster start to mysql-test-run

  mysql-test/ndb/ndb_config_2_node.ini
    1.3 04/06/15 09:01:33 tomas@mc05.(none) +4 -3
    adden ndb faster start to mysql-test-run

  mysql-test/mysql-test-run.sh
    1.188 04/06/15 09:01:33 tomas@mc05.(none) +1 -1
    adden ndb faster start to mysql-test-run

ChangeSet
  1.1616.487.32 04/06/15 08:14:20 tomas@mc05.(none) +6 -0
  ndb fixes for make dist

  ndb/docs/Makefile.am
    1.5 04/06/15 08:13:50 tomas@mc05.(none) +4 -3
    ndb fixes for make dist

  ndb/Makefile.am
    1.8 04/06/15 08:13:50 tomas@mc05.(none) +2 -1
    ndb fixes for make dist

  mysql-test/ndb/Makefile.am
    1.3 04/06/15 08:13:50 tomas@mc05.(none) +2 -2
    ndb fixes for make dist

  configure.in
    1.201.21.3 04/06/15 08:13:50 tomas@mc05.(none) +9 -2
    ndb fixes for make dist

  acinclude.m4
    1.99 04/06/15 08:13:50 tomas@mc05.(none) +16 -0
    ndb fixes for make dist

  mysql-test/ndb/ndbcluster.sh
    1.10 04/06/15 08:08:58 tomas@mc05.(none) +0 -0
    Change mode to -rw-rw-r--

ChangeSet
  1.1616.508.5 04/06/15 09:33:02 bar@mysql.com +1 -0
  ctype-uca.c:
    Compilation failure fix.

  strings/ctype-uca.c
    1.13 04/06/15 09:32:35 bar@mysql.com +2 -2
    Compilation failure fix.

ChangeSet
  1.1616.508.4 04/06/14 21:17:28 lenz@mysql.com +1 -0
   - re-enabled NDB cluster in compile-pentium-max

  BUILD/compile-pentium-max
    1.11 04/06/14 21:17:22 lenz@mysql.com +1 -1
     - re-enabled NDB cluster

ChangeSet
  1.1616.508.3 04/06/14 21:55:36 bar@mysql.com +3 -0
  utf8 contraction fix.
  Polish collation fix.
  Slovak collation fix.
  Testing all language orders.

  mysql-test/t/ctype_uca.test
    1.1 04/06/14 21:55:27 bar@mysql.com +181 -0

  mysql-test/r/ctype_uca.result
    1.1 04/06/14 21:55:27 bar@mysql.com +1657 -0

  mysql-test/t/ctype_uca.test
    1.0 04/06/14 21:55:27 bar@mysql.com +0 -0
    BitKeeper file /usr/home/bar/mysql-4.1/mysql-test/t/ctype_uca.test

  mysql-test/r/ctype_uca.result
    1.0 04/06/14 21:55:27 bar@mysql.com +0 -0
    BitKeeper file /usr/home/bar/mysql-4.1/mysql-test/r/ctype_uca.result

  strings/ctype-uca.c
    1.12 04/06/14 21:55:26 bar@mysql.com +7 -6
    utf8 contraction fix.
    Polish collation fix.
    Slovak collation fix.
    Testing all language orders.

ChangeSet
  1.1616.487.29 04/06/14 15:21:00 pekka@mysql.com +2 -0
  testBlobs.cpp, NdbBlob.cpp:
    small blob fix

  ndb/test/ndbapi/testBlobs.cpp
    1.8 04/06/14 15:20:38 pekka@mysql.com +3 -1
    small blob fix

  ndb/src/ndbapi/NdbBlob.cpp
    1.3 04/06/14 15:20:38 pekka@mysql.com +21 -6
    small blob fix

ChangeSet
  1.1616.508.2 04/06/14 16:29:51 bar@mysql.com +3 -0
  UTF8 UCA based collations.

  strings/ctype-utf8.c
    1.68 04/06/14 16:29:46 bar@mysql.com +3 -4
    UTF8 UCA based collations.

  strings/ctype-uca.c
    1.11 04/06/14 16:29:46 bar@mysql.com +701 -51
    UTF8 UCA based collations.

  mysys/charset-def.c
    1.5 04/06/14 16:29:46 bar@mysql.com +33 -1
    UTF8 UCA based collations.

ChangeSet
  1.1672.1.1 04/06/14 12:38:54 pem@mysql.comhem.se +3 -0
  Fixed BUG#3843: ANALYZE TABLE inside stored procedure causes 'Packets out of order' error.

  sql/sql_yacc.yy
    1.288 04/06/14 12:38:28 pem@mysql.com +2 -1
    Added another multi results special case for stored procedures (analyze).

  mysql-test/t/sp.test
    1.68 04/06/14 12:38:28 pem@mysql.com +13 -0
    New test case for BUG#3843.

  mysql-test/r/sp.result
    1.68 04/06/14 12:38:28 pem@mysql.com +12 -0
    New test case for BUG#3843.

ChangeSet
  1.1616.487.27 04/06/14 12:21:13 joreland@mysql.com +4 -0
  wl1858 
  1) update atrt to support mysqld
  2) add example
  3) add our current basic tests

  ndb/test/run-test/basic.txt
    1.1 04/06/14 12:21:11 joreland@mysql.com +763 -0

  ndb/test/run-test/README
    1.1 04/06/14 12:21:11 joreland@mysql.com +43 -0

  ndb/test/run-test/main.cpp
    1.9 04/06/14 12:21:11 joreland@mysql.com +53 -46
    wl1858 
    1) update atrt to support mysqld
    2) add example
    3) add our current basic tests

  ndb/test/run-test/basic.txt
    1.0 04/06/14 12:21:11 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/mysql-4.1-ndb/ndb/test/run-test/basic.txt

  ndb/test/run-test/README
    1.0 04/06/14 12:21:11 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/mysql-4.1-ndb/ndb/test/run-test/README

  ndb/test/run-test/atrt-example.tgz
    1.1 04/06/14 12:19:46 joreland@mysql.com +50 -0

  ndb/test/run-test/atrt-example.tgz
    1.0 04/06/14 12:19:46 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/mysql-4.1-ndb/ndb/test/run-test/atrt-example.tgz

ChangeSet
  1.1674 04/06/14 12:39:46 sergefp@mysql.com +1 -0
  Post-merge fixes

  sql/opt_range.cc
    1.116 04/06/14 12:39:41 sergefp@mysql.com +10 -5
    Post-merge fixes

ChangeSet
  1.1616.508.1 04/06/14 09:53:59 joreland@mysql.com +1 -0
  Remove docs from make for now.
  Plan is to introduce --flag, but Tomas will do that later.

  configure.in
    1.201.21.2 04/06/14 09:53:44 joreland@mysql.com +0 -1
    Remove docs from make for now.
    Plan is to introduce --flag, but Tomas will do that later.

ChangeSet
  1.1616.506.4 04/06/13 22:39:09 bell@sanja.is.com.ua +4 -0
  fixed field resolving mode fo INSERT/REPLACE and CRETE with SELECT (BUG#4090)

  sql/sql_prepare.cc
    1.34.1.75 04/06/13 22:38:43 bell@sanja.is.com.ua +11 -2
    fixed field resolving mode fo INSERT/REPLACE and CRETE with SELECT

  sql/sql_parse.cc
    1.271.1.88 04/06/13 22:38:43 bell@sanja.is.com.ua +13 -1
    fixed field resolving mode fo INSERT/REPLACE and CRETE with SELECT

  mysql-test/t/subselect.test
    1.58.1.52 04/06/13 22:38:43 bell@sanja.is.com.ua +14 -0
    outer fields resolving in INSERT/REPLACE and CRETE with SELECT

  mysql-test/r/subselect.result
    1.67.1.61 04/06/13 22:38:43 bell@sanja.is.com.ua +26 -0
    outer fields resolving in INSERT/REPLACE and CRETE with SELECT

ChangeSet
  1.1616.507.1 04/06/12 14:37:41 paul@teton.kitebird.com +1 -0
  sql_state.h:
    Fix couple of typos.

  include/sql_state.h
    1.8.1.4 04/06/12 14:36:52 paul@teton.kitebird.com +3 -3
    Fix couple of typos.

ChangeSet
  1.1616.506.2 04/06/12 20:36:58 bar@mysql.com +17 -0
  Unicode collation algorithm: contraction support.
  E.g. 'Ch' is treated as a separate letter in Czech,
  not as a combination of C+h.

  strings/ctype-win1250ch.c
    1.41 04/06/12 20:36:51 bar@mysql.com +1 -0
    Unicode collation algorithm: contraction support.
    E.g. 'Ch' is treated as a separate letter in Czech,
    not as a combination of C+h.

  strings/ctype-utf8.c
    1.67 04/06/12 20:36:51 bar@mysql.com +5 -3
    Unicode collation algorithm: contraction support.
    E.g. 'Ch' is treated as a separate letter in Czech,
    not as a combination of C+h.

  strings/ctype-ujis.c
    1.56 04/06/12 20:36:50 bar@mysql.com +4 -2
    Unicode collation algorithm: contraction support.
    E.g. 'Ch' is treated as a separate letter in Czech,
    not as a combination of C+h.

  strings/ctype-ucs2.c
    1.27 04/06/12 20:36:50 bar@mysql.com +3 -1
    Unicode collation algorithm: contraction support.
    E.g. 'Ch' is treated as a separate letter in Czech,
    not as a combination of C+h.

  strings/ctype-uca.c
    1.10 04/06/12 20:36:50 bar@mysql.com +264 -9
    Unicode collation algorithm: contraction support.
    E.g. 'Ch' is treated as a separate letter in Czech,
    not as a combination of C+h.

  strings/ctype-tis620.c
    1.73 04/06/12 20:36:50 bar@mysql.com +4 -2
    Unicode collation algorithm: contraction support.
    E.g. 'Ch' is treated as a separate letter in Czech,
    not as a combination of C+h.

  strings/ctype-sjis.c
    1.66 04/06/12 20:36:50 bar@mysql.com +4 -2
    Unicode collation algorithm: contraction support.
    E.g. 'Ch' is treated as a separate letter in Czech,
    not as a combination of C+h.

  strings/ctype-latin1.c
    1.33 04/06/12 20:36:50 bar@mysql.com +3 -0
    Unicode collation algorithm: contraction support.
    E.g. 'Ch' is treated as a separate letter in Czech,
    not as a combination of C+h.

  strings/ctype-gbk.c
    1.61 04/06/12 20:36:50 bar@mysql.com +4 -2
    Unicode collation algorithm: contraction support.
    E.g. 'Ch' is treated as a separate letter in Czech,
    not as a combination of C+h.

  strings/ctype-gb2312.c
    1.52 04/06/12 20:36:50 bar@mysql.com +4 -2
    Unicode collation algorithm: contraction support.
    E.g. 'Ch' is treated as a separate letter in Czech,
    not as a combination of C+h.

  strings/ctype-extra.c
    1.17 04/06/12 20:36:50 bar@mysql.com +1 -0
    Unicode collation algorithm: contraction support.
    E.g. 'Ch' is treated as a separate letter in Czech,
    not as a combination of C+h.

  strings/ctype-euc_kr.c
    1.55 04/06/12 20:36:50 bar@mysql.com +2 -0
    Unicode collation algorithm: contraction support.
    E.g. 'Ch' is treated as a separate letter in Czech,
    not as a combination of C+h.

  strings/ctype-czech.c
    1.51 04/06/12 20:36:45 bar@mysql.com +1 -0
    Unicode collation algorithm: contraction support.
    E.g. 'Ch' is treated as a separate letter in Czech,
    not as a combination of C+h.

  strings/ctype-bin.c
    1.50 04/06/12 20:36:45 bar@mysql.com +2 -1
    Unicode collation algorithm: contraction support.
    E.g. 'Ch' is treated as a separate letter in Czech,
    not as a combination of C+h.

  strings/ctype-big5.c
    1.63 04/06/12 20:36:45 bar@mysql.com +2 -1
    Unicode collation algorithm: contraction support.
    E.g. 'Ch' is treated as a separate letter in Czech,
    not as a combination of C+h.

  mysys/charset-def.c
    1.4 04/06/12 20:36:45 bar@mysql.com +10 -0
    Unicode collation algorithm: contraction support.
    E.g. 'Ch' is treated as a separate letter in Czech,
    not as a combination of C+h.

  include/m_ctype.h
    1.96 04/06/12 20:36:44 bar@mysql.com +1 -0
    Unicode collation algorithm: contraction support.
    E.g. 'Ch' is treated as a separate letter in Czech,
    not as a combination of C+h.

ChangeSet
  1.1616.506.1 04/06/11 17:20:30 patg@krsna.patg.net +1 -0
  mysql-copyright:
    Fixed various issues to deal with untarring of gpl tar file, clearing configure.in, changed calls to use system vs. backticks

  Build-tools/mysql-copyright
    1.11 04/06/11 17:17:05 patg@krsna.patg.net +43 -16
    Fixed various issues to deal with untarring of gpl tar file, clearing configure.in, changed calls to use system vs. backticks

ChangeSet
  1.1616.505.4 04/06/11 22:00:08 serg@serg.mylan +1 -0
  after merge fix

  mysql-test/Makefile.am
    1.29 04/06/11 22:00:03 serg@serg.mylan +1 -0
    after merge fix

ChangeSet
  1.1616.505.3 04/06/11 21:20:53 serg@serg.mylan +2 -0
  after merge fix

  sql/field.cc
    1.159 04/06/11 21:19:35 serg@serg.mylan +2 -3
    after merge fix

  myisam/mi_unique.c
    1.18 04/06/11 21:19:34 serg@serg.mylan +3 -3
    warning removed

ChangeSet
  1.1616.470.7 04/06/11 18:26:13 serg@serg.mylan +3 -0
  mysqltest.c: don't hardcode variables to be taken from environment.
  use MYSQL_TCP_PORT instead of 3306 in tests

  mysql-test/t/rpl000015.test
    1.25.1.2 04/06/11 18:26:08 serg@serg.mylan +1 -1
    MYSQL_TCP_PORT instead of 3306

  mysql-test/mysql-test-run.sh
    1.187 04/06/11 18:26:07 serg@serg.mylan +1 -0
    MYSQL_TCP_PORT instead of 3306

  client/mysqltest.c
    1.92.1.44 04/06/11 18:26:07 serg@serg.mylan +9 -10
    don't hardcode variables to be taken from environment.

ChangeSet
  1.1616.487.26 04/06/11 17:29:39 joreland@mysql.com +3 -0
  Made discless a config parameter instead of a env. variable

  ndb/src/kernel/SimBlockList.cpp
    1.4 04/06/11 17:29:37 joreland@mysql.com +6 -5
    Made discless a config parameter instead of a env. variable

  ndb/src/common/mgmcommon/ConfigInfo.cpp
    1.5 04/06/11 17:29:37 joreland@mysql.com +13 -0
    Made discless a config parameter instead of a env. variable

  ndb/include/mgmapi/mgmapi_config_parameters.h
    1.2 04/06/11 17:29:37 joreland@mysql.com +2 -0
    Made discless a config parameter instead of a env. variable

ChangeSet
  1.1616.487.24 04/06/11 19:16:06 bar@mysql.com +3 -0
  Move UCA language specific definitions into ctype-ucs.c.

  strings/ctype-uca.c
    1.8 04/06/11 19:16:01 bar@mysql.com +333 -1
    Move UCA language specific definitions into ctype-ucs.c.

  mysys/charset.c
    1.128 04/06/11 19:16:01 bar@mysql.com +0 -143
    Move UCA language specific definitions into ctype-ucs.c.

  mysys/charset-def.c
    1.3 04/06/11 19:16:01 bar@mysql.com +23 -0
    Move UCA language specific definitions into ctype-ucs.c.

ChangeSet
  1.1616.501.2 04/06/11 15:54:46 joreland@mysql.com +1 -0
  BUG#4088

  ndb/include/kernel/signaldata/TcKeyConf.hpp
    1.3 04/06/11 15:54:44 joreland@mysql.com +1 -1
    BUG#4088

ChangeSet
  1.1616.487.23 04/06/11 18:25:50 bar@mysql.com +1 -0
  charset.c:
    Reuse some code between simple and UCA collations.

  mysys/charset.c
    1.127 04/06/11 18:25:19 bar@mysql.com +15 -44
    Reuse some code between simple and UCA collations.

ChangeSet
  1.1346.1.510 04/06/11 16:25:18 bell@sanja.is.com.ua +4 -0
  test suite for bug Bug#3969 (commited separetely because it took too long time to parse it on 3.23)

  mysql-test/t/rpl_free_items.test
    1.1 04/06/11 16:24:56 bell@sanja.is.com.ua +20 -0

  mysql-test/t/rpl_free_items-slave.opt
    1.1 04/06/11 16:24:56 bell@sanja.is.com.ua +1 -0

  mysql-test/r/rpl_free_items.result
    1.1 04/06/11 16:24:56 bell@sanja.is.com.ua +10 -0

  mysql-test/t/rpl_free_items.test
    1.0 04/06/11 16:24:56 bell@sanja.is.com.ua +0 -0
    BitKeeper file /home/bell/mysql/bk/work-4.0/mysql-test/t/rpl_free_items.test

  mysql-test/t/rpl_free_items-slave.opt
    1.0 04/06/11 16:24:56 bell@sanja.is.com.ua +0 -0
    BitKeeper file /home/bell/mysql/bk/work-4.0/mysql-test/t/rpl_free_items-slave.opt

  mysql-test/r/rpl_free_items.result
    1.0 04/06/11 16:24:56 bell@sanja.is.com.ua +0 -0
    BitKeeper file /home/bell/mysql/bk/work-4.0/mysql-test/r/rpl_free_items.result

  client/mysqltest.c
    1.77.1.41 04/06/11 16:24:56 bell@sanja.is.com.ua +1 -1
    allow big commands in mysql-test

ChangeSet
  1.1616.487.22 04/06/11 17:50:20 bar@mysql.com +10 -0
  Initialize max_sort_char only if a character set is requested.

  strings/ctype-utf8.c
    1.65 04/06/11 17:50:15 bar@mysql.com +2 -2
    Initialize max_sort_char only if a character set is requested.

  strings/ctype-ujis.c
    1.55 04/06/11 17:50:15 bar@mysql.com +2 -2
    Initialize max_sort_char only if a character set is requested.

  strings/ctype-sjis.c
    1.64 04/06/11 17:50:15 bar@mysql.com +2 -2
    Initialize max_sort_char only if a character set is requested.

  strings/ctype-simple.c
    1.49.1.3 04/06/11 17:50:15 bar@mysql.com +27 -1
    Initialize max_sort_char only if a character set is requested.

  strings/ctype-latin1.c
    1.31 04/06/11 17:50:15 bar@mysql.com +3 -3
    Initialize max_sort_char only if a character set is requested.

  strings/ctype-gbk.c
    1.59 04/06/11 17:50:15 bar@mysql.com +2 -2
    Initialize max_sort_char only if a character set is requested.

  strings/ctype-gb2312.c
    1.51 04/06/11 17:50:14 bar@mysql.com +2 -2
    Initialize max_sort_char only if a character set is requested.

  strings/ctype-euc_kr.c
    1.54 04/06/11 17:50:14 bar@mysql.com +2 -2
    Initialize max_sort_char only if a character set is requested.

  strings/ctype-big5.c
    1.61 04/06/11 17:50:14 bar@mysql.com +2 -2
    Initialize max_sort_char only if a character set is requested.

  mysys/charset.c
    1.126 04/06/11 17:50:14 bar@mysql.com +0 -23
    Initialize max_sort_char only if a character set is requested.

ChangeSet
  1.1616.502.2 04/06/11 13:56:00 mronstrom@mysql.com +1 -0
  Forgot to change 31 into mask_value

  ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
    1.3.1.2 04/06/11 13:55:56 mronstrom@mysql.com +1 -1
    Forgot to change 31 into mask_value

ChangeSet
  1.1616.487.21 04/06/11 16:29:16 bar@mysql.com +22 -0
  Allocate memory when a character set is requested:
  - For simple character sets: from_uni convertion table.
  - For UCA: alternative weight arrays.
  Use mbminlen instead of MY_CS_NONTEXT

  strings/ctype-win1250ch.c
    1.39 04/06/11 16:29:11 bar@mysql.com +1 -0
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  strings/ctype-utf8.c
    1.64 04/06/11 16:29:11 bar@mysql.com +2 -0
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  strings/ctype-ujis.c
    1.54 04/06/11 16:29:11 bar@mysql.com +4 -2
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  strings/ctype-ucs2.c
    1.25 04/06/11 16:29:11 bar@mysql.com +5 -2
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  strings/ctype-uca.c
    1.7 04/06/11 16:29:11 bar@mysql.com +457 -1
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  strings/ctype-tis620.c
    1.71 04/06/11 16:29:11 bar@mysql.com +2 -0
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  strings/ctype-sjis.c
    1.63 04/06/11 16:29:11 bar@mysql.com +2 -0
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  strings/ctype-simple.c
    1.49.1.2 04/06/11 16:29:11 bar@mysql.com +100 -0
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  strings/ctype-mb.c
    1.23.1.1 04/06/11 16:29:11 bar@mysql.com +1 -0
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  strings/ctype-latin1.c
    1.30 04/06/11 16:29:11 bar@mysql.com +2 -0
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  strings/ctype-gbk.c
    1.58 04/06/11 16:29:10 bar@mysql.com +2 -0
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  strings/ctype-gb2312.c
    1.50 04/06/11 16:29:10 bar@mysql.com +2 -0
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  strings/ctype-euc_kr.c
    1.53 04/06/11 16:29:10 bar@mysql.com +2 -0
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  strings/ctype-czech.c
    1.49 04/06/11 16:29:10 bar@mysql.com +1 -0
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  strings/ctype-bin.c
    1.48 04/06/11 16:29:10 bar@mysql.com +2 -0
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  strings/ctype-big5.c
    1.60 04/06/11 16:29:10 bar@mysql.com +2 -0
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  sql/sql_table.cc
    1.157.2.71 04/06/11 16:29:10 bar@mysql.com +1 -1
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  sql/sql_string.cc
    1.77.1.6 04/06/11 16:29:10 bar@mysql.com +1 -1
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  sql/mysqld.cc
    1.356.1.112 04/06/11 16:29:10 bar@mysql.com +1 -2
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  sql/item_create.cc
    1.33.1.30 04/06/11 16:29:10 bar@mysql.com +1 -1
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  mysys/charset.c
    1.125 04/06/11 16:29:10 bar@mysql.com +14 -548
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

  include/m_ctype.h
    1.94 04/06/11 16:29:09 bar@mysql.com +3 -2
    Allocate memory when a character set is requested:
    - For simple character sets: from_uni convertion table.
    - For UCA: alternative weight arrays.
    Use mbminlen instead of MY_CS_NONTEXT

ChangeSet
  1.1616.504.1 04/06/11 09:39:20 tomas@poseidon.bredbandsbolaget.se +2 -0
  fix for ndb compile problem on non gcc

  ndb/config/common.mk.am
    1.6 04/06/11 09:39:15 tomas@poseidon.bredbandsbolaget.se +1 -2
    fix for ndb compile problem on non gcc

  configure.in
    1.201.1.68 04/06/11 09:39:14 tomas@poseidon.bredbandsbolaget.se +5 -3
    fix for ndb compile problem on non gcc

ChangeSet
  1.1616.487.20 04/06/11 13:12:29 konstantin@mysql.com +2 -0
  Fix for Bug#4079 "error checking in prepared statements": 
  reset mysql->status if there was an error in row reading.

  tests/client_test.c
    1.51.1.44 04/06/11 13:12:23 konstantin@mysql.com +44 -0
    Test for bug #4079

  libmysql/libmysql.c
    1.156.1.86 04/06/11 13:12:23 konstantin@mysql.com +7 -0
    Fix for bug#4079

ChangeSet
  1.1346.1.509 04/06/11 00:40:56 patg@krsna.patg.net +1 -0
  mysql-copyright:
    Small fixes to handle packaging of windows src (commercial) file

  Build-tools/mysql-copyright
    1.8.1.2 04/06/11 00:40:17 patg@krsna.patg.net +7 -3
    Small fixes to handle packaging of windows src (commercial) file

ChangeSet
  1.1616.487.19 04/06/11 10:21:22 heikki@hundin.mysql.fi +1 -0
  ha_innodb.cc:
    Put back the ha_innodb.cc source code lines that were accidentally removed in Jan Lindstrom's push yesterday (he used the account heikki@mysql.com)

  sql/ha_innodb.cc
    1.90.1.47 04/06/11 10:21:06 heikki@hundin.mysql.fi +22 -2
    Put back the ha_innodb.cc source code lines that were accidentally removed in Jan Lindstrom's push yesterday (he used the account heikki@mysql.com)

ChangeSet
  1.1644.8.2 04/06/10 23:40:55 igor@rurik.mysql.com +1 -0
  sql_yacc.yy:
    Correction for nested joins.

  sql/sql_yacc.yy
    1.270.1.2 04/06/10 23:39:49 igor@rurik.mysql.com +4 -4
    Correction for nested joins.

ChangeSet
  1.1644.8.1 04/06/10 22:27:21 igor@rurik.mysql.com +14 -0
  join_nested.test, join_nested.result:
    new file
  Many files:
    Nested joins added.

  mysql-test/t/join_nested.test
    1.1 04/06/10 22:26:37 igor@rurik.mysql.com +693 -0

  mysql-test/t/join_nested.test
    1.0 04/06/10 22:26:37 igor@rurik.mysql.com +0 -0
    BitKeeper file /home/igor/dev/mysql-5.0-1/mysql-test/t/join_nested.test

  mysql-test/r/join_nested.result
    1.1 04/06/10 22:24:48 igor@rurik.mysql.com +1161 -0

  mysql-test/r/join_nested.result
    1.0 04/06/10 22:24:48 igor@rurik.mysql.com +0 -0
    BitKeeper file /home/igor/dev/mysql-5.0-1/mysql-test/r/join_nested.result

  mysql-test/r/select.result
    1.35.2.1 04/06/10 22:24:15 igor@rurik.mysql.com +8 -39
    Nested joins added.

  mysql-test/r/join_outer.result
    1.27.1.1 04/06/10 22:23:56 igor@rurik.mysql.com +1 -7
    Nested joins added.

  sql/table.h
    1.57.1.1 04/06/10 22:22:39 igor@rurik.mysql.com +19 -10
    Nested joins added.

  sql/sql_yacc.yy
    1.270.1.1 04/06/10 22:22:14 igor@rurik.mysql.com +67 -31
    Nested joins added.

  sql/sql_select.h
    1.64.2.1 04/06/10 22:21:55 igor@rurik.mysql.com +12 -3
    Nested joins added.

  sql/sql_select.cc
    1.235.2.1 04/06/10 22:20:47 igor@rurik.mysql.com +819 -89
    Nested joins added.

  sql/sql_parse.cc
    1.323.1.1 04/06/10 22:20:24 igor@rurik.mysql.com +232 -0
    Nested joins added.

  sql/sql_lex.h
    1.125.2.1 04/06/10 22:19:54 igor@rurik.mysql.com +10 -1
    Nested joins added.

  sql/sql_lex.cc
    1.99.3.1 04/06/10 22:19:28 igor@rurik.mysql.com +3 -0
    Nested joins added.

  sql/sql_base.cc
    1.156.1.1 04/06/10 22:19:01 igor@rurik.mysql.com +91 -61
    Nested joins added.

  sql/item_func.h
    1.80.1.1 04/06/10 22:18:30 igor@rurik.mysql.com +1 -1
    Nested joins added.

  sql/item_cmpfunc.h
    1.74.1.1 04/06/10 22:16:51 igor@rurik.mysql.com +35 -1
    Nested joins added.

ChangeSet
  1.1616.503.1 04/06/10 23:58:39 konstantin@mysql.com +29 -0
  assert.h needed for my_dbug.h now is included in my_dbug.h, where it for 
  some reason wasn't included before.
  A lot of files cleaned up from #include <assert.h>

  strings/my_vsnprintf.c
    1.26 04/06/10 23:58:36 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  strings/ctype-ucs2.c
    1.24 04/06/10 23:58:36 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  strings/ctype-simple.c
    1.49.1.1 04/06/10 23:58:36 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  sql/sql_string.cc
    1.77.1.5 04/06/10 23:58:36 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  sql/mysql_priv.h
    1.186.1.108 04/06/10 23:58:36 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  sql-common/client.c
    1.46.1.17 04/06/10 23:58:36 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  mysys/thr_alarm.c
    1.42 04/06/10 23:58:36 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  mysys/rijndael.c
    1.4 04/06/10 23:58:36 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  mysys/my_seek.c
    1.11 04/06/10 23:58:36 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  mysys/my_pthread.c
    1.37.1.5 04/06/10 23:58:36 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  mysys/my_getopt.c
    1.48 04/06/10 23:58:36 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  mysys/my_gethostbyname.c
    1.7 04/06/10 23:58:36 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  mysys/my_bitmap.c
    1.17.1.2 04/06/10 23:58:36 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  mysys/mf_keycache.c
    1.43 04/06/10 23:58:36 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  mysys/mf_iocache2.c
    1.23.1.2 04/06/10 23:58:36 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  mysys/mf_iocache.c
    1.45 04/06/10 23:58:36 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  myisam/mi_write.c
    1.44 04/06/10 23:58:36 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  myisam/mi_search.c
    1.46 04/06/10 23:58:36 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  myisam/mi_open.c
    1.79 04/06/10 23:58:35 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  myisam/mi_key.c
    1.25 04/06/10 23:58:35 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  myisam/mi_dynrec.c
    1.36 04/06/10 23:58:35 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  myisam/mi_delete.c
    1.28 04/06/10 23:58:35 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  myisam/ftdefs.h
    1.27 04/06/10 23:58:35 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  libmysql/libmysql.c
    1.156.1.85 04/06/10 23:58:35 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  include/my_dbug.h
    1.8 04/06/10 23:58:35 konstantin@mysql.com +1 -0
    include assert.h needed for DBUG_ASSERT

  include/m_string.h
    1.31 04/06/10 23:58:35 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  heap/hp_hash.c
    1.32 04/06/10 23:58:35 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  client/mysqldump.c
    1.133 04/06/10 23:58:35 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

  client/mysqlbinlog.cc
    1.84.1.11 04/06/10 23:58:35 konstantin@mysql.com +0 -1
    assert.h needed for my_dbug.h now is included in
    my_dbug.h, where it for some reason wasn't included before.

ChangeSet
  1.1616.470.6 04/06/10 21:18:57 serg@serg.mylan +19 -0
  bug#3964 and related issues: FTB problems with charsets where one byte can match many
  correct prefix compare with my_strnncoll

  strings/ctype-win1250ch.c
    1.36.1.1 04/06/10 21:18:51 serg@serg.mylan +10 -5
    6th argument to my_strncoll to handle prefix comparison

  strings/ctype-utf8.c
    1.60.1.1 04/06/10 21:18:51 serg@serg.mylan +3 -2
    6th argument to my_strncoll to handle prefix comparison

  strings/ctype-ucs2.c
    1.21.1.1 04/06/10 21:18:51 serg@serg.mylan +23 -7
    6th argument to my_strncoll to handle prefix comparison

  strings/ctype-uca.c
    1.4.1.1 04/06/10 21:18:51 serg@serg.mylan +3 -2
    6th argument to my_strncoll to handle prefix comparison

  strings/ctype-tis620.c
    1.68.1.1 04/06/10 21:18:51 serg@serg.mylan +5 -1
    6th argument to my_strncoll to handle prefix comparison

  strings/ctype-sjis.c
    1.60.1.1 04/06/10 21:18:51 serg@serg.mylan +4 -1
    6th argument to my_strncoll to handle prefix comparison

  strings/ctype-simple.c
    1.50 04/06/10 21:18:50 serg@serg.mylan +5 -2
    6th argument to my_strncoll to handle prefix comparison

  strings/ctype-mb.c
    1.24 04/06/10 21:18:50 serg@serg.mylan +14 -5
    6th argument to my_strncoll to handle prefix comparison

  strings/ctype-latin1.c
    1.27.1.1 04/06/10 21:18:50 serg@serg.mylan +3 -2
    6th argument to my_strncoll to handle prefix comparison

  strings/ctype-gbk.c
    1.55.1.1 04/06/10 21:18:50 serg@serg.mylan +3 -2
    6th argument to my_strncoll to handle prefix comparison

  strings/ctype-czech.c
    1.46.1.1 04/06/10 21:18:50 serg@serg.mylan +6 -2
    6th argument to my_strncoll to handle prefix comparison

  strings/ctype-bin.c
    1.45.1.1 04/06/10 21:18:50 serg@serg.mylan +14 -4
    6th argument to my_strncoll to handle prefix comparison

  strings/ctype-big5.c
    1.57.1.1 04/06/10 21:18:50 serg@serg.mylan +3 -2
    6th argument to my_strncoll to handle prefix comparison

  sql/sql_parse.cc
    1.271.71.14 04/06/10 21:18:50 serg@serg.mylan +1 -1
    cleanup

  mysys/my_handler.c
    1.14 04/06/10 21:18:50 serg@serg.mylan +1 -3
    6th argument to my_strncoll to handle prefix comparison

  mysql-test/t/fulltext.test
    1.63 04/06/10 21:18:50 serg@serg.mylan +9 -0
    6th argument to my_strncoll to handle prefix comparison

  mysql-test/r/fulltext.result
    1.63 04/06/10 21:18:50 serg@serg.mylan +11 -0
    6th argument to my_strncoll to handle prefix comparison

  myisam/ft_boolean_search.c
    1.80 04/06/10 21:18:50 serg@serg.mylan +22 -16
    bug#3964 and related issues: problems with charsets where one byte can match many
    *correct* prefix compare with my_strnncoll
    *correct* backup of info->lastkey

  include/m_ctype.h
    1.91.1.1 04/06/10 21:18:50 serg@serg.mylan +3 -3
    6th argument to my_strncoll to handle prefix comparison

ChangeSet
  1.1616.487.17 04/06/10 21:33:15 bell@sanja.is.com.ua +4 -0
  EXISTS(SELECT * ...)
  close table before opening in optimize

  sql/sql_table.cc
    1.157.2.70 04/06/10 21:33:12 bell@sanja.is.com.ua +1 -0
    close table before opening one

  sql/sql_base.cc
    1.145.1.65 04/06/10 21:33:12 bell@sanja.is.com.ua +13 -2
    EXISTS(SELECT * ...)

  mysql-test/t/subselect.test
    1.58.1.51 04/06/10 21:33:12 bell@sanja.is.com.ua +9 -0
    test of EXISTS(SELECT * ...)

  mysql-test/r/subselect.result
    1.67.1.60 04/06/10 21:33:12 bell@sanja.is.com.ua +16 -2
    test of EXISTS(SELECT * ...)

ChangeSet
  1.1616.502.1 04/06/10 20:03:06 mronstrom@mysql.com +2 -0
  Randomise time-out to avoid aborting both transactions in deadlock

  BitKeeper/etc/logging_ok
    1.233.1.82 04/06/10 19:58:27 mikron@mikael-ronstr-ms-dator.local +1 -0
    Logging to logging@openlogging.org accepted

  ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
    1.3.1.1 04/06/10 19:57:38 mikron@mikael-ronstr-ms-dator.local +58 -50
    Randomise time-out to avoid aborting both transactions in deadlock

ChangeSet
  1.1616.501.1 04/06/10 17:26:26 joreland@mysql.com +1 -0
  BUG#4088 - Multiple mixed index/normal reads

  ndb/include/kernel/signaldata/TcKeyConf.hpp
    1.2 04/06/10 17:26:09 joreland@mysql.com +1 -1
    BUG#4088 - Multiple mixed index/normal reads
    Make setNoOps "set's" and not only "or's"

ChangeSet
  1.1672 04/06/10 17:07:53 pem@mysql.comhem.se +3 -0
  Fixed BUG#3132: Stored function returns empty when used in union.

  sql/item_func.cc
    1.149 04/06/10 17:07:50 pem@mysql.com +1 -1
    Set a useful max_length in Item_func_sp so field widths are correctly calculated.

  mysql-test/t/sp.test
    1.67 04/06/10 17:07:50 pem@mysql.com +9 -0
    Added testcase for BUG#3132.

  mysql-test/r/sp.result
    1.67 04/06/10 17:07:50 pem@mysql.com +7 -0
    Added testcase for BUG#3132.

ChangeSet
  1.1616.500.2 04/06/10 16:41:24 guilhem@mysql.com +5 -0
  WL#1689 "Map OPTIMIZE TABLE to ALTER TABLE for InnoDB"
  exactly it's mapped to "ALTER TABLE t; ANALYZE TABLE t;"

  sql/sql_table.cc
    1.157.2.69 04/06/10 16:41:19 guilhem@mysql.com +63 -3
    In mysql_admin_table(): if the handler returns HA_ADMIN_TRY_ALTER,
    we close the table, recreate it, then open it and analyze it.
    This is currently used only for OPTIMIZE TABLE of an InnoDB table.

  sql/sql_parse.cc
    1.271.1.86 04/06/10 16:41:19 guilhem@mysql.com +3 -18
    the big block removed here is moved into mysql_recreate_table().

  sql/mysql_priv.h
    1.186.77.1 04/06/10 16:41:19 guilhem@mysql.com +2 -1
    as we may now use mysql_alter_table() internally to ::optimize we must prevent it from talking to the client.
    New function mysql_recreate_table() which is the same as ALTER TABLE t;

  sql/handler.h
    1.89.1.24 04/06/10 16:41:19 guilhem@mysql.com +1 -0
    new code to say "try alter and analyze".

  sql/ha_innodb.cc
    1.90.6.1 04/06/10 16:41:19 guilhem@mysql.com +3 -4
    ::optimize() now returns "try ALTER and then analyze" instead of only analyze.

ChangeSet
  1.1616.499.4 04/06/10 16:25:13 pekka@mysql.com +5 -0
  merge ndb api blobs, ready

  ndb/test/ndbapi/Makefile.am
    1.5 04/06/10 16:24:56 pekka@mysql.com +3 -1
    merge ndb api blobs, ready

  ndb/src/ndbapi/NdbBlob.cpp
    1.2 04/06/10 16:24:56 pekka@mysql.com +13 -13
    merge ndb api blobs, ready

  ndb/src/ndbapi/Makefile.am
    1.8 04/06/10 16:24:56 pekka@mysql.com +2 -1
    merge ndb api blobs, ready

  ndb/src/kernel/blocks/dbdict/Dbdict.cpp
    1.8 04/06/10 16:24:56 pekka@mysql.com +0 -1
    merge ndb api blobs, ready

  ndb/include/ndbapi/NdbBlob.hpp
    1.2 04/06/10 16:24:56 pekka@mysql.com +0 -1
    merge ndb api blobs, ready

ChangeSet
  1.1616.487.14 04/06/10 19:10:21 bar@mysql.com +18 -0
  Optimization to use less memory.

  strings/ctype-win1250ch.c
    1.38 04/06/10 19:10:18 bar@mysql.com +2 -1
    Optimization to use less memory.

  strings/ctype-utf8.c
    1.63 04/06/10 19:10:18 bar@mysql.com +4 -4
    Optimization to use less memory.

  strings/ctype-ujis.c
    1.53 04/06/10 19:10:18 bar@mysql.com +4 -4
    Optimization to use less memory.

  strings/ctype-ucs2.c
    1.23 04/06/10 19:10:18 bar@mysql.com +4 -4
    Optimization to use less memory.

  strings/ctype-uca.c
    1.6 04/06/10 19:10:12 bar@mysql.com +2 -2
    Optimization to use less memory.

  strings/ctype-tis620.c
    1.70 04/06/10 19:10:12 bar@mysql.com +4 -4
    Optimization to use less memory.

  strings/ctype-sjis.c
    1.62 04/06/10 19:10:12 bar@mysql.com +4 -4
    Optimization to use less memory.

  strings/ctype-latin1.c
    1.29 04/06/10 19:10:12 bar@mysql.com +6 -4
    Optimization to use less memory.

  strings/ctype-gbk.c
    1.57 04/06/10 19:10:12 bar@mysql.com +4 -4
    Optimization to use less memory.

  strings/ctype-gb2312.c
    1.49 04/06/10 19:10:12 bar@mysql.com +4 -4
    Optimization to use less memory.

  strings/ctype-extra.c
    1.16 04/06/10 19:10:12 bar@mysql.com +14 -12
    Optimization to use less memory.

  strings/ctype-euc_kr.c
    1.52 04/06/10 19:10:12 bar@mysql.com +4 -4
    Optimization to use less memory.

  strings/ctype-czech.c
    1.48 04/06/10 19:10:12 bar@mysql.com +2 -1
    Optimization to use less memory.

  strings/ctype-bin.c
    1.47 04/06/10 19:10:12 bar@mysql.com +2 -2
    Optimization to use less memory.

  strings/ctype-big5.c
    1.59 04/06/10 19:10:12 bar@mysql.com +4 -4
    Optimization to use less memory.

  sql/sql_lex.cc
    1.97.14.1 04/06/10 19:10:12 bar@mysql.com +13 -27
    Optimization to use less memory.

  mysys/charset.c
    1.124 04/06/10 19:10:12 bar@mysql.com +19 -5
    Optimization to use less memory.

  include/m_ctype.h
    1.93 04/06/10 19:10:11 bar@mysql.com +2 -2
    Optimization to use less memory.

ChangeSet
  1.1616.487.13 04/06/10 15:56:13 guilhem@mysql.com +5 -0
  WL#1595 "Optionally fsync() the binlog after every statement":
  New option --sync-binlog=x (and global settable variable) which will fsync the binlog
  after every x-th disk write to it. That is, if in autocommit mode, after every x-th statement
  written to the binlog; if using transactions, after every x-th transaction written to the binlog.
  x==0 means no fsync. x==1 is the slowest.
  There is no test added for this, I have just checked that it works as --sync-binlog=1 dramatically
  slows down mysqld.
  Made sync-frm a global settable variable.

  sql/set_var.h
    1.52 04/06/10 15:56:08 guilhem@mysql.com +9 -1
    new global settable variable sync_binlog needs a specific ::update because it needs to take LOCK_log

  sql/set_var.cc
    1.34.1.88 04/06/10 15:56:08 guilhem@mysql.com +28 -0
    Making sync-frm a settable global option.
    New settable global option sync-binlog.

  sql/mysqld.cc
    1.356.1.111 04/06/10 15:56:08 guilhem@mysql.com +8 -2
    new option sync_binlog

  sql/mysql_priv.h
    1.186.1.106 04/06/10 15:56:08 guilhem@mysql.com +1 -1
    new option sync_binlog

  sql/log.cc
    1.108.1.26 04/06/10 15:56:08 guilhem@mysql.com +12 -3
    every sync_binlog_period-th disk binlog write, we fsync the binlog

ChangeSet
  1.1346.1.507 04/06/10 16:44:39 monty@mysql.com +2 -0
  After merge fix

  scripts/mysql_install_db.sh
    1.35.1.14 04/06/10 16:44:38 monty@mysql.com +5 -4
    Cleanup

  mysql-test/r/type_date.result
    1.6.1.3 04/06/10 16:44:38 monty@mysql.com +17 -0
    After merge fix

ChangeSet
  1.1616.500.1 04/06/10 14:03:25 guilhem@mysql.com +2 -0
  don't need to tag the slave SQL thread as "bootstrap". It causes duplicate
  error messages when a query goes wrong.
  Note that from now on, if you run with --slave-skip-error=xx, then nothing will
  be printed to the error log when the slave is having this error xx and
  skipping it (but you don't care as you want to skip it).

  sql/slave.cc
    1.188.1.59 04/06/10 14:03:21 guilhem@mysql.com +0 -1
    don't need to tag the slave SQL thread as "bootstrap". It causes duplicate
    error messages when a query goes wrong.
    Note that from now on, if you run with --slave-skip-error=xx, then nothing will
    be printed to the error log when the slave is having this error xx and
    skipping it (but you don't care as you want to skip it).

  sql/repl_failsafe.cc
    1.32.1.22 04/06/10 14:03:21 guilhem@mysql.com +5 -0
    a comment about the use of thd->bootstrap in failsafe (unused code)

ChangeSet
  1.1616.499.3 04/06/10 13:04:29 pekka@mysql.com +5 -0
  merge ndb api blobs

ChangeSet
  1.1616.489.5 04/06/10 12:01:47 tomas@poseidon.ndb.mysql.com +6 -0
  removed myVector from ndb restore

  ndb/src/kernel/blocks/backup/restore/main.cpp
    1.10 04/06/10 12:01:41 tomas@poseidon.ndb.mysql.com +9 -9
    removed myVector

  ndb/src/kernel/blocks/backup/restore/consumer_restore.cpp
    1.3 04/06/10 12:01:41 tomas@poseidon.ndb.mysql.com +2 -2
    removed myVector

  ndb/src/kernel/blocks/backup/restore/Restore.hpp
    1.10 04/06/10 12:01:41 tomas@poseidon.ndb.mysql.com +13 -14
    removed myVector

  ndb/src/kernel/blocks/backup/restore/Restore.cpp
    1.11 04/06/10 12:01:41 tomas@poseidon.ndb.mysql.com +7 -7
    removed myVector

  ndb/include/util/Parser.hpp
    1.2 04/06/10 12:01:41 tomas@poseidon.ndb.mysql.com +1 -0
    bug-fix missing delete

ChangeSet
  1.1616.487.11 04/06/10 15:01:16 heikki@hundin.mysql.fi +2 -0
  
  
  Added function 
  
  /***********************************************************************
  This function stores binlog offset and flushes logs */
  
  
  void innobase_store_binlog_offset_and_flush_log(char *binlog_name,longlong offset) 
  requested by Guilhem to ha_innodb.cc and ha_innodb.h. 
  
  Change made by Jan.Lindstrom@innodb.com

  BitKeeper/deleted/.del-myVector.hpp~4ecd4d6d4c8fa2f6
    1.2 04/06/10 11:57:26 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/src/kernel/blocks/backup/restore/myVector.hpp

ChangeSet
  1.1346.636.1 04/06/10 13:56:58 serg@serg.mylan +2 -0
  warn about multiple mysqld --user parameters only if their arguments differ

  sql/mysqld.cc
    1.297.1.203 04/06/10 13:56:55 serg@serg.mylan +1 -1
    warn about multiple --user parameters only if their arguments differ

  scripts/mysqld_safe.sh
    1.56.1.13 04/06/10 13:56:55 serg@serg.mylan +1 -7
    don't protect mysqld from multiple --user commands - mysqld can take care of itself

  sql/ha_innodb.h
    1.57.1.7 04/06/10 14:56:45 heikki@hundin.mysql.fi +2 -0

  sql/ha_innodb.cc
    1.90.1.45 04/06/10 14:56:45 heikki@hundin.mysql.fi +5 -26

  ndb/test/src/NDBT_Table.cpp
    1.6 04/06/10 13:04:20 pekka@mysql.com +0 -8
    merge ndb api blobs

  ndb/test/ndbapi/testBlobs.cpp
    1.7 04/06/10 13:04:16 pekka@mysql.com +0 -0
    merge ndb api blobs

  ndb/src/ndbapi/Ndberr.cpp
    1.9 04/06/10 13:04:09 pekka@mysql.com +0 -0
    merge ndb api blobs

  ndb/src/ndbapi/NdbOperation.cpp
    1.5 04/06/10 13:04:04 pekka@mysql.com +0 -0
    merge ndb api blobs

  ndb/include/ndbapi/NdbDictionary.hpp
    1.3 04/06/10 13:03:55 pekka@mysql.com +0 -0
    merge ndb api blobs

  ndb/test/ndbapi/testBlobs.cpp
    1.4.1.2 04/06/10 12:34:47 pekka@mysql.com +0 -0
    Merge rename: ndb/test/ndbapi/testBlobs/testBlobs.cpp -> ndb/test/ndbapi/testBlobs.cpp

ChangeSet
  1.1616.498.1 04/06/10 12:17:13 pem@mysql.comhem.se +1 -0
  Removed extra error messages (that were replaced).

  sql/share/czech/errmsg.txt
    1.64.1.55 04/06/10 12:17:10 pem@mysql.com +0 -2
    Removed extra error messages (that were replaced).

ChangeSet
  1.1616.497.1 04/06/10 12:04:30 pekka@mysql.com +37 -0
  ndb api blobs

  ndb/tools/ndbsql/ndbsql.cpp
    1.2.1.1 04/06/10 12:03:53 pekka@mysql.com +10 -2
    ndb api blobs

  ndb/test/src/NDBT_Table.cpp
    1.3.1.1 04/06/10 12:03:53 pekka@mysql.com +8 -1
    ndb api blobs

  ndb/test/ndbapi/testBlobs/testBlobs.cpp
    1.4.1.1 04/06/10 12:03:53 pekka@mysql.com +1146 -130
    ndb api blobs

  ndb/test/ndbapi/Makefile
    1.2.1.1 04/06/10 12:03:53 pekka@mysql.com +2 -1
    ndb api blobs

  ndb/src/ndbapi/ndberror.c
    1.6 04/06/10 12:03:53 pekka@mysql.com +8 -2
    ndb api blobs

  ndb/src/ndbapi/Ndblist.cpp
    1.1.1.1 04/06/10 12:03:53 pekka@mysql.com +30 -0
    ndb api blobs

  ndb/src/ndbapi/Ndbinit.cpp
    1.2.3.1 04/06/10 12:03:53 pekka@mysql.com +3 -0
    ndb api blobs

  ndb/src/ndbapi/Ndberr.cpp
    1.7.1.1 04/06/10 12:03:53 pekka@mysql.com +8 -0
    ndb api blobs

  ndb/src/ndbapi/NdbScanOperation.cpp
    1.4.2.1 04/06/10 12:03:53 pekka@mysql.com +22 -0
    ndb api blobs

  ndb/src/ndbapi/NdbOperationSearch.cpp
    1.2.1.1 04/06/10 12:03:53 pekka@mysql.com +32 -0
    ndb api blobs

  ndb/src/ndbapi/NdbOperationScan.cpp
    1.1.1.1 04/06/10 12:03:53 pekka@mysql.com +29 -2
    ndb api blobs

  ndb/src/ndbapi/NdbOperationDefine.cpp
    1.2.1.1 04/06/10 12:03:53 pekka@mysql.com +28 -0
    ndb api blobs

  ndb/src/ndbapi/NdbOperation.cpp
    1.3.1.1 04/06/10 12:03:53 pekka@mysql.com +31 -2
    ndb api blobs

  ndb/src/ndbapi/NdbIndexOperation.cpp
    1.1.1.1 04/06/10 12:03:53 pekka@mysql.com +11 -0
    ndb api blobs

  ndb/src/ndbapi/NdbDictionaryImpl.hpp
    1.2.1.1 04/06/10 12:03:53 pekka@mysql.com +13 -4
    ndb api blobs

  ndb/src/ndbapi/NdbDictionaryImpl.cpp
    1.3.3.1 04/06/10 12:03:53 pekka@mysql.com +81 -0
    ndb api blobs

  ndb/src/ndbapi/NdbDictionary.cpp
    1.4.1.1 04/06/10 12:03:52 pekka@mysql.com +3 -0
    ndb api blobs

  ndb/src/ndbapi/NdbConnection.cpp
    1.1.1.1 04/06/10 12:03:52 pekka@mysql.com +130 -18
    ndb api blobs

  ndb/src/ndbapi/Makefile
    1.5.2.1 04/06/10 12:03:52 pekka@mysql.com +2 -1
    ndb api blobs

  ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
    1.2.1.1 04/06/10 12:03:52 pekka@mysql.com +2 -2
    ndb api blobs

  ndb/src/kernel/blocks/dbdict/Dbdict.cpp
    1.4.1.1 04/06/10 12:03:52 pekka@mysql.com +1 -0
    ndb api blobs

  ndb/src/common/util/NdbSqlUtil.cpp
    1.4 04/06/10 12:03:52 pekka@mysql.com +20 -0
    ndb api blobs

  ndb/src/client/odbc/common/DataType.hpp
    1.1.1.1 04/06/10 12:03:52 pekka@mysql.com +1 -0
    ndb api blobs

  ndb/src/client/odbc/common/DataType.cpp
    1.3.1.1 04/06/10 12:03:52 pekka@mysql.com +6 -0
    ndb api blobs

  ndb/src/client/odbc/codegen/SimpleScan.lpp
    1.1.1.1 04/06/10 12:03:52 pekka@mysql.com +2 -0
    ndb api blobs

  ndb/src/client/odbc/codegen/SimpleGram.ypp
    1.1.1.1 04/06/10 12:03:52 pekka@mysql.com +23 -3
    ndb api blobs

  ndb/include/util/NdbSqlUtil.hpp
    1.2 04/06/10 12:03:52 pekka@mysql.com +23 -1
    ndb api blobs

  ndb/include/ndbapi/NdbScanOperation.hpp
    1.5 04/06/10 12:03:52 pekka@mysql.com +6 -0
    ndb api blobs

  ndb/include/ndbapi/NdbOperation.hpp
    1.3.2.1 04/06/10 12:03:52 pekka@mysql.com +26 -1
    ndb api blobs

  ndb/include/ndbapi/NdbDictionary.hpp
    1.1.1.1 04/06/10 12:03:52 pekka@mysql.com +26 -2
    ndb api blobs

  ndb/include/ndbapi/NdbConnection.hpp
    1.3.2.1 04/06/10 12:03:52 pekka@mysql.com +12 -2
    ndb api blobs

  ndb/include/ndbapi/NdbApi.hpp
    1.1.1.1 04/06/10 12:03:52 pekka@mysql.com +1 -0
    ndb api blobs

  ndb/include/ndbapi/Ndb.hpp
    1.3.2.1 04/06/10 12:03:52 pekka@mysql.com +6 -0
    ndb api blobs

  ndb/include/kernel/signaldata/DictTabInfo.hpp
    1.2 04/06/10 12:03:51 pekka@mysql.com +10 -1
    ndb api blobs

  ndb/include/kernel/ndb_limits.h
    1.2 04/06/10 12:03:51 pekka@mysql.com +5 -0
    ndb api blobs

  ndb/src/ndbapi/NdbBlob.cpp
    1.1 04/06/10 12:02:00 pekka@mysql.com +1334 -0

  ndb/include/ndbapi/NdbBlob.hpp
    1.1 04/06/10 12:02:00 pekka@mysql.com +294 -0

  ndb/src/ndbapi/NdbBlob.cpp
    1.0 04/06/10 12:02:00 pekka@mysql.com +0 -0
    BitKeeper file /space/pekka/ndb/version/my41-blobs/ndb/src/ndbapi/NdbBlob.cpp

  ndb/include/ndbapi/NdbBlob.hpp
    1.0 04/06/10 12:02:00 pekka@mysql.com +0 -0
    BitKeeper file /space/pekka/ndb/version/my41-blobs/ndb/include/ndbapi/NdbBlob.hpp

ChangeSet
  1.1346.635.1 04/06/10 11:58:16 monty@mysql.com +1 -0
  Cleanup

  sql/sql_parse.cc
    1.218.38.1 04/06/10 11:58:14 monty@mysql.com +4 -2
    Cleanup of patch

ChangeSet
  1.1616.496.1 04/06/10 10:59:55 bell@sanja.is.com.ua +4 -0
  cleunup() of count() and max()/min() added (BUG#2687)

  sql/item_sum.h
    1.48.5.1 04/06/10 10:59:29 bell@sanja.is.com.ua +2 -0
    cleunup() added

  sql/item_sum.cc
    1.89.6.1 04/06/10 10:59:29 bell@sanja.is.com.ua +19 -0
    cleunup() added

  mysql-test/t/func_group.test
    1.24 04/06/10 10:59:29 bell@sanja.is.com.ua +22 -0
    test of optimized aggregate function re-execution

  mysql-test/r/func_group.result
    1.29.1.1 04/06/10 10:59:29 bell@sanja.is.com.ua +28 -0
    test of optimized aggregate function re-execution

ChangeSet
  1.1616.489.4 04/06/10 01:38:38 tomas@poseidon.bredbandsbolaget.se +7 -0
  more ndb restore cleanup

  ndb/src/kernel/blocks/backup/restore/main.cpp
    1.9 04/06/10 01:38:31 tomas@poseidon.bredbandsbolaget.se +16 -74
    more ndb restore cleanup

  ndb/src/kernel/blocks/backup/restore/consumer_restore.hpp
    1.2 04/06/10 01:38:31 tomas@poseidon.bredbandsbolaget.se +0 -4
    more ndb restore cleanup

  ndb/src/kernel/blocks/backup/restore/consumer_restore.cpp
    1.2 04/06/10 01:38:31 tomas@poseidon.bredbandsbolaget.se +35 -27
    more ndb restore cleanup

  ndb/src/kernel/blocks/backup/restore/consumer_printer.cpp
    1.2 04/06/10 01:38:31 tomas@poseidon.bredbandsbolaget.se +1 -42
    more ndb restore cleanup

  ndb/src/kernel/blocks/backup/restore/consumer.hpp
    1.2 04/06/10 01:38:30 tomas@poseidon.bredbandsbolaget.se +1 -7
    more ndb restore cleanup

  ndb/src/kernel/blocks/backup/restore/Restore.hpp
    1.9 04/06/10 01:38:30 tomas@poseidon.bredbandsbolaget.se +50 -27
    more ndb restore cleanup

  ndb/src/kernel/blocks/backup/restore/Restore.cpp
    1.10 04/06/10 01:38:30 tomas@poseidon.bredbandsbolaget.se +116 -133
    more ndb restore cleanup

ChangeSet
  1.1616.487.8 04/06/10 01:30:39 konstantin@mysql.com +1 -0
  Fix for Bug#3904 "COUNT DISTINCT performance anomaly in 4.1"
  The bug was caused by error in hash calculation function: it
  always returned hash value for last field in a composite key, so 
  for keys like (a text, b char(1)) we were always
  getting bad hash values.
   

  myisam/mi_unique.c
    1.17 04/06/10 01:30:36 konstantin@mysql.com +3 -3
    Fix for bug #3904:
    We should take into account existing hash value when calculating hash for
    next key in a composite unique index.

ChangeSet
  1.1616.495.1 04/06/09 23:32:20 bell@sanja.is.com.ua +6 -0
  do not unlock tables early if we have subquery in HAVING clause (BUG#3984)

  sql/sql_select.cc
    1.216.1.121 04/06/09 23:32:17 bell@sanja.is.com.ua +2 -1
    do not unlock tables early if we have subquery in HAVING clause

  sql/sql_lex.h
    1.102.1.63 04/06/09 23:32:17 bell@sanja.is.com.ua +5 -0
    mark SELECT with subquery in HAVING clause

  sql/sql_lex.cc
    1.97.1.27 04/06/09 23:32:16 bell@sanja.is.com.ua +1 -1
    mark SELECT with subquery in HAVING clause

  sql/item_subselect.cc
    1.60.1.41 04/06/09 23:32:16 bell@sanja.is.com.ua +5 -0
    mark SELECT with subquery in HAVING clause

  mysql-test/t/subselect_innodb.test
    1.8 04/06/09 23:32:16 bell@sanja.is.com.ua +10 -0
    test of unlocking innodb tables and subquery in HAVING clause

  mysql-test/r/subselect_innodb.result
    1.7 04/06/09 23:32:16 bell@sanja.is.com.ua +10 -0
    test of unlocking innodb tables and subquery in HAVING clause

ChangeSet
  1.1616.494.1 04/06/09 19:24:36 tomas@poseidon.bredbandsbolaget.se +12 -0
  re-enginered ndb restore to remove new/deletes and data copy

  ndb/src/kernel/blocks/backup/restore/consumer_restorem.cpp
    1.1 04/06/09 19:24:29 tomas@poseidon.bredbandsbolaget.se +652 -0

  ndb/src/kernel/blocks/backup/restore/consumer_restore.hpp
    1.1 04/06/09 19:24:29 tomas@poseidon.bredbandsbolaget.se +79 -0

  ndb/src/kernel/blocks/backup/restore/consumer_restorem.cpp
    1.0 04/06/09 19:24:29 tomas@poseidon.bredbandsbolaget.se +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb/ndb/src/kernel/blocks/backup/restore/consumer_restorem.cpp

  ndb/src/kernel/blocks/backup/restore/consumer_restore.hpp
    1.0 04/06/09 19:24:29 tomas@poseidon.bredbandsbolaget.se +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb/ndb/src/kernel/blocks/backup/restore/consumer_restore.hpp

  ndb/src/kernel/blocks/backup/restore/consumer_restore.cpp
    1.1 04/06/09 19:24:28 tomas@poseidon.bredbandsbolaget.se +508 -0

  ndb/src/kernel/blocks/backup/restore/consumer_printer.hpp
    1.1 04/06/09 19:24:28 tomas@poseidon.bredbandsbolaget.se +50 -0

  ndb/src/kernel/blocks/backup/restore/consumer_restore.cpp
    1.0 04/06/09 19:24:28 tomas@poseidon.bredbandsbolaget.se +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb/ndb/src/kernel/blocks/backup/restore/consumer_restore.cpp

  ndb/src/kernel/blocks/backup/restore/consumer_printer.hpp
    1.0 04/06/09 19:24:28 tomas@poseidon.bredbandsbolaget.se +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb/ndb/src/kernel/blocks/backup/restore/consumer_printer.hpp

  ndb/src/kernel/blocks/backup/restore/consumer_printer.cpp
    1.1 04/06/09 19:24:27 tomas@poseidon.bredbandsbolaget.se +96 -0

  ndb/src/kernel/blocks/backup/restore/consumer.hpp
    1.1 04/06/09 19:24:27 tomas@poseidon.bredbandsbolaget.se +40 -0

  ndb/src/kernel/blocks/backup/restore/consumer_printer.cpp
    1.0 04/06/09 19:24:27 tomas@poseidon.bredbandsbolaget.se +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb/ndb/src/kernel/blocks/backup/restore/consumer_printer.cpp

  ndb/src/kernel/blocks/backup/restore/consumer.hpp
    1.0 04/06/09 19:24:27 tomas@poseidon.bredbandsbolaget.se +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb/ndb/src/kernel/blocks/backup/restore/consumer.hpp

  ndb/src/kernel/blocks/backup/restore/consumer.cpp
    1.1 04/06/09 19:24:26 tomas@poseidon.bredbandsbolaget.se +107 -0

  ndb/src/kernel/blocks/backup/restore/main.cpp
    1.8 04/06/09 19:24:26 tomas@poseidon.bredbandsbolaget.se +34 -1017
    re-enginered ndb restore to remove new/deletes and data copy

  ndb/src/kernel/blocks/backup/restore/consumer.cpp
    1.0 04/06/09 19:24:26 tomas@poseidon.bredbandsbolaget.se +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb/ndb/src/kernel/blocks/backup/restore/consumer.cpp

  ndb/src/kernel/blocks/backup/restore/Restore.hpp
    1.8 04/06/09 19:24:25 tomas@poseidon.bredbandsbolaget.se +36 -16
    re-enginered ndb restore to remove new/deletes and data copy

  ndb/src/kernel/blocks/backup/restore/Restore.cpp
    1.9 04/06/09 19:24:25 tomas@poseidon.bredbandsbolaget.se +227 -78
    re-enginered ndb restore to remove new/deletes and data copy

  ndb/src/kernel/blocks/backup/restore/Makefile.am
    1.8 04/06/09 19:24:25 tomas@poseidon.bredbandsbolaget.se +1 -1
    re-enginered ndb restore to remove new/deletes and data copy

ChangeSet
  1.1616.493.2 04/06/09 23:10:09 hf@deer.(none) +1 -0
  fix for bug #3974 ("SHOW FULL PROCESSLIST" crashes the embedded server)
  server crashed checking thd->priv_user[0] and thd->priv_user is NULL
  if NO_EMBEDDED_ACCESS_CHECKS is on.
  Now i set it to be the same as thd->user

  libmysqld/lib_sql.cc
    1.75.1.37 04/06/09 23:10:06 hf@deer.(none) +1 -0
    now priv_user won't be NULL

ChangeSet
  1.1616.493.1 04/06/09 22:36:48 hf@deer.(none) +1 -0
  Fix for the bug #4014 (prepared SELECT in embedded server)
  Problem is that store_string_aux calls 'wrong' net_store_data

  sql/protocol.h
    1.15.1.5 04/06/09 22:36:16 hf@deer.(none) +3 -1
    I tried not to do net_store_data virtual - it's going to work a bit slower -
    using the fact that Protocol_simple and Protocol_prep have different
    implementation for 'store' methods.
    But now the store_string_aux method works for both.
    Well we still can try to make separate versions for Protocol_prep and
    Protocol_simple, but i prefer to make net_store_data virtual for
    embedded server so we won't have similar problems in the future

ChangeSet
  1.1671 04/06/09 18:50:03 pem@mysql.comhem.se +2 -0
  Added test case for SELECT INTO with too many rows.

  mysql-test/t/sp-error.test
    1.39 04/06/09 18:49:59 pem@mysql.com +17 -0
    Added test case for SELECT INTO with too many rows.

  mysql-test/r/sp-error.result
    1.39 04/06/09 18:49:59 pem@mysql.com +9 -0
    Added test case for SELECT INTO with too many rows.

ChangeSet
  1.1346.623.39 04/06/09 20:02:08 gluh@gluh.mysql.r18.ru +2 -0
  Fixed issue with compilation MySQL with OpenSSL 
  if OpenSSL is installed in non-statndart directory
  ('openssl/opensslv.h: No such file or directory')

  include/violite.h
    1.21.3.5 04/06/09 20:01:42 gluh@gluh.mysql.r18.ru +8 -0
    Fixed issue with compilation MySQL with OpenSSL 
    if OpenSSL is installed in non-statndart directory

  include/my_global.h
    1.34.1.32 04/06/09 20:01:42 gluh@gluh.mysql.r18.ru +0 -10
    Fixed issue with compilation MySQL with OpenSSL 
    if OpenSSL is installed in non-statndart directory

ChangeSet
  1.1346.1.505 04/06/09 17:07:11 guilhem@mysql.com +2 -0
  Fix for BUG#4038 "rpm postinstall script leaves files as owned by root":
  the rpm postinstall script must call mysql_install_db with --user=mysql,
  and mysql_install_db must then pass this to mysqld. Otherwise, mysqld
  runs as root, and if you have --log-bin=somewhere_out_of_var_lib_mysql
  it creates binlog files owned by root in this dir, and this dir is not
  fixed by the 'chmod mysql', so files remain owned by root, and later mysqld
  (running as 'mysql') can't read them.
  I'm hardcoding 'mysql' in the postinstall script, but it's already hardcoded
  there in many places (see the useradd and chown) so it's ok.

  support-files/mysql.spec.sh
    1.61.1.21 04/06/09 17:07:04 guilhem@mysql.com +1 -1
    in postinstall, call mysql_install_db with --user=mysql, so that mysqld (which installs the grant tables)
    is started with --user=mysql.

  scripts/mysql_install_db.sh
    1.35.1.13 04/06/09 17:07:04 guilhem@mysql.com +5 -1
    Pass --user to mysqld

ChangeSet
  1.1616.492.1 04/06/09 16:07:01 guilhem@mysql.com +12 -0
  Making DROP TABLE IF EXISTS, DROP DATABASE IF EXISTS, DELETE FROM, UPDATE be logged to
  binlog even if they changed nothing, and a test for this.
  This is useful when users use these commands to clean up their master and slave by issuing
  one command on master (assume master and slave have slightly different data for some
  reason and you want to clean up both).
  Note that I have not changed multi-table DELETE and multi-table UPDATE because their
  error-reporting mechanism is more complicated.

  mysql-test/t/rpl_delete_all.test
    1.1 04/06/09 16:06:56 guilhem@mysql.com +40 -0

  mysql-test/r/rpl_delete_all.result
    1.1 04/06/09 16:06:56 guilhem@mysql.com +31 -0

  sql/sql_update.cc
    1.83.2.42 04/06/09 16:06:56 guilhem@mysql.com +4 -2
    UPDATE is now always logged to binlog even if no rows updated (but in this case, only if really no error).

  sql/sql_table.cc
    1.157.2.68 04/06/09 16:06:56 guilhem@mysql.com +13 -11
    DROP TABLE IF EXISTS is now always logged to binlog even if table did not exist

  sql/sql_delete.cc
    1.99.2.27 04/06/09 16:06:56 guilhem@mysql.com +11 -1
    DELETE FROM t is now always logged to binlog even if no rows deleted (but in this case, only if really no error).

  sql/sql_db.cc
    1.68.1.43 04/06/09 16:06:56 guilhem@mysql.com +35 -37
    DROP DATABASE IF EXISTS is now always logged to binlog, even if db did not exist

  mysql-test/t/rpl_delete_all.test
    1.0 04/06/09 16:06:56 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-874/mysql-test/t/rpl_delete_all.test

  mysql-test/t/mysqlbinlog.test
    1.8.1.4 04/06/09 16:06:56 guilhem@mysql.com +4 -3
    moving SET TIMESTAMP up as DROP shows up in binlog

  mysql-test/r/rpl_temporary.result
    1.3.1.8 04/06/09 16:06:56 guilhem@mysql.com +12 -11
    result update

  mysql-test/r/rpl_replicate_do.result
    1.21.1.1 04/06/09 16:06:56 guilhem@mysql.com +1 -1
    result update

  mysql-test/r/rpl_flush_log_loop.result
    1.13.1.2 04/06/09 16:06:56 guilhem@mysql.com +1 -1
    result update

  mysql-test/r/rpl_delete_all.result
    1.0 04/06/09 16:06:56 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1-874/mysql-test/r/rpl_delete_all.result

  mysql-test/r/rpl_charset.result
    1.3 04/06/09 16:06:56 guilhem@mysql.com +56 -54
    result update

  mysql-test/r/mysqlbinlog.result
    1.3.1.6 04/06/09 16:06:55 guilhem@mysql.com +5 -1
    result update

ChangeSet
  1.1346.1.504 04/06/09 15:27:15 guilhem@mysql.com +1 -0
  complement to previous fix (which was for SQLCOM_DROP_DB), for COM_DROP_DB.

  sql/sql_parse.cc
    1.218.1.155 04/06/09 15:27:11 guilhem@mysql.com +3 -3
    Making COM_DROP_DB honour lower_case_table_names. Plus coding-style fixes.

ChangeSet
  1.1346.1.503 04/06/09 15:22:31 guilhem@mysql.com +1 -0
  Fix for BUG#4066 "DROP DATABASE case sensitive even if lower-case-table-names > 0"

  sql/sql_parse.cc
    1.218.1.154 04/06/09 15:22:29 guilhem@mysql.com +2 -1
    honour lower_case_table_names in DROP DATABASE (like we already do in CREATE DATABASE)

ChangeSet
  1.1665.8.11 04/06/09 14:19:43 pem@mysql.comhem.se +5 -0
  Fixed BUG#2564: SHOW CREATE inconsistent W.R.T ANSI_QUOTES.
  
  It's not possible to quote the definition according to the current sql_mode
  setting, so instead we use the setting stored with the SP (that's how it's
  parsed anyway), and show this setting in the SHOW CREATE output.

  sql/sp_head.h
    1.38 04/06/09 14:19:37 pem@mysql.com +2 -1
    Store sql_mode in sp_head and use it for SHOW CREATE.

  sql/sp_head.cc
    1.77 04/06/09 14:19:37 pem@mysql.com +52 -5
    Store sql_mode in sp_head and use it for SHOW CREATE.

  sql/sp.cc
    1.48.1.3 04/06/09 14:19:37 pem@mysql.com +46 -38
    Rewrote create_string to quote things correctly according to the sql_mode
    used at creation time.

  mysql-test/t/sp.test
    1.66 04/06/09 14:19:37 pem@mysql.com +34 -0
    New test case for BUG#2564: SHOW CREATE inconsistent W.R.T ANSI_QUOTES.

  mysql-test/r/sp.result
    1.66 04/06/09 14:19:37 pem@mysql.com +47 -12
    Modifed SHOW CREATE FUNCTION|PROCEDURE output. Show the sql_mode used at
    creation as well.
    New test case for BUG#2564: SHOW CREATE inconsistent W.R.T ANSI_QUOTES.

ChangeSet
  1.1616.487.6 04/06/09 12:33:30 bar@mysql.com +2 -0
  charset.c:
    Fix to be ANSI C complient
    ,

  BitKeeper/etc/logging_ok
    1.233.1.81 04/06/09 12:33:29 bar@mysql.com +1 -0
    Logging to logging@openlogging.org accepted

  mysys/charset.c
    1.123 04/06/09 12:32:44 bar@mysql.com +2 -1
    Fix to be ANSI C complient
    ,

ChangeSet
  1.1616.489.2 04/06/09 06:09:13 ndbdev@ndbmaster.mysql.com +1 -0
  3 retries for wait started

  ndb/test/run-test/main.cpp
    1.8 04/06/09 06:08:42 ndbdev@ndbmaster.mysql.com +11 -4
    3 retries for wait started

ChangeSet
  1.1616.491.1 04/06/09 03:21:50 konstantin@mysql.com +7 -0
  Proposed fix for Bug#4026 "Microseconds part of TIME/DATETIME types 
  is broken (prepared statements)": fixed date handling in many places 
  of prepared statements code.

  tests/client_test.c
    1.51.1.43 04/06/09 03:21:34 konstantin@mysql.com +68 -0
    Test case for Bug#4026

  sql/sql_prepare.cc
    1.34.18.11 04/06/09 03:21:34 konstantin@mysql.com +12 -14
    Fix for Bug#4026:
    - MYSQL_TYPE_TIME/DATETIME handling fixed.
    - added initialization for Item_param::param_type in 
      setup_one_conversion_function

  sql/protocol.h
    1.15.1.4 04/06/09 03:21:34 konstantin@mysql.com +0 -1
    - PACKET_BUFFER_EXTRA_ALLOC moved to protocol.cc

  sql/protocol.cc
    1.56.1.30 04/06/09 03:21:34 konstantin@mysql.com +13 -11
    Fix for Bug#4026:
    - PACKET_BUFFET_EXTRA_ALLOC -> PACKET_BUFFER_EXTRA_ALLOC.
      The define itself was moved to .cc as it's used only in protocol.cc
    - fixed Protocol_prep::store_time() call.

  sql/item.h
    1.56.29.8 04/06/09 03:21:34 konstantin@mysql.com +12 -1
    - added enum_field_types Item_param::param_type. First step for proper
      handling of placeholders.
    - added get_date() implementation to prevent date -> string -> date 
      conversions when MYSQL_TYPE_DATE/DATETIME parameter is used in temporal 
      context.

  sql/item.cc
    1.58.50.11 04/06/09 03:21:34 konstantin@mysql.com +12 -0
    - added implementatoin of Item_param::get_date

  libmysql/libmysql.c
    1.156.1.84 04/06/09 03:21:33 konstantin@mysql.com +97 -29
    Fix for Bug#4026:
    - now buffer_length is defined for any buffer type. Network buffer 
      preallocation cleaned up.
    - added constants for maximum buffer sizes necessary for MYSQL_TYPE_DATE,
      MYSQL_TYPE_TIME, MYSQL_TYPE_DATETIME types.
    - TIME/DATETIME packing/unpacking functions fixed 
    - now result set metadata is always updated from fields sent to COM_EXECUTE.
      This is necessary to make 'SELECT ?' queries work without conversions. 

ChangeSet
  1.1346.634.1 04/06/09 00:08:24 serg@serg.mylan +3 -0
  different (simpler and more compatible) fix for bug#4046

  sql/sql_parse.cc
    1.218.1.153 04/06/09 00:08:21 serg@serg.mylan +4 -1
    different (simpler and more compatible) fix for bug#4046

  mysql-test/t/type_decimal.test
    1.8.1.5 04/06/09 00:08:21 serg@serg.mylan +3 -0
    different (simpler and more compatible) fix for bug#4046

  mysql-test/r/type_decimal.result
    1.11.1.4 04/06/09 00:08:21 serg@serg.mylan +7 -0
    different (simpler and more compatible) fix for bug#4046

ChangeSet
  1.1346.1.501 04/06/08 13:36:32 patg@krsna.patg.net +2 -0
  see notes for mysql-copyright scripts

  Build-tools/mysql-copyright
    1.8.1.1 04/06/08 13:36:29 patg@krsna.patg.net +44 -18
    deals with windows src file now

  Build-tools/mysql-copyright-2
    1.5.1.1 04/06/08 13:36:29 patg@krsna.patg.net +1 -1
    small fix

ChangeSet
  1.1616.490.1 04/06/08 19:55:04 guilhem@mysql.com +4 -0
  Correction to replication of charsets in 4.1:
  In mysqlbinlog, there was a problem with how we escaped the content of a string user variable.
  To be perfect, we should have escaped with character_set_client. But this charset is unknown
  to mysqlbinlog. So the simplest is to print the string in hex. This is unreadable but
  100% safe with any charset (checked with Bar), no more need to bother with character_set_client.

  sql/log_event.cc
    1.113.1.44 04/06/08 19:54:59 guilhem@mysql.com +44 -15
    In mysqlbinlog, there was a problem with how we escaped the content of a string user variable.
    To be perfect, we should have escaped with character_set_client. But this charset is unknown
    to mysqlbinlog. So the simplest is to print the string in hex. This is unreadable but
    100% safe with any charset (checked with Bar), no more need to bother with character_set_client.

  mysql-test/r/user_var.result
    1.17 04/06/08 19:54:59 guilhem@mysql.com +6 -6
    hex strings

  mysql-test/r/rpl_user_variables.result
    1.5.1.4 04/06/08 19:54:59 guilhem@mysql.com +6 -6
    hex strings

  mysql-test/r/rpl_charset.result
    1.2 04/06/08 19:54:59 guilhem@mysql.com +1 -1
    hex strings

ChangeSet
  1.1665.8.10 04/06/08 18:41:18 pem@mysql.comhem.se +3 -0
  Fixed proper restoring of current db on errors.
  This fixes part of BUG#3229: Stored procedure comment causes packets out of order.

  sql/sp_head.cc
    1.76 04/06/08 18:41:15 pem@mysql.com +4 -4
    Fixed proper restoring of current db on errors.

  sql/sp.h
    1.15 04/06/08 18:41:15 pem@mysql.com +2 -1
    Fixed proper restoring of current db on errors.

  sql/sp.cc
    1.48.1.2 04/06/08 18:41:15 pem@mysql.com +10 -8
    Fixed proper restoring of current db on errors.

ChangeSet
  1.1616.489.1 04/06/08 17:01:47 ndbdev@ndbmaster.mysql.com +1 -0
  Use LOGNAME instead of USER

  ndb/test/run-test/main.cpp
    1.7 04/06/08 17:01:00 ndbdev@ndbmaster.mysql.com +1 -1
    Use LOGNAME instead of USER

ChangeSet
  1.1616.488.1 04/06/08 18:01:15 ram@gw.mysql.r18.ru +6 -0
  a fix
  (Bug #4035 GROUP_CONCAT with HAVING clause truncates field                       
  Bug #4057 LEFT() function in HAVING clause truncates query result).

  sql/item_sum.h
    1.48.1.19 04/06/08 18:00:43 ram@gw.mysql.r18.ru +0 -1
    a fix (Bug #4035 GROUP_CONCAT with HAVING clause truncates field)

  sql/item_sum.cc
    1.89.1.25 04/06/08 18:00:43 ram@gw.mysql.r18.ru +4 -16
    a fix (Bug #4035 GROUP_CONCAT with HAVING clause truncates field)

  sql/item_strfunc.h
    1.83 04/06/08 18:00:43 ram@gw.mysql.r18.ru +1 -0
    a fix (Bug #4057 LEFT() function in HAVING clause truncates query result)

  sql/item_strfunc.cc
    1.176.1.1 04/06/08 18:00:43 ram@gw.mysql.r18.ru +4 -11
    a fix (Bug #4057 LEFT() function in HAVING clause truncates query result)

  mysql-test/t/func_gconcat.test
    1.17 04/06/08 18:00:43 ram@gw.mysql.r18.ru +12 -0
    a test case
    Bug #4035 GROUP_CONCAT with HAVING clause truncates field                       
    Bug #4057 LEFT() function in HAVING clause truncates query result

  mysql-test/r/func_gconcat.result
    1.26 04/06/08 18:00:43 ram@gw.mysql.r18.ru +11 -3
    a test case
    Bug #4035 GROUP_CONCAT with HAVING clause truncates field                       
    Bug #4057 LEFT() function in HAVING clause truncates query result

ChangeSet
  1.1616.487.2 04/06/08 17:56:15 bar@bar.intranet.mysql.r18.ru +17 -0
  WL#916: Unicode collations for some languages

  strings/ctype.c
    1.61 04/06/08 17:56:11 bar@bar.intranet.mysql.r18.ru +8 -6
    WL#916: Unicode collations for some languages

  strings/ctype-win1250ch.c
    1.37 04/06/08 17:56:11 bar@bar.intranet.mysql.r18.ru +1 -0
    WL#916: Unicode collations for some languages

  strings/ctype-utf8.c
    1.62 04/06/08 17:56:11 bar@bar.intranet.mysql.r18.ru +2 -0
    WL#916: Unicode collations for some languages

  strings/ctype-ujis.c
    1.52 04/06/08 17:56:11 bar@bar.intranet.mysql.r18.ru +2 -0
    WL#916: Unicode collations for some languages

  strings/ctype-ucs2.c
    1.22 04/06/08 17:56:11 bar@bar.intranet.mysql.r18.ru +2 -0
    WL#916: Unicode collations for some languages

  strings/ctype-uca.c
    1.5 04/06/08 17:56:11 bar@bar.intranet.mysql.r18.ru +1 -0
    WL#916: Unicode collations for some languages

  strings/ctype-tis620.c
    1.69 04/06/08 17:56:11 bar@bar.intranet.mysql.r18.ru +2 -0
    WL#916: Unicode collations for some languages

  strings/ctype-sjis.c
    1.61 04/06/08 17:56:11 bar@bar.intranet.mysql.r18.ru +2 -0
    WL#916: Unicode collations for some languages

  strings/ctype-latin1.c
    1.28 04/06/08 17:56:11 bar@bar.intranet.mysql.r18.ru +3 -0
    WL#916: Unicode collations for some languages

  strings/ctype-gbk.c
    1.56 04/06/08 17:56:10 bar@bar.intranet.mysql.r18.ru +2 -0
    WL#916: Unicode collations for some languages

  strings/ctype-gb2312.c
    1.48 04/06/08 17:56:10 bar@bar.intranet.mysql.r18.ru +2 -0
    WL#916: Unicode collations for some languages

  strings/ctype-euc_kr.c
    1.51 04/06/08 17:56:10 bar@bar.intranet.mysql.r18.ru +2 -0
    WL#916: Unicode collations for some languages

  strings/ctype-czech.c
    1.47 04/06/08 17:56:10 bar@bar.intranet.mysql.r18.ru +1 -0
    WL#916: Unicode collations for some languages

  strings/ctype-bin.c
    1.46 04/06/08 17:56:10 bar@bar.intranet.mysql.r18.ru +1 -0
    WL#916: Unicode collations for some languages

  strings/ctype-big5.c
    1.58 04/06/08 17:56:10 bar@bar.intranet.mysql.r18.ru +2 -0
    WL#916: Unicode collations for some languages

  mysys/charset.c
    1.122 04/06/08 17:56:10 bar@bar.intranet.mysql.r18.ru +180 -30
    WL#916: Unicode collations for some languages

  include/m_ctype.h
    1.92 04/06/08 17:56:09 bar@bar.intranet.mysql.r18.ru +1 -0
    WL#916: Unicode collations for some languages

ChangeSet
  1.1616.487.1 04/06/08 15:38:22 jplindst@t41.(none) +2 -0
  Added function innobase_store_binlog_offset_and_flush_log requested by Guilhem 
  to ha_innodb.cc and ha_innodb.h

  BitKeeper/etc/logging_ok
    1.233.1.80 04/06/08 15:33:24 jplindst@t41.(none) +1 -0
    Logging to logging@openlogging.org accepted

  sql/ha_innodb.cc
    1.90.1.44 04/06/08 15:33:18 jplindst@t41.(none) +33 -0
    /***********************************************************************
    This function stores binlog offset and flushes logs */
    
    void
    innobase_store_binlog_offset_and_flush_log(
    /*=============================*/
        char *binlog_name,          /* in: binlog name   */
        longlong offset             /* in: binlog offset */
    );

  BitKeeper/deleted/.del-Makefile_old~5e1138bd59f6b3aa
    1.5 04/06/08 10:50:46 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/src/kernel/blocks/backup/restore/Makefile_old

ChangeSet
  1.1616.1.288 04/06/08 15:25:20 bar@bar.intranet.mysql.r18.ru +3 -0
  Bug #3717 ENCODE returns a character string, not a binary string

ChangeSet
  1.1616.1.285 04/06/08 10:36:41 tomas@poseidon.ndb.mysql.com +5 -0
  fix for automake-1.5

  ndb/tools/Makefile.am
    1.8 04/06/08 10:36:38 tomas@poseidon.ndb.mysql.com +8 -1
    fix for automake-1.5

  ndb/src/mgmsrv/Makefile.am
    1.10 04/06/08 10:36:38 tomas@poseidon.ndb.mysql.com +1 -1
    fix for automake-1.5

  ndb/src/mgmclient/Makefile.am
    1.9 04/06/08 10:36:38 tomas@poseidon.ndb.mysql.com +1 -1
    fix for automake-1.5

  ndb/src/kernel/blocks/backup/restore/Makefile.am
    1.7 04/06/08 10:36:38 tomas@poseidon.ndb.mysql.com +1 -1
    fix for automake-1.5

  ndb/src/cw/cpcd/Makefile.am
    1.7 04/06/08 10:36:38 tomas@poseidon.ndb.mysql.com +1 -1
    fix for automake-1.5

  sql/item_strfunc.cc
    1.177 04/06/08 15:25:15 bar@bar.intranet.mysql.r18.ru +2 -0
    Bug #3717 ENCODE returns a character string, not a binary string

  mysql-test/t/func_str.test
    1.56 04/06/08 15:25:15 bar@bar.intranet.mysql.r18.ru +3 -1
    Bug #3717 ENCODE returns a character string, not a binary string

  mysql-test/r/func_str.result
    1.65 04/06/08 15:25:15 bar@bar.intranet.mysql.r18.ru +7 -2
    Bug #3717 ENCODE returns a character string, not a binary string

ChangeSet
  1.1616.486.5 04/06/08 14:26:16 bar@bar.intranet.mysql.r18.ru +3 -0
  Bug #2077 Japanese characters in enum/default values are reported incorrectly

  sql/sql_show.cc
    1.122.1.47 04/06/08 14:26:08 bar@bar.intranet.mysql.r18.ru +1 -1
    Bug #2077 Japanese characters in enum/default values are reported incorrectly

  mysql-test/t/ctype_ujis.test
    1.8 04/06/08 14:26:08 bar@bar.intranet.mysql.r18.ru +10 -0
    Bug #2077 Japanese characters in enum/default values are reported incorrectly

  mysql-test/r/ctype_ujis.result
    1.7 04/06/08 14:26:08 bar@bar.intranet.mysql.r18.ru +15 -0
    Bug #2077 Japanese characters in enum/default values are reported incorrectly

ChangeSet
  1.1616.486.4 04/06/08 10:41:14 heikki@hundin.mysql.fi +1 -0
  ha_innodb.cc:
    Fix Bug #4047: remove the improvement ported from 4.0 that made InnoDB to remember the original select_lock_type inside LOCK TABLES

  sql/ha_innodb.cc
    1.90.1.43 04/06/08 10:41:03 heikki@hundin.mysql.fi +13 -26
    Fix Bug #4047: remove the improvement ported from 4.0 that made InnoDB to remember the original select_lock_type inside LOCK TABLES

ChangeSet
  1.1346.623.38 04/06/08 12:35:22 wax@mysql.com +1 -0
  BUG#3439 problem with UDF functions

  VC++Files/examples/udf_example/udf_example.def
    1.2 04/06/08 12:34:57 wax@mysql.com +14 -5
    Add definitions of init and deinit functions

ChangeSet
  1.1616.485.5 04/06/08 11:33:16 bar@bar.intranet.mysql.r18.ru +1 -0
  Sorry, forgot to commit together with the code change yesterday.

  mysql-test/r/mysqldump.result
    1.9.1.20 04/06/08 11:33:13 bar@bar.intranet.mysql.r18.ru +0 -0
    Sorry, forgot to commit together with the code change yesterday.

  mysql-test/r/mysqldump.result
    1.9.1.19 04/06/08 11:32:24 bar@bar.intranet.mysql.r18.ru +30 -5
    Sorry, forgot to commit yesterday with the code change.

ChangeSet
  1.1616.1.282 04/06/08 00:12:11 tomas@poseidon.bredbandsbolaget.se +3 -0
  some ndb printout cleanup

  ndb/test/src/NDBT_Table.cpp
    1.5 04/06/08 00:09:57 tomas@poseidon.bredbandsbolaget.se +13 -83
    Print cleanup

  ndb/test/src/NDBT_ResultRow.cpp
    1.9 04/06/08 00:09:57 tomas@poseidon.bredbandsbolaget.se +1 -7
    Print error

  ndb/src/ndbapi/NdbDictionary.cpp
    1.6 04/06/08 00:09:57 tomas@poseidon.bredbandsbolaget.se +21 -21
    Print cleanup

ChangeSet
  1.1616.485.4 04/06/08 00:43:03 sergefp@mysql.com +1 -0
  SQL Syntax for Prepared Statements: post-merge fixes

  sql/sql_prepare.cc
    1.34.1.73 04/06/08 00:43:00 sergefp@mysql.com +4 -4
    SQL Syntax for Prepared Statements: post-merge fixes

ChangeSet
  1.1616.485.2 04/06/07 21:16:53 joreland@mysql.com +2 -0
  BUG#4034

  ndb/src/common/util/ConfigValues.cpp
    1.3 04/06/07 21:16:36 joreland@mysql.com +2 -2
    BUG#4034

  ndb/src/common/mgmcommon/ConfigInfo.cpp
    1.4 04/06/07 21:16:34 joreland@mysql.com +4 -2
    BUG#4034

ChangeSet
  1.1616.485.1 04/06/07 20:57:28 joreland@mysql.com +2 -0
  BUG#4037 fix printout of limits

  ndb/src/common/mgmcommon/InitConfigFileParser.cpp
    1.5 04/06/07 20:57:17 joreland@mysql.com +1 -1
    BUG#4037 fix printout of limits

  ndb/src/common/mgmcommon/ConfigInfo.cpp
    1.3 04/06/07 20:57:16 joreland@mysql.com +6 -2
    BUG#4037 fix printout of limits

ChangeSet
  1.1616.484.1 04/06/07 17:31:32 tomas@poseidon.ndb.mysql.com +53 -0
  ndb source tree cleanup, see respective file

  ndb/test/src/NdbSchemaOp.cpp
    1.6 04/06/07 17:31:29 tomas@poseidon.ndb.mysql.com +4 -4
    updated include file list

  ndb/test/src/NdbSchemaCon.cpp
    1.4 04/06/07 17:31:29 tomas@poseidon.ndb.mysql.com +19 -16
    moved NdbError NdbSchema

  ndb/test/src/NdbBackup.cpp
    1.6 04/06/07 17:31:29 tomas@poseidon.ndb.mysql.com +8 -4
    fixed bug in testBackup

  ndb/test/src/NDBT_ResultRow.cpp
    1.8 04/06/07 17:31:29 tomas@poseidon.ndb.mysql.com +2 -72
    use common print method for NDBT_ResultRow

  ndb/test/src/Makefile.am
    1.3 04/06/07 17:31:29 tomas@poseidon.ndb.mysql.com +2 -1
    moved NdbSchema to test

  ndb/src/ndbapi/Ndberr.cpp
    1.8 04/06/07 17:31:29 tomas@poseidon.ndb.mysql.com +0 -8
    removed NdbSchema from ndbapi

  ndb/src/ndbapi/NdbRecAttr.cpp
    1.5 04/06/07 17:31:29 tomas@poseidon.ndb.mysql.com +73 -80
    updated operator<< for NdbRecAttr

  ndb/src/ndbapi/NdbDictionary.cpp
    1.5 04/06/07 17:31:29 tomas@poseidon.ndb.mysql.com +76 -0
    added operator << for Column::Type

  ndb/src/ndbapi/Makefile.am
    1.7 04/06/07 17:31:29 tomas@poseidon.ndb.mysql.com +0 -2
    removed NdbSchema from ndbapi

  ndb/src/kernel/blocks/backup/restore/main.cpp
    1.7 04/06/07 17:31:28 tomas@poseidon.ndb.mysql.com +31 -169
    Rewritten restore to remove NdbSchema

  ndb/src/kernel/blocks/backup/restore/Restore.hpp
    1.7 04/06/07 17:31:28 tomas@poseidon.ndb.mysql.com +7 -30
    Rewritten restore to remove NdbSchema

  ndb/src/kernel/blocks/backup/restore/Restore.cpp
    1.8 04/06/07 17:31:28 tomas@poseidon.ndb.mysql.com +44 -190
    Rewritten restore to remove NdbSchema

  ndb/include/ndbapi/NdbRecAttr.hpp
    1.6 04/06/07 17:31:28 tomas@poseidon.ndb.mysql.com +3 -2
    made an operator<< friend to NdbRecAttr

  ndb/include/ndbapi/NdbDictionary.hpp
    1.2 04/06/07 17:31:28 tomas@poseidon.ndb.mysql.com +8 -0
    added Column::getSize()
    and print function for Column::Type

  ndb/include/Makefile.am
    1.3 04/06/07 17:31:28 tomas@poseidon.ndb.mysql.com +0 -2
    removed NdbSchema from ndbapi

ChangeSet
  1.1616.483.1 04/06/07 18:55:53 guilhem@mysql.com +1 -0
  updating test's result now that SHOW BINLOG EVENTS quotes and escapes user variables.

  mysql-test/r/rpl_user_variables.result
    1.5.1.3 04/06/07 18:55:49 guilhem@mysql.com +17 -17
    adding quotes to the variable names, and escaping, in the result

ChangeSet
  1.676.1.765 04/06/07 20:35:05 gluh@gluh.mysql.r18.ru +4 -0
  Fix for bug #4036 multiple SELECT DATE_FORMAT, incorrect results

  sql/field.h
    1.25.1.6 04/06/07 20:34:55 gluh@gluh.mysql.r18.ru +1 -0
    Fix for bug #4036 multiple SELECT DATE_FORMAT, incorrect results

  sql/field.cc
    1.45.1.4 04/06/07 20:34:55 gluh@gluh.mysql.r18.ru +18 -0
    Fix for bug #4036 multiple SELECT DATE_FORMAT, incorrect results

  mysql-test/t/type_date.test
    1.2.1.2 04/06/07 20:34:55 gluh@gluh.mysql.r18.ru +8 -0
    Fix for bug #4036 multiple SELECT DATE_FORMAT, incorrect results

  mysql-test/r/type_date.result
    1.2.1.2 04/06/07 20:34:55 gluh@gluh.mysql.r18.ru +2 -0
    Fix for bug #4036 multiple SELECT DATE_FORMAT, incorrect results

ChangeSet
  1.1616.482.1 04/06/07 17:39:17 gluh@gluh.mysql.r18.ru +3 -0
  Fix for bug#3946: Error in LPAD() when padstring is longer than 1 character

ChangeSet
  1.1616.479.9 04/06/07 18:33:17 bar@bar.intranet.mysql.r18.ru +1 -0
  mysqld.cc:
    WL#1160.
    Adding variable-conformant startup options for --default-character-set and --default-collation

  sql/mysqld.cc
    1.356.51.18 04/06/07 18:31:54 bar@bar.intranet.mysql.r18.ru +8 -2
    WL#1160.
    Adding variable-conformant startup options for --default-character-set and --default-collation

  sql/item_strfunc.cc
    1.176 04/06/07 17:22:19 gluh@gluh.mysql.r18.ru +2 -4
    Fix for bug#3946: Error in LPAD() when padstring is longer than 1 character

  mysql-test/t/ctype_ucs.test
    1.10 04/06/07 17:22:18 gluh@gluh.mysql.r18.ru +10 -0
    Test for bug#3946: Error in LPAD() when padstring is longer than 1 character

  mysql-test/r/ctype_ucs.result
    1.11 04/06/07 17:22:18 gluh@gluh.mysql.r18.ru +9 -0
    Test for bug#3946: Error in LPAD() when padstring is longer than 1 character

ChangeSet
  1.1616.479.8 04/06/07 18:12:23 bar@bar.intranet.mysql.r18.ru +1 -0
  mysqldump.c:
    Dump could fail to load because of --default-character-set command line option.
    More safe dump is now produces, --default-character-set doesn't matter.

  client/mysqldump.c
    1.132 04/06/07 18:11:07 bar@bar.intranet.mysql.r18.ru +8 -2
    Dump could fail to load because of --default-character-set command line option.
    More safe dump is now produces, --default-character-set doesn't matter.

ChangeSet
  1.1616.479.7 04/06/07 17:28:31 bar@bar.intranet.mysql.r18.ru +1 -0
  client.c:
    Bug #3990  	`--with-charset' ./configure's switch doesn'taffect mysql client library.

  sql-common/client.c
    1.46.1.16 04/06/07 17:28:13 bar@bar.intranet.mysql.r18.ru +25 -26
    Bug #3990  	`--with-charset' ./configure's switch doesn'taffect mysql client library.

ChangeSet
  1.1346.633.1 04/06/07 12:38:35 serg@serg.mylan +3 -0
  BUG#3987 - if(int, aggregate(int))

  sql/item_cmpfunc.cc
    1.20.1.42 04/06/07 12:38:32 serg@serg.mylan +2 -2
    BUG#3987 - if(int, aggregate(int))

  mysql-test/t/func_if.test
    1.2.1.2 04/06/07 12:38:32 serg@serg.mylan +9 -0
    BUG#3987 - if(int, aggregate(int))

  mysql-test/r/func_if.result
    1.5.1.2 04/06/07 12:38:32 serg@serg.mylan +6 -0
    BUG#3987 - if(int, aggregate(int))

ChangeSet
  1.1665.8.8 04/06/07 12:08:13 pem@mysql.comhem.se +3 -0
  Post-merge fixes.

  sql/sql_select.cc
    1.246 04/06/07 12:08:10 pem@mysql.com +1 -0
    Post-merge fix provided by Sergey Petrunia.

  sql/opt_range.cc
    1.111.1.6 04/06/07 12:08:10 pem@mysql.com +3 -2
    Post-merge fix provided by Sergey Petrunia.

  mysql-test/r/index_merge.result
    1.7.1.1 04/06/07 12:08:10 pem@mysql.com +1 -0
    Post-merge update of results. (Ok according to Sanja)

  ndb/test/include/NdbSchemaOp.hpp
    1.5 04/06/07 09:57:04 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/include/ndbapi/NdbSchemaOp.hpp -> ndb/test/include/NdbSchemaOp.hpp

  ndb/test/include/NdbSchemaCon.hpp
    1.3 04/06/07 09:57:04 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/include/ndbapi/NdbSchemaCon.hpp -> ndb/test/include/NdbSchemaCon.hpp

  ndb/test/src/NdbSchemaOp.cpp
    1.5 04/06/07 09:56:29 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/src/ndbapi/NdbSchemaOp.cpp -> ndb/test/src/NdbSchemaOp.cpp

  ndb/test/src/NdbSchemaCon.cpp
    1.3 04/06/07 09:56:29 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/src/ndbapi/NdbSchemaCon.cpp -> ndb/test/src/NdbSchemaCon.cpp

ChangeSet
  1.1616.479.5 04/06/07 02:06:33 brian@brian-akers-computer.local +4 -0
  Last patch before push into main tree. Updated from code review and final once over. 
  A couple of small changes to ha_example (mainly comments). 

  sql/examples/ha_example.h
    1.6 04/06/07 02:06:11 brian@brian-akers-computer.local +4 -1
    Added pragma interface. Removed fast_key_read() and Serg's request

  sql/examples/ha_example.cc
    1.6 04/06/07 02:06:10 brian@brian-akers-computer.local +8 -0
    Added a few new comments.

  sql/examples/ha_archive.h
    1.3 04/06/07 02:06:10 brian@brian-akers-computer.local +7 -5
    Removed fast_key_read() and changed the name of a conflicting variable.

  sql/examples/ha_archive.cc
    1.4 04/06/07 02:06:10 brian@brian-akers-computer.local +66 -38
    Changes from Serg.
    A few styles changes, fix for potential hash insert gone wrong, removed bad tables if create fails, gzflush used for flushing by default (had problems with OSX 10.2), and some spelling corrections.

ChangeSet
  1.1616.471.3 04/06/07 12:09:10 sergefp@mysql.com +10 -0
  Post review fixes for "SQL Syntax for Prepared Statements".

  sql/sql_yacc.yy
    1.203.1.123 04/06/07 12:09:06 sergefp@mysql.com +5 -5
    Coding style fixes

  sql/sql_prepare.cc
    1.34.1.71 04/06/07 12:09:06 sergefp@mysql.com +51 -150
    Post-review fixes and code cleanup.

  sql/sql_parse.cc
    1.271.1.85 04/06/07 12:09:06 sergefp@mysql.com +26 -54
    use user_var_entry::val_str in PREPARE stmt FROM @var.

  sql/sql_class.cc
    1.105.1.63 04/06/07 12:09:06 sergefp@mysql.com +1 -1
    Code cleanup

  sql/mysql_priv.h
    1.186.1.104 04/06/07 12:09:06 sergefp@mysql.com +1 -0
    Code cleanup

  sql/item_func.cc
    1.124.1.76 04/06/07 12:09:06 sergefp@mysql.com +7 -7
    Code cleanup

  sql/item.h
    1.56.1.74 04/06/07 12:09:06 sergefp@mysql.com +1 -0
    Moved a chunk of code from sql_prepare.cc to Item_param::set_from_user_var

  sql/item.cc
    1.58.1.85 04/06/07 12:09:06 sergefp@mysql.com +66 -4
    Moved a chunk of code from sql_prepare.cc to Item_param::set_from_user_var

  mysys/my_error.c
    1.16 04/06/07 12:09:06 sergefp@mysql.com +23 -22
    Comments added 

  mysql-test/r/ps.result
    1.6 04/06/07 12:09:06 sergefp@mysql.com +1 -1
    Better error message

ChangeSet
  1.1616.481.1 04/06/07 12:51:18 bar@bar.intranet.mysql.r18.ru +3 -0
  Bug #3928  	regexp [[:>:]] and UTF-8

  strings/ctype-utf8.c
    1.61 04/06/07 12:51:13 bar@bar.intranet.mysql.r18.ru +13 -7
    Bug #3928  	regexp [[:>:]] and UTF-8

  mysql-test/t/ctype_utf8.test
    1.16 04/06/07 12:51:13 bar@bar.intranet.mysql.r18.ru +16 -0
    Bug #3928  	regexp [[:>:]] and UTF-8

  mysql-test/r/ctype_utf8.result
    1.18 04/06/07 12:51:13 bar@bar.intranet.mysql.r18.ru +22 -0
    Bug #3928  	regexp [[:>:]] and UTF-8

ChangeSet
  1.1616.480.3 04/06/07 01:06:17 bell@sanja.is.com.ua +1 -0
  fixed mistyping

  sql/sql_select.cc
    1.216.1.120 04/06/07 01:06:14 bell@sanja.is.com.ua +1 -1
    fixed mistyping

ChangeSet
  1.1616.480.2 04/06/06 02:27:05 konstantin@mysql.com +4 -0
  mysql_stmt_field_count()

  tests/client_test.c
    1.51.1.42 04/06/06 02:27:02 konstantin@mysql.com +1 -0
    mysql_stmt_field_count()

  libmysql/libmysql.def
    1.28 04/06/06 02:27:02 konstantin@mysql.com +1 -0
    declaration for mysql_stmt_field_count()

  libmysql/libmysql.c
    1.156.1.83 04/06/06 02:27:02 konstantin@mysql.com +10 -0
    added mysql_stmt_field_count(): 
    we need this function to ease use of mysql_stmt_result_metadata:
    if mysql_stmt_field_count() != 0 mysql_stmt_result_metadata fails
    only if OOM.

  include/mysql.h
    1.126 04/06/06 02:27:02 konstantin@mysql.com +1 -0
    mysql_stmt_field_count() declaration

ChangeSet
  1.1616.480.1 04/06/06 00:33:16 konstantin@mysql.com +2 -0
  More comments in prepared statements code.

  sql/sql_prepare.cc
    1.34.18.10 04/06/06 00:33:13 konstantin@mysql.com +7 -1
    Commented case with ulonglong length in get_param_length

  libmysql/libmysql.c
    1.156.1.82 04/06/06 00:33:13 konstantin@mysql.com +153 -78
    Extended comments for mysql_stmt_init, mysql_stmt_prepare, 
    mysql_stmt_result_metadata.
    Few bits of code moved around and cleaned up.

ChangeSet
  1.1616.470.5 04/06/05 13:16:29 serg@serg.mylan +2 -0
  one more ndb-isolating fix

  mysql-test/Makefile.am
    1.28 04/06/05 13:16:24 serg@serg.mylan +2 -0
    one more ndb-isolating fix

  acinclude.m4
    1.95.1.7 04/06/05 13:16:24 serg@serg.mylan +1 -0
    one more ndb-isolating fix

ChangeSet
  1.1616.470.4 04/06/05 09:22:11 serg@serg.mylan +1 -0
  do not create ndb Makefiles unless required

  configure.in
    1.201.19.1 04/06/05 09:22:06 serg@serg.mylan +13 -13
    do not create ndb Makefiles unless required

ChangeSet
  1.1616.479.2 04/06/05 03:09:53 konstantin@mysql.com +1 -0
  Few more cleanups in client_test:
  No need for mysql_commit, especially after DDL statements.

  tests/client_test.c
    1.51.1.41 04/06/05 03:09:51 konstantin@mysql.com +13 -264
    No need for mysql_commit, especially after DDL statements.

ChangeSet
  1.1616.479.1 04/06/05 02:56:50 konstantin@mysql.com +1 -0
  The comment is not true any more. 
  Is there a way to sefely use MYSQL_BIND structure without bzero?

  tests/client_test.c
    1.51.1.40 04/06/05 02:56:47 konstantin@mysql.com +0 -6
    The comment is not true any more. 
    Is there a way to sefely use MYSQL_BIND structure without bzero?

ChangeSet
  1.1616.478.1 04/06/04 16:11:47 paul@ice.snake.net +1 -0
  mysql_install_db.sh:
    Correct a grammar error.

  scripts/mysql_install_db.sh
    1.37.1.25 04/06/04 16:10:41 paul@ice.snake.net +1 -1
    Correct a grammar error.

ChangeSet
  1.1616.477.1 04/06/04 21:15:08 serg@serg.mylan +1 -0
  make CHECK killable

  myisam/mi_check.c
    1.105.5.1 04/06/04 21:15:03 serg@serg.mylan +10 -0
    make CHECK killable

ChangeSet
  1.1616.475.4 04/06/04 18:38:18 konstantin@mysql.com +2 -0
  HAVE_DEPRECATED_411_API macro removed.

  tests/client_test.c
    1.51.1.39 04/06/04 18:38:15 konstantin@mysql.com +3374 -3267
    Rewritten to use new API.
    Few cleanups.
    A lot of valgrind warnings/errors removed.

  include/mysql.h
    1.125 04/06/04 18:38:15 konstantin@mysql.com +0 -1
    Removed obsolete define.

  BitKeeper/deleted/.del-Makefile_old~5ce89facf68772b
    1.3 04/06/04 14:22:42 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/test/Makefile_old

  BitKeeper/deleted/.del-Makefile~d46bb4a49ae611f9
    1.3 04/06/04 14:22:32 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/test/odbc/Makefile

  BitKeeper/deleted/.del-Makefile~261cfb7897aa2259
    1.2 04/06/04 14:22:27 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/test/newtonapi/Makefile

  BitKeeper/deleted/.del-Makefile~71ad5c694da8711
    1.7 04/06/04 14:21:47 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/src/old_files/Makefile

  BitKeeper/deleted/.del-config.h.in~b9209994763e30f8
    1.3 04/06/04 14:21:22 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/config.h.in

  BitKeeper/deleted/.del-configure.in~3e0ef32c155b79bc
    1.3 04/06/04 14:21:21 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/configure.in

  BitKeeper/deleted/.del-Makefile.am~c28d15539f926269
    1.4 04/06/04 14:21:21 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/Makefile.am

  BitKeeper/deleted/.del-GuessConfig.sh~ebdb504ed6b7ab68
    1.8 04/06/04 14:21:21 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/GuessConfig.sh

  BitKeeper/deleted/.del-Defs.TRU64X.ALPHA.GCC.mk~6ba3fc0cfaa37cb2
    1.3 04/06/04 14:21:21 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/Defs.TRU64X.ALPHA.GCC.mk

  BitKeeper/deleted/.del-Defs.SOLARIS6.SPARC.GCC.mk~2b05903f79ce771
    1.3 04/06/04 14:21:21 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/Defs.SOLARIS6.SPARC.GCC.mk

  BitKeeper/deleted/.del-Defs.SOLARIS.SPARC_64.GCC.mk~76626f56dcd0e8e9
    1.3 04/06/04 14:21:21 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/Defs.SOLARIS.SPARC_64.GCC.mk

  BitKeeper/deleted/.del-Defs.SOLARIS.SPARC.GCC.mk~d781a20b8235525c
    1.3 04/06/04 14:21:21 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/Defs.SOLARIS.SPARC.GCC.mk

  BitKeeper/deleted/.del-Defs.SOLARIS.SPARC.FORTE6.mk~4367e18b8246761e
    1.3 04/06/04 14:21:21 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/Defs.SOLARIS.SPARC.FORTE6.mk

  BitKeeper/deleted/.del-Defs.SOFTOSE.SPARC.GCC.mk~ebd0c4aab56c1202
    1.3 04/06/04 14:21:21 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/Defs.SOFTOSE.SPARC.GCC.mk

  BitKeeper/deleted/.del-Defs.WIN32.x86.VC7.mk~582038c28dd89391
    1.3 04/06/04 14:21:20 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/Defs.WIN32.x86.VC7.mk

  BitKeeper/deleted/.del-Defs.SIMCELLO.SOFTOSE.GCC.mk~5acee8046e3dfd21
    1.3 04/06/04 14:21:20 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/Defs.SIMCELLO.SOFTOSE.GCC.mk

  BitKeeper/deleted/.del-Defs.RELEASE_TRACE.mk~e367d147bd3ad0bf
    1.3 04/06/04 14:21:20 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/Defs.RELEASE_TRACE.mk

  BitKeeper/deleted/.del-Defs.RELEASE.mk~6c195617d8e1c8ec
    1.3 04/06/04 14:21:20 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/Defs.RELEASE.mk

  BitKeeper/deleted/.del-Defs.OSE.PPC750.DIAB.mk~d5d7116c512290bc
    1.3 04/06/04 14:21:20 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/Defs.OSE.PPC750.DIAB.mk

  BitKeeper/deleted/.del-Defs.MACOSX.POWERPC.GCC.mk~d661574b758ac911
    1.3 04/06/04 14:21:20 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/Defs.MACOSX.POWERPC.GCC.mk

  BitKeeper/deleted/.del-Defs.LINUX.x86_64.GCC.mk~9e853e7e1142b2d7
    1.3 04/06/04 14:21:20 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/Defs.LINUX.x86_64.GCC.mk

  BitKeeper/deleted/.del-Defs.LINUX.x86.ICC.mk~e51a6e19daeb353
    1.3 04/06/04 14:21:20 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/Defs.LINUX.x86.ICC.mk

  BitKeeper/deleted/.del-Defs.LINUX.x86.GCC.mk~15f3c82665d141a0
    1.6 04/06/04 14:21:20 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/Defs.LINUX.x86.GCC.mk

  BitKeeper/deleted/.del-Defs.IBMAIX.POWERPC.GCC.mk~76bea6928ca7b8f0
    1.3 04/06/04 14:21:20 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/Defs.IBMAIX.POWERPC.GCC.mk

  BitKeeper/deleted/.del-Defs.HPUX.HPPA.GCC.mk~b50ab324c3ce07ce
    1.3 04/06/04 14:21:20 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/Defs.HPUX.HPPA.GCC.mk

  BitKeeper/deleted/.del-acinclude.m4~b1472f9faac0c71
    1.3 04/06/04 14:21:19 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/acinclude.m4

  BitKeeper/deleted/.del-Defs.DEBUG.mk~8ed7bb195181c74a
    1.3 04/06/04 14:21:19 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/config/old_files/Defs.DEBUG.mk

  BitKeeper/deleted/.del-mysqlclusterenv.sh~f0d8a63e844255f5
    1.3 04/06/04 14:21:05 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/old_files/mysqlclusterenv.sh

  BitKeeper/deleted/.del-env.sh~91075f1664ce8292
    1.3 04/06/04 14:21:05 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/old_files/env.sh

  BitKeeper/deleted/.del-README~b619a580720ec3d8
    1.3 04/06/04 14:21:05 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/old_files/README

  BitKeeper/deleted/.del-Epilogue.mk~60f7edf886726154
    1.9 04/06/04 14:21:05 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/old_files/Epilogue.mk

  BitKeeper/deleted/.del-configure~501239931f8bb1
    1.4 04/06/04 14:21:04 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/old_files/configure

  BitKeeper/deleted/.del-SrcDist.sh~ad4f1cd7aae4265b
    1.4 04/06/04 14:21:04 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/old_files/SrcDist.sh

  BitKeeper/deleted/.del-Makefile~726e96331d4343ce
    1.7 04/06/04 14:21:04 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/old_files/Makefile

  BitKeeper/deleted/.del-Defs.mk~fab44ad996ed5499
    1.7 04/06/04 14:21:04 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/old_files/Defs.mk

  BitKeeper/deleted/.del-BinDist.sh~8ea6fee0be3de36
    1.5 04/06/04 14:21:04 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/old_files/BinDist.sh

ChangeSet
  1.1616.1.279 04/06/04 14:17:58 tomas@mc05.(none) +4 -0
  moved ndb versioning to configure and fixed ndb docs make

ChangeSet
  1.1616.476.1 04/06/04 14:08:16 tomas@poseidon.ndb.mysql.com +392 -0
  automake ndb docs make

  ndb/docs/Makefile.am
    1.4 04/06/04 14:16:06 tomas@mc05.(none) +18 -6
    moved ndb versioning to configure and fixed ndb docs make

  configure.in
    1.201.1.66 04/06/04 14:16:06 tomas@mc05.(none) +22 -0
    moved ndb versioning to configure and fixed ndb docs make

  ndb/docs/doxygen/predoxy.pl
    1.2 04/06/04 14:08:11 tomas@poseidon.ndb.mysql.com +0 -1
    changed start of perl

  ndb/docs/doxygen/postdoxy.pl
    1.2 04/06/04 14:08:11 tomas@poseidon.ndb.mysql.com +0 -1
    changed start of perl

  ndb/docs/Makefile.am
    1.3 04/06/04 14:08:11 tomas@poseidon.ndb.mysql.com +40 -48
    automake docs make

  configure.in
    1.201.1.65 04/06/04 14:08:11 tomas@poseidon.ndb.mysql.com +4 -0
    added search for doxygen

  ndb/include/ndb_version.h
    1.6 04/06/04 14:16:06 tomas@mc05.(none) +1 -9
    moved ndb versioning to configure and fixed ndb docs make

  acconfig.h
    1.37.1.3 04/06/04 14:16:06 tomas@mc05.(none) +6 -0
    moved ndb versioning to configure and fixed ndb docs make

  ndb/docs/Makefile.am
    1.2 04/06/04 11:40:56 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/docs/Makefile -> ndb/docs/Makefile.am

  ndb/src/old_files/client/odbc/handles/handles.hpp
    1.2 04/06/04 11:38:43 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/PoolNdb.hpp
    1.3 04/06/04 11:38:43 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/PoolNdb.cpp
    1.3 04/06/04 11:38:43 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/Makefile
    1.2 04/06/04 11:38:43 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/InfoTab.cpp
    1.2 04/06/04 11:38:43 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/HandleStmt.hpp
    1.2 04/06/04 11:38:43 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/HandleStmt.cpp
    1.2 04/06/04 11:38:43 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/HandleRoot.hpp
    1.2 04/06/04 11:38:43 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/HandleRoot.cpp
    1.3 04/06/04 11:38:43 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/HandleEnv.hpp
    1.2 04/06/04 11:38:43 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/HandleEnv.cpp
    1.2 04/06/04 11:38:43 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/HandleDesc.hpp
    1.2 04/06/04 11:38:43 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/HandleDesc.cpp
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/HandleDbc.hpp
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/HandleDbc.cpp
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/HandleBase.hpp
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/HandleBase.cpp
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/FuncTab.cpp
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/DescSpec.cpp
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/AttrStmt.cpp
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/AttrRoot.cpp
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/AttrEnv.cpp
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/handles/AttrDbc.cpp
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Makefile
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Executor.hpp
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Executor.cpp
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_update_scan.cpp
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_update_lookup.cpp
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_update_index.cpp
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_query_sys.cpp
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_query_scan.cpp
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_query_range.cpp
    1.2 04/06/04 11:38:42 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_query_lookup.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_query_index.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_pred_op.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_insert.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_expr_op.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_expr_func.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_expr_conv.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_drop_table.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_drop_index.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_delete_scan.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_delete_lookup.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_delete_index.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_create_table.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_create_index.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/executor/Exec_comp_op.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/driver.hpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/driver.cpp
    1.3 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLTransact.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLTables.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLTablePrivileges.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLStatistics.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLSpecialColumns.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLSetStmtOption.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLSetStmtAttr.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLSetScrollOptions.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLSetPos.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLSetParam.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLSetEnvAttr.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLSetDescRec.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLSetDescField.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLSetCursorName.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLSetConnectOption.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLSetConnectAttr.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLRowCount.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLPutData.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLProcedures.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLProcedureColumns.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLPrimaryKeys.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLPrepare.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLParamOptions.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLParamData.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLNumResultCols.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLNumParams.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLNativeSql.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLMoreResults.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLGetTypeInfo.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLGetStmtOption.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLGetStmtAttr.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLGetInfo.cpp
    1.2 04/06/04 11:38:41 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLGetFunctions.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLGetEnvAttr.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLGetDiagRec.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLGetDiagField.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLGetDescRec.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLGetDescField.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLGetData.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLGetCursorName.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLGetConnectOption.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLGetConnectAttr.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLFreeStmt.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLFreeHandle.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLFreeEnv.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLFreeConnect.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLForeignKeys.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLFetchScroll.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLFetch.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLExtendedFetch.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLExecute.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLExecDirect.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLError.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLEndTran.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLDrivers.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLDriverConnect.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLDisconnect.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLDescribeParam.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLDescribeCol.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLDataSources.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLCopyDesc.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLConnect.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLColumns.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLColumnPrivileges.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLColAttributes.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLColAttribute.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLCloseCursor.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLCancel.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLBulkOperations.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLBrowseConnect.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLBindParameter.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLBindParam.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLBindCol.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLAllocStmt.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLAllocHandleStd.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLAllocHandle.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLAllocEnv.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/SQLAllocConnect.cpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/Makefile
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/Func.pl
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/driver/Func.data
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/docs/type.txt
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/docs/systables.pl
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/docs/select.fig
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/docs/ndbodbc.html
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/docs/main.hpp
    1.2 04/06/04 11:38:40 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/docs/handleattr.pl
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/docs/gettypeinfo.pl
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/docs/getinfo.pl
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/docs/diag.txt
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/docs/descfield.pl
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/docs/class.fig
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/dictionary/Makefile
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/dictionary/DictTable.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/dictionary/DictTable.cpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/dictionary/DictSys.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/dictionary/DictSys.cpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/dictionary/DictSchema.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/dictionary/DictSchema.cpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/dictionary/DictIndex.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/dictionary/DictIndex.cpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/dictionary/DictColumn.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/dictionary/DictColumn.cpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/dictionary/DictCatalog.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/dictionary/DictCatalog.cpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/common.hpp
    1.4 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/common.cpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/StmtInfo.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/StmtInfo.cpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/StmtArea.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/StmtArea.cpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/Sqlstate.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/Sqlstate.cpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/ResultArea.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/ResultArea.cpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/OdbcData.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/OdbcData.cpp
    1.5 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/Makefile
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/DiagArea.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/DiagArea.cpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/DescArea.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/DescArea.cpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/DataType.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/DataType.cpp
    1.4 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/DataRow.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/DataRow.cpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/DataField.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/DataField.cpp
    1.5 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/Ctx.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/Ctx.cpp
    1.5 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/ConnArea.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/ConnArea.cpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/CodeTree.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/CodeTree.cpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/AttrArea.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/common/AttrArea.cpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/SimpleScan.lpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/SimpleParser.hpp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/SimpleParser.cpp
    1.3 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/SimpleGram.ypp
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Makefile
    1.2 04/06/04 11:38:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_update_scan.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_update_scan.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_update_lookup.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_update_lookup.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_update_index.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_update_index.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_update.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_update.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_table_list.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_table_list.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_table.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_table.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_stmt.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_stmt.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_set_row.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_set_row.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_select.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_select.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_root.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_root.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_sys.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_sys.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_sort.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_sort.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_scan.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_scan.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_repeat.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_repeat.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_range.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_range.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_project.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_project.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_lookup.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_lookup.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_join.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_join.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_index.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_index.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_group.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_group.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_filter.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_filter.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_distinct.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_distinct.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_count.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query_count.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_query.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_pred_op.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_pred_op.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_pred.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_pred.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_insert.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_insert.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_idx_column.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_idx_column.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_expr_row.hpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_expr_row.cpp
    1.2 04/06/04 11:38:38 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_expr_param.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_expr_param.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_expr_op.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_expr_op.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_expr_func.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_expr_func.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_expr_conv.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_expr_conv.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_expr_const.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_expr_const.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_expr_column.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_expr_column.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_expr.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_expr.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_drop_table.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_drop_table.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_drop_index.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_drop_index.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_dml_row.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_dml_row.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_dml_column.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_dml_column.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_dml.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_dml.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_delete_scan.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_delete_scan.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_delete_lookup.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_delete_lookup.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_delete_index.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_delete_index.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_delete.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_delete.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_ddl_row.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_ddl_row.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_ddl_constr.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_ddl_constr.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_ddl_column.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_ddl_column.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_ddl.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_ddl.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_data_type.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_data_type.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_create_table.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_create_table.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_create_row.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_create_row.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_create_index.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_create_index.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_comp_op.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_comp_op.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_column.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_column.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_base.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/Code_base.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/CodeGen.hpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/codegen/CodeGen.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/NdbOdbc.def
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/NdbOdbc.cpp
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/Makefile
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/odbc/Extra.mk
    1.2 04/06/04 11:38:37 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/client/Makefile
    1.2 04/06/04 11:38:36 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/transfer/TransSSSubscriptions.cpp
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/transfer/TransSS.hpp
    1.5 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/transfer/TransSS.cpp
    1.6 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/transfer/TransPS.hpp
    1.5 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/transfer/TransPS.cpp
    1.6 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/transfer/Makefile
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/storage/NodeGroupInfo.hpp
    1.4 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/storage/NodeGroupInfo.cpp
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/storage/NodeGroup.hpp
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/storage/NodeGroup.cpp
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/storage/NodeConnectInfo.hpp
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/storage/Makefile
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/storage/LogRecord.hpp
    1.4 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/storage/GCIPage.hpp
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/storage/GCIPage.cpp
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/storage/GCIContainerPS.hpp
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/storage/GCIContainerPS.cpp
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/storage/GCIContainer.hpp
    1.5 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/storage/GCIContainer.cpp
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/storage/GCIBuffer.hpp
    1.4 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/storage/GCIBuffer.cpp
    1.5 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/state/testRepState/testRequestor.hpp
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/state/testRepState/testRequestor.cpp
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/state/testRepState/Makefile
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/state/testInterval/testInterval.cpp
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/state/testInterval/Makefile
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/state/RepStateRequests.cpp
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/state/RepStateEvent.cpp
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/state/RepState.hpp
    1.3 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/state/RepState.cpp
    1.3 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/state/Makefile
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/state/Interval.hpp
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/state/Interval.cpp
    1.4 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/state/Channel.hpp
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/state/Channel.cpp
    1.3 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/repapi/repapi.h
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/repapi/repapi.cpp
    1.4 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/repapi/Makefile
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/adapters/TableInfoPs.hpp
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/adapters/Makefile
    1.2 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/adapters/ExtNDB.hpp
    1.5 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/adapters/ExtNDB.cpp
    1.6 04/06/04 11:38:24 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/rep_version.hpp
    1.5 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/dbug_hack.cpp
    1.5 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/adapters/ExtAPI.hpp
    1.2 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/adapters/ExtAPI.cpp
    1.2 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/adapters/AppNDB.hpp
    1.4 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/adapters/AppNDB.cpp
    1.3 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/TODO
    1.2 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/SignalQueue.hpp
    1.3 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/SignalQueue.cpp
    1.2 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/RequestorSubscriptions.cpp
    1.2 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/Requestor.hpp
    1.4 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/Requestor.cpp
    1.4 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/RepMain.cpp
    1.5 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/RepComponents.hpp
    1.4 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/RepComponents.cpp
    1.2 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/RepCommandInterpreter.hpp
    1.2 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/RepCommandInterpreter.cpp
    1.2 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/RepApiService.hpp
    1.2 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/RepApiService.cpp
    1.4 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/RepApiInterpreter.hpp
    1.2 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/RepApiInterpreter.cpp
    1.2 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/README
    1.2 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/NodeConnectInfo.hpp
    1.2 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/Makefile
    1.3 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/ExtSender.hpp
    1.2 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/rep/ExtSender.cpp
    1.2 04/06/04 11:38:23 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/newtonapi/dba_schema.cpp
    1.3 04/06/04 11:38:09 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/newtonapi/dba_process.hpp
    1.2 04/06/04 11:38:09 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/newtonapi/dba_process.cpp
    1.2 04/06/04 11:38:09 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/newtonapi/dba_internal.hpp
    1.4 04/06/04 11:38:09 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/newtonapi/dba_init.cpp
    1.2 04/06/04 11:38:09 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/newtonapi/dba_error.cpp
    1.4 04/06/04 11:38:09 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/newtonapi/dba_dac.cpp
    1.2 04/06/04 11:38:09 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/newtonapi/dba_config.cpp
    1.2 04/06/04 11:38:09 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/newtonapi/dba_bulkread.cpp
    1.2 04/06/04 11:38:09 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/newtonapi/dba_binding.cpp
    1.3 04/06/04 11:38:09 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/old_files/newtonapi/Makefile
    1.2 04/06/04 11:38:09 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

ChangeSet
  1.1616.1.277 04/06/04 08:33:43 tomas@mc05.(none) +1 -0
  fixed bug in ndb_waiter

ChangeSet
  1.1616.1.276 04/06/04 08:24:42 tomas@poseidon.bredbandsbolaget.se +4 -0
  added operator<< for NdbRecAttr and removed attrtype from Event impl

  ndb/src/ndbapi/NdbRecAttr.cpp
    1.4 04/06/04 08:24:38 tomas@poseidon.bredbandsbolaget.se +87 -1
    added operator<<

  ndb/src/ndbapi/NdbEventOperationImpl.hpp
    1.2 04/06/04 08:24:37 tomas@poseidon.bredbandsbolaget.se +0 -1
    removed print methid for ndbRecAttr in Event Impl

  ndb/src/ndbapi/NdbEventOperationImpl.cpp
    1.5 04/06/04 08:24:37 tomas@poseidon.bredbandsbolaget.se +1 -59
    removed print methid for ndbRecAttr in Event Impl

  ndb/include/ndbapi/NdbRecAttr.hpp
    1.5 04/06/04 08:24:37 tomas@poseidon.bredbandsbolaget.se +2 -0
    operator << for NdbRecAttr

ChangeSet
  1.1616.475.3 04/06/04 11:02:35 monty@mysql.com +2 -0
  Portability fixes (and a typo after last merge)

  sql/sql_class.h
    1.146.34.13 04/06/04 11:02:33 monty@mysql.com +1 -1
    Portability fix

  innobase/os/os0file.c
    1.79 04/06/04 11:02:33 monty@mysql.com +1 -1
    Fixed typo

  ndb/tools/waiter.cpp
    1.4 04/06/04 08:32:28 tomas@mc05.(none) +45 -10
    fixed bug in ndb_waiter

ChangeSet
  1.1616.475.2 04/06/04 09:07:46 bar@bar.intranet.mysql.r18.ru +1 -0
  charset.c:
    Typo fix.
    Thanks Vladimir Kolpakov who noticed it.

  mysys/charset.c
    1.121 04/06/04 09:07:05 bar@bar.intranet.mysql.r18.ru +1 -1
    Typo fix.
    Thanks Vladimir Kolpakov who noticed it.

ChangeSet
  1.1616.474.1 04/06/03 23:17:18 guilhem@mysql.com +18 -0
  Implementation of WL#1824 "Add replication of character set variables in 4.1",
  by binlogging some SET ONE_SHOT CHARACTER_SETetc,
  which will be enough until we have it more compact and more complete in 5.0. With the present patch,
  replication will work ok between 4.1.3 master and slaves, as long as:
  - master and slave have the same GLOBAL.COLLATION_SERVER
  - COLLATION_DATABASE and CHARACTER_SET_DATABASE are not used
  - application does not use the fact that table is created with charset of the USEd db (BUG#2326).
  all of which are not too hard to fulfill. 
  ONE_SHOT is reserved for internal use of mysqlbinlog|mysql and works only for charsets,
  so we give error if used for non-charset vars.
  Fix for BUG#3875 "mysqlbinlog produces wrong ouput  if query uses
   variables containing quotes" and BUG#3943 "Queries with non-ASCII literals are not replicated
   properly after SET NAMES".
  Detecting that master and slave have different global charsets or server ids.

  mysql-test/t/rpl_charset.test
    1.1 04/06/03 23:17:13 guilhem@mysql.com +153 -0

  mysql-test/t/rpl_charset.test
    1.0 04/06/03 23:17:13 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1/mysql-test/t/rpl_charset.test

  mysql-test/r/rpl_charset.result
    1.1 04/06/03 23:17:12 guilhem@mysql.com +199 -0

  sql/sql_yacc.yy
    1.203.107.1 04/06/03 23:17:12 guilhem@mysql.com +4 -0
    ONE_SHOT keyword in SET

  sql/sql_parse.cc
    1.271.75.1 04/06/03 23:17:12 guilhem@mysql.com +41 -1
    when SET ONE_SHOT is used, verify that it's only used for charset/collation vars;
    otherwise refuse.

  sql/sql_lex.h
    1.102.34.10 04/06/03 23:17:12 guilhem@mysql.com +1 -1
    one_shot

  sql/sql_class.h
    1.146.37.1 04/06/03 23:17:12 guilhem@mysql.com +1 -1
    one_shot

  mysql-test/r/rpl_charset.result
    1.0 04/06/03 23:17:12 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.1/mysql-test/r/rpl_charset.result

  sql/sql_class.cc
    1.105.21.1 04/06/03 23:17:11 guilhem@mysql.com +1 -0
    one_shot

  sql/slave.cc
    1.188.14.1 04/06/03 23:17:11 guilhem@mysql.com +63 -26
    when I/O slave thread starts, verify that master's and slave charsets match.
    And by the way verify that server ids are different.
    Don't fail if UNIX_TIMESTAMP() can't be done on master (very old master), that's
    not fatal.

  sql/set_var.h
    1.51 04/06/03 23:17:11 guilhem@mysql.com +47 -9
    no_support_one_shot to know if the var supports ONE_SHOT (only charset vars do, soon timezones).
    Accept int arg in SET CHARACTER_SET_etc

  sql/set_var.cc
    1.34.44.1 04/06/03 23:17:11 guilhem@mysql.com +103 -20
    understand SET CHARACTER_SET_CLIENT=10 (don't require a string, accept a number).
    Refuse changing of GLOBAL CHARACTER_SET_SERVER/COLLATION_SERVER if binlog or slave,
    as it will make the master or slave make wrong assumptions.
    A function to catch SET ONE_SHOT on non-charset variables (which is forbidden)

  sql/log_event.cc
    1.113.1.43 04/06/03 23:17:11 guilhem@mysql.com +55 -16
    print charset and collation of user var in mysqlbinlog and SHOW BINLOG EVENTS.
    escape the content of the var. Backquote its name.
    Will ask Bar to check that using my_charset_bin for escaping is ok.

  sql/log.cc
    1.108.1.25 04/06/03 23:17:11 guilhem@mysql.com +34 -0
    when writing to the binlog, before writing the actual statement, write some SET ONE_SHOT CHARACTER_SET_CLIENT etc
    for the slave to know the charset variables (which are important as they affect the inserted data).

  sql/lex.h
    1.82.22.2 04/06/03 23:17:10 guilhem@mysql.com +1 -0
    new keyword ONE_SHOT

  mysql-test/t/user_var.test
    1.13 04/06/03 23:17:10 guilhem@mysql.com +21 -0
    testing if the content of user vars is escaped when mysqlbinlog prints them,
    and if the name is backquoted.

  mysql-test/t/rpl_server_id1.test
    1.4 04/06/03 23:17:10 guilhem@mysql.com +5 -3
    no need to select as slave is not running

  mysql-test/r/user_var.result
    1.16 04/06/03 23:17:10 guilhem@mysql.com +33 -0
    result update

ChangeSet
  1.1616.472.1 04/06/03 18:25:46 tomas@poseidon.ndb.mysql.com +56 -0
  ndb make updates

  ndb/tools/waiter.cpp
    1.3 04/06/03 18:25:42 tomas@poseidon.ndb.mysql.com +213 -5
    ndb make updates

  ndb/tools/select_count.cpp
    1.5 04/06/03 18:25:42 tomas@poseidon.ndb.mysql.com +112 -3
    ndb make updates

  ndb/tools/delete_all.cpp
    1.5 04/06/03 18:25:42 tomas@poseidon.ndb.mysql.com +103 -15
    ndb make updates

  ndb/tools/Makefile.am
    1.7 04/06/03 18:25:42 tomas@poseidon.ndb.mysql.com +10 -8
    ndb make updates

  ndb/test/Makefile.am
    1.4 04/06/03 18:25:42 tomas@poseidon.ndb.mysql.com +1 -2
    ndb make updates

  ndb/src/kernel/Makefile.am
    1.3.1.1 04/06/03 18:25:42 tomas@poseidon.ndb.mysql.com +1 -1
    ndb make updates

  ndb/src/common/portlib/Makefile.am
    1.2.1.1 04/06/03 18:25:42 tomas@poseidon.ndb.mysql.com +18 -2
    ndb make updates

  ndb/src/common/Makefile.am
    1.2 04/06/03 18:25:42 tomas@poseidon.ndb.mysql.com +1 -1
    ndb make updates

  ndb/src/Makefile.am
    1.7.1.1 04/06/03 18:25:42 tomas@poseidon.ndb.mysql.com +1 -1
    ndb make updates

  ndb/config/type_ndbapitools.mk.am
    1.3.1.1 04/06/03 18:25:42 tomas@poseidon.ndb.mysql.com +1 -2
    ndb make updates

  configure.in
    1.201.1.64 04/06/03 18:25:42 tomas@poseidon.ndb.mysql.com +2 -2
    ndb make updates

  ndb/src/common/portlib/old_dirs/test/Makefile
    1.2 04/06/03 18:08:30 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/NdbPortLibTest.cpp
    1.4 04/06/03 18:08:14 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/src/common/portlib/test/NdbPortLibTest.cpp -> ndb/src/common/portlib/NdbPortLibTest.cpp

  ndb/src/common/portlib/old_dirs/memtest/munmaptest/Makefile
    1.2 04/06/03 18:07:59 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/memtest/Makefile
    1.2 04/06/03 18:07:59 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/mmstest.cpp
    1.4 04/06/03 18:07:43 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/src/common/portlib/mmstest/mmstest.cpp -> ndb/src/common/portlib/mmstest.cpp

  ndb/src/common/portlib/mmslist.cpp
    1.4 04/06/03 18:07:39 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/src/common/portlib/mmstest/mmslist.cpp -> ndb/src/common/portlib/mmslist.cpp

  ndb/src/common/portlib/munmaptest.cpp
    1.5 04/06/03 18:07:25 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/src/common/portlib/memtest/munmaptest/munmaptest.cpp -> ndb/src/common/portlib/munmaptest.cpp

  ndb/src/common/portlib/memtest.c
    1.5 04/06/03 18:07:15 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/src/common/portlib/memtest/memtest.c -> ndb/src/common/portlib/memtest.c

  ndb/src/common/portlib/old_dirs/ose/NdbTick.c
    1.2 04/06/03 18:06:51 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/ose/NdbThread.c
    1.4 04/06/03 18:06:51 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/ose/NdbTCP.c
    1.2 04/06/03 18:06:51 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/ose/NdbSleep.c
    1.2 04/06/03 18:06:51 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/ose/NdbOut.cpp
    1.4 04/06/03 18:06:51 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/ose/NdbMutex.c
    1.4 04/06/03 18:06:51 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/ose/NdbMem_SoftOse.cpp
    1.2 04/06/03 18:06:51 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/ose/NdbMem.c
    1.4 04/06/03 18:06:51 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/ose/NdbHost.c
    1.2 04/06/03 18:06:51 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/ose/NdbEnv.c
    1.2 04/06/03 18:06:51 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/ose/NdbConditionOSE.h
    1.2 04/06/03 18:06:51 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/ose/NdbCondition.c
    1.4 04/06/03 18:06:51 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/ose/Makefile
    1.2 04/06/03 18:06:51 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/win32/NdbTick.c
    1.2 04/06/03 18:06:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/win32/NdbThread.c
    1.4 04/06/03 18:06:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/win32/NdbTCP.c
    1.2 04/06/03 18:06:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/win32/NdbSleep.c
    1.2 04/06/03 18:06:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/win32/NdbMutex.c
    1.4 04/06/03 18:06:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/win32/NdbMem.c
    1.4 04/06/03 18:06:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/win32/NdbHost.c
    1.2 04/06/03 18:06:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/win32/NdbEnv.c
    1.2 04/06/03 18:06:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/win32/NdbDaemon.c
    1.3 04/06/03 18:06:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/win32/NdbCondition.c
    1.4 04/06/03 18:06:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/win32/Makefile
    1.2 04/06/03 18:06:39 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  ndb/src/common/portlib/old_dirs/unix/Makefile_old
    1.3 04/06/03 18:06:26 tomas@poseidon.ndb.mysql.com +0 -0
    mvdir

  BitKeeper/deleted/.del-Makefile.am~4d9c81a4353f3ee8
    1.2 04/06/03 18:05:10 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/src/common/portlib/unix/Makefile.am

  ndb/Makefile.am
    1.5.1.1 04/06/03 17:59:04 tomas@poseidon.ndb.mysql.com +2 -1

  ndb/src/common/portlib/NdbTick.c
    1.5 04/06/03 17:57:29 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/src/common/portlib/unix/NdbTick.c -> ndb/src/common/portlib/NdbTick.c

  ndb/src/common/portlib/NdbThread.c
    1.9 04/06/03 17:57:29 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/src/common/portlib/unix/NdbThread.c -> ndb/src/common/portlib/NdbThread.c

  ndb/src/common/portlib/NdbTCP.c
    1.3 04/06/03 17:57:28 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/src/common/portlib/unix/NdbTCP.c -> ndb/src/common/portlib/NdbTCP.c

  ndb/src/common/portlib/NdbSleep.c
    1.4 04/06/03 17:57:28 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/src/common/portlib/unix/NdbSleep.c -> ndb/src/common/portlib/NdbSleep.c

  ndb/src/common/portlib/NdbMutex.c
    1.4 04/06/03 17:57:28 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/src/common/portlib/unix/NdbMutex.c -> ndb/src/common/portlib/NdbMutex.c

  ndb/src/common/portlib/NdbMem.c
    1.9 04/06/03 17:57:28 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/src/common/portlib/unix/NdbMem.c -> ndb/src/common/portlib/NdbMem.c

  ndb/src/common/portlib/NdbHost.c
    1.3 04/06/03 17:57:28 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/src/common/portlib/unix/NdbHost.c -> ndb/src/common/portlib/NdbHost.c

  ndb/src/common/portlib/NdbEnv.c
    1.4 04/06/03 17:57:28 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/src/common/portlib/unix/NdbEnv.c -> ndb/src/common/portlib/NdbEnv.c

  ndb/src/common/portlib/NdbDaemon.c
    1.8 04/06/03 17:57:27 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/src/common/portlib/unix/NdbDaemon.c -> ndb/src/common/portlib/NdbDaemon.c

  ndb/src/common/portlib/NdbCondition.c
    1.6 04/06/03 17:57:27 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: ndb/src/common/portlib/unix/NdbCondition.c -> ndb/src/common/portlib/NdbCondition.c

ChangeSet
  1.1665.8.7 04/06/03 19:36:36 pem@mysql.comhem.se +4 -0
  Post-merge fixes.
  Not finished, will not be pushed until additional fixes have been made.

  sql/sql_select.cc
    1.245 04/06/03 19:36:32 pem@mysql.com +3 -3
    Post-merge fixes.

  sql/opt_range.cc
    1.111.1.5 04/06/03 19:36:32 pem@mysql.com +2 -1
    Post-merge fixes.

  mysql-test/r/func_time.result
    1.32 04/06/03 19:36:32 pem@mysql.com +1 -1
    Post-merge fixes.

  client/mysqlbinlog.cc
    1.91 04/06/03 19:36:32 pem@mysql.com +24 -0
    Post-merge fixes.

  mysql-test/r/rpl_user_variables.result
    1.5.1.2 04/06/03 19:04:16 guilhem@mysql.com +6 -6
    result update (as we now print charset of user var).

  mysql-test/r/rpl_server_id1.result
    1.3.1.1 04/06/03 19:04:16 guilhem@mysql.com +1 -4
    it's normal to not run as I have added a test to compare server ids of master and slave
    at startup and stop if equal (unless --replicate-same-server-id)

ChangeSet
  1.1616.470.1 04/06/03 11:52:54 paul@kite-hub.kitebird.com +28 -0
  Fix skipp -> skip once and for all.
  (Note: This affects only comments, not variable names.)

  strings/ctype-tis620.c
    1.68 04/06/03 11:52:40 paul@kite-hub.kitebird.com +1 -1
    Fix skipp -> skip once and for all.

  strings/ctype-gbk.c
    1.55 04/06/03 11:52:40 paul@kite-hub.kitebird.com +1 -1
    Fix skipp -> skip once and for all.

  strings/ctype-big5.c
    1.57 04/06/03 11:52:40 paul@kite-hub.kitebird.com +1 -1
    Fix skipp -> skip once and for all.

  sql/time.cc
    1.45 04/06/03 11:52:40 paul@kite-hub.kitebird.com +1 -1
    Fix skipp -> skip once and for all.

  sql/sql_yacc.yy
    1.203.103.14 04/06/03 11:52:40 paul@kite-hub.kitebird.com +1 -1
    Fix skipp -> skip once and for all.

  scripts/mysql_find_rows.sh
    1.7 04/06/03 11:52:40 paul@kite-hub.kitebird.com +1 -1
    Fix skipp -> skip once and for all.

  mysys/my_getwd.c
    1.11 04/06/03 11:52:40 paul@kite-hub.kitebird.com +1 -1
    Fix skipp -> skip once and for all.

  mysys/my_error.c
    1.13.1.2 04/06/03 11:52:40 paul@kite-hub.kitebird.com +2 -2
    Fix skipp -> skip once and for all.

  mysys/mf_wfile.c
    1.9 04/06/03 11:52:40 paul@kite-hub.kitebird.com +1 -1
    Fix skipp -> skip once and for all.

  mysys/mf_soundex.c
    1.9 04/06/03 11:52:40 paul@kite-hub.kitebird.com +2 -2
    Fix skipp -> skip once and for all.

  mysys/mf_pack.c
    1.18 04/06/03 11:52:40 paul@kite-hub.kitebird.com +6 -6
    Fix skipp -> skip once and for all.

  mysys/mf_iocache2.c
    1.23.1.1 04/06/03 11:52:40 paul@kite-hub.kitebird.com +1 -1
    Fix skipp -> skip once and for all.

  mysys/mf_iocache.c
    1.44 04/06/03 11:52:40 paul@kite-hub.kitebird.com +2 -2
    Fix skipp -> skip once and for all.

  mysys/default.c
    1.43 04/06/03 11:52:40 paul@kite-hub.kitebird.com +1 -1
    Fix skipp -> skip once and for all.

  mysys/ChangeLog
    1.4 04/06/03 11:52:40 paul@kite-hub.kitebird.com +2 -2
    Fix skipp -> skip once and for all.

  myisam/myisamlog.c
    1.27 04/06/03 11:52:40 paul@kite-hub.kitebird.com +1 -1
    Fix skipp -> skip once and for all.

  myisam/mi_search.c
    1.45 04/06/03 11:52:40 paul@kite-hub.kitebird.com +2 -2
    Fix skipp -> skip once and for all.

  myisam/mi_key.c
    1.24 04/06/03 11:52:40 paul@kite-hub.kitebird.com +1 -1
    Fix skipp -> skip once and for all.

  myisam/mi_delete.c
    1.27 04/06/03 11:52:40 paul@kite-hub.kitebird.com +1 -1
    Fix skipp -> skip once and for all.

  myisam/mi_check.c
    1.105.1.29 04/06/03 11:52:40 paul@kite-hub.kitebird.com +2 -2
    Fix skipp -> skip once and for all.

  merge/mrg_open.c
    1.11 04/06/03 11:52:40 paul@kite-hub.kitebird.com +1 -1
    Fix skipp -> skip once and for all.

  isam/test1.c
    1.8 04/06/03 11:52:40 paul@kite-hub.kitebird.com +1 -1
    Fix skipp -> skip once and for all.

  isam/pack_isam.c
    1.16 04/06/03 11:52:40 paul@kite-hub.kitebird.com +1 -1
    Fix skipp -> skip once and for all.

  isam/isamlog.c
    1.15 04/06/03 11:52:40 paul@kite-hub.kitebird.com +1 -1
    Fix skipp -> skip once and for all.

  isam/isamchk.c
    1.31 04/06/03 11:52:40 paul@kite-hub.kitebird.com +2 -2
    Fix skipp -> skip once and for all.

  isam/_dynrec.c
    1.10 04/06/03 11:52:40 paul@kite-hub.kitebird.com +3 -3
    Fix skipp -> skip once and for all.

  heap/hp_hash.c
    1.31 04/06/03 11:52:40 paul@kite-hub.kitebird.com +1 -1
    Fix skipp -> skip once and for all.

  extra/perror.c
    1.27 04/06/03 11:52:39 paul@kite-hub.kitebird.com +1 -1
    Fix skipp -> skip once and for all.

ChangeSet
  1.1616.1.274 04/06/03 17:54:18 tomas@mc05.(none) +10 -0
  top_srcdir -> top_builddir

  ndb/test/tools/Makefile.am
    1.5 04/06/03 17:54:15 tomas@mc05.(none) +1 -1
    top_srcdir -> top_builddir

  ndb/test/run-test/Makefile.am
    1.6 04/06/03 17:54:15 tomas@mc05.(none) +1 -1
    top_srcdir -> top_builddir

  ndb/src/mgmsrv/Makefile.am
    1.9 04/06/03 17:54:15 tomas@mc05.(none) +2 -2
    top_srcdir -> top_builddir

  ndb/src/mgmclient/Makefile.am
    1.8 04/06/03 17:54:15 tomas@mc05.(none) +2 -2
    top_srcdir -> top_builddir

  ndb/src/kernel/blocks/backup/restore/Makefile.am
    1.6 04/06/03 17:54:15 tomas@mc05.(none) +1 -1
    top_srcdir -> top_builddir

  ndb/src/kernel/Makefile.am
    1.4 04/06/03 17:54:15 tomas@mc05.(none) +8 -8
    top_srcdir -> top_builddir

  ndb/src/cw/cpcd/Makefile.am
    1.6 04/06/03 17:54:15 tomas@mc05.(none) +1 -1
    top_srcdir -> top_builddir

  ndb/src/Makefile.am
    1.8 04/06/03 17:54:15 tomas@mc05.(none) +9 -9
    top_srcdir -> top_builddir

  ndb/config/type_ndbapitools.mk.am
    1.4 04/06/03 17:54:15 tomas@mc05.(none) +2 -2
    top_srcdir -> top_builddir

  ndb/config/type_ndbapitest.mk.am
    1.7 04/06/03 17:54:15 tomas@mc05.(none) +2 -2
    top_srcdir -> top_builddir

ChangeSet
  1.1616.469.2 04/06/03 17:31:46 heikki@hundin.mysql.fi +1 -0
  fil0fil.c:
    Make allocation for file path more uniform: always use mem_alloc(), not ut_malloc()

  innobase/fil/fil0fil.c
    1.33 04/06/03 17:31:28 heikki@hundin.mysql.fi +11 -11
    Make allocation for file path more uniform: always use mem_alloc(), not ut_malloc()

ChangeSet
  1.1616.469.1 04/06/03 17:02:37 heikki@hundin.mysql.fi +2 -0
  os0file.c, fil0fil.c:
    Align file i/o buffers for DIRECT_IO; fix mem_alloc()/mem_free() crash bugs that came from Marko's latest cleanup

ChangeSet
  1.1616.1.272 04/06/03 16:02:07 tomas@mc05.(none) +3 -0
  fixes for ndb and make distdir

  ndb/test/run-test/Makefile.am
    1.5 04/06/03 16:01:37 tomas@mc05.(none) +2 -1
    fixes for ndb and make distdir

  ndb/src/common/portlib/Makefile.am
    1.3 04/06/03 16:01:37 tomas@mc05.(none) +3 -1
    fixes for ndb and make distdir

  ndb/Makefile.am
    1.6 04/06/03 16:01:37 tomas@mc05.(none) +3 -0
    fixes for ndb and make distdir

  innobase/os/os0file.c
    1.78 04/06/03 17:00:06 heikki@hundin.mysql.fi +14 -8
    Align file i/o buffers for DIRECT_IO; fix mem_alloc()/mem_free() crash bugs that came from Marko's latest cleanup

  innobase/fil/fil0fil.c
    1.32 04/06/03 16:59:53 heikki@hundin.mysql.fi +40 -27
    Align file i/o buffers for DIRECT_IO; fix mem_alloc()/mem_free() crash bugs that came from Marko's latest cleanup

ChangeSet
  1.1616.459.14 04/06/03 17:45:53 bar@bar.intranet.mysql.r18.ru +2 -0
  Unicode collations: WL#916
  XML and "collation customization" language parsers.

  strings/ctype.c
    1.60 04/06/03 17:45:45 bar@bar.intranet.mysql.r18.ru +51 -2
    Unicode collations: WL#916
    XML and "collation customization" language parsers.

  mysys/charset.c
    1.120 04/06/03 17:45:45 bar@bar.intranet.mysql.r18.ru +496 -6
    Unicode collations: WL#916
    XML and "collation customization" language parsers.

ChangeSet
  1.676.1.764 04/06/03 15:38:38 bell@sanja.is.com.ua +1 -0
  removed incorrect destructor (to prevent deleting item by recursion instead of by list scanning in case of chained OR or AND)

  sql/item_cmpfunc.h
    1.10.1.7 04/06/03 15:38:37 bell@sanja.is.com.ua +0 -1
    removed incorrect destructor (to prevent deleting item by recursion instead of by list scanning in case of chained OR or AND)

ChangeSet
  1.1616.468.1 04/06/03 13:15:54 autotest@mc01.ndb.mysql.com +8 -0
  Makefile.am:
    local flag in ndbapi to set -O2 since problems occur with -O3
  pc.hpp, Emulator.hpp, Emulator.cpp, ErrorReporter.cpp:
    USE_EMULATED_JAM -> !NO_EMULATED_JAM
  ErrorReporter.hpp:
    removed NDEBUG and removed THREAD_ASSERT
  Dbdict.cpp:
    NDB_DEBUG -> VM_TRACE
  configure.in:
    cleaned up ndb CXX flags and added optional flag possibility

ChangeSet
  1.1616.1.268 04/06/03 13:14:03 joreland@mysql.com +1 -0
  More warnings in atrt

  ndb/test/run-test/main.cpp
    1.6 04/06/03 13:13:49 joreland@mysql.com +5 -0
    More warnings

  ndb/src/ndbapi/Makefile.am
    1.6 04/06/03 13:12:11 autotest@mc01.ndb.mysql.com +3 -0
    local flag in ndbapi to set -O2 since problems occur with -O3

  ndb/src/kernel/vm/pc.hpp
    1.3 04/06/03 13:12:11 autotest@mc01.ndb.mysql.com +8 -7
    USE_EMULATED_JAM -> !NO_EMULATED_JAM

  ndb/src/kernel/vm/Emulator.hpp
    1.2 04/06/03 13:12:11 autotest@mc01.ndb.mysql.com +11 -8
    USE_EMULATED_JAM -> !NO_EMULATED_JAM

  ndb/src/kernel/vm/Emulator.cpp
    1.6 04/06/03 13:12:11 autotest@mc01.ndb.mysql.com +5 -5
    USE_EMULATED_JAM -> !NO_EMULATED_JAM

  ndb/src/kernel/error/ErrorReporter.hpp
    1.4 04/06/03 13:12:11 autotest@mc01.ndb.mysql.com +1 -9
    removed NDEBUG and removed THREAD_ASSERT

  ndb/src/kernel/error/ErrorReporter.cpp
    1.4 04/06/03 13:12:11 autotest@mc01.ndb.mysql.com +9 -21
    USE_EMULATED_JAM -> !NO_EMULATED_JAM

  ndb/src/kernel/blocks/dbdict/Dbdict.cpp
    1.6 04/06/03 13:12:11 autotest@mc01.ndb.mysql.com +1 -1
    NDB_DEBUG -> VM_TRACE

  configure.in
    1.201.1.62 04/06/03 13:12:11 autotest@mc01.ndb.mysql.com +13 -5
    cleaned up ndb CXX flags and added optional flag possibility

ChangeSet
  1.1616.1.267 04/06/03 10:17:52 ndbdev@ndbmaster.mysql.com +1 -0
  Setup connect string

  ndb/test/run-test/main.cpp
    1.5 04/06/03 10:16:54 ndbdev@ndbmaster.mysql.com +7 -7
    Setup connect string

ChangeSet
  1.1616.1.265 04/06/03 08:09:04 joreland@mysql.com +1 -0
  Fix for 840, invalid tuple size.
  Still don't know reason, but this works

  ndb/src/ndbapi/NdbOperationDefine.cpp
    1.4 04/06/03 08:09:01 joreland@mysql.com +3 -2
    Fix for 840, invalid tuple size.
    Still don't know reason, but this works

ChangeSet
  1.1616.466.1 04/06/03 08:03:37 autotest@mc01.ndb.mysql.com +2 -0
  extern"C" bug

  BitKeeper/etc/logging_ok
    1.233.1.78 04/06/03 08:03:36 autotest@mc01.ndb.mysql.com +1 -0
    Logging to logging@openlogging.org accepted

  ndb/src/mgmsrv/CommandInterpreter.cpp
    1.5 04/06/03 08:03:11 autotest@mc01.ndb.mysql.com +0 -1
    extern"C" bug

ChangeSet
  1.1616.1.264 04/06/03 03:56:12 joreland@mysql.com +1 -0
  Fix for 3910

  ndb/src/kernel/Main.cpp
    1.16 04/06/03 03:56:09 joreland@mysql.com +8 -0
    Fix for 3910

ChangeSet
  1.1616.459.13 04/06/03 02:13:19 monty@mysql.com +1 -0
  portability fix

  myisam/rt_mbr.c
    1.7 04/06/03 02:13:12 monty@mysql.com +22 -16
    portability fix

ChangeSet
  1.1616.465.1 04/06/03 01:55:47 monty@mysql.com +4 -0
  Added authentication code that was missed in merge
  Added new windows configuration

  sql-common/client.c
    1.46.1.15 04/06/03 01:55:46 monty@mysql.com +57 -1
    Moved check function from libmysql.c to client.c

  libmysql/libmysql.c
    1.156.1.81 04/06/03 01:55:45 monty@mysql.com +1 -51
    Moved check function from libmysql.c to client.c

  VC++Files/zlib/zlib.dsp
    1.8 04/06/03 01:55:45 monty@mysql.com +27 -0
    Added new configuration

  VC++Files/client/mysqlclient.dsp
    1.27 04/06/03 01:55:45 monty@mysql.com +29 -0
    Added new configuration

ChangeSet
  1.1346.632.1 04/06/02 12:56:26 paul@teton.kitebird.com +5 -0
  Touchups to .cnf file comments.

  support-files/my-small.cnf.sh
    1.16.1.1 04/06/02 12:56:22 paul@teton.kitebird.com +4 -4
    Touchups to .cnf file comments.

  support-files/my-medium.cnf.sh
    1.17.1.2 04/06/02 12:56:22 paul@teton.kitebird.com +4 -4
    Touchups to .cnf file comments.

  support-files/my-large.cnf.sh
    1.18.1.1 04/06/02 12:56:22 paul@teton.kitebird.com +5 -5
    Touchups to .cnf file comments.

  support-files/my-innodb-heavy-4G.cnf.sh
    1.2.1.1 04/06/02 12:56:22 paul@teton.kitebird.com +2 -2
    Touchups to .cnf file comments.

  support-files/my-huge.cnf.sh
    1.19.1.1 04/06/02 12:56:22 paul@teton.kitebird.com +5 -5
    Touchups to .cnf file comments.

ChangeSet
  1.1616.459.11 04/06/02 18:19:28 heikki@hundin.mysql.fi +1 -0
  fil0fil.c:
    Fix typo spotted by Paul DuBois: 'no continue' -> 'not continue'

  innobase/fil/fil0fil.c
    1.31 04/06/02 18:19:18 heikki@hundin.mysql.fi +2 -2
    Fix typo spotted by Paul DuBois: 'no continue' -> 'not continue'

ChangeSet
  1.1616.434.2 04/06/02 19:11:57 hf@deer.(none) +5 -0
  wl 1562 (To improve RTree indexes)
  some changes to make code nicer

  mysql-test/r/gis-rtree.result
    1.8 04/06/02 19:11:54 hf@deer.(none) +5 -5
    result became slightly different because of changes made

  myisam/rt_test.c
    1.9.2.1 04/06/02 19:11:54 hf@deer.(none) +60 -2
    some modifications to extend test

  myisam/rt_mbr.c
    1.4.1.2 04/06/02 19:11:54 hf@deer.(none) +182 -253
    some fixes to make code nicer and smaller

  myisam/rt_index.c
    1.11.1.2 04/06/02 19:11:54 hf@deer.(none) +2 -10
    'if' simplified

  include/myisampack.h
    1.12 04/06/02 19:11:54 hf@deer.(none) +7 -0
    mi_sint1korr and similar things added to do conversion in an
    uniform way

ChangeSet
  1.1616.1.263 04/06/02 13:11:10 joreland@mysql.com +1 -0
  Update atrt to use new names of binaries

  ndb/test/run-test/main.cpp
    1.4 04/06/02 13:11:08 joreland@mysql.com +19 -8
    1) Updated names of binaries
    2) Use NDB_CONNECTSTRING

ChangeSet
  1.1616.1.262 04/06/02 10:17:19 tomas@mc05.(none) +1 -0
  fixed naming error

ChangeSet
  1.1616.1.261 04/06/02 10:37:42 tomas@poseidon.ndb.mysql.com +9 -0
  collapsed ndb start/stop scripts in mysql-test-run + ndb bin name changes

  mysql-test/ndb/ndbcluster.sh
    1.9 04/06/02 10:15:17 tomas@mc05.(none) +3 -3
    fixed naming error

  ndb/tools/Makefile.am
    1.6 04/06/02 10:37:39 tomas@poseidon.ndb.mysql.com +16 -8
    ndb bin name changes

  ndb/src/mgmsrv/Makefile.am
    1.8 04/06/02 10:37:39 tomas@poseidon.ndb.mysql.com +2 -2
    ndb bin name changes

  ndb/src/mgmclient/Makefile.am
    1.7 04/06/02 10:37:39 tomas@poseidon.ndb.mysql.com +2 -2
    ndb bin name changes

  ndb/src/kernel/blocks/backup/restore/Makefile.am
    1.5 04/06/02 10:37:39 tomas@poseidon.ndb.mysql.com +2 -2
    ndb bin name changes

  ndb/src/kernel/Makefile.am
    1.3 04/06/02 10:37:39 tomas@poseidon.ndb.mysql.com +2 -2
    ndb bin name changes

  mysql-test/ndb/ndbcluster.sh
    1.8 04/06/02 10:37:39 tomas@poseidon.ndb.mysql.com +54 -14
    collapsed ndb start/stop scripts + ndb bin name changes

  mysql-test/ndb/Makefile.am
    1.2 04/06/02 10:37:39 tomas@poseidon.ndb.mysql.com +2 -6
    collapsed ndb start/stop scripts

  mysql-test/mysql-test-run.sh
    1.186 04/06/02 10:37:39 tomas@poseidon.ndb.mysql.com +3 -3
    collapsed ndb start/stop scripts

  mysql-test/ndb/ndbcluster.sh
    1.7 04/06/02 09:15:37 tomas@poseidon.ndb.mysql.com +0 -0
    Rename: mysql-test/ndb/install_ndbcluster.sh -> mysql-test/ndb/ndbcluster.sh

  BitKeeper/deleted/.del-stop_ndbcluster.sh~b3b9e9505384aca1
    1.7 04/06/02 09:15:16 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: mysql-test/ndb/stop_ndbcluster.sh

ChangeSet
  1.1616.459.8 04/06/02 12:13:49 monty@mysql.com +3 -0
  after merge fixes

  sql/sql_select.cc
    1.216.1.119 04/06/02 12:13:41 monty@mysql.com +0 -4
    after merge fix (The patch for 4.0 didn't make sence in 4.1)

  sql/ha_innodb.cc
    1.90.1.42 04/06/02 12:13:41 monty@mysql.com +2 -2
    after merge fix

  innobase/os/os0file.c
    1.77 04/06/02 12:13:41 monty@mysql.com +8 -8
    after merge fix

ChangeSet
  1.1346.623.35 04/06/02 11:12:04 marko@hundin.mysql.fi +1 -0
  InnoDB cleanup: Remove debug function
  cmp_debug_dtuple_rec_with_match()
  unless #ifdef UNIV_DEBUG

  innobase/rem/rem0cmp.c
    1.13.1.3 04/06/02 11:12:01 marko@hundin.mysql.fi +6 -2
    Remove cmp_debug_dtuple_rec_with_match() unless #ifdef UNIV_DEBUG

ChangeSet
  1.1616.1.259 04/06/02 08:24:35 joreland@mysql.com +1 -0
  BUG#3662
  Fixed bug introduced with upgrade code

  ndb/src/kernel/blocks/ndbcntr/NdbcntrMain.cpp
    1.4 04/06/02 08:24:14 joreland@mysql.com +12 -9
    BUG#3662
    Fixed bug introduced with upgrade code

ChangeSet
  1.1616.462.3 04/06/02 08:44:08 heikki@hundin.mysql.fi +1 -0
  fil0fil.c:
    Stop InnoDB crash recovery if an .ibd file for a table exists in a database directory, but we cannot access it.

  innobase/fil/fil0fil.c
    1.30 04/06/02 08:43:56 heikki@hundin.mysql.fi +45 -4
    Stop InnoDB crash recovery if an .ibd file for a table exists in a database directory, but we cannot access it.

ChangeSet
  1.1616.463.1 04/06/02 00:54:58 tomas@poseidon.bredbandsbolaget.se +71 -0
  several ndb make changes, see respective file

  scripts/make_binary_distribution.sh
    1.55.1.9 04/06/02 00:54:42 tomas@poseidon.bredbandsbolaget.se +8 -8
    updated for ndb and new make

  ndb/include/Makefile.am
    1.2 04/06/02 00:54:42 tomas@poseidon.bredbandsbolaget.se +3 -1
    fixed missing .h files in make distdir

  ndb/tools/Makefile.am
    1.5 04/06/02 00:54:41 tomas@poseidon.bredbandsbolaget.se +2 -0
    added configurable ldflags

  ndb/test/Makefile.am
    1.3 04/06/02 00:54:41 tomas@poseidon.bredbandsbolaget.se +7 -1
    added optional build of ndbapi tests

  ndb/src/ndbapi/Makefile.am
    1.5 04/06/02 00:54:40 tomas@poseidon.bredbandsbolaget.se +9 -18
    removed libNDB_API

  ndb/src/mgmsrv/Makefile.am
    1.7 04/06/02 00:54:40 tomas@poseidon.bredbandsbolaget.se +3 -1
    added configurable ldflags

  ndb/src/mgmclient/Makefile.am
    1.6 04/06/02 00:54:40 tomas@poseidon.bredbandsbolaget.se +4 -2
    added configurable ldflags

  ndb/src/mgmapi/Makefile.am
    1.5 04/06/02 00:54:39 tomas@poseidon.bredbandsbolaget.se +2 -9
    removed libMGM_API

  ndb/src/kernel/vm/Makefile.am
    1.3 04/06/02 00:54:39 tomas@poseidon.bredbandsbolaget.se +1 -1
    fix error

  ndb/src/kernel/error/Makefile.am
    1.2 04/06/02 00:54:39 tomas@poseidon.bredbandsbolaget.se +1 -1
    fix error

  ndb/src/kernel/blocks/suma/Makefile.am
    1.2 04/06/02 00:54:38 tomas@poseidon.bredbandsbolaget.se +1 -1
    fixed error

  ndb/src/kernel/blocks/backup/restore/Makefile.am
    1.4 04/06/02 00:54:38 tomas@poseidon.bredbandsbolaget.se +2 -0
    added configurable ldflags

  ndb/src/kernel/Makefile.am
    1.2 04/06/02 00:54:38 tomas@poseidon.bredbandsbolaget.se +58 -1
    moved up ndb-main one level

  ndb/src/cw/cpcd/Makefile.am
    1.5 04/06/02 00:54:37 tomas@poseidon.bredbandsbolaget.se +3 -1
    added configurable ldflags

  ndb/src/common/portlib/Makefile.am
    1.2 04/06/02 00:54:37 tomas@poseidon.bredbandsbolaget.se +3 -1
    fix for make distdir

  ndb/src/Makefile.am
    1.7 04/06/02 00:54:37 tomas@poseidon.bredbandsbolaget.se +2 -2
    .

  ndb/config/type_util.mk.am
    1.3 04/06/02 00:54:36 tomas@poseidon.bredbandsbolaget.se +5 -1
    moved some things from configure.in

  ndb/config/type_ndbapitools.mk.am
    1.3 04/06/02 00:54:36 tomas@poseidon.bredbandsbolaget.se +8 -2
    moved some things from configure.in

  ndb/config/type_ndbapitest.mk.am
    1.6 04/06/02 00:54:36 tomas@poseidon.bredbandsbolaget.se +7 -2
    moved some things from configure.in

  ndb/config/type_ndbapiclient.mk.am
    1.2 04/06/02 00:54:35 tomas@poseidon.bredbandsbolaget.se +1 -1
    moved some things from configure.in

  ndb/config/type_ndbapi.mk.am
    1.4 04/06/02 00:54:35 tomas@poseidon.bredbandsbolaget.se +11 -1
    moved some things from configure.in

  ndb/config/type_mgmapiclient.mk.am
    1.2 04/06/02 00:54:35 tomas@poseidon.bredbandsbolaget.se +1 -1
    moved some things from configure.in

  ndb/config/type_kernel.mk.am
    1.2 04/06/02 00:54:34 tomas@poseidon.bredbandsbolaget.se +17 -1
    moved some things from configure.in

  ndb/config/common.mk.am
    1.5 04/06/02 00:54:34 tomas@poseidon.bredbandsbolaget.se +7 -11
    moved some things from configure.in

  ndb/Makefile.am
    1.5 04/06/02 00:54:34 tomas@poseidon.bredbandsbolaget.se +3 -32
    moved some things to include/Makefile.am

  mysql-test/ndb/stop_ndbcluster.sh
    1.6 04/06/02 00:54:33 tomas@poseidon.bredbandsbolaget.se +21 -2
    adopt to new ndb install

  mysql-test/ndb/install_ndbcluster.sh
    1.6 04/06/02 00:54:33 tomas@poseidon.bredbandsbolaget.se +17 -6
    adopt to new ndb install

  configure.in
    1.201.8.28 04/06/02 00:54:32 tomas@poseidon.bredbandsbolaget.se +12 -90
    moved lots of stuff for ndb over to Makefile.ams and added some config opt for ndb

  acinclude.m4
    1.95.1.6 04/06/02 00:54:32 tomas@poseidon.bredbandsbolaget.se +16 -0
    added ndb configure options

  ndb/src/old_files/Makefile
    1.6 04/06/02 00:27:24 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/src/Makefile_old -> ndb/src/old_files/Makefile

  ndb/src/old_files/ndbclient/ndbclient_dummy.cpp
    1.2 04/06/02 00:27:04 tomas@poseidon.bredbandsbolaget.se +0 -0
    mvdir

  ndb/src/old_files/ndbclient/Makefile
    1.2 04/06/02 00:27:04 tomas@poseidon.bredbandsbolaget.se +0 -0
    mvdir

  ndb/src/old_files/ndbbaseclient/ndbbaseclient_dummy.cpp
    1.2 04/06/02 00:26:44 tomas@poseidon.bredbandsbolaget.se +0 -0
    mvdir

  ndb/src/old_files/ndbbaseclient/Makefile
    1.2 04/06/02 00:26:44 tomas@poseidon.bredbandsbolaget.se +0 -0
    mvdir

  BitKeeper/deleted/.del-Makefile~650473b0dabb331b
    1.2 04/06/02 00:25:29 tomas@poseidon.bredbandsbolaget.se +0 -0
    Delete: ndb/src/scripts/Makefile

  ndb/old_files/env.sh
    1.2 04/06/02 00:24:21 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/env.sh -> ndb/old_files/env.sh

  ndb/old_files/mysqlclusterenv.sh
    1.2 04/06/02 00:24:11 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/mysqlclusterenv.sh -> ndb/old_files/mysqlclusterenv.sh

  ndb/old_files/README
    1.2 04/06/02 00:23:40 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/README -> ndb/old_files/README

  ndb/config/old_files/config.h.in
    1.2 04/06/02 00:22:37 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/config.h.in -> ndb/config/old_files/config.h.in

  ndb/config/old_files/configure.in
    1.2 04/06/02 00:22:25 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/configure.in -> ndb/config/old_files/configure.in

  ndb/config/old_files/GuessConfig.sh
    1.7 04/06/02 00:22:05 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/GuessConfig.sh_old -> ndb/config/old_files/GuessConfig.sh

  ndb/config/old_files/Makefile.am
    1.3 04/06/02 00:21:49 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/Makefile.am_old -> ndb/config/old_files/Makefile.am

  ndb/config/old_files/acinclude.m4
    1.2 04/06/02 00:21:35 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/acinclude.m4 -> ndb/config/old_files/acinclude.m4

  ndb/config/old_files/Defs.WIN32.x86.VC7.mk
    1.2 04/06/02 00:21:03 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/Defs.WIN32.x86.VC7.mk -> ndb/config/old_files/Defs.WIN32.x86.VC7.mk

  ndb/config/old_files/Defs.TRU64X.ALPHA.GCC.mk
    1.2 04/06/02 00:21:03 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/Defs.TRU64X.ALPHA.GCC.mk -> ndb/config/old_files/Defs.TRU64X.ALPHA.GCC.mk

  ndb/config/old_files/Defs.SOLARIS6.SPARC.GCC.mk
    1.2 04/06/02 00:21:03 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/Defs.SOLARIS6.SPARC.GCC.mk -> ndb/config/old_files/Defs.SOLARIS6.SPARC.GCC.mk

  ndb/config/old_files/Defs.SOLARIS.SPARC_64.GCC.mk
    1.2 04/06/02 00:21:03 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/Defs.SOLARIS.SPARC_64.GCC.mk -> ndb/config/old_files/Defs.SOLARIS.SPARC_64.GCC.mk

  ndb/config/old_files/Defs.SOLARIS.SPARC.GCC.mk
    1.2 04/06/02 00:21:03 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/Defs.SOLARIS.SPARC.GCC.mk -> ndb/config/old_files/Defs.SOLARIS.SPARC.GCC.mk

  ndb/config/old_files/Defs.SOLARIS.SPARC.FORTE6.mk
    1.2 04/06/02 00:21:03 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/Defs.SOLARIS.SPARC.FORTE6.mk -> ndb/config/old_files/Defs.SOLARIS.SPARC.FORTE6.mk

  ndb/config/old_files/Defs.SOFTOSE.SPARC.GCC.mk
    1.2 04/06/02 00:21:03 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/Defs.SOFTOSE.SPARC.GCC.mk -> ndb/config/old_files/Defs.SOFTOSE.SPARC.GCC.mk

  ndb/config/old_files/Defs.SIMCELLO.SOFTOSE.GCC.mk
    1.2 04/06/02 00:21:02 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/Defs.SIMCELLO.SOFTOSE.GCC.mk -> ndb/config/old_files/Defs.SIMCELLO.SOFTOSE.GCC.mk

  ndb/config/old_files/Defs.RELEASE_TRACE.mk
    1.2 04/06/02 00:21:02 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/Defs.RELEASE_TRACE.mk -> ndb/config/old_files/Defs.RELEASE_TRACE.mk

  ndb/config/old_files/Defs.RELEASE.mk
    1.2 04/06/02 00:21:02 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/Defs.RELEASE.mk -> ndb/config/old_files/Defs.RELEASE.mk

  ndb/config/old_files/Defs.OSE.PPC750.DIAB.mk
    1.2 04/06/02 00:21:02 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/Defs.OSE.PPC750.DIAB.mk -> ndb/config/old_files/Defs.OSE.PPC750.DIAB.mk

  ndb/config/old_files/Defs.MACOSX.POWERPC.GCC.mk
    1.2 04/06/02 00:21:02 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/Defs.MACOSX.POWERPC.GCC.mk -> ndb/config/old_files/Defs.MACOSX.POWERPC.GCC.mk

  ndb/config/old_files/Defs.LINUX.x86_64.GCC.mk
    1.2 04/06/02 00:21:02 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/Defs.LINUX.x86_64.GCC.mk -> ndb/config/old_files/Defs.LINUX.x86_64.GCC.mk

  ndb/config/old_files/Defs.LINUX.x86.ICC.mk
    1.2 04/06/02 00:21:02 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/Defs.LINUX.x86.ICC.mk -> ndb/config/old_files/Defs.LINUX.x86.ICC.mk

  ndb/config/old_files/Defs.LINUX.x86.GCC.mk
    1.5 04/06/02 00:21:02 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/Defs.LINUX.x86.GCC.mk -> ndb/config/old_files/Defs.LINUX.x86.GCC.mk

  ndb/config/old_files/Defs.IBMAIX.POWERPC.GCC.mk
    1.2 04/06/02 00:21:02 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/Defs.IBMAIX.POWERPC.GCC.mk -> ndb/config/old_files/Defs.IBMAIX.POWERPC.GCC.mk

  ndb/config/old_files/Defs.HPUX.HPPA.GCC.mk
    1.2 04/06/02 00:21:02 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/Defs.HPUX.HPPA.GCC.mk -> ndb/config/old_files/Defs.HPUX.HPPA.GCC.mk

  ndb/config/old_files/Defs.DEBUG.mk
    1.2 04/06/02 00:21:02 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/config/Defs.DEBUG.mk -> ndb/config/old_files/Defs.DEBUG.mk

  ndb/old_files/Epilogue.mk
    1.8 04/06/02 00:20:23 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/Epilogue.mk_old -> ndb/old_files/Epilogue.mk

  ndb/old_files/configure
    1.3 04/06/02 00:19:55 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/configure_old -> ndb/old_files/configure

  ndb/old_files/SrcDist.sh
    1.3 04/06/02 00:19:35 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/SrcDist.sh -> ndb/old_files/SrcDist.sh

  ndb/old_files/Makefile
    1.6 04/06/02 00:19:26 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/Makefile_old -> ndb/old_files/Makefile

  ndb/old_files/Defs.mk
    1.6 04/06/02 00:19:07 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/Defs.mk -> ndb/old_files/Defs.mk

  ndb/old_files/BinDist.sh
    1.4 04/06/02 00:19:00 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/BinDist.sh -> ndb/old_files/BinDist.sh

  BitKeeper/deleted/.del-Makefile_old~1f37e763ba5d06d0
    1.4 04/06/01 23:43:29 tomas@poseidon.bredbandsbolaget.se +0 -0
    Delete: ndb/src/kernel/ndb-main/Makefile_old

  BitKeeper/deleted/.del-Makefile.am~dbb6038d7163a54d
    1.6 04/06/01 23:43:08 tomas@poseidon.bredbandsbolaget.se +11 -11
    Delete: ndb/src/kernel/ndb-main/Makefile.am

  ndb/src/kernel/SimBlockList.cpp
    1.3 04/06/01 23:17:53 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/src/kernel/ndb-main/SimBlockList.cpp -> ndb/src/kernel/SimBlockList.cpp

  ndb/src/kernel/Main.cpp
    1.15 04/06/01 23:17:44 tomas@poseidon.bredbandsbolaget.se +0 -0
    Rename: ndb/src/kernel/ndb-main/Main.cpp -> ndb/src/kernel/Main.cpp

ChangeSet
  1.1616.462.2 04/06/02 00:27:59 serg@serg.mylan +1 -0
  cleanup

  sql/sql_acl.cc
    1.74.19.2 04/06/02 00:27:51 serg@serg.mylan +3 -3
    cleanup

ChangeSet
  1.1616.462.1 04/06/01 23:58:33 serg@serg.mylan +2 -0
  check_scramble_323 shuold ensure that the scramble has the correct length

  sql/sql_acl.cc
    1.74.19.1 04/06/01 23:58:29 serg@serg.mylan +2 -2
    cleanup

  sql/password.c
    1.32 04/06/01 23:58:28 serg@serg.mylan +2 -0
    check_scramble_323 shuold ensure that the scramble has the correct length

  ndb/include/Makefile.am
    1.1 04/06/01 21:45:32 tomas@poseidon.bredbandsbolaget.se +41 -0

  ndb/include/Makefile.am
    1.0 04/06/01 21:45:32 tomas@poseidon.bredbandsbolaget.se +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb/ndb/include/Makefile.am

ChangeSet
  1.1616.459.6 04/06/01 23:39:39 monty@mysql.com +4 -0
  Removed compiler warnings

  sql/sql_insert.cc
    1.86.2.51 04/06/01 23:39:37 monty@mysql.com +6 -3
    Removed compiler warning

  sql/share/romanian/errmsg.txt
    1.62.21.1 04/06/01 23:39:37 monty@mysql.com +1 -1
    Fixed wrong error message

  mysql-test/r/func_gconcat.result
    1.25 04/06/01 23:39:37 monty@mysql.com +1 -1
    Fixed test result after removing end space

  libmysqld/Makefile.am
    1.29.1.21 04/06/01 23:39:37 monty@mysql.com +0 -1
    Removed define that is now defined by configure and my_global.h

ChangeSet
  1.1346.623.34 04/06/01 15:47:08 greg@mysql.com +1 -0
  Fix applied to allow building of 4.0.20 for NetWare

ChangeSet
  1.1346.631.1 04/06/01 23:34:47 monty@mysql.com +1 -0
  Updated version number
  Portability fix for netware. (We can't use TRY_RUN when cross compiling)

  configure.in
    1.191.1.113 04/06/01 23:34:46 monty@mysql.com +9 -2
    Updated version number
    Portability fix for netware. (We can't use TRY_RUN when cross compiling)

ChangeSet
  1.1616.461.1 04/06/01 22:29:46 monty@mysql.com +4 -0
  Update version number
  Fixed serbian error messages
  Fix for windows regarding changed variable name

  sql/share/serbian/errmsg.txt
    1.18.1.49 04/06/01 22:29:44 monty@mysql.com +12 -0
    Added missing error messages

  mysql-test/t/func_gconcat.test
    1.16 04/06/01 22:29:44 monty@mysql.com +3 -3
    remove some \r

  libmysqld/libmysqld.def
    1.7 04/06/01 22:29:44 monty@mysql.com +2 -1
    Fix changed variable names

  configure.in
    1.201.17.1 04/06/01 22:29:44 monty@mysql.com +2 -2
    Update version number
    Added serbian error messages

ChangeSet
  1.1346.630.1 04/06/01 14:18:34 paul@ice.snake.net +1 -0
  README:
    Update README URL. (Bug #3678)

  mysql-test/README
    1.5.1.1 04/06/01 14:17:17 paul@ice.snake.net +1 -1
    Update README URL. (Bug #3678)

  client/mysqltest.c
    1.77.1.40 04/06/01 15:47:06 greg@mysql.com +6 -5
    Fix compilation errors for NetWare

ChangeSet
  1.1346.623.31 04/06/01 19:19:48 heikki@hundin.mysql.fi +3 -0
  row0mysql.c, row0mysql.h, ha_innodb.cc:
    Inside LOCK TABLES, use either LOCK_S or LOCK_X in locking reads; an improvent over the previous patch

  innobase/row/row0mysql.c
    1.39.1.27 04/06/01 19:19:29 heikki@hundin.mysql.fi +1 -0
    Inside LOCK TABLES, use either LOCK_S or LOCK_X in locking reads; an improvent over the previous patch

  innobase/include/row0mysql.h
    1.15.1.4 04/06/01 19:19:23 heikki@hundin.mysql.fi +3 -0
    Inside LOCK TABLES, use either LOCK_S or LOCK_X in locking reads; an improvent over the previous patch

  sql/ha_innodb.cc
    1.73.1.140 04/06/01 19:19:09 heikki@hundin.mysql.fi +31 -9
    Inside LOCK TABLES, use either LOCK_S or LOCK_X in locking reads; an improvent over the previous patch

ChangeSet
  1.1616.458.2 04/06/01 16:05:14 tomas@poseidon.ndb.mysql.com +4 -0
  Explicit use of static libs for selected ndb programs

  ndb/src/mgmsrv/Makefile.am
    1.6 04/06/01 16:05:11 tomas@poseidon.ndb.mysql.com +1 -1
    Explicit use of static libs for selected ndb programs

  ndb/src/mgmclient/Makefile.am
    1.5 04/06/01 16:05:11 tomas@poseidon.ndb.mysql.com +1 -1
    Explicit use of static libs for selected ndb programs

  ndb/src/kernel/ndb-main/Makefile.am
    1.5 04/06/01 16:05:11 tomas@poseidon.ndb.mysql.com +10 -8
    Explicit use of static libs for selected ndb programs

  ndb/src/cw/cpcd/Makefile.am
    1.4 04/06/01 16:05:11 tomas@poseidon.ndb.mysql.com +1 -1
    Explicit use of static libs for selected ndb programs

ChangeSet
  1.1616.459.2 04/06/01 17:30:46 marko@hundin.mysql.fi +1 -0
  InnoDB: os0file.c:
    Do not lock raw devices or files opened for read only

ChangeSet
  1.1346.623.30 04/06/01 17:29:24 jani@a80-186-24-72.elisa-laajakaista.fi +4 -0
  Changed --log-warnings to be integer instead of boolean. Given --skip-log-warnings
  will disable warnings, --log-warnings will increment warning level by one, or the
  level can be given as an optional argument. Default level is 1.
  
  Changed aborted connection warning to be logged only if the level is > 1.

  sql/sql_parse.cc
    1.218.1.152 04/06/01 17:29:22 jani@a80-186-24-72.elisa-laajakaista.fi +1 -1
    Changed aborted connection warning to be logged only if the level is > 1.

  sql/sql_class.h
    1.111.1.67 04/06/01 17:29:22 jani@a80-186-24-72.elisa-laajakaista.fi +1 -1
    Changed boolean into ulong.

  sql/set_var.cc
    1.12.1.45 04/06/01 17:29:22 jani@a80-186-24-72.elisa-laajakaista.fi +1 -1
    Changed --log-warnings to be integer instead of boolean. Given --skip-log-warnings
    will disable warnings, --log-warnings will increment warning level by one, or the
    level can be given as an optional argument. Default level is 1.
    
    Changed aborted connection warning to be logged only if the level is > 1.

  sql/mysqld.cc
    1.297.1.202 04/06/01 17:29:22 jani@a80-186-24-72.elisa-laajakaista.fi +10 -2
    Changed --log-warnings to be integer instead of boolean. Given --skip-log-warnings
    will disable warnings, --log-warnings will increment warning level by one, or the
    level can be given as an optional argument. Default level is 1.
    
    Changed aborted connection warning to be logged only if the level is > 1.

  innobase/os/os0file.c
    1.75 04/06/01 17:28:40 marko@hundin.mysql.fi +10 -16
    Do not lock raw devices or files opened for read only

ChangeSet
  1.1616.459.1 04/06/01 16:41:13 heikki@hundin.mysql.fi +1 -0
  fil0fil.c:
    Add missing newlines in fprintfs

  innobase/fil/fil0fil.c
    1.29 04/06/01 16:41:03 heikki@hundin.mysql.fi +2 -2
    Add missing newlines in fprintfs

ChangeSet
  1.1616.396.22 04/06/01 17:27:40 sergefp@mysql.com +3 -0
   * New, binlog-aware character sets support in SQL Syntax for Prepared statements.
   * The prepared statement query is put into binary log on execution only if it is an update query.

  sql/sql_prepare.cc
    1.34.1.69 04/06/01 17:27:37 sergefp@mysql.com +129 -29
     * New, binlog-aware character sets support in SQL Syntax for Prepared statements.
     * The prepared statement query is put into binary log on execution only if it is an update query.

  sql/mysql_priv.h
    1.186.1.102 04/06/01 17:27:37 sergefp@mysql.com +3 -0
    New, binlog-aware character sets support in SQL Syntax for Prepared statements.

  sql/item_func.cc
    1.124.1.75 04/06/01 17:27:37 sergefp@mysql.com +58 -20
    New, binlog-aware character sets support in SQL Syntax for Prepared statements.

ChangeSet
  1.1616.443.25 04/06/01 15:19:09 marko@hundin.mysql.fi +4 -0
  InnoDB cleanup: Fix potential buffer overflows,
  allow deletion of tablespaces whose names contain "'"

  innobase/row/row0mysql.c
    1.61 04/06/01 15:19:04 marko@hundin.mysql.fi +97 -72
    Allow tablespaces with "'" in their names to be deleted
    Display identifiers with ut_print_name() or dict_index_name_print()

  innobase/os/os0file.c
    1.74 04/06/01 15:19:04 marko@hundin.mysql.fi +6 -15
    os_file_dirname(): allocate slightly less memory
    os_file_create_subdirs_if_needed(): compare more efficiently

  innobase/fil/fil0fil.c
    1.28 04/06/01 15:19:04 marko@hundin.mysql.fi +130 -110
    Dynamically allocate memory for file names

  innobase/dict/dict0load.c
    1.19 04/06/01 15:19:04 marko@hundin.mysql.fi +4 -5
    dict_check_tablespaces_or_store_max_id():
    Dynamically allocate memory for file name

ChangeSet
  1.1665.13.4 04/06/01 15:31:58 sergefp@mysql.com +3 -0
  More code cleanup, debug prints removed
  Fixed an incorrect optimizer choice for ror-intersect(key, clustered_primary)
  Typo bug fixed in multitable update

  sql/sql_update.cc
    1.110 04/06/01 15:31:54 sergefp@mysql.com +2 -1
    Typo bug fixed

  sql/opt_range.h
    1.39.1.2 04/06/01 15:31:54 sergefp@mysql.com +8 -6
    More code cleanup, debug prints removed
    Fixed an incorrect optimizer choice for ror-intersect(key, clustered_primary) 

  sql/opt_range.cc
    1.111.3.2 04/06/01 15:31:54 sergefp@mysql.com +21 -21
    More code cleanup, debug prints removed
    Fixed an incorrect optimizer choice for ror-intersect(key, clustered_primary) 

ChangeSet
  1.1616.458.1 04/06/01 11:19:40 tomas@poseidon.ndb.mysql.com +10 -0
  various ndb make changes, see respective file

  BitKeeper/etc/logging_ok
    1.233.1.77 04/06/01 11:19:40 tomas@poseidon.ndb.mysql.com +1 -0
    Logging to logging@openlogging.org accepted

  ndb/tools/Makefile.am
    1.4 04/06/01 11:19:33 tomas@poseidon.ndb.mysql.com +1 -1
    new type for tools which should be statically linked with libndbclient

  ndb/src/common/transporter/Makefile.am
    1.6 04/06/01 11:19:33 tomas@poseidon.ndb.mysql.com +4 -16
    added support for optional inclusion of shared mem and sci in ndb transporter

  ndb/src/Makefile.am
    1.6 04/06/01 11:19:33 tomas@poseidon.ndb.mysql.com +2 -0
    enable libndbclient.so

  ndb/config/type_ndbapitools.mk.am
    1.2 04/06/01 11:19:33 tomas@poseidon.ndb.mysql.com +1 -5
    static linking to binary distributed ndb tools

  ndb/config/type_ndbapitest.mk.am
    1.5 04/06/01 11:19:33 tomas@poseidon.ndb.mysql.com +1 -0
    use of libndbclient.so in testprograms

  ndb/Makefile.am
    1.4 04/06/01 11:19:33 tomas@poseidon.ndb.mysql.com +15 -5
    dist-hook for make distdir in ndb

  configure.in
    1.201.8.26 04/06/01 11:19:33 tomas@poseidon.ndb.mysql.com +11 -3
    removed ndb/include/Makefile.am + fixed conditional compile of ndb shm, sci

  acinclude.m4
    1.95.1.5 04/06/01 11:19:33 tomas@poseidon.ndb.mysql.com +1 -1
    static linking of ndbclient into mysqld

ChangeSet
  1.1616.1.252 04/06/01 11:51:10 mronstrom@mysql.com +1 -0
  Small portability fix for strnlen

  ndb/src/common/util/ConfigValues.cpp
    1.2 04/06/01 11:51:01 mronstrom@mysql.com +1 -1
    Small portability fix for strnlen

  ndb/config/type_ndbapitools.mk.am
    1.1 04/06/01 09:35:45 tomas@poseidon.ndb.mysql.com +9 -0

  ndb/config/type_ndbapitools.mk.am
    1.0 04/06/01 09:35:45 tomas@poseidon.ndb.mysql.com +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb/ndb/config/type_ndbapitools.mk.am

  BitKeeper/deleted/.del-Makefile.am~d4e228ebd21fc066
    1.2 04/06/01 09:18:10 tomas@poseidon.ndb.mysql.com +0 -0
    Delete: ndb/include/Makefile.am

ChangeSet
  1.676.1.763 04/05/31 21:10:15 bell@sanja.is.com.ua +1 -0
  correct table_hash_search call

  sql/sql_acl.cc
    1.27.1.19 04/05/31 21:10:13 bell@sanja.is.com.ua +2 -2
    correct table_hash_search call

ChangeSet
  1.1346.623.29 04/05/31 16:33:45 marko@hundin.mysql.fi +1 -0
  InnoDB: Do not get a lock for consistent reads (Bug #3894)

  sql/ha_innodb.cc
    1.73.1.139 04/05/31 16:31:17 marko@hundin.mysql.fi +5 -2
    start_stmt(): Obtain an exclusive lock for other than plain SELECT

ChangeSet
  1.1616.443.24 04/05/31 17:04:41 konstantin@mysql.com +1 -0
  BUILD/compile-pentium-maintainer should not ever be needed since there is 
  no AM_MAINTAINER_MODE macro in configure.in

  BitKeeper/deleted/.del-compile-pentium-maintainer~3747d5c8d7ec49df
    1.2 04/05/31 17:02:44 konstantin@mysql.com +0 -0
    Delete: BUILD/compile-pentium-maintainer

ChangeSet
  1.1616.443.23 04/05/31 17:02:18 konstantin@mysql.com +1 -0
  AC_MAINTAINER_MODE removed: now MySQL is always configured in maintainer 
  mode and one should expect better dependencies tracking.

  configure.in
    1.201.12.5 04/05/31 17:02:15 konstantin@mysql.com +0 -1
    AC_MAINTAINER_MODE removed: now MySQL is always configured in maintainer 
    mode and one should expect better dependencies tracking.

  sql/ha_innodb.cc
    1.73.1.138 04/05/31 15:39:40 marko@hundin.mysql.fi +8 -0
    ha_innobase::start_stmt(): do not get a lock for consistent reads

ChangeSet
  1.1616.443.22 04/05/31 14:21:48 konstantin@mysql.com +3 -0
  Fix for Bug#3796 "Prepared statement, select concat(<parameter>,<column>), wrong 
  result": new Item_param member for use in val_str()

  tests/client_test.c
    1.51.1.38 04/05/31 14:21:45 konstantin@mysql.com +87 -3
    Test case for bug #3796 added. A few compile-time warnings removed.

  sql/item.h
    1.56.29.7 04/05/31 14:21:45 konstantin@mysql.com +39 -0
    Fix for bug#3796:
    - Item::val_str() method semantics documented
    - new member of Item_param

  sql/item.cc
    1.58.50.10 04/05/31 14:21:45 konstantin@mysql.com +10 -3
    Fix for Bug#3796:
    - return str_value_ptr from val_str to prevent modifications of parameter 
    value.

ChangeSet
  1.1346.629.1 04/05/31 13:53:10 hf@deer.(none) +2 -0
  mysql_get_parameter interface fixed

  libmysql/libmysql.c
    1.95.1.52 04/05/31 13:53:08 hf@deer.(none) +1 -1
    (void) added to the empty parameter's list

  include/mysql.h
    1.42.1.12 04/05/31 13:53:08 hf@deer.(none) +1 -1
    (void) added to the empty parameter's list

ChangeSet
  1.1346.623.27 04/05/30 04:11:19 miguel@light. +3 -0
  VC++ project for to compile the udf_example.cc on
  Windows

  VC++Files/examples/udf_example/udf_example.dsw
    1.1 04/05/30 04:07:52 miguel@light. +29 -0

  VC++Files/examples/udf_example/udf_example.dsw
    1.0 04/05/30 04:07:52 miguel@light. +0 -0
    BitKeeper file C:/cygwin/home/miguel/bk/mysql-4.0/VC++Files/examples/udf_example/udf_example.dsw

  VC++Files/examples/udf_example/udf_example.dsp
    1.1 04/05/30 04:07:51 miguel@light. +111 -0

  VC++Files/examples/udf_example/udf_example.dsp
    1.0 04/05/30 04:07:51 miguel@light. +0 -0
    BitKeeper file C:/cygwin/home/miguel/bk/mysql-4.0/VC++Files/examples/udf_example/udf_example.dsp

  VC++Files/examples/udf_example/udf_example.def
    1.1 04/05/30 04:07:50 miguel@light. +9 -0

  VC++Files/examples/udf_example/udf_example.def
    1.0 04/05/30 04:07:50 miguel@light. +0 -0
    BitKeeper file C:/cygwin/home/miguel/bk/mysql-4.0/VC++Files/examples/udf_example/udf_example.def

ChangeSet
  1.1346.628.1 04/05/29 17:52:20 serg@serg.mylan +9 -0
  backport wild_compare fix from 4.1 - bug#3924

  sql/sql_show.cc
    1.76.1.48 04/05/29 17:52:16 serg@serg.mylan +3 -3
    backport wild_compare fix from 4.1 - bug#3924

  sql/sql_parse.cc
    1.218.1.151 04/05/29 17:52:16 serg@serg.mylan +2 -2
    backport wild_compare fix from 4.1 - bug#3924

  sql/sql_db.cc
    1.39.1.33 04/05/29 17:52:16 serg@serg.mylan +1 -1
    backport wild_compare fix from 4.1 - bug#3924

  sql/sql_base.cc
    1.117.1.62 04/05/29 17:52:16 serg@serg.mylan +1 -1
    backport wild_compare fix from 4.1 - bug#3924

  sql/sql_acl.h
    1.14.1.5 04/05/29 17:52:16 serg@serg.mylan +1 -1
    backport wild_compare fix from 4.1 - bug#3924

  sql/sql_acl.cc
    1.51.1.75 04/05/29 17:52:16 serg@serg.mylan +5 -5
    backport wild_compare fix from 4.1 - bug#3924

  mysys/mf_wfile.c
    1.5.1.1 04/05/29 17:52:16 serg@serg.mylan +2 -2
    backport wild_compare fix from 4.1 - bug#3924

  mysys/mf_wcomp.c
    1.4.1.1 04/05/29 17:52:16 serg@serg.mylan +45 -22
    backport wild_compare fix from 4.1 - bug#3924

  include/my_sys.h
    1.75.1.33 04/05/29 17:52:16 serg@serg.mylan +1 -1
    backport wild_compare fix from 4.1 - bug#3924

ChangeSet
  1.1665.4.8 04/05/29 17:50:05 sergefp@mysql.com +4 -0
   * Undo of range optimizer fix from previous changeset
   * Fixed test results.

  sql/opt_range.cc
    1.111.2.3 04/05/29 17:50:01 sergefp@mysql.com +13 -11
    Undo of previous fix:
    If cost(full_scan_on_covering_index) < cost(best_range_scan) <  cost(full_table_scan) 
    use full_scan_on_covering_index, not best_range_scan.
    The fix affects read plan choice for more queries then initially anticipated, so I'm reverting it for now, will get back to this later

  mysql-test/r/rowid_order_innodb.result
    1.3 04/05/29 17:50:01 sergefp@mysql.com +1 -1
    new index_merge EXPLAIN output format changes

  mysql-test/r/rowid_order_bdb.result
    1.2 04/05/29 17:50:01 sergefp@mysql.com +1 -1
    new index_merge EXPLAIN output format changes

  mysql-test/r/index_merge_ror.result
    1.3 04/05/29 17:50:01 sergefp@mysql.com +1 -0
    Typo fix

ChangeSet
  1.1665.4.7 04/05/29 02:04:01 sergefp@mysql.com +10 -0
   * New index_merge EXPLAIN output format
   * Fixed a problem with wrong query results for partially covering keys in ROR-index_merge
   * ROR-intersection retrieval plan choice algorithm now uses less disk IO
     - and properly processes clustered PK range scans 
   * Fixed several minor range optimizer problems
   * Added more comments
   * Code cleanup

  sql/sql_select.cc
    1.239.1.3 04/05/29 02:03:57 sergefp@mysql.com +35 -17
    Comments added, code cleanup
    New index_merge EXPLAIN output

  sql/opt_range.h
    1.37.1.2 04/05/29 02:03:57 sergefp@mysql.com +144 -51
    Comments added, code cleanup
    New index_merge EXPLAIN output format related changes

  sql/opt_range.cc
    1.111.2.2 04/05/29 02:03:57 sergefp@mysql.com +812 -344
    Comments added, code cleanup
    Numerous fixes, see changeset description

  mysys/my_bitmap.c
    1.19 04/05/29 02:03:57 sergefp@mysql.com +16 -6
    Comments added, code cleanup

  mysql-test/t/index_merge_ror_cpk.test
    1.2 04/05/29 02:03:57 sergefp@mysql.com +3 -0
    More tests added

  mysql-test/t/index_merge_ror.test
    1.2 04/05/29 02:03:57 sergefp@mysql.com +35 -1
    New index_merge EXPLAIN output format changes
    Added test for scans on keys that cover fields partially
    Fixed a minor ROR optimizer problem

  mysql-test/r/index_merge_ror_cpk.result
    1.3 04/05/29 02:03:57 sergefp@mysql.com +11 -5
    More tests added

  mysql-test/r/index_merge_ror.result
    1.2 04/05/29 02:03:57 sergefp@mysql.com +52 -25
    New index_merge EXPLAIN output format changes
    Added test for scans on keys that cover fields partially
    Fixed a minor ROR optimizer problem

  mysql-test/r/index_merge_innodb.result
    1.3.1.1 04/05/29 02:03:57 sergefp@mysql.com +4 -4
    New index_merge EXPLAIN output format changes

  mysql-test/r/index_merge.result
    1.6.1.1 04/05/29 02:03:56 sergefp@mysql.com +31 -31
    New index_merge EXPLAIN output format changes

ChangeSet
  1.1616.457.1 04/05/28 21:31:51 bell@sanja.is.com.ua +5 -0
  if exists should not be used inside test
  removed influence of some tests on other tests

  mysql-test/t/system_mysql_db_fix.test
    1.4 04/05/28 21:31:19 bell@sanja.is.com.ua +4 -0
    removed influence on other tests

  mysql-test/t/subselect.test
    1.58.1.50 04/05/28 21:31:19 bell@sanja.is.com.ua +1 -1
    if exists should not be used inside test

  mysql-test/t/multi_update.test
    1.26.1.11 04/05/28 21:31:19 bell@sanja.is.com.ua +1 -0
    removed influence on other tests

  mysql-test/r/subselect.result
    1.67.1.59 04/05/28 21:31:19 bell@sanja.is.com.ua +1 -1
    if exists should not be used inside test

  mysql-test/r/multi_update.result
    1.25.1.11 04/05/28 21:31:19 bell@sanja.is.com.ua +1 -0
    removed influence on other tests

ChangeSet
  1.1665.13.2 04/05/28 19:43:06 pem@mysql.comhem.se +3 -0
  Fixed BUG#2460: Crash wih Stored Procedure and UNION.

  sql/sql_union.cc
    1.93.1.1 04/05/28 19:43:02 pem@mysql.com +3 -1
    When called from stored procedures, tabs might be reset already.

  mysql-test/t/sp.test
    1.65 04/05/28 19:43:02 pem@mysql.com +46 -0
    Added test case for BUG#2460.

  mysql-test/r/sp.result
    1.65 04/05/28 19:43:02 pem@mysql.com +45 -0
    Added test case for BUG#2460.

ChangeSet
  1.1665.13.1 04/05/28 18:33:14 pem@mysql.comhem.se +3 -0
  Added test cases for the following bugs that have been fixed by recent changes:
   BUG#1863: CREATE TABLE in Stored Procedure sometimes crashes on repeated calls.
   BUG#2656: select with join in stored procedure: erroneous result on 2nd call.
   BUG#3426: IF x IS NULL in stored procedure fails on second call within connection.
   BUG#3448: Stored Procedures with inner joins possible bug.
   BUG#3734: Stored procedure returns wrong rows with fulltext parameter.
   BUG#3863: Stored procedure crash when incrementing variable in a loop.
  
  (And corrected the row count output to the client after CALL)

  sql/sql_parse.cc
    1.337.1.1 04/05/28 18:33:10 pem@mysql.com +1 -1
    Corrected the row_count output to the client.

  mysql-test/t/sp.test
    1.64 04/05/28 18:33:10 pem@mysql.com +209 -0
    New test cases for fixed bugs.

  mysql-test/r/sp.result
    1.64 04/05/28 18:33:10 pem@mysql.com +180 -0
    New test case results for fixed bugs.

ChangeSet
  1.1616.453.3 04/05/28 14:10:27 msvensson@build.mysql.com +1 -0
  Restore.cpp:
    Added include of ndbout

ChangeSet
  1.1616.1.251 04/05/28 11:56:35 tomas@poseidon.bredbandsbolaget.se +1 -0
  problems with automake version, need to figure out different way to do this

  ndb/src/common/transporter/Makefile.am
    1.5 04/05/28 11:55:48 tomas@poseidon.bredbandsbolaget.se +16 -7
    problems with automake version, need to figure out different way to do this

  ndb/src/kernel/blocks/backup/restore/Restore.cpp
    1.5.1.1 04/05/28 13:01:56 msvensson@build.mysql.com +0 -0
    Added include of ndbout

ChangeSet
  1.1616.456.1 04/05/28 15:59:29 hf@deer.(none) +6 -0
  Proposed fix for bug #3412 (embedded server: prepared statement returns
  empty recordset where some records should be found)

  sql/sql_show.cc
    1.122.1.45 04/05/28 15:58:54 hf@deer.(none) +1 -6
    code simplified with vio_ok()

  sql/sql_class.h
    1.146.34.10 04/05/28 15:58:54 hf@deer.(none) +2 -0
    method added to always return TRUE in embedded library, and to
    sheck thd.net.vio otherwise

  sql/sql_class.cc
    1.105.20.5 04/05/28 15:58:54 hf@deer.(none) +1 -1
    Here is the place of the error - we should not examine net.vio in
    embedded library

  sql/slave.cc
    1.188.1.57 04/05/28 15:58:54 hf@deer.(none) +1 -1
    vio_ok used

  sql/mysqld.cc
    1.356.58.4 04/05/28 15:58:54 hf@deer.(none) +1 -1
    vio_ok used

  sql/ha_myisam.cc
    1.115.1.28 04/05/28 15:58:54 hf@deer.(none) +1 -3
    Code simplified with vio_ok()

ChangeSet
  1.1616.453.2 04/05/28 12:09:12 msvensson@build.mysql.com +1 -0
  ha_ndbcluster.cc:
    Missing  semicolon

  sql/ha_ndbcluster.cc
    1.16.1.1 04/05/28 12:06:33 msvensson@build.mysql.com +1 -1
    Missing  semicolon

ChangeSet
  1.1346.627.1 04/05/28 15:01:16 ram@gw.mysql.r18.ru +3 -0
  a fix.
  (Bug#3738: SQL_CALC_FOUND_ROWS ignores WHERE if LIMIT used,
   Bug#3845: wrong FOUND_ROWS result)

  sql/sql_select.cc
    1.152.1.128 04/05/28 15:00:55 ram@gw.mysql.r18.ru +4 -2
    a fix.
    (Bug#3738: SQL_CALC_FOUND_ROWS ignores WHERE if LIMIT used,
     Bug#3845: wrong FOUND_ROWS result)

  mysql-test/t/select_found.test
    1.5.1.5 04/05/28 15:00:55 ram@gw.mysql.r18.ru +19 -0
    a fix.
    (Bug#3738: SQL_CALC_FOUND_ROWS ignores WHERE if LIMIT used,
     Bug#3845: wrong FOUND_ROWS result)

  mysql-test/r/select_found.result
    1.6.1.6 04/05/28 15:00:55 ram@gw.mysql.r18.ru +17 -0
    a fix.
    (Bug#3738: SQL_CALC_FOUND_ROWS ignores WHERE if LIMIT used,
     Bug#3845: wrong FOUND_ROWS result)

ChangeSet
  1.1616.1.249 04/05/28 10:52:47 mskold@mysql.com +2 -0
  Added missing ;

ChangeSet
  1.1616.454.1 04/05/28 09:22:27 tomas@poseidon.bredbandsbolaget.se +4 -0
  added shared mem + sci options for ndb

  BitKeeper/etc/logging_ok
    1.233.1.76 04/05/28 10:52:46 mskold@mysql.com +1 -0
    Logging to logging@openlogging.org accepted

  BitKeeper/etc/logging_ok
    1.233.1.75 04/05/28 09:20:38 tomas@poseidon.bredbandsbolaget.se +1 -0
    Logging to logging@openlogging.org accepted

  ndb/src/common/transporter/Makefile.am
    1.4 04/05/28 09:20:26 tomas@poseidon.bredbandsbolaget.se +7 -1
    added shared mem + sci options for ndb

  configure.in
    1.201.8.25 04/05/28 09:20:26 tomas@poseidon.bredbandsbolaget.se +3 -0
    added shared mem + sci options for ndb

  acinclude.m4
    1.95.1.4 04/05/28 09:20:25 tomas@poseidon.bredbandsbolaget.se +14 -10
    added shared mem + sci options for ndb

  sql/ha_ndbcluster.cc
    1.17 04/05/28 10:50:24 mskold@mysql.com +1 -1
    Added missing ;

ChangeSet
  1.1346.623.24 04/05/28 11:15:59 marko@hundin.mysql.fi +4 -0
  InnoDB: Add diagnostics when tmpfile() fails at start (Bug #3919)

  innobase/os/os0file.c
    1.44.1.26 04/05/28 11:15:56 marko@hundin.mysql.fi +30 -14
    Add os_file_create_tmpfile()
    os_file_handle_error(): remove unused first parameter

  innobase/lock/lock0lock.c
    1.20.1.16 04/05/28 11:15:56 marko@hundin.mysql.fi +1 -1
    Replace tmpfile() with os_file_create_tmpfile()

  innobase/include/os0file.h
    1.19.1.4 04/05/28 11:15:56 marko@hundin.mysql.fi +7 -0
    Add os_file_create_tmpfile()

  innobase/dict/dict0dict.c
    1.26.1.27 04/05/28 11:15:56 marko@hundin.mysql.fi +1 -1
    Replace tmpfile() with os_file_create_tmpfile()

ChangeSet
  1.1346.623.23 04/05/28 11:02:34 monty@mysql.com +2 -0
  Added option --config-extra-env to Do-compile

  include/my_global.h
    1.34.1.31 04/05/28 11:02:33 monty@mysql.com +5 -5
    Cleaned up comment to follow same indentation style as the rest of the code

  Build-tools/Do-compile
    1.74.2.2 04/05/28 11:02:33 monty@mysql.com +19 -2
    Added option --config-extra-env

ChangeSet
  1.1616.452.1 04/05/28 09:50:17 magnus@neptunus.(none) +2 -0
  Fix for compile problem with newtonapi 

  ndb/src/newtonapi/dba_schema.cpp
    1.2 04/05/28 09:50:15 magnus@neptunus.(none) +10 -9
    Use NdbSchemaCon.hpp from newtonapi

  ndb/src/Makefile
    1.2.2.1 04/05/28 09:50:15 magnus@neptunus.(none) +1 -0
    Compile newtonapi

ChangeSet
  1.1616.443.17 04/05/28 10:41:38 monty@mysql.com +2 -0
  New patch to ensure that InnoDB gets values for CFLAGS and CXXFLAGS

  sql/handler.h
    1.89.1.22 04/05/28 10:41:36 monty@mysql.com +2 -2
    Remove compiler warnings

  configure.in
    1.201.12.4 04/05/28 10:41:36 monty@mysql.com +1 -0
    New patch to ensure that InnoDB gets values for CFLAGS and CXXFLAGS

ChangeSet
  1.1616.1.247 04/05/28 09:09:47 joreland@mysql.com +2 -0
  BUg#3910

  ndb/src/kernel/ndb-main/Main.cpp
    1.14 04/05/28 09:09:45 joreland@mysql.com +3 -3
    WEXITSTATUS only contains valid value if WIFEXITED

  ndb/src/kernel/blocks/cmvmi/Cmvmi.cpp
    1.4 04/05/28 09:09:45 joreland@mysql.com +4 -0
    New error insert for ndbrequire

ChangeSet
  1.1346.623.22 04/05/28 09:06:19 heikki@hundin.mysql.fi +1 -0
  my_global.h:
    Improved a comment about HAVE_BROKEN_PREAD: pread() only works on HP-UX 11.0 if one installs kernel patch PHKL_20349 or greater

  include/my_global.h
    1.34.1.30 04/05/28 09:06:10 heikki@hundin.mysql.fi +5 -1
    Improved a comment about HAVE_BROKEN_PREAD: pread() only works on HP-UX 11.0 if one installs kernel patch PHKL_20349 or greater

ChangeSet
  1.1616.443.16 04/05/28 02:36:43 monty@mysql.com +3 -0
  Portability fix (using 'char' as argument to C functions may give warnings)

  strings/int2str.c
    1.8 04/05/28 02:36:41 monty@mysql.com +23 -18
    Portability fix (using 'char' as a parameter may give a warning)

  mysql-test/r/variables.result
    1.21.1.29 04/05/28 02:36:41 monty@mysql.com +1 -0
    update results after merge

  include/m_string.h
    1.30 04/05/28 02:36:41 monty@mysql.com +1 -1
    Portability fix (using 'char' as argument to C functions may give warnings)

ChangeSet
  1.1346.623.21 04/05/28 02:00:34 monty@mysql.com +2 -0
  Portability fix for HPUX

  innobase/os/os0file.c
    1.44.1.25 04/05/28 02:00:30 monty@mysql.com +2 -2
    Don't use pread/pwrite on systems where these are not working.
    This fixes a bug on HPUX, where InnoDB didn't create the ibdata1 file correctly.

  configure.in
    1.191.1.112 04/05/28 02:00:30 monty@mysql.com +3 -0
    Ensure that innodb gets system specific CFLAGS and CXXFLAGS

ChangeSet
  1.1346.623.20 04/05/28 01:02:20 monty@mysql.com +1 -0
  Always enable HAVE_COMPRESS on netware

  include/config-netware.h
    1.2.1.2 04/05/28 01:02:18 monty@mysql.com +4 -0
    Always enable HAVE_COMPRESS on netware
    We can't detect compress in configure on netware because we must use AC_TRY_RUN to detect zlib on other platforms

ChangeSet
  1.1346.623.19 04/05/28 00:32:55 monty@mysql.com +2 -0
  Portability fix for 32 bit file systems

  mysql-test/t/variables.test
    1.11.1.9 04/05/28 00:32:52 monty@mysql.com +1 -0
    Portability fix for 32 bit file systems

  mysql-test/r/variables.result
    1.15.1.9 04/05/28 00:32:52 monty@mysql.com +1 -1
    Portability fix for 32 bit file systems

ChangeSet
  1.1616.451.2 04/05/28 00:03:19 monty@mysql.com +2 -0
  Remove some code from sql_yacc.cc that doesn't do anything except produce warnings on VC++

  scripts/make_win_src_distribution.sh
    1.15 04/05/28 00:03:17 monty@mysql.com +4 -2
    Remove some code from sql_yacc.cc that doesn't do anything except produce warnings on VC++

  mysql-test/t/fulltext.test
    1.62 04/05/28 00:03:17 monty@mysql.com +0 -4
    After merge fix

ChangeSet
  1.1346.623.18 04/05/27 23:39:50 jani@a80-186-24-72.elisa-laajakaista.fi +2 -0
  Merged in some patches from Novell.

  netware/mysqld_safe.c
    1.6 04/05/27 23:39:40 jani@a80-186-24-72.elisa-laajakaista.fi +69 -39
    Patch from Novell, new option --set-variable.
    

  netware/BUILD/nwbootstrap
    1.4.2.1 04/05/27 23:39:39 jani@a80-186-24-72.elisa-laajakaista.fi +5 -0
    Patch from Novell, create the libmysqld.imp file.
    

ChangeSet
  1.1346.623.17 04/05/27 22:53:36 monty@mysql.com +2 -0
  removed reference to not existing library lib_release\dbug.lib

  VC++Files/sql/mysqld.dsp
    1.6.1.11 04/05/27 22:53:32 monty@mysql.com +1 -1
    removed reference to not existing library lib_release\dbug.lib

  VC++Files/comp_err/comp_err.dsp
    1.1.1.5 04/05/27 22:53:32 monty@mysql.com +1 -1
    removed reference to not existing library lib_release\dbug.lib

ChangeSet
  1.1616.1.244 04/05/27 21:18:45 joreland@mysql.com +1 -0
  Fix dependency for mgmsrv

  ndb/src/mgmsrv/Makefile.am
    1.5 04/05/27 21:18:43 joreland@mysql.com +3 -1
    Fix dependency for mgmsrv

ChangeSet
  1.1346.623.16 04/05/27 21:14:59 serg@serg.mylan +4 -0
  backport bug#2708 fix from 4.1

  mysql-test/t/fulltext.test
    1.34.2.11 04/05/27 21:14:56 serg@serg.mylan +4 -0
    backport bug#2708 fix from 4.1

  mysql-test/r/fulltext.result
    1.29.1.17 04/05/27 21:14:56 serg@serg.mylan +3 -0
    backport bug#2708 fix from 4.1

  myisam/ft_parser.c
    1.24.1.7 04/05/27 21:14:56 serg@serg.mylan +24 -16
    backport bug#2708 fix from 4.1

  myisam/ft_boolean_search.c
    1.47.1.16 04/05/27 21:14:56 serg@serg.mylan +1 -1
    perlify comment

ChangeSet
  1.1616.450.2 04/05/27 21:03:05 joreland@mysql.com +8 -0
  Use ndbclient more

  ndb/test/run-test/Makefile.am
    1.4 04/05/27 21:02:30 joreland@mysql.com +3 -2
    LDADD ndbclient

  ndb/src/mgmsrv/Makefile.am
    1.2.1.1 04/05/27 21:02:30 joreland@mysql.com +4 -5
    LDADD ndbclient

  ndb/src/mgmclient/Makefile.am
    1.2.1.1 04/05/27 21:02:30 joreland@mysql.com +4 -8
    LDADD ndbclient

  ndb/src/kernel/ndb-main/Makefile.am
    1.2.1.1 04/05/27 21:02:30 joreland@mysql.com +2 -2
    Fix LDADD

  ndb/src/cw/cpcd/Makefile.am
    1.3 04/05/27 21:02:30 joreland@mysql.com +1 -1
    LDADD ndbclient

  ndb/config/type_util.mk.am
    1.2 04/05/27 21:02:30 joreland@mysql.com +0 -5
    remove LDADD from type

  ndb/config/type_ndbapi.mk.am
    1.3 04/05/27 21:02:30 joreland@mysql.com +0 -1
    remove LDADD from type

  configure.in
    1.201.15.1 04/05/27 21:02:30 joreland@mysql.com +2 -0
    Include mgmapi

ChangeSet
  1.1616.445.11 04/05/27 18:34:55 mronstrom@mysql.com +1 -0
  Fix for source of libndbclient

ChangeSet
  1.1616.445.10 04/05/27 17:11:30 mronstrom@mysql.com +1 -0
  Fix for building libndbclient before entering kernel

ChangeSet
  1.1616.445.9 04/05/27 16:41:55 tomas@poseidon.(none) +2 -0
  oops ndb mistake

  ndb/src/kernel/blocks/backup/restore/Makefile.am
    1.3 04/05/27 16:41:51 tomas@poseidon.(none) +1 -1
    oops ndb mistake

  ndb/config/type_ndbapitest.mk.am
    1.4 04/05/27 16:41:51 tomas@poseidon.(none) +1 -1
    oops ndb mistake

ChangeSet
  1.1616.445.8 04/05/27 16:38:40 tomas@poseidon.(none) +2 -0
  fix ndb make

  ndb/src/Makefile.am
    1.5 04/05/27 18:34:50 mronstrom@mysql.com +1 -1
    Fix for source of libndbclient

  ndb/src/Makefile.am
    1.4 04/05/27 17:10:12 mronstrom@mysql.com +1 -1
    Fix for building libndbclient before entering kernel

  ndb/src/Makefile.am
    1.3 04/05/27 16:38:36 tomas@poseidon.(none) +2 -0
    fix ndb make

  ndb/config/type_ndbapitest.mk.am
    1.3 04/05/27 16:38:36 tomas@poseidon.(none) +1 -2
    fix ndb make

ChangeSet
  1.1616.445.7 04/05/27 16:28:41 tomas@poseidon.(none) +5 -0
  ndb fixes see files

  ndb/src/common/transporter/Transporter.hpp
    1.2 04/05/27 16:28:38 tomas@poseidon.(none) +2 -0
    ndb_global for sci and shm defines

  ndb/src/common/transporter/Makefile.am
    1.3 04/05/27 16:28:38 tomas@poseidon.(none) +2 -1
    small fix

  configure.in
    1.201.8.21 04/05/27 16:28:38 tomas@poseidon.(none) +1 -4
    added dependency for ndblibs to mysql server

  acinclude.m4
    1.95.1.3 04/05/27 16:28:37 tomas@poseidon.(none) +39 -0
    added switched for shm sci in ndb

  acconfig.h
    1.37.2.1 04/05/27 16:28:37 tomas@poseidon.(none) +6 -0
    added switched for shm sci in ndb

ChangeSet
  1.1616.445.6 04/05/27 15:47:31 tomas@poseidon.(none) +4 -0
  changed to ndbclient

  ndb/src/ndbapi/Makefile.am
    1.2.1.1 04/05/27 15:47:28 tomas@poseidon.(none) +1 -1
    changed to ndbclient

  ndb/src/mgmapi/Makefile.am
    1.2.1.1 04/05/27 15:47:28 tomas@poseidon.(none) +1 -1
    changed to ndbclient

  ndb/src/Makefile.am
    1.2 04/05/27 15:47:28 tomas@poseidon.(none) +13 -0
    changed to ndbclient

  acinclude.m4
    1.95.1.2 04/05/27 15:47:28 tomas@poseidon.(none) +1 -1
    changed to ndbclient

ChangeSet
  1.1616.449.2 04/05/27 20:31:30 hf@deer.(none) +9 -0
  WL#1163 (Make spatial code separable for other parts)
  --with-geometry and
  --with-embedded-privilege-control
  configure switches added

  mysql-test/r/have_geometry.require
    1.1 04/05/27 20:31:28 hf@deer.(none) +2 -0

  mysql-test/r/have_geometry.require
    1.0 04/05/27 20:31:28 hf@deer.(none) +0 -0
    BitKeeper file /home/hf/work/mysql-4.1.ftr/mysql-test/r/have_geometry.require

  mysql-test/include/have_geometry.inc
    1.1 04/05/27 20:31:27 hf@deer.(none) +4 -0

  sql/set_var.cc
    1.34.43.1 04/05/27 20:31:27 hf@deer.(none) +2 -0
    option's descriptions added

  sql/mysqld.cc
    1.356.59.1 04/05/27 20:31:27 hf@deer.(none) +11 -0
    option's handling added

  sql/mysql_priv.h
    1.186.76.1 04/05/27 20:31:27 hf@deer.(none) +1 -0
    option's variables added

  mysql-test/t/gis.test
    1.13 04/05/27 20:31:27 hf@deer.(none) +2 -0
    test modified to take HAVE_GEOMETRY in account

  mysql-test/t/gis-rtree.test
    1.7 04/05/27 20:31:27 hf@deer.(none) +2 -0
    test modified to take HAVE_GEOMETRY in account

  mysql-test/include/have_geometry.inc
    1.0 04/05/27 20:31:27 hf@deer.(none) +0 -0
    BitKeeper file /home/hf/work/mysql-4.1.ftr/mysql-test/include/have_geometry.inc

  myisam/mi_open.c
    1.78 04/05/27 20:31:27 hf@deer.(none) +1 -0
    #include added

  acconfig.h
    1.37.1.1 04/05/27 20:31:27 hf@deer.(none) +9 -0
    necessary lines added

ChangeSet
  1.1616.443.12 04/05/27 17:54:40 dlenev@brandersnatch.localdomain +20 -0
  Made my_snprintf() behavior snprintf() compatible when printing %x arguments (it should
  produce hex digits in lower case). (fixed version)
  
  Replaced _dig_vec array with two _dig_vec_upper/_dig_vec_lower arrays.
  Added extra argument to int2str function which controls case of digits you get.
  Replaced lot of invocations of int2str for decimal radix with more optimized int10_to_str()
  function.
  Removed unused my_itoa/my_ltoa functions.

  strings/my_vsnprintf.c
    1.25 04/05/27 17:54:36 dlenev@brandersnatch.localdomain +1 -1
    If my_snprintf() is printing %x argument it should produce lower case hexadecimal digits
    to be snprintf() compatible.

  strings/longlong2str.c
    1.8 04/05/27 17:54:35 dlenev@brandersnatch.localdomain +4 -6
    _dig_vec became _dig_vec_upper.

  strings/longlong2str-x86.s
    1.10 04/05/27 17:54:35 dlenev@brandersnatch.localdomain +2 -2
    _dig_vec became _dig_vec_upper.

  strings/int2str.c
    1.7 04/05/27 17:54:34 dlenev@brandersnatch.localdomain +52 -50
    Replaced _dig_vec by _dig_vec_upper/_dig_vec_lower pair.
    int2str() now has one more argument which controls case of digits it will produce.
    my_itoa()/my_ltoa() functions were removed because they were never used in our code.

  sql/sql_bitmap.h
    1.6 04/05/27 17:54:33 dlenev@brandersnatch.localdomain +4 -4
    _dig_vec became _dig_vec_upper.

  sql/password.c
    1.31 04/05/27 17:54:33 dlenev@brandersnatch.localdomain +2 -2
    _dig_vec became _dig_vec_upper.

  sql/mysqld.cc
    1.356.58.3 04/05/27 17:54:32 dlenev@brandersnatch.localdomain +3 -3
    Replaced int2str invocations with radix argument equal to 10 with optimized int10_to_str()
    call.

  sql/item_strfunc.cc
    1.175 04/05/27 17:54:32 dlenev@brandersnatch.localdomain +5 -8
    _dig_vec became _dig_vec_upper. Also we don't need hex[] array in this file now because we
    have _dig_vec_lower instead.

  sql-common/client.c
    1.46.1.14 04/05/27 17:54:31 dlenev@brandersnatch.localdomain +1 -1
    Replaced int2str invocation with radix argument equal to 10 with optimized int10_to_str()
    call.

  mysys/my_tempnam.c
    1.16 04/05/27 17:54:31 dlenev@brandersnatch.localdomain +1 -1
    _dig_vec became _dig_vec_upper.

  mysys/my_error.c
    1.13.1.1 04/05/27 17:54:30 dlenev@brandersnatch.localdomain +2 -2
    Replaced int2str invocations with radix argument equal to 10 with optimized int10_to_str()
    call.

  mysys/mf_tempfile.c
    1.20 04/05/27 17:54:30 dlenev@brandersnatch.localdomain +1 -1
    _dig_vec became _dig_vec_upper.

  myisam/myisamchk.c
    1.92.1.22 04/05/27 17:54:29 dlenev@brandersnatch.localdomain +1 -1
    Replaced int2str invocation with radix argument equal to 10 with optimized int10_to_str()
    call.

  libmysql/libmysql.def
    1.27 04/05/27 17:54:29 dlenev@brandersnatch.localdomain +2 -1
    _dig_vec is obsoleted by _dig_vec_upper/_dig_vec_lower.

  isam/isamchk.c
    1.30 04/05/27 17:54:28 dlenev@brandersnatch.localdomain +2 -2
    Replaced int2str invocations with radix argument equal to 10 with optimized int10_to_str()
    call.

  include/my_global.h
    1.47.6.9 04/05/27 17:54:27 dlenev@brandersnatch.localdomain +0 -6
    my_itoa()/my_ltoa() functions were removed because they were never used in our code.

  include/m_string.h
    1.29 04/05/27 17:54:27 dlenev@brandersnatch.localdomain +5 -10
    _dig_vec is obsoleted by _dig_vec_upper/_dig_vec_lower.
    my_itoa()/my_ltoa() functions were removed because they were never used in our code.
    int2str() now has one more argument which controls case of digits it will produce.

  dbug/dbug.c
    1.18 04/05/27 17:54:26 dlenev@brandersnatch.localdomain +2 -2
     _dig_vec became _dig_vec_upper.

  client/mysqladmin.c
    1.83 04/05/27 17:54:26 dlenev@brandersnatch.localdomain +4 -4
    Replaced int2str invocations with radix argument equal to 10 with optimized int10_to_str()
    call.

  client/mysql.cc
    1.121.1.51 04/05/27 17:54:22 dlenev@brandersnatch.localdomain +4 -4
    Replaced int2str invocations with radix argument equal to 10 with optimized int10_to_str()
    call.

ChangeSet
  1.1616.447.3 04/05/27 13:33:19 tomas@poseidon.(none) +2 -0
  oops

  ndb/config/common.mk.am
    1.4 04/05/27 13:33:16 tomas@poseidon.(none) +1 -1
    oops

  configure.in
    1.201.8.20 04/05/27 13:33:16 tomas@poseidon.(none) +4 -4
    oops

ChangeSet
  1.1616.1.240 04/05/27 15:20:38 joreland@mysql.com +11 -0
  Add mgmapi

  ndb/test/src/Makefile.am
    1.2 04/05/27 15:20:36 joreland@mysql.com +2 -1
    Add mgmapi

  ndb/src/ndbapi/Makefile.am
    1.3 04/05/27 15:20:36 joreland@mysql.com +5 -3
    Add mgmapi

  ndb/src/mgmsrv/Makefile.am
    1.3 04/05/27 15:20:36 joreland@mysql.com +1 -1
    use mgmapi

  ndb/src/mgmclient/Makefile.am
    1.3 04/05/27 15:20:36 joreland@mysql.com +1 -1
    use mgmapi

  ndb/src/mgmapi/Makefile.am
    1.3 04/05/27 15:20:36 joreland@mysql.com +1 -1
    new files

  ndb/src/kernel/vm/Makefile.am
    1.2 04/05/27 15:20:36 joreland@mysql.com +2 -1
    Use mgmapi

  ndb/src/kernel/ndb-main/Makefile.am
    1.3 04/05/27 15:20:36 joreland@mysql.com +1 -1
    Use mgmapi

  ndb/src/common/util/Makefile.am
    1.2 04/05/27 15:20:36 joreland@mysql.com +2 -1
    Add files

  ndb/src/common/mgmcommon/Makefile.am
    1.2 04/05/27 15:20:36 joreland@mysql.com +2 -0
    Add mgmapi

  ndb/src/common/debugger/signaldata/Makefile.am
    1.2 04/05/27 15:20:36 joreland@mysql.com +1 -1
    New files

  configure.in
    1.201.14.1 04/05/27 15:20:36 joreland@mysql.com +2 -0
    Added include of mgmapi

ChangeSet
  1.1616.443.11 04/05/27 15:03:57 marko@hundin.mysql.fi +33 -0
  InnoDB cleanup:
  Disable log archiving code unless #ifdef UNIV_LOG_ARCHIVE
  Remove (char*) casts of string constants; add const qualifiers
  Remove some Hot Backup code unless #ifdef UNIV_HOTBACKUP

ChangeSet
  1.1616.447.2 04/05/27 12:14:19 tomas@poseidon.(none) +2 -0
  see resp file

  ndb/src/common/transporter/Makefile.am
    1.2 04/05/27 12:14:16 tomas@poseidon.(none) +3 -2
    removed SHM in ndb

  configure.in
    1.201.8.19 04/05/27 12:14:16 tomas@poseidon.(none) +4 -4
    added NDB_EXTRA_FLAGS

  sql/ha_innodb.cc
    1.90.1.40 04/05/27 15:03:51 marko@hundin.mysql.fi +7 -3
    Enclose log archiving code in #ifdef UNIV_LOG_ARCHIVE

  innobase/trx/trx0trx.c
    1.35 04/05/27 15:03:51 marko@hundin.mysql.fi +6 -6
    Remove (char*) cast of string constant

  innobase/trx/trx0sys.c
    1.28 04/05/27 15:03:51 marko@hundin.mysql.fi +2 -2
    Remove (char*) cast of string constants

  innobase/trx/trx0roll.c
    1.16 04/05/27 15:03:51 marko@hundin.mysql.fi +8 -8
    Remove (char*) cast of string constants

  innobase/sync/sync0sync.c
    1.28 04/05/27 15:03:51 marko@hundin.mysql.fi +2 -2
    Remove (char*) cast of string constant
    Add const qualifier to string parameter

  innobase/sync/sync0rw.c
    1.15 04/05/27 15:03:51 marko@hundin.mysql.fi +3 -3
    Remove (char*) casts of string constants
    Add const qualifier to string parameter

  innobase/srv/srv0start.c
    1.65 04/05/27 15:03:51 marko@hundin.mysql.fi +46 -28
    Disable log archiving code unless #ifdef UNIV_LOG_ARCHIVE
    Remove (char*) casts of string constants

  innobase/srv/srv0srv.c
    1.62 04/05/27 15:03:51 marko@hundin.mysql.fi +43 -43
    Remove (char*) casts of string constants
    Disable log archiving variables unless #ifdef UNIV_LOG_ARCHIVE

  innobase/row/row0sel.c
    1.51 04/05/27 15:03:51 marko@hundin.mysql.fi +9 -9
    Remove (char*) casts of string constants

  innobase/row/row0mysql.c
    1.60 04/05/27 15:03:51 marko@hundin.mysql.fi +32 -32
    Remove (char*) casts of string constants

  innobase/row/row0ins.c
    1.34 04/05/27 15:03:51 marko@hundin.mysql.fi +22 -23
    Remove (char*) casts of string constants
    Add const qualifiers to string parameters
    row_ins_foreign_check_on_constraint(): Allocate table_name dynamically

  innobase/pars/pars0pars.c
    1.11 04/05/27 15:03:51 marko@hundin.mysql.fi +2 -2
    Add const qualifier to string variable

  innobase/page/page0page.c
    1.18 04/05/27 15:03:51 marko@hundin.mysql.fi +2 -2
    Remove (char*) casts of string constants

  innobase/mem/mem0dbg.c
    1.14 04/05/27 15:03:51 marko@hundin.mysql.fi +3 -3
    Add const qualifiers to string parameters

  innobase/log/log0recv.c
    1.34 04/05/27 15:03:51 marko@hundin.mysql.fi +46 -24
    Enclose ibbackup specific code in #ifdef UNIV_HOTBACKUP
    Enclose disabled log code in #ifdef UNIV_LOG_REPLICATE or UNIV_LOG_ARCHIVE

  innobase/log/log0log.c
    1.35 04/05/27 15:03:51 marko@hundin.mysql.fi +73 -56
    Enclose log archiving code in #ifdef UNIV_LOG_ARCHIVE
    Do not cast string constants to (char*)

  innobase/include/sync0sync.ic
    1.15 04/05/27 15:03:51 marko@hundin.mysql.fi +1 -1
    Add const qualifier to string parameter

  innobase/include/sync0rw.ic
    1.9 04/05/27 15:03:51 marko@hundin.mysql.fi +1 -1
    Add const qualifier to string parameter

  innobase/include/srv0srv.h
    1.33 04/05/27 15:03:51 marko@hundin.mysql.fi +6 -5
    Add const qualifiers to string constants
    Enclose srv_arch_dir and srv_log_archive_on #ifdef UNIV_LOG_ARCHIVE

  innobase/include/mem0dbg.ic
    1.4 04/05/27 15:03:50 marko@hundin.mysql.fi +2 -2
    Add const qualifiers to string parameters

  innobase/include/log0recv.h
    1.12 04/05/27 15:03:50 marko@hundin.mysql.fi +15 -4
    Disable log archiving code unless #ifdef UNIV_LOG_ARCHIVE
    Enclose ibbackup specific code in #ifdef UNIV_HOTBACKUP

  innobase/include/fil0fil.h
    1.15 04/05/27 15:03:50 marko@hundin.mysql.fi +5 -3
    Disable log archiving code unless #ifdef UNIV_LOG_ARCHIVE

  innobase/include/buf0buf.ic
    1.16 04/05/27 15:03:50 marko@hundin.mysql.fi +1 -1
    Add const qualifier to string parameter

  innobase/ibuf/ibuf0ibuf.c
    1.29 04/05/27 15:03:50 marko@hundin.mysql.fi +5 -5
    Remove (char*) casts of string constants

  innobase/ha/ha0ha.c
    1.13 04/05/27 15:03:50 marko@hundin.mysql.fi +2 -0
    Enclose debug assertion in #ifdef UNIV_SYNC_DEBUG

  innobase/fil/fil0fil.c
    1.27 04/05/27 15:03:50 marko@hundin.mysql.fi +52 -52
    Remove (char*) casts of string constants
    Enclose debug assertions in #ifdef UNIV_SYNC_DEBUG

  innobase/dict/dict0load.c
    1.18 04/05/27 15:03:50 marko@hundin.mysql.fi +23 -23
    Remove (char*) casts of string constants

  innobase/dict/dict0dict.c
    1.42 04/05/27 15:03:50 marko@hundin.mysql.fi +34 -21
    Enclosed a debug assertion in #ifdef UNIV_SYNC_DEBUG
    Replaced some debug assertions with preprocessor tests
    Add const qualifiers to string constants

  innobase/dict/dict0crea.c
    1.21 04/05/27 15:03:50 marko@hundin.mysql.fi +11 -11
    Remove (char*) casts of string constants

  innobase/dict/dict0boot.c
    1.10 04/05/27 15:03:50 marko@hundin.mysql.fi +47 -54
    Remove (char*) casts of string constants

  innobase/buf/buf0rea.c
    1.12 04/05/27 15:03:50 marko@hundin.mysql.fi +1 -1
    Corrected compile error #ifdef UNIV_DEBUG

  innobase/buf/buf0buf.c
    1.35 04/05/27 15:03:50 marko@hundin.mysql.fi +2 -0
    Enclose a debug assertion in #ifdef UNIV_SYNC_DEBUG

  innobase/btr/btr0cur.c
    1.35 04/05/27 15:03:50 marko@hundin.mysql.fi +2 -2
    Cast away constness from dfield_get_data() result

ChangeSet
  1.1616.446.1 04/05/27 11:16:14 tomas@poseidon.(none) +2 -0
  fix for gcc version 3 bug

  ndb/src/common/util/new.cpp
    1.5 04/05/27 11:16:12 tomas@poseidon.(none) +4 -0
    fix for gcc version 3 bug

  ndb/src/common/portlib/gcc.cpp
    1.2 04/05/27 11:16:11 tomas@poseidon.(none) +1 -1
    fix for gcc version 3 bug

ChangeSet
  1.1616.445.1 04/05/27 09:36:07 tomas@poseidon.(none) +1 -0
  configure.in:
    automake verion problem

  configure.in
    1.201.8.17 04/05/27 09:35:47 tomas@poseidon.(none) +7 -8
    automake verion problem

ChangeSet
  1.1616.443.9 04/05/27 12:03:16 monty@mysql.com +2 -0
  Portability fixes

  myisam/sort.c
    1.35.1.4 04/05/27 12:03:14 monty@mysql.com +5 -3
    Fixed wrong variable type (gave compiler warning)

  innobase/os/os0thread.c
    1.26 04/05/27 12:03:14 monty@mysql.com +2 -0
    Portability fix

ChangeSet
  1.1616.1.236 04/05/27 08:26:55 tomas@poseidon.(none) +1 -0
  Makefile.am:
    changed install dir

  ndb/test/run-test/Makefile.am
    1.3 04/05/27 08:26:27 tomas@poseidon.(none) +2 -2
    changed install dir

ChangeSet
  1.1346.623.15 04/05/27 11:23:26 monty@mysql.com +1 -0
  Add back wrongly deleted file

  VC++Files/innobase/innobase.dsp
    1.7.1.9 04/05/27 11:23:25 monty@mysql.com +4 -0
    Add back wrongly deleted file

ChangeSet
  1.1616.1.235 04/05/27 08:05:10 tomas@poseidon.(none) +3 -0
  ndb in mysql-test fix

  mysql-test/ndb/stop_ndbcluster.sh
    1.5 04/05/27 08:05:08 tomas@poseidon.(none) +1 -1
    ndb in mysql-test fix

  mysql-test/ndb/install_ndbcluster.sh
    1.5 04/05/27 08:05:08 tomas@poseidon.(none) +3 -3
    ndb in mysql-test fix

  mysql-test/Makefile.am
    1.27 04/05/27 08:05:08 tomas@poseidon.(none) +2 -0
    ndb in mysql-test fix

ChangeSet
  1.1616.374.32 04/05/27 09:45:42 tomas@mc05.(none) +3 -0
  removed version 2 backwards compatability from ndb restore

  ndb/src/kernel/blocks/backup/restore/main.cpp
    1.4.1.1 04/05/27 09:45:39 tomas@mc05.(none) +9 -170
    removed version 2 backwards compatability from ndb restore

  ndb/src/kernel/blocks/backup/restore/Restore.hpp
    1.4.1.1 04/05/27 09:45:39 tomas@mc05.(none) +3 -13
    removed version 2 backwards compatability from ndb restore

  ndb/src/kernel/blocks/backup/restore/Restore.cpp
    1.6 04/05/27 09:45:39 tomas@mc05.(none) +9 -169
    removed version 2 backwards compatability from ndb restore

ChangeSet
  1.1616.1.234 04/05/27 07:04:45 tomas@poseidon.(none) +19 -0
  several ndb automake changes, see respective file

  ndb/tools/Makefile.am
    1.3 04/05/27 07:04:05 tomas@poseidon.(none) +2 -1
    changes install dir

  mysql-test/ndb/stop_ndbcluster.sh
    1.4 04/05/27 07:04:05 tomas@poseidon.(none) +10 -2
    new

  mysql-test/ndb/install_ndbcluster.sh
    1.4 04/05/27 07:04:05 tomas@poseidon.(none) +19 -8
    new

  ndb/test/tools/Makefile.am
    1.4 04/05/27 07:04:04 tomas@poseidon.(none) +1 -2
    changes install dir

  ndb/test/ndbapi/bank/Makefile.am
    1.3 04/05/27 07:04:04 tomas@poseidon.(none) +1 -1
    changes install dir

  ndb/test/ndbapi/Makefile.am
    1.4 04/05/27 07:04:02 tomas@poseidon.(none) +1 -1
    changes install dir

  ndb/src/ndbapi/Makefile.am
    1.2 04/05/27 07:04:01 tomas@poseidon.(none) +1 -1
    changes install dir

  ndb/src/mgmsrv/Makefile.am
    1.2 04/05/27 07:04:01 tomas@poseidon.(none) +6 -8
    changes install dir

  ndb/src/mgmclient/Makefile.am
    1.2 04/05/27 07:04:01 tomas@poseidon.(none) +1 -1
    changes install dir

  ndb/src/mgmapi/Makefile.am
    1.2 04/05/27 07:04:00 tomas@poseidon.(none) +4 -4
    changes install dir

  ndb/src/kernel/ndb-main/Makefile.am
    1.2 04/05/27 07:04:00 tomas@poseidon.(none) +1 -1
    changes install dir

  ndb/src/kernel/blocks/backup/restore/Makefile.am
    1.2 04/05/27 07:04:00 tomas@poseidon.(none) +1 -1
    changes install dir

  ndb/src/cw/cpcd/Makefile.am
    1.2 04/05/27 07:03:59 tomas@poseidon.(none) +1 -1
    changes install dir

  ndb/config/type_ndbapi.mk.am
    1.2 04/05/27 07:03:59 tomas@poseidon.(none) +1 -0
    added LDADD=libNDB_API.la default for type_ndbapi

  ndb/config/common.mk.am
    1.3 04/05/27 07:03:58 tomas@poseidon.(none) +1 -1
    DEFS_LOC in ndb make

  ndb/Makefile.am
    1.3 04/05/27 07:03:58 tomas@poseidon.(none) +28 -0
    ndb headers for install

  configure.in
    1.201.8.16 04/05/27 07:03:57 tomas@poseidon.(none) +30 -1
    added install dirs for ndb

  mysql-test/ndb/Makefile.am
    1.1 04/05/27 06:48:40 tomas@poseidon.(none) +27 -0

  mysql-test/ndb/Makefile.am
    1.0 04/05/27 06:48:40 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/mysql-test/ndb/Makefile.am

  ndb/tools/waiter.cpp
    1.2 04/05/27 06:37:31 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/tools/waiter.cpp -> ndb/tools/waiter.cpp

  mysql-test/ndb/stop_ndbcluster.sh
    1.3 04/05/27 06:31:10 tomas@poseidon.(none) +0 -0
    Rename: mysql-test/ndb/stop_ndbcluster -> mysql-test/ndb/stop_ndbcluster.sh

  mysql-test/ndb/install_ndbcluster.sh
    1.3 04/05/27 06:31:01 tomas@poseidon.(none) +0 -0
    Rename: mysql-test/ndb/install_ndbcluster -> mysql-test/ndb/install_ndbcluster.sh

ChangeSet
  1.1616.443.7 04/05/27 02:53:00 monty@mysql.com +1 -0
  Added new netware file

  netware/Makefile.am
    1.7.1.4 04/05/27 02:52:57 monty@mysql.com +1 -0
    Added new netware file

ChangeSet
  1.1616.443.5 04/05/27 02:50:42 monty@mysql.com +3 -0
  After merge fixes

  libmysqld/libmysqld.c
    1.61 04/05/27 02:50:40 monty@mysql.com +0 -9
    Removed duplicate function (allready in libmysql.c)

  libmysqld/lib_sql.cc
    1.75.1.36 04/05/27 02:50:39 monty@mysql.com +1 -1
    Fixed type of new variables

ChangeSet
  1.1346.623.14 04/05/27 02:47:04 monty@mysql.com +4 -0
  netware files should always be in 'make dist'
  use opt_net_buffer_length instead of net_buffer_length

  netware/Makefile.am
    1.6.1.3 04/05/27 02:47:03 monty@mysql.com +25 -1
    netware files should always be in 'make dist'

  configure.in
    1.191.1.111 04/05/27 02:47:03 monty@mysql.com +1 -0
    netware files should always be in 'make dist'

  client/mysqldump.c
    1.65.1.47 04/05/27 02:47:03 monty@mysql.com +2 -2
    use opt_net_buffer_length instead of net_buffer_length

  Makefile.am
    1.40.1.9 04/05/27 02:47:03 monty@mysql.com +1 -2
    netware files should always be in 'make dist'

  Docs/manual_toc.html
    1.3 04/05/27 02:00:46 monty@mysql.com +0 -0
    Rename: BitKeeper/deleted/.del-manual_toc.html~f483f2d33d9acb41 -> Docs/manual_toc.html

ChangeSet
  1.1616.443.3 04/05/26 21:39:15 mysqldev@mysql.com +2 -0
  logging_ok:
    Logging to logging@openlogging.org accepted
  compile-pentium-max:
    changed --with-ndbcluster to --without-ndbcluster because it fails on 4.1 builds

  BitKeeper/etc/logging_ok
    1.233.29.1 04/05/26 21:38:47 mysqldev@mysql.com +1 -0
    Logging to logging@openlogging.org accepted

  BUILD/compile-pentium-max
    1.10 04/05/26 21:37:26 mysqldev@mysql.com +6 -1
    changed --with-ndbcluster to --without-ndbcluster because it fails on 4.1 builds

ChangeSet
  1.1346.623.13 04/05/26 21:45:58 monty@mysql.com +3 -0
  VC++ portability fix

  sql/mysqld.cc
    1.297.1.201 04/05/26 21:45:55 monty@mysql.com +1 -1
    Fixed comment

  VC++Files/innobase/innobase.dsp
    1.7.1.8 04/05/26 21:45:55 monty@mysql.com +0 -4
    Remove not existing file

  VC++Files/client/mysqlclient.dsp
    1.6.1.5 04/05/26 21:45:55 monty@mysql.com +2 -2
    Added missing /D MYSQL_CLIENT

ChangeSet
  1.1616.443.2 04/05/26 20:56:39 monty@mysql.com +1 -0
  Fixed test to not crash when ndb is not in use

  mysql-test/t/ndb_minmax.test
    1.2 04/05/26 20:56:37 monty@mysql.com +1 -0
    Fixed test to not crash when ndb is not in use

ChangeSet
  1.1616.1.233 04/05/26 17:56:18 tomas@poseidon.(none) +1 -0
  configure.in:
    makefix

  configure.in
    1.201.8.15 04/05/26 17:56:04 tomas@poseidon.(none) +1 -0
    makefix

ChangeSet
  1.1616.1.232 04/05/26 17:51:58 tomas@poseidon.(none) +2 -0
  makefix

  ndb/test/tools/Makefile.am
    1.3 04/05/26 17:51:55 tomas@poseidon.(none) +6 -3
    makefix

  ndb/test/ndbapi/Makefile.am
    1.3 04/05/26 17:51:55 tomas@poseidon.(none) +2 -2
    makefix

ChangeSet
  1.1616.1.231 04/05/26 17:21:38 tomas@poseidon.(none) +1 -0
  Makefile.am:
    new file

  ndb/include/Makefile.am
    1.1 04/05/26 17:21:04 tomas@poseidon.(none) +5 -0

  ndb/include/Makefile.am
    1.0 04/05/26 17:21:04 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/include/Makefile.am

ChangeSet
  1.1346.623.12 04/05/26 19:41:14 marko@hundin.mysql.fi +1 -0
  InnoDB fixup: remove debug assertion that causes compile error
  when UNIV_DEBUG is defined (introduced in ChangeSet@1.1850)

  innobase/que/que0que.c
    1.9.1.8 04/05/26 19:41:12 marko@hundin.mysql.fi +0 -2
    Remove ut_ad() reference to removed parameter next_thr

ChangeSet
  1.1346.623.11 04/05/26 21:40:27 hf@deer.(none) +13 -0
  Fix to make Windows compilation smoother

  tools/mysqlmanager.c
    1.30.1.7 04/05/26 21:40:12 hf@deer.(none) +1 -1
    compiler warns on this line

  sql/log_event.cc
    1.77.1.79 04/05/26 21:40:12 hf@deer.(none) +1 -0
    should be like that in this case

  libmysqld/libmysqld.def
    1.2.1.2 04/05/26 21:40:12 hf@deer.(none) +1 -2
    interface changed

  libmysqld/libmysqld.c
    1.14.2.7 04/05/26 21:40:12 hf@deer.(none) +12 -0
    mysql_get_parameters implementation (embedded)

  libmysqld/lib_sql.cc
    1.25.3.17 04/05/26 21:40:12 hf@deer.(none) +5 -1
    line moved to be above the '#include "mysql.cc"'

  libmysql_r/Makefile.am
    1.9.1.2 04/05/26 21:40:12 hf@deer.(none) +1 -1
    MYSQL_CLIENT define added

  libmysql/libmysql.def
    1.6.1.5 04/05/26 21:40:12 hf@deer.(none) +1 -18
    interface changed

  libmysql/libmysql.c
    1.95.1.51 04/05/26 21:40:12 hf@deer.(none) +8 -0
    mysql_get_parameters implementations

  include/mysql_com.h
    1.43.1.13 04/05/26 21:40:12 hf@deer.(none) +0 -9
    these should not be exported

  include/mysql.h
    1.42.1.11 04/05/26 21:40:12 hf@deer.(none) +13 -0
    mysql_get_parameters() interface added
    #define max_allowed_packet added

  client/mysqldump.c
    1.65.1.46 04/05/26 21:40:12 hf@deer.(none) +10 -3
    local opt_max_allowed_packet and opt_net_buffer_length introduced

  client/mysql.cc
    1.93.1.59 04/05/26 21:40:12 hf@deer.(none) +12 -4
    local opt_max_allowed_packet and opt_net_buffer_length introduced

  VC++Files/innobase/innobase.dsp
    1.7.1.7 04/05/26 21:40:12 hf@deer.(none) +0 -4
    non-existent file removed

ChangeSet
  1.1616.1.230 04/05/26 16:34:55 tomas@poseidon.(none) +1 -0
  removed usage of replication

  ndb/src/mgmclient/CommandInterpreter.hpp
    1.5 04/05/26 16:34:52 tomas@poseidon.(none) +1 -1
    removed usage of global replication

ChangeSet
  1.1616.441.2 04/05/26 19:12:49 monty@mysql.com +24 -0
  Changed prototype of killed_ptr() to make it more portable
  Applied patches for Netware

  strings/my_strtoll10.c
    1.9 04/05/26 19:12:47 monty@mysql.com +1 -1
    Added comment

  sql/sql_insert.cc
    1.86.2.50 04/05/26 19:12:47 monty@mysql.com +1 -1
    safety fix

  sql/sql_class.h
    1.146.34.9 04/05/26 19:12:46 monty@mysql.com +1 -1
    Changed prototype of killed_ptr() to make it more portable

  sql/sql_bitmap.h
    1.5 04/05/26 19:12:46 monty@mysql.com +9 -0
    Applied patches for Netware

  sql/mysqld.cc
    1.356.58.1 04/05/26 19:12:46 monty@mysql.com +4 -3
    Fixed some typos for Netware

  sql/ha_myisam.cc
    1.115.1.27 04/05/26 19:12:46 monty@mysql.com +1 -1
    Changed prototype of killed_ptr() to make it more portable

  sql/filesort.cc
    1.70.1.14 04/05/26 19:12:46 monty@mysql.com +3 -3
    Changed prototype of killed_ptr() to make it more portable

  scripts/make_binary_distribution.sh
    1.55.1.8 04/05/26 19:12:46 monty@mysql.com +17 -15
    Applied patches for Netware
    Changed prototype of killed_ptr() to make it more portable

  netware/static_init_db.sql
    1.2 04/05/26 19:12:46 monty@mysql.com +2 -2
    Applied patches for Netware
    Changed prototype of killed_ptr() to make it more portable

  netware/mysql_test_run.c
    1.3.1.3 04/05/26 19:12:46 monty@mysql.com +174 -49
    Applied patches for Netware
    Changed prototype of killed_ptr() to make it more portable

  netware/mysql_fix_privilege_tables.pl
    1.2 04/05/26 19:12:46 monty@mysql.com +112 -9
    Applied patches for Netware
    Changed prototype of killed_ptr() to make it more portable

  netware/my_manage.c
    1.2.1.3 04/05/26 19:12:46 monty@mysql.com +2 -3
    Applied patches for Netware
    Changed prototype of killed_ptr() to make it more portable

  netware/BUILD/nwbootstrap
    1.4.1.2 04/05/26 19:12:46 monty@mysql.com +5 -2
    Applied patches for Netware
    Changed prototype of killed_ptr() to make it more portable

  netware/BUILD/mwenv
    1.4.1.3 04/05/26 19:12:46 monty@mysql.com +4 -5
    Applied patches for Netware
    Changed prototype of killed_ptr() to make it more portable

  netware/BUILD/compile-linux-tools
    1.3.1.2 04/05/26 19:12:46 monty@mysql.com +2 -0
    Applied patches for Netware
    Changed prototype of killed_ptr() to make it more portable

  mysys/my_static.h
    1.18 04/05/26 19:12:46 monty@mysql.com +2 -0
    Portability fix

  mysys/my_pthread.c
    1.37.1.4 04/05/26 19:12:46 monty@mysql.com +14 -16
    Applied patches for Netware

  mysql-test/t/rpl_relayspace-slave.opt
    1.4 04/05/26 19:12:46 monty@mysql.com +1 -1
    Applied patches for Netware

  myisam/myisamdef.h
    1.59.1.17 04/05/26 19:12:46 monty@mysql.com +1 -1
    Applied patches for Netware
    Changed prototype of killed_ptr() to make it more portable

  myisam/myisamchk.c
    1.92.1.21 04/05/26 19:12:46 monty@mysql.com +13 -3
    Applied patches for Netware
    Changed prototype of killed_ptr() to make it more portable

  libmysql/libmysql.def
    1.25 04/05/26 19:12:46 monty@mysql.com +3 -1
    Applied patches for Netware

  libmysql/libmysql.c
    1.156.1.78 04/05/26 19:12:46 monty@mysql.com +1 -1
    Applied patches for Netware

  innobase/os/os0thread.c
    1.25 04/05/26 19:12:46 monty@mysql.com +7 -0
    Applied patches for Netware

  innobase/include/os0thread.h
    1.16 04/05/26 19:12:46 monty@mysql.com +4 -0
    Applied patches for Netware

ChangeSet
  1.1616.438.3 04/05/26 15:36:55 tomas@poseidon.(none) +285 -0
  neww ndb automake

  ndb/tools/Makefile.am
    1.2 04/05/26 15:36:50 tomas@poseidon.(none) +1 -1
    neww ndb automake

  ndb/test/tools/Makefile.am
    1.2 04/05/26 15:36:50 tomas@poseidon.(none) +29 -1
    neww ndb automake

  ndb/test/run-test/Makefile.am
    1.2 04/05/26 15:36:50 tomas@poseidon.(none) +3 -2
    neww ndb automake

  ndb/test/ndbapi/testBlobs.cpp
    1.6 04/05/26 15:36:50 tomas@poseidon.(none) +0 -1
    neww ndb automake

  ndb/test/ndbapi/testBackup.cpp
    1.3 04/05/26 15:36:50 tomas@poseidon.(none) +1 -2
    neww ndb automake

  ndb/test/ndbapi/bank/testBank.cpp
    1.4 04/05/26 15:36:50 tomas@poseidon.(none) +1 -1
    neww ndb automake

  ndb/test/ndbapi/bank/bankValidateAllGLs.cpp
    1.6 04/05/26 15:36:50 tomas@poseidon.(none) +1 -1
    neww ndb automake

  ndb/test/ndbapi/bank/bankTransactionMaker.cpp
    1.6 04/05/26 15:36:50 tomas@poseidon.(none) +1 -1
    neww ndb automake

  ndb/test/ndbapi/bank/bankTimer.cpp
    1.6 04/05/26 15:36:50 tomas@poseidon.(none) +1 -1
    neww ndb automake

  ndb/test/ndbapi/bank/bankSumAccounts.cpp
    1.6 04/05/26 15:36:50 tomas@poseidon.(none) +1 -1
    neww ndb automake

  ndb/test/ndbapi/bank/bankMakeGL.cpp
    1.6 04/05/26 15:36:50 tomas@poseidon.(none) +1 -1
    neww ndb automake

  ndb/test/ndbapi/bank/bankCreator.cpp
    1.6 04/05/26 15:36:50 tomas@poseidon.(none) +1 -1
    neww ndb automake

  ndb/test/ndbapi/bank/Makefile.am
    1.2 04/05/26 15:36:50 tomas@poseidon.(none) +3 -2
    neww ndb automake

  ndb/test/ndbapi/bank/BankLoad.cpp
    1.4 04/05/26 15:36:50 tomas@poseidon.(none) +1 -1
    neww ndb automake

  ndb/test/ndbapi/bank/Bank.cpp
    1.4 04/05/26 15:36:50 tomas@poseidon.(none) +1 -1
    neww ndb automake

  ndb/test/ndbapi/Makefile.am
    1.2 04/05/26 15:36:50 tomas@poseidon.(none) +78 -1
    neww ndb automake

  ndb/test/Makefile.am
    1.2 04/05/26 15:36:50 tomas@poseidon.(none) +1 -2
    neww ndb automake

  ndb/config/type_ndbapitest.mk.am
    1.2 04/05/26 15:36:50 tomas@poseidon.(none) +4 -0
    neww ndb automake

  ndb/config/common.mk.am
    1.2 04/05/26 15:36:50 tomas@poseidon.(none) +11 -1
    neww ndb automake

  ndb/Makefile.am
    1.2 04/05/26 15:36:50 tomas@poseidon.(none) +6 -1
    neww ndb automake

  configure.in
    1.201.8.13 04/05/26 15:36:50 tomas@poseidon.(none) +18 -8
    neww ndb automake

  ndb/test/ndbapi/ScanFunctions.hpp
    1.3 04/05/26 14:50:59 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/old_dirs/testScan/ScanFunctions.hpp -> ndb/test/ndbapi/ScanFunctions.hpp

  ndb/test/ndbapi/ScanInterpretTest.hpp
    1.3 04/05/26 14:50:02 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/old_dirs/testScanInterpreter/ScanInterpretTest.hpp -> ndb/test/ndbapi/ScanInterpretTest.hpp

  ndb/test/ndbapi/ScanFilter.hpp
    1.3 04/05/26 14:49:56 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/old_dirs/testScanInterpreter/ScanFilter.hpp -> ndb/test/ndbapi/ScanFilter.hpp

  ndb/test/ndbapi/bank/old_dirs/testBank/Makefile
    1.4 04/05/26 14:31:48 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/bank/old_dirs/src/Makefile
    1.4 04/05/26 14:31:45 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/bank/old_dirs/bankTransactionMaker/Makefile
    1.4 04/05/26 14:31:39 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/bank/old_dirs/bankValidateAllGLs/Makefile
    1.4 04/05/26 14:31:28 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/bank/old_dirs/bankTimer/Makefile
    1.4 04/05/26 14:31:20 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/bank/old_dirs/bankMakeGL/Makefile
    1.4 04/05/26 14:31:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/bank/old_dirs/bankSumAccounts/Makefile
    1.4 04/05/26 14:31:01 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/bank/old_dirs/bankCreator/Makefile
    1.4 04/05/26 14:30:42 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/bank/Makefile.am
    1.1 04/05/26 13:33:03 tomas@poseidon.(none) +21 -0

  ndb/test/ndbapi/bank/Makefile.am
    1.0 04/05/26 13:33:03 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/test/ndbapi/bank/Makefile.am

  ndb/test/ndbapi/bank/testBank.cpp
    1.3 04/05/26 13:29:34 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testBank.cpp -> ndb/test/ndbapi/bank/testBank.cpp

  ndb/test/ndbapi/bank/BankLoad.cpp
    1.3 04/05/26 13:24:13 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/BankLoad.cpp -> ndb/test/ndbapi/bank/BankLoad.cpp

  ndb/test/ndbapi/bank/Makefile_old
    1.4 04/05/26 13:22:40 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/bank/Makefile -> ndb/test/ndbapi/bank/Makefile_old

  ndb/test/ndbapi/bank/bankValidateAllGLs.cpp
    1.5 04/05/26 13:21:05 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/bankValidateAllGLs.cpp -> ndb/test/ndbapi/bank/bankValidateAllGLs.cpp

  ndb/test/ndbapi/bank/bankTransactionMaker.cpp
    1.5 04/05/26 13:20:55 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/bankTransactionMaker.cpp -> ndb/test/ndbapi/bank/bankTransactionMaker.cpp

  ndb/test/ndbapi/bank/bankTimer.cpp
    1.5 04/05/26 13:20:46 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/bankTimer.cpp -> ndb/test/ndbapi/bank/bankTimer.cpp

  ndb/test/ndbapi/bank/bankSumAccounts.cpp
    1.5 04/05/26 13:20:40 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/bankSumAccounts.cpp -> ndb/test/ndbapi/bank/bankSumAccounts.cpp

  ndb/test/ndbapi/bank/bankMakeGL.cpp
    1.5 04/05/26 13:20:33 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/bankMakeGL.cpp -> ndb/test/ndbapi/bank/bankMakeGL.cpp

  ndb/test/ndbapi/bank/bankCreator.cpp
    1.5 04/05/26 13:20:14 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/bankCreator.cpp -> ndb/test/ndbapi/bank/bankCreator.cpp

  ndb/test/ndbapi/bank/Bank.cpp
    1.3 04/05/26 13:17:11 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/Bank.cpp -> ndb/test/ndbapi/bank/Bank.cpp

  ndb/test/ndbapi/bank/testBank/Makefile
    1.3 04/05/26 13:16:48 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/bank/src/Makefile
    1.3 04/05/26 13:16:48 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/bank/bankValidateAllGLs/Makefile
    1.3 04/05/26 13:16:48 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/bank/bankTransactionMaker/Makefile
    1.3 04/05/26 13:16:47 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/bank/bankTimer/Makefile
    1.3 04/05/26 13:16:47 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/bank/bankSumAccounts/Makefile
    1.3 04/05/26 13:16:47 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/bank/bankMakeGL/Makefile
    1.3 04/05/26 13:16:47 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/bank/bankCreator/Makefile
    1.3 04/05/26 13:16:47 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/bank/Makefile
    1.3 04/05/26 13:16:47 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/bank/Bank.hpp
    1.3 04/05/26 13:16:47 tomas@poseidon.(none) +0 -0
    mvdir

ChangeSet
  1.1616.442.2 04/05/26 15:11:10 joreland@mysql.com +2 -0
  Bug#3847

  ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
    1.2.1.1 04/05/26 15:11:08 joreland@mysql.com +34 -27
    Bug#3847

  ndb/src/kernel/blocks/dblqh/Dblqh.hpp
    1.2.1.1 04/05/26 15:11:08 joreland@mysql.com +0 -1
    Bug#3847

  ndb/tools/old_dirs/src/counterviewer/CounterViewer.java
    1.2 04/05/26 13:05:55 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbsql/Makefile
    1.2 04/05/26 13:04:46 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Util/SocketUNIX.pm
    1.2 04/05/26 13:04:05 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Util/SocketINET.pm
    1.2 04/05/26 13:04:05 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Socket.pm
    1.2 04/05/26 13:04:05 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Log.pm
    1.2 04/05/26 13:04:05 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Lock.pm
    1.2 04/05/26 13:04:05 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Util/IO.pm
    1.2 04/05/26 13:04:05 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Util/File.pm
    1.2 04/05/26 13:04:05 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Event.pm
    1.2 04/05/26 13:04:05 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Dir.pm
    1.2 04/05/26 13:04:04 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Util/Base.pm
    1.2 04/05/26 13:04:04 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Node.pm
    1.2 04/05/26 13:04:04 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Env.pm
    1.2 04/05/26 13:04:04 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Database.pm
    1.2 04/05/26 13:04:04 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Run/Base.pm
    1.2 04/05/26 13:04:04 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Net/ServerUNIX.pm
    1.2 04/05/26 13:04:04 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Net/ServerINET.pm
    1.2 04/05/26 13:04:04 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Server.pm
    1.2 04/05/26 13:04:04 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Net/NodeMgmt.pm
    1.2 04/05/26 13:04:04 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Net/NodeDb.pm
    1.2 04/05/26 13:04:04 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Net/NodeApi.pm
    1.2 04/05/26 13:04:04 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Node.pm
    1.2 04/05/26 13:04:04 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Env.pm
    1.2 04/05/26 13:04:04 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Database.pm
    1.2 04/05/26 13:04:04 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/ndbrun
    1.2 04/05/26 13:04:03 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/ndbnetd.pl
    1.2 04/05/26 13:04:03 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/ndbnet.pl
    1.2 04/05/26 13:04:03 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Util.pm
    1.2 04/05/26 13:04:03 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Run.pm
    1.2 04/05/26 13:04:03 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Config.pm
    1.2 04/05/26 13:04:03 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Command.pm
    1.2 04/05/26 13:04:03 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Client.pm
    1.2 04/05/26 13:04:03 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Net/Base.pm
    1.2 04/05/26 13:04:03 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/lib/NDB/Net.pm
    1.2 04/05/26 13:04:03 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/ndbnet/Makefile.PL
    1.2 04/05/26 13:04:03 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/testBasicAsynch.cpp
    1.3 04/05/26 13:02:27 tomas@poseidon.(none) +0 -0
    Change mode to -rw-rw-r--

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userTransaction.c
    1.4 04/05/26 13:02:13 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userInterface.cpp
    1.3.1.1 04/05/26 13:02:13 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userHandle.h
    1.2 04/05/26 13:02:13 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userTransaction.c
    1.4 04/05/26 13:02:13 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userInterface.c
    1.4 04/05/26 13:02:13 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userHandle.h
    1.2 04/05/26 13:02:13 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/Makefile
    1.2 04/05/26 13:02:13 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/ndb_error.hpp
    1.4 04/05/26 13:02:13 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/macros.h
    1.4 04/05/26 13:02:13 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/localDbPrepare.c
    1.4 04/05/26 13:02:13 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/Makefile
    1.2 04/05/26 13:02:13 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/mainPopulate.c
    1.4 04/05/26 13:02:13 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/dbPopulate.h
    1.2 04/05/26 13:02:13 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/dbPopulate.c
    1.4 04/05/26 13:02:13 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/Makefile
    1.2 04/05/26 13:02:13 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/include/userInterface.h
    1.2 04/05/26 13:02:13 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/include/testData.h
    1.2 04/05/26 13:02:13 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/mainGenerator.c
    1.4 04/05/26 13:02:13 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/dbGenerator.h
    1.2 04/05/26 13:02:13 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/makevars.sparc
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/makevars.linux
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/dbGenerator.c
    1.4 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/Makefile
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/README
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/src/Makefile
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench.sh
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench-p10.sh
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench-l.sh
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/script/async-lmc-bench-l-p10.sh
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/script/Makefile
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/lib/.empty
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/include/testDefinitions.h
    1.4 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/include/ndb_schema.hpp
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/bin/.empty
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/ndb_error.hpp
    1.4 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/macros.h
    1.4 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/Makefile
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/userInterface.h
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/testData.h
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/dbGenerator.h
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/async-src/generator/Makefile
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/async-src/Makefile
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/lmc-bench/Makefile
    1.2 04/05/26 13:02:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/bulk_copy/Makefile
    1.2 04/05/26 13:01:41 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/restarts/Makefile
    1.2 04/05/26 13:01:28 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testInterpreter/Makefile
    1.2 04/05/26 13:01:25 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testGrep/verify/Makefile
    1.2 04/05/26 13:01:22 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testGrep/Makefile
    1.2 04/05/26 13:01:22 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/vw_test/script/client_start
    1.2 04/05/26 13:01:07 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/vw_test/vcdrfunc.h
    1.2 04/05/26 13:01:06 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/vw_test/utv.h
    1.2 04/05/26 13:01:06 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/vw_test/bcd.h
    1.4 04/05/26 13:01:06 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/vw_test/Makefile
    1.2 04/05/26 13:01:06 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testScan/ScanFunctions.hpp
    1.2 04/05/26 13:00:59 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testScan/Makefile
    1.2 04/05/26 13:00:59 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/ronja/initronja/Makefile
    1.2 04/05/26 13:00:47 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/ronja/benchronja/Makefile
    1.2 04/05/26 13:00:47 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/ronja/Makefile
    1.2 04/05/26 13:00:47 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/interpreterInTup/Makefile
    1.2 04/05/26 13:00:37 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/acid2/VerifyNdbApi.hpp
    1.2 04/05/26 13:00:31 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/acid2/TraceNdbApi.hpp
    1.2 04/05/26 13:00:30 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/acid2/Makefile
    1.2 04/05/26 13:00:30 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/acid/Makefile
    1.2 04/05/26 13:00:17 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/telco/readme
    1.2 04/05/26 12:58:27 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/telco/Makefile
    1.2 04/05/26 12:58:27 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/restarter2/Makefile
    1.2 04/05/26 12:58:19 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testOrderedIndex/Makefile
    1.2 04/05/26 12:58:10 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testNdbApi/Makefile
    1.2 04/05/26 12:58:02 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/create_all_tabs/Makefile
    1.2 04/05/26 12:57:52 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/basicAsynch/Makefile
    1.2 04/05/26 12:57:41 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testBasic/Makefile
    1.2 04/05/26 12:56:55 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/indexTest2/Makefile
    1.2 04/05/26 12:56:46 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/indexTest/Makefile
    1.2 04/05/26 12:56:34 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/flex_bench_mysql/Makefile
    1.2 04/05/26 12:56:24 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/bank/testBank/Makefile
    1.2 04/05/26 12:56:08 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/bank/src/Makefile
    1.2 04/05/26 12:56:08 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/bank/bankValidateAllGLs/Makefile
    1.2 04/05/26 12:56:08 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/bank/bankTransactionMaker/Makefile
    1.2 04/05/26 12:56:08 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/bank/bankTimer/Makefile
    1.2 04/05/26 12:56:08 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/bank/bankSumAccounts/Makefile
    1.2 04/05/26 12:56:08 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/bank/bankMakeGL/Makefile
    1.2 04/05/26 12:56:08 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/bank/bankCreator/Makefile
    1.2 04/05/26 12:56:08 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/bank/Makefile
    1.2 04/05/26 12:56:07 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/bank/Bank.hpp
    1.2 04/05/26 12:56:07 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testRestartGci/Makefile
    1.2 04/05/26 12:56:03 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/flexScan/README
    1.2 04/05/26 12:55:51 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/flexScan/Makefile
    1.2 04/05/26 12:55:50 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/restarter/Makefile
    1.2 04/05/26 12:55:37 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testMgm/Makefile
    1.2 04/05/26 12:55:24 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testIndex/Makefile
    1.2 04/05/26 12:55:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testDataBuffers/Makefile
    1.2 04/05/26 12:54:56 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testScanInterpreter/ScanInterpretTest.hpp
    1.2 04/05/26 12:54:47 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testScanInterpreter/ScanFilter.hpp
    1.2 04/05/26 12:54:47 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testScanInterpreter/Makefile
    1.2 04/05/26 12:54:47 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testSystemRestart/Makefile
    1.2 04/05/26 12:54:40 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testTimeout/Makefile
    1.2 04/05/26 12:54:30 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testTransactions/Makefile
    1.2 04/05/26 12:54:19 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/test_event/Makefile
    1.2 04/05/26 12:54:10 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testDict/Makefile
    1.2 04/05/26 12:53:54 tomas@poseidon.(none) +0 -0
    mvdir

ChangeSet
  1.1616.1.227 04/05/26 14:34:40 magnus@neptunus.(none) +2 -0
  Small fix, addin order by to get predicatble output from select

  mysql-test/t/ndb_autodiscover.test
    1.4 04/05/26 14:34:36 magnus@neptunus.(none) +1 -1
    Added yet another order by to test.

  mysql-test/r/ndb_autodiscover.result
    1.4 04/05/26 14:34:36 magnus@neptunus.(none) +2 -2
    Added yet another order by to test.

ChangeSet
  1.1616.1.225 04/05/26 14:22:49 magnus@neptunus.(none) +3 -0
  Fix after running on a 4-node system.

  sql/ha_ndbcluster.cc
    1.16 04/05/26 14:22:46 magnus@neptunus.(none) +10 -5
    Using HA_WRONG_ASCII_ORDER to activate filesort on a not "sorted" ordered index.

  mysql-test/t/ndb_autodiscover.test
    1.3 04/05/26 14:22:46 magnus@neptunus.(none) +26 -66
    Removed one test that needs manual interaction
    Added order by in some places

  mysql-test/r/ndb_autodiscover.result
    1.3 04/05/26 14:22:46 magnus@neptunus.(none) +2 -33
    Removed one test that needs manual interaction
    Added order by in some places

  ndb/test/ndbapi/old_dirs/testBackup/Makefile
    1.2 04/05/26 11:41:27 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testBlobs/Makefile
    1.2 04/05/26 11:41:07 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testOperations/Makefile
    1.2 04/05/26 11:40:25 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testNodeRestart/Makefile
    1.2 04/05/26 11:40:17 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testOIBasic/times.txt
    1.2 04/05/26 11:39:32 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/testOIBasic/Makefile
    1.2 04/05/26 11:39:32 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/create_tab/Makefile
    1.2 04/05/26 11:39:23 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/drop_all_tabs/Makefile
    1.2 04/05/26 11:39:16 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/flexAsynch/Makefile
    1.3 04/05/26 11:39:08 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/flexBench/ndbplot.pl
    1.2 04/05/26 11:38:59 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/flexBench/Makefile_old
    1.5 04/05/26 11:38:59 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/flexBench/Makefile.am
    1.2 04/05/26 11:38:59 tomas@poseidon.(none) +0 -4
    mvdir

  ndb/test/ndbapi/old_dirs/flexHammer/README
    1.2 04/05/26 11:38:48 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/flexHammer/Makefile
    1.2 04/05/26 11:38:48 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/flexTimedAsynch/Makefile
    1.2 04/05/26 11:38:39 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/ndbapi/old_dirs/flexTT/Makefile
    1.3 04/05/26 11:38:31 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/tools/old_dirs/verify_index/Makefile
    1.2 04/05/26 11:36:40 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/tools/old_dirs/transproxy/Makefile
    1.2 04/05/26 11:36:32 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/select_count/Makefile
    1.2 04/05/26 11:36:18 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/select_all/Makefile
    1.2 04/05/26 11:36:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/list_tables/Makefile
    1.2 04/05/26 11:35:46 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/drop_tab/Makefile
    1.2 04/05/26 11:35:37 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/drop_index/Makefile
    1.2 04/05/26 11:35:30 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/desc/Makefile
    1.2 04/05/26 11:35:22 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/delete_all/Makefile
    1.2 04/05/26 11:35:14 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/create_index/Makefile
    1.2 04/05/26 11:35:06 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/cpcc/Makefile
    1.2 04/05/26 11:35:01 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/tools/old_dirs/copy_tab/Makefile
    1.2 04/05/26 11:34:51 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/tools/old_dirs/hugoCalculator/Makefile
    1.2 04/05/26 11:31:42 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/tools/old_dirs/hugoFill/Makefile
    1.2 04/05/26 11:31:34 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/tools/old_dirs/hugoLoad/Makefile
    1.2 04/05/26 11:31:26 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/tools/old_dirs/hugoLockRecords/Makefile
    1.2 04/05/26 11:31:18 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/tools/old_dirs/hugoPkDelete/Makefile
    1.2 04/05/26 11:31:09 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/tools/old_dirs/hugoPkRead/Makefile
    1.2 04/05/26 11:31:02 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/tools/old_dirs/hugoPkReadRecord/Makefile
    1.2 04/05/26 11:30:54 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/tools/old_dirs/hugoPkUpdate/Makefile
    1.2 04/05/26 11:30:44 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/tools/old_dirs/hugoScanRead/Makefile
    1.2 04/05/26 11:30:33 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/tools/old_dirs/hugoScanUpdate/Makefile
    1.2 04/05/26 11:30:12 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/tools/old_dirs/restart/Makefile
    1.2 04/05/26 11:29:48 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/tools/old_dirs/waiter/waiter.cpp
    1.4 04/05/26 11:28:45 tomas@poseidon.(none) +0 -0
    mvdir

  ndb/test/tools/old_dirs/waiter/Makefile_old
    1.3 04/05/26 11:28:45 tomas@poseidon.(none) +0 -0
    mvdir

ChangeSet
  1.1665.12.2 04/05/26 14:28:35 bell@sanja.is.com.ua +2 -0
  cleunup items of instruction after every instruction execution

  ndb/test/tools/waiter.cpp
    1.1 04/05/26 11:28:28 tomas@poseidon.(none) +56 -0

  ndb/test/tools/waiter.cpp
    1.0 04/05/26 11:28:28 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/test/tools/waiter.cpp

  sql/sp_head.h
    1.37 04/05/26 14:28:28 bell@sanja.is.com.ua +8 -9
    removed blanks at line end
    cleunup items of instruction after every instruction execution

  sql/sp_head.cc
    1.75 04/05/26 14:28:28 bell@sanja.is.com.ua +21 -0
    cleunup items of instruction after every instruction execution

  ndb/tools/Makefile.am
    1.1 04/05/26 11:14:30 tomas@poseidon.(none) +16 -0

  ndb/tools/Makefile.am
    1.0 04/05/26 11:14:30 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/tools/Makefile.am

  ndb/test/run-test/Makefile.am
    1.1 04/05/26 11:14:11 tomas@poseidon.(none) +15 -0

  ndb/test/run-test/Makefile.am
    1.0 04/05/26 11:14:11 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/test/run-test/Makefile.am

  ndb/test/tools/create_index.cpp
    1.5 04/05/26 11:13:16 tomas@poseidon.(none) +0 -0
    Rename: ndb/tools/create_index.cpp -> ndb/test/tools/create_index.cpp

  ndb/test/tools/cpcc.cpp
    1.6 04/05/26 11:13:06 tomas@poseidon.(none) +0 -0
    Rename: ndb/tools/cpcc.cpp -> ndb/test/tools/cpcc.cpp

  ndb/test/tools/copy_tab.cpp
    1.5 04/05/26 11:12:54 tomas@poseidon.(none) +0 -0
    Rename: ndb/tools/copy_tab.cpp -> ndb/test/tools/copy_tab.cpp

  ndb/test/tools/verify_index.cpp
    1.5 04/05/26 11:09:44 tomas@poseidon.(none) +0 -0
    Rename: ndb/tools/verify_index.cpp -> ndb/test/tools/verify_index.cpp

  ndb/test/tools/transproxy.cpp
    1.6 04/05/26 11:09:24 tomas@poseidon.(none) +0 -0
    Rename: ndb/tools/transproxy.cpp -> ndb/test/tools/transproxy.cpp

  ndb/tools/Makefile_old
    1.3 04/05/26 11:05:12 tomas@poseidon.(none) +0 -0
    Rename: ndb/tools/Makefile -> ndb/tools/Makefile_old

  ndb/test/tools/hugoPkDelete.cpp
    1.5 04/05/26 10:45:29 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/tools/hugoPkDel.cpp -> ndb/test/tools/hugoPkDelete.cpp

  ndb/test/tools/hugoPkUpdate.cpp
    1.5 04/05/26 10:45:06 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/tools/hugoPkUpd.cpp -> ndb/test/tools/hugoPkUpdate.cpp

  ndb/test/tools/hugoScanUpdate.cpp
    1.5 04/05/26 10:44:50 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/tools/hugoScanUpd.cpp -> ndb/test/tools/hugoScanUpdate.cpp

  ndb/tools/verify_index.cpp
    1.4 04/05/26 10:32:06 tomas@poseidon.(none) +0 -0
    Rename: ndb/tools/verify_index/verify_index.cpp -> ndb/tools/verify_index.cpp

  ndb/tools/transproxy.cpp
    1.5 04/05/26 10:32:06 tomas@poseidon.(none) +0 -0
    Rename: ndb/tools/transproxy/transproxy.cpp -> ndb/tools/transproxy.cpp

  ndb/tools/select_count.cpp
    1.4 04/05/26 10:32:06 tomas@poseidon.(none) +0 -0
    Rename: ndb/tools/select_count/select_count.cpp -> ndb/tools/select_count.cpp

  ndb/tools/select_all.cpp
    1.4 04/05/26 10:32:06 tomas@poseidon.(none) +0 -0
    Rename: ndb/tools/select_all/select_all.cpp -> ndb/tools/select_all.cpp

  ndb/tools/ndbsql.cpp
    1.3 04/05/26 10:32:06 tomas@poseidon.(none) +0 -0
    Rename: ndb/tools/ndbsql/ndbsql.cpp -> ndb/tools/ndbsql.cpp

  ndb/tools/listTables.cpp
    1.3.1.1 04/05/26 10:32:06 tomas@poseidon.(none) +0 -0
    Rename: ndb/tools/list_tables/listTables.cpp -> ndb/tools/listTables.cpp

  ndb/tools/drop_tab.cpp
    1.4 04/05/26 10:32:06 tomas@poseidon.(none) +0 -0
    Rename: ndb/tools/drop_tab/drop_tab.cpp -> ndb/tools/drop_tab.cpp

  ndb/tools/drop_index.cpp
    1.4 04/05/26 10:32:05 tomas@poseidon.(none) +0 -0
    Rename: ndb/tools/drop_index/drop_index.cpp -> ndb/tools/drop_index.cpp

  ndb/tools/desc.cpp
    1.1.1.1 04/05/26 10:32:05 tomas@poseidon.(none) +0 -0
    Rename: ndb/tools/desc/desc.cpp -> ndb/tools/desc.cpp

  ndb/tools/delete_all.cpp
    1.4 04/05/26 10:32:05 tomas@poseidon.(none) +0 -0
    Rename: ndb/tools/delete_all/delete_all.cpp -> ndb/tools/delete_all.cpp

  ndb/tools/create_index.cpp
    1.4 04/05/26 10:32:05 tomas@poseidon.(none) +0 -0
    Rename: ndb/tools/create_index/create_index.cpp -> ndb/tools/create_index.cpp

  ndb/tools/cpcc.cpp
    1.5 04/05/26 10:32:05 tomas@poseidon.(none) +0 -0
    Rename: ndb/tools/cpcc/cpcc.cpp -> ndb/tools/cpcc.cpp

  ndb/tools/copy_tab.cpp
    1.4 04/05/26 10:32:04 tomas@poseidon.(none) +0 -0
    Rename: ndb/tools/copy_tab/copy_tab.cpp -> ndb/tools/copy_tab.cpp

  ndb/test/ndbapi/test_event.cpp
    1.2 04/05/26 10:29:56 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/test_event/test_event.cpp -> ndb/test/ndbapi/test_event.cpp

  ndb/test/ndbapi/testTransactions.cpp
    1.2 04/05/26 10:29:56 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testTransactions/testTransactions.cpp -> ndb/test/ndbapi/testTransactions.cpp

  ndb/test/ndbapi/size.cpp
    1.4 04/05/26 10:29:56 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/vw_test/size.cpp -> ndb/test/ndbapi/size.cpp

  ndb/test/ndbapi/cdrserver.cpp
    1.4 04/05/26 10:29:56 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/vw_test/cdrserver.cpp -> ndb/test/ndbapi/cdrserver.cpp

  ndb/test/ndbapi/testTimeout.cpp
    1.1.1.1 04/05/26 10:29:55 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testTimeout/testTimeout.cpp -> ndb/test/ndbapi/testTimeout.cpp

  ndb/test/ndbapi/testSystemRestart.cpp
    1.1.1.1 04/05/26 10:29:55 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testSystemRestart/testSystemRestart.cpp -> ndb/test/ndbapi/testSystemRestart.cpp

  ndb/test/ndbapi/testScanInterpreter.cpp
    1.3 04/05/26 10:29:55 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testScanInterpreter/testScanInterpreter.cpp -> ndb/test/ndbapi/testScanInterpreter.cpp

  ndb/test/ndbapi/testScan.cpp
    1.2.1.1 04/05/26 10:29:55 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testScan/testScan.cpp -> ndb/test/ndbapi/testScan.cpp

  ndb/test/ndbapi/testRestartGci.cpp
    1.1.1.1 04/05/26 10:29:55 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testRestartGci/testRestartGci.cpp -> ndb/test/ndbapi/testRestartGci.cpp

  ndb/test/ndbapi/testOrderedIndex.cpp
    1.2 04/05/26 10:29:55 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testOrderedIndex/testOrderedIndex.cpp -> ndb/test/ndbapi/testOrderedIndex.cpp

  ndb/test/ndbapi/testOperations.cpp
    1.2 04/05/26 10:29:54 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testOperations/testOperations.cpp -> ndb/test/ndbapi/testOperations.cpp

  ndb/test/ndbapi/testOIBasic.cpp
    1.5 04/05/26 10:29:54 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testOIBasic/testOIBasic.cpp -> ndb/test/ndbapi/testOIBasic.cpp

  ndb/test/ndbapi/testNodeRestart.cpp
    1.2 04/05/26 10:29:54 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testNodeRestart/testNodeRestart.cpp -> ndb/test/ndbapi/testNodeRestart.cpp

  ndb/test/ndbapi/testNdbApi.cpp
    1.1.1.1 04/05/26 10:29:54 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testNdbApi/testNdbApi.cpp -> ndb/test/ndbapi/testNdbApi.cpp

  ndb/test/ndbapi/testMgm.cpp
    1.3 04/05/26 10:29:54 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testMgm/testMgm.cpp -> ndb/test/ndbapi/testMgm.cpp

  ndb/test/ndbapi/testInterpreter.cpp
    1.2 04/05/26 10:29:54 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testInterpreter/testInterpreter.cpp -> ndb/test/ndbapi/testInterpreter.cpp

  ndb/test/ndbapi/testIndex.cpp
    1.3 04/05/26 10:29:54 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testIndex/testIndex.cpp -> ndb/test/ndbapi/testIndex.cpp

  ndb/test/ndbapi/testGrepVerify.cpp
    1.3.1.1 04/05/26 10:29:53 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testGrep/verify/testGrepVerify.cpp -> ndb/test/ndbapi/testGrepVerify.cpp

  ndb/test/ndbapi/testGrep.cpp
    1.2 04/05/26 10:29:53 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testGrep/testGrep.cpp -> ndb/test/ndbapi/testGrep.cpp

  ndb/test/ndbapi/testDict.cpp
    1.2.1.1 04/05/26 10:29:53 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testDict/testDict.cpp -> ndb/test/ndbapi/testDict.cpp

  ndb/test/ndbapi/testDataBuffers.cpp
    1.4.1.1 04/05/26 10:29:53 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testDataBuffers/testDataBuffers.cpp -> ndb/test/ndbapi/testDataBuffers.cpp

  ndb/test/ndbapi/testBlobs.cpp
    1.5 04/05/26 10:29:52 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testBlobs/testBlobs.cpp -> ndb/test/ndbapi/testBlobs.cpp

  ndb/test/ndbapi/testBasic.cpp
    1.2 04/05/26 10:29:52 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testBasic/testBasic.cpp -> ndb/test/ndbapi/testBasic.cpp

  ndb/test/ndbapi/testBackup.cpp
    1.2 04/05/26 10:29:52 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/testBackup/testBackup.cpp -> ndb/test/ndbapi/testBackup.cpp

  ndb/test/ndbapi/msa.cpp
    1.3.1.1 04/05/26 10:29:52 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/telco/msa.cpp -> ndb/test/ndbapi/msa.cpp

  ndb/test/ndbapi/initronja.cpp
    1.1.1.1 04/05/26 10:29:52 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/ronja/initronja/initronja.cpp -> ndb/test/ndbapi/initronja.cpp

  ndb/test/ndbapi/adoInsertRecs.cpp
    1.2 04/05/26 10:29:52 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/telco/adoInsertRecs.cpp -> ndb/test/ndbapi/adoInsertRecs.cpp

  ndb/test/ndbapi/InsertRecs.cpp
    1.2 04/05/26 10:29:52 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/telco/InsertRecs.cpp -> ndb/test/ndbapi/InsertRecs.cpp

  ndb/test/ndbapi/restarts.cpp
    1.4 04/05/26 10:29:51 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/restarts/restarts.cpp -> ndb/test/ndbapi/restarts.cpp

  ndb/test/ndbapi/restarter2.cpp
    1.4 04/05/26 10:29:51 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/restarter2/restarter2.cpp -> ndb/test/ndbapi/restarter2.cpp

  ndb/test/ndbapi/restarter.cpp
    1.4 04/05/26 10:29:51 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/restarter/restarter.cpp -> ndb/test/ndbapi/restarter.cpp

  ndb/test/ndbapi/ndb_user_transaction6.cpp
    1.2 04/05/26 10:29:51 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/lmc-bench/src/user/ndb_user_transaction6.cpp -> ndb/test/ndbapi/ndb_user_transaction6.cpp

  ndb/test/ndbapi/ndb_user_transaction5.cpp
    1.2 04/05/26 10:29:51 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/lmc-bench/src/user/ndb_user_transaction5.cpp -> ndb/test/ndbapi/ndb_user_transaction5.cpp

  ndb/test/ndbapi/ndb_user_transaction4.cpp
    1.2 04/05/26 10:29:51 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/lmc-bench/src/user/ndb_user_transaction4.cpp -> ndb/test/ndbapi/ndb_user_transaction4.cpp

  ndb/test/ndbapi/benchronja.cpp
    1.4 04/05/26 10:29:51 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/ronja/benchronja/benchronja.cpp -> ndb/test/ndbapi/benchronja.cpp

  ndb/test/ndbapi/userInterface.cpp
    1.4 04/05/26 10:29:50 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/lmc-bench/async-src/user/userInterface.cpp -> ndb/test/ndbapi/userInterface.cpp

  ndb/test/ndbapi/ndb_user_transaction3.cpp
    1.2 04/05/26 10:29:50 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/lmc-bench/src/user/ndb_user_transaction3.cpp -> ndb/test/ndbapi/ndb_user_transaction3.cpp

  ndb/test/ndbapi/ndb_user_transaction2.cpp
    1.2 04/05/26 10:29:50 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/lmc-bench/src/user/ndb_user_transaction2.cpp -> ndb/test/ndbapi/ndb_user_transaction2.cpp

  ndb/test/ndbapi/ndb_user_transaction.cpp
    1.2 04/05/26 10:29:50 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/lmc-bench/src/user/ndb_user_transaction.cpp -> ndb/test/ndbapi/ndb_user_transaction.cpp

  ndb/test/ndbapi/ndb_user_populate.cpp
    1.4 04/05/26 10:29:50 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/lmc-bench/src/user/ndb_user_populate.cpp -> ndb/test/ndbapi/ndb_user_populate.cpp

  ndb/test/ndbapi/ndb_async2.cpp
    1.2 04/05/26 10:29:49 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/lmc-bench/async-src/user/ndb_async2.cpp -> ndb/test/ndbapi/ndb_async2.cpp

  ndb/test/ndbapi/ndb_async1.cpp
    1.2 04/05/26 10:29:49 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/lmc-bench/async-src/user/ndb_async1.cpp -> ndb/test/ndbapi/ndb_async1.cpp

  ndb/test/ndbapi/mainAsyncGenerator.cpp
    1.4 04/05/26 10:29:49 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/lmc-bench/async-src/generator/mainAsyncGenerator.cpp -> ndb/test/ndbapi/mainAsyncGenerator.cpp

  ndb/test/ndbapi/interpreterInTup.cpp
    1.3.1.1 04/05/26 10:29:49 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/interpreterInTup/interpreterInTup.cpp -> ndb/test/ndbapi/interpreterInTup.cpp

  ndb/test/ndbapi/index2.cpp
    1.4 04/05/26 10:29:49 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/indexTest2/index2.cpp -> ndb/test/ndbapi/index2.cpp

  ndb/test/ndbapi/asyncGenerator.cpp
    1.4 04/05/26 10:29:49 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/lmc-bench/async-src/generator/asyncGenerator.cpp -> ndb/test/ndbapi/asyncGenerator.cpp

  ndb/test/ndbapi/index.cpp
    1.4 04/05/26 10:29:48 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/indexTest/index.cpp -> ndb/test/ndbapi/index.cpp

  ndb/test/ndbapi/flex_bench_mysql.cpp
    1.4 04/05/26 10:29:48 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/flex_bench_mysql/flex_bench_mysql.cpp -> ndb/test/ndbapi/flex_bench_mysql.cpp

  ndb/test/ndbapi/flexTimedAsynch.cpp
    1.2 04/05/26 10:29:48 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/flexTimedAsynch/flexTimedAsynch.cpp -> ndb/test/ndbapi/flexTimedAsynch.cpp

  ndb/test/ndbapi/flexTT.cpp
    1.3.1.1 04/05/26 10:29:48 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/flexTT/flexTT.cpp -> ndb/test/ndbapi/flexTT.cpp

  ndb/test/ndbapi/flexScan.cpp
    1.3.1.1 04/05/26 10:29:48 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/flexScan/flexScan.cpp -> ndb/test/ndbapi/flexScan.cpp

  ndb/test/ndbapi/flexHammer.cpp
    1.3.1.1 04/05/26 10:29:47 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/flexHammer/flexHammer.cpp -> ndb/test/ndbapi/flexHammer.cpp

  ndb/test/ndbapi/flexBench.cpp
    1.5 04/05/26 10:29:47 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/flexBench/flexBench.cpp -> ndb/test/ndbapi/flexBench.cpp

  ndb/test/ndbapi/flexAsynch.cpp
    1.3.1.1 04/05/26 10:29:47 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/flexAsynch/flexAsynch.cpp -> ndb/test/ndbapi/flexAsynch.cpp

  ndb/test/ndbapi/drop_all_tabs.cpp
    1.4 04/05/26 10:29:47 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/drop_all_tabs/drop_all_tabs.cpp -> ndb/test/ndbapi/drop_all_tabs.cpp

  ndb/test/ndbapi/create_tab.cpp
    1.4 04/05/26 10:29:47 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/create_tab/create_tab.cpp -> ndb/test/ndbapi/create_tab.cpp

  ndb/test/ndbapi/testBasicAsynch.cpp
    1.2 04/05/26 10:29:46 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/basicAsynch/testBasicAsynch.cpp -> ndb/test/ndbapi/testBasicAsynch.cpp

  ndb/test/ndbapi/create_all_tabs.cpp
    1.4 04/05/26 10:29:46 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/create_all_tabs/create_all_tabs.cpp -> ndb/test/ndbapi/create_all_tabs.cpp

  ndb/test/ndbapi/celloDb.cpp
    1.2 04/05/26 10:29:46 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/cello-sessionDb/celloDb.cpp -> ndb/test/ndbapi/celloDb.cpp

  ndb/test/ndbapi/bulk_copy.cpp
    1.4 04/05/26 10:29:46 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/bulk_copy/bulk_copy.cpp -> ndb/test/ndbapi/bulk_copy.cpp

  ndb/test/ndbapi/testBank.cpp
    1.2 04/05/26 10:29:45 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/bank/testBank/testBank.cpp -> ndb/test/ndbapi/testBank.cpp

  ndb/test/ndbapi/bankValidateAllGLs.cpp
    1.4 04/05/26 10:29:45 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/bank/bankValidateAllGLs/bankValidateAllGLs.cpp -> ndb/test/ndbapi/bankValidateAllGLs.cpp

  ndb/test/ndbapi/bankTransactionMaker.cpp
    1.4 04/05/26 10:29:45 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/bank/bankTransactionMaker/bankTransactionMaker.cpp -> ndb/test/ndbapi/bankTransactionMaker.cpp

  ndb/test/ndbapi/bankTimer.cpp
    1.4 04/05/26 10:29:45 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/bank/bankTimer/bankTimer.cpp -> ndb/test/ndbapi/bankTimer.cpp

  ndb/test/ndbapi/bankSumAccounts.cpp
    1.4 04/05/26 10:29:45 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/bank/bankSumAccounts/bankSumAccounts.cpp -> ndb/test/ndbapi/bankSumAccounts.cpp

  ndb/test/ndbapi/BankLoad.cpp
    1.2 04/05/26 10:29:45 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/bank/src/BankLoad.cpp -> ndb/test/ndbapi/BankLoad.cpp

  ndb/test/ndbapi/Bank.cpp
    1.2 04/05/26 10:29:45 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/bank/src/Bank.cpp -> ndb/test/ndbapi/Bank.cpp

  ndb/test/ndbapi/bankMakeGL.cpp
    1.4 04/05/26 10:29:44 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/bank/bankMakeGL/bankMakeGL.cpp -> ndb/test/ndbapi/bankMakeGL.cpp

  ndb/test/ndbapi/bankCreator.cpp
    1.4 04/05/26 10:29:44 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/bank/bankCreator/bankCreator.cpp -> ndb/test/ndbapi/bankCreator.cpp

  ndb/test/ndbapi/acid2.cpp
    1.4 04/05/26 10:29:44 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/acid2/acid2.cpp -> ndb/test/ndbapi/acid2.cpp

  ndb/test/ndbapi/acid.cpp
    1.1.1.1 04/05/26 10:29:44 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/acid/acid.cpp -> ndb/test/ndbapi/acid.cpp

  ndb/test/ndbapi/VerifyNdbApi.cpp
    1.2 04/05/26 10:29:44 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/acid2/VerifyNdbApi.cpp -> ndb/test/ndbapi/VerifyNdbApi.cpp

  ndb/test/ndbapi/TraceNdbApi.cpp
    1.2 04/05/26 10:29:44 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/acid2/TraceNdbApi.cpp -> ndb/test/ndbapi/TraceNdbApi.cpp

  ndb/test/tools/restart.cpp
    1.4 04/05/26 10:27:35 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/tools/restart/restart.cpp -> ndb/test/tools/restart.cpp

  ndb/test/tools/hugoScanUpd.cpp
    1.4 04/05/26 10:27:35 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/tools/hugoScanUpdate/hugoScanUpd.cpp -> ndb/test/tools/hugoScanUpd.cpp

  ndb/test/tools/hugoScanRead.cpp
    1.4 04/05/26 10:27:35 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/tools/hugoScanRead/hugoScanRead.cpp -> ndb/test/tools/hugoScanRead.cpp

  ndb/test/tools/hugoPkUpd.cpp
    1.4 04/05/26 10:27:34 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/tools/hugoPkUpdate/hugoPkUpd.cpp -> ndb/test/tools/hugoPkUpd.cpp

  ndb/test/tools/hugoPkReadRecord.cpp
    1.4 04/05/26 10:27:34 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/tools/hugoPkReadRecord/hugoPkReadRecord.cpp -> ndb/test/tools/hugoPkReadRecord.cpp

  ndb/test/tools/hugoPkRead.cpp
    1.4 04/05/26 10:27:33 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/tools/hugoPkRead/hugoPkRead.cpp -> ndb/test/tools/hugoPkRead.cpp

  ndb/test/tools/hugoPkDel.cpp
    1.4 04/05/26 10:27:33 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/tools/hugoPkDelete/hugoPkDel.cpp -> ndb/test/tools/hugoPkDel.cpp

  ndb/test/tools/hugoLockRecords.cpp
    1.4 04/05/26 10:27:33 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/tools/hugoLockRecords/hugoLockRecords.cpp -> ndb/test/tools/hugoLockRecords.cpp

  ndb/test/tools/hugoFill.cpp
    1.4 04/05/26 10:27:32 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/tools/hugoFill/hugoFill.cpp -> ndb/test/tools/hugoFill.cpp

  ndb/test/tools/hugoLoad.cpp
    1.2 04/05/26 10:14:32 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/tools/hugoLoad/hugoLoad.cpp -> ndb/test/tools/hugoLoad.cpp

  ndb/test/tools/hugoCalculator.cpp
    1.4 04/05/26 10:13:51 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/tools/hugoCalculator/hugoCalculator.cpp -> ndb/test/tools/hugoCalculator.cpp

ChangeSet
  1.1616.421.10 04/05/26 12:04:39 joreland@mysql.com +1 -0
  New file

  ndb/src/mgmapi/mgmapi_configuration.cpp
    1.1 04/05/26 12:04:30 joreland@mysql.com +157 -0

  ndb/src/mgmapi/mgmapi_configuration.cpp
    1.0 04/05/26 12:04:30 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/jonas/ndb/src/mgmapi/mgmapi_configuration.cpp

ChangeSet
  1.1616.421.9 04/05/26 11:56:32 joreland@mysql.com +1 -0
  New makefile

  ndb/src/mgmapi/mgmapi_configuration.hpp
    1.1 04/05/26 11:56:26 joreland@mysql.com +32 -0

  ndb/src/mgmapi/mgmapi_configuration.hpp
    1.0 04/05/26 11:56:26 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/jonas/ndb/src/mgmapi/mgmapi_configuration.hpp

ChangeSet
  1.1616.421.8 04/05/26 11:53:58 joreland@mysql.com +1 -0
  New makefile

  ndb/src/common/util/testConfigValues/Makefile
    1.1 04/05/26 11:53:19 joreland@mysql.com +12 -0

  ndb/src/common/util/testConfigValues/Makefile
    1.0 04/05/26 11:53:19 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/jonas/ndb/src/common/util/testConfigValues/Makefile

ChangeSet
  1.1616.421.7 04/05/26 11:49:12 joreland@mysql.com +11 -0
  Added file(s)

  ndb/src/common/util/testConfigValues/testConfigValues.cpp
    1.1 04/05/26 11:49:10 joreland@mysql.com +122 -0

  ndb/src/common/util/testConfigValues/testConfigValues.cpp
    1.0 04/05/26 11:49:10 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/jonas/ndb/src/common/util/testConfigValues/testConfigValues.cpp

  ndb/src/common/util/ConfigValues.cpp
    1.1 04/05/26 11:49:09 joreland@mysql.com +743 -0

  ndb/src/common/debugger/signaldata/ReadNodesConf.cpp
    1.1 04/05/26 11:49:09 joreland@mysql.com +24 -0

  ndb/src/common/debugger/signaldata/CntrStart.cpp
    1.1 04/05/26 11:49:09 joreland@mysql.com +37 -0

  ndb/include/util/ConfigValues.hpp
    1.1 04/05/26 11:49:09 joreland@mysql.com +252 -0

  ndb/include/mgmapi/mgmapi_config_parameters_debug.h
    1.1 04/05/26 11:49:09 joreland@mysql.com +8 -0

  ndb/include/mgmapi/mgmapi_config_parameters.h
    1.1 04/05/26 11:49:09 joreland@mysql.com +142 -0

  ndb/include/kernel/signaldata/UpgradeStartup.hpp
    1.1 04/05/26 11:49:09 joreland@mysql.com +36 -0

  ndb/include/kernel/signaldata/ReadConfig.hpp
    1.1 04/05/26 11:49:09 joreland@mysql.com +24 -0

  ndb/src/common/util/ConfigValues.cpp
    1.0 04/05/26 11:49:09 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/jonas/ndb/src/common/util/ConfigValues.cpp

  ndb/src/common/debugger/signaldata/ReadNodesConf.cpp
    1.0 04/05/26 11:49:09 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/jonas/ndb/src/common/debugger/signaldata/ReadNodesConf.cpp

  ndb/src/common/debugger/signaldata/CntrStart.cpp
    1.0 04/05/26 11:49:09 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/jonas/ndb/src/common/debugger/signaldata/CntrStart.cpp

  ndb/include/util/ConfigValues.hpp
    1.0 04/05/26 11:49:09 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/jonas/ndb/include/util/ConfigValues.hpp

  ndb/include/mgmapi/mgmapi_config_parameters_debug.h
    1.0 04/05/26 11:49:09 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/jonas/ndb/include/mgmapi/mgmapi_config_parameters_debug.h

  ndb/include/mgmapi/mgmapi_config_parameters.h
    1.0 04/05/26 11:49:09 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/jonas/ndb/include/mgmapi/mgmapi_config_parameters.h

  ndb/include/kernel/signaldata/UpgradeStartup.hpp
    1.0 04/05/26 11:49:09 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/jonas/ndb/include/kernel/signaldata/UpgradeStartup.hpp

  ndb/include/kernel/signaldata/ReadConfig.hpp
    1.0 04/05/26 11:49:09 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/jonas/ndb/include/kernel/signaldata/ReadConfig.hpp

  ndb/include/kernel/signaldata/CntrStart.hpp
    1.1 04/05/26 11:49:08 joreland@mysql.com +69 -0

  ndb/include/kernel/kernel_config_parameters.h
    1.1 04/05/26 11:49:08 joreland@mysql.com +56 -0

  ndb/include/kernel/signaldata/CntrStart.hpp
    1.0 04/05/26 11:49:08 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/jonas/ndb/include/kernel/signaldata/CntrStart.hpp

  ndb/include/kernel/kernel_config_parameters.h
    1.0 04/05/26 11:49:08 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/jonas/ndb/include/kernel/kernel_config_parameters.h

ChangeSet
  1.1616.421.6 04/05/26 10:56:32 joreland@mysql.com +118 -0
  WL1371 - Cleanup configuration handling
  WL1356 - Discless db node
  WL1357 - sp 1-2

  ndb/test/src/NdbRestarter.cpp
    1.5 04/05/26 10:55:44 joreland@mysql.com +12 -1
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/test/src/NdbConfig.cpp
    1.5 04/05/26 10:55:44 joreland@mysql.com +27 -104
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/test/src/NdbBackup.cpp
    1.5 04/05/26 10:55:44 joreland@mysql.com +12 -13
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/test/src/Makefile
    1.1.1.1 04/05/26 10:55:44 joreland@mysql.com +5 -3
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/test/ndbapi/testTimeout/testTimeout.cpp
    1.2 04/05/26 10:55:44 joreland@mysql.com +6 -6
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/test/ndbapi/testSystemRestart/testSystemRestart.cpp
    1.2 04/05/26 10:55:44 joreland@mysql.com +245 -2
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/test/ndbapi/testDict/testDict.cpp
    1.3 04/05/26 10:55:44 joreland@mysql.com +3 -3
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/test/include/NdbRestarter.hpp
    1.2 04/05/26 10:55:44 joreland@mysql.com +3 -1
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/test/include/NdbConfig.hpp
    1.2 04/05/26 10:55:44 joreland@mysql.com +6 -13
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/rep/transfer/TransSS.cpp
    1.5 04/05/26 10:55:44 joreland@mysql.com +3 -0
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/rep/transfer/TransPS.cpp
    1.5 04/05/26 10:55:44 joreland@mysql.com +3 -0
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/rep/state/RepState.hpp
    1.2 04/05/26 10:55:44 joreland@mysql.com +1 -0
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/rep/adapters/ExtNDB.cpp
    1.5 04/05/26 10:55:44 joreland@mysql.com +13 -8
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/ndbapi/signal-sender/SignalSender.cpp
    1.4 04/05/26 10:55:44 joreland@mysql.com +1 -1
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/ndbapi/TransporterFacade.hpp
    1.1.1.1 04/05/26 10:55:44 joreland@mysql.com +9 -6
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/ndbapi/TransporterFacade.cpp
    1.4.1.1 04/05/26 10:55:44 joreland@mysql.com +62 -55
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/ndbapi/Ndbinit.cpp
    1.2.2.1 04/05/26 10:55:44 joreland@mysql.com +1 -1
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/ndbapi/Ndbif.cpp
    1.3.1.1 04/05/26 10:55:44 joreland@mysql.com +1 -1
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/ndbapi/Ndb.cpp
    1.7.1.1 04/05/26 10:55:44 joreland@mysql.com +13 -0
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/ndbapi/Makefile
    1.5.1.1 04/05/26 10:55:44 joreland@mysql.com +4 -1
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/ndbapi/ClusterMgr.hpp
    1.2 04/05/26 10:55:44 joreland@mysql.com +2 -2
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/ndbapi/ClusterMgr.cpp
    1.5.1.1 04/05/26 10:55:44 joreland@mysql.com +73 -50
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/mgmsrv/mkconfig/mkconfig.cpp
    1.5 04/05/26 10:55:44 joreland@mysql.com +8 -12
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/mgmsrv/mkconfig/Makefile
    1.2 04/05/26 10:55:44 joreland@mysql.com +2 -3
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/mgmsrv/main.cpp
    1.4 04/05/26 10:55:44 joreland@mysql.com +39 -18
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/mgmsrv/Services.cpp
    1.2 04/05/26 10:55:44 joreland@mysql.com +124 -60
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/mgmsrv/MgmtSrvrConfig.cpp
    1.2 04/05/26 10:55:44 joreland@mysql.com +13 -14
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/mgmsrv/MgmtSrvr.hpp
    1.4 04/05/26 10:55:44 joreland@mysql.com +7 -5
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/mgmsrv/MgmtSrvr.cpp
    1.4.1.1 04/05/26 10:55:44 joreland@mysql.com +93 -62
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/mgmsrv/Makefile
    1.2.1.1 04/05/26 10:55:44 joreland@mysql.com +3 -2
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/mgmsrv/CommandInterpreter.cpp
    1.4 04/05/26 10:55:44 joreland@mysql.com +5 -4
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/mgmclient/Makefile
    1.1.1.1 04/05/26 10:55:44 joreland@mysql.com +1 -1
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/mgmapi/test/keso.c
    1.5 04/05/26 10:55:44 joreland@mysql.com +14 -0
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/mgmapi/mgmapi.cpp
    1.4 04/05/26 10:55:44 joreland@mysql.com +124 -24
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/mgmapi/Makefile
    1.2.1.1 04/05/26 10:55:44 joreland@mysql.com +1 -1
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/vm/testLongSig/testLongSig.cpp
    1.5 04/05/26 10:55:44 joreland@mysql.com +37 -3
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/vm/pc.hpp
    1.2 04/05/26 10:55:44 joreland@mysql.com +0 -6
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/vm/VMSignal.hpp
    1.4 04/05/26 10:55:44 joreland@mysql.com +9 -0
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/vm/TransporterCallback.cpp
    1.4 04/05/26 10:55:43 joreland@mysql.com +7 -0
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/vm/SimulatedBlock.hpp
    1.2 04/05/26 10:55:43 joreland@mysql.com +14 -1
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/vm/SimulatedBlock.cpp
    1.5 04/05/26 10:55:43 joreland@mysql.com +53 -6
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/vm/SignalCounter.hpp
    1.3 04/05/26 10:55:43 joreland@mysql.com +2 -0
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/vm/Makefile
    1.1.1.1 04/05/26 10:55:43 joreland@mysql.com +3 -2
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/vm/FastScheduler.hpp
    1.2 04/05/26 10:55:43 joreland@mysql.com +3 -11
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/vm/FastScheduler.cpp
    1.2 04/05/26 10:55:43 joreland@mysql.com +9 -5
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/vm/Configuration.hpp
    1.3 04/05/26 10:55:43 joreland@mysql.com +16 -12
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/vm/Configuration.cpp
    1.5 04/05/26 10:55:43 joreland@mysql.com +383 -56
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/ndb-main/SimBlockList.cpp
    1.2 04/05/26 10:55:43 joreland@mysql.com +13 -2
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/ndb-main/Makefile
    1.1.1.1 04/05/26 10:55:43 joreland@mysql.com +1 -1
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/ndb-main/Main.cpp
    1.12 04/05/26 10:55:43 joreland@mysql.com +2 -6
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/qmgr/QmgrMain.cpp
    1.2 04/05/26 10:55:43 joreland@mysql.com +589 -1226
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/qmgr/QmgrInit.cpp
    1.2 04/05/26 10:55:43 joreland@mysql.com +5 -17
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/qmgr/Qmgr.hpp
    1.2 04/05/26 10:55:43 joreland@mysql.com +40 -136
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp
    1.5 04/05/26 10:55:43 joreland@mysql.com +3 -2
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/ndbcntr/NdbcntrMain.cpp
    1.3 04/05/26 10:55:43 joreland@mysql.com +798 -1539
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/ndbcntr/NdbcntrInit.cpp
    1.2 04/05/26 10:55:43 joreland@mysql.com +8 -17
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/ndbcntr/Ndbcntr.hpp
    1.2 04/05/26 10:55:43 joreland@mysql.com +57 -194
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/dbtux/DbtuxGen.cpp
    1.2 04/05/26 10:55:43 joreland@mysql.com +30 -10
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/dbtux/Dbtux.hpp
    1.5 04/05/26 10:55:43 joreland@mysql.com +1 -2
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/dbtup/DbtupGen.cpp
    1.2 04/05/26 10:55:43 joreland@mysql.com +55 -43
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/dbtup/Dbtup.hpp
    1.2 04/05/26 10:55:43 joreland@mysql.com +2 -2
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
    1.3 04/05/26 10:55:43 joreland@mysql.com +64 -47
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/dbtc/DbtcInit.cpp
    1.3 04/05/26 10:55:43 joreland@mysql.com +13 -8
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/dbtc/Dbtc.hpp
    1.3 04/05/26 10:55:43 joreland@mysql.com +2 -5
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
    1.3 04/05/26 10:55:43 joreland@mysql.com +46 -61
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/dblqh/DblqhInit.cpp
    1.3 04/05/26 10:55:43 joreland@mysql.com +1 -1
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/dblqh/Dblqh.hpp
    1.3 04/05/26 10:55:43 joreland@mysql.com +2 -4
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
    1.2 04/05/26 10:55:42 joreland@mysql.com +117 -82
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/dbdih/DbdihInit.cpp
    1.2 04/05/26 10:55:42 joreland@mysql.com +1 -2
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/dbdih/Dbdih.hpp
    1.2 04/05/26 10:55:42 joreland@mysql.com +3 -5
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/dbdict/Dbdict.hpp
    1.3 04/05/26 10:55:42 joreland@mysql.com +1 -1
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/dbdict/Dbdict.cpp
    1.5 04/05/26 10:55:42 joreland@mysql.com +33 -19
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/dbacc/DbaccMain.cpp
    1.2 04/05/26 10:55:42 joreland@mysql.com +49 -64
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/dbacc/DbaccInit.cpp
    1.2 04/05/26 10:55:42 joreland@mysql.com +1 -1
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/dbacc/Dbacc.hpp
    1.2 04/05/26 10:55:42 joreland@mysql.com +2 -3
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/cmvmi/Cmvmi.hpp
    1.2 04/05/26 10:55:42 joreland@mysql.com +3 -10
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/cmvmi/Cmvmi.cpp
    1.3 04/05/26 10:55:42 joreland@mysql.com +123 -263
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/backup/BackupInit.cpp
    1.2 04/05/26 10:55:42 joreland@mysql.com +9 -9
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/Start.txt
    1.2 04/05/26 10:55:42 joreland@mysql.com +17 -17
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/blocks/ERROR_codes.txt
    1.3 04/05/26 10:55:42 joreland@mysql.com +4 -5
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/kernel/Makefile
    1.1.1.1 04/05/26 10:55:42 joreland@mysql.com +1 -1
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/util/testProperties/testProperties.cpp
    1.4 04/05/26 10:55:42 joreland@mysql.com +2 -9
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/util/testProperties/Makefile
    1.2 04/05/26 10:55:42 joreland@mysql.com +1 -4
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/util/socket_io.cpp
    1.4 04/05/26 10:55:42 joreland@mysql.com +3 -3
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/util/Properties.cpp
    1.5 04/05/26 10:55:42 joreland@mysql.com +114 -8
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/util/Makefile
    1.4.1.1 04/05/26 10:55:42 joreland@mysql.com +2 -2
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/util/Base64.cpp
    1.4 04/05/26 10:55:42 joreland@mysql.com +129 -32
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/mgmcommon/printConfig/printConfig.cpp
    1.4 04/05/26 10:55:42 joreland@mysql.com +5 -6
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/mgmcommon/printConfig/Makefile
    1.2 04/05/26 10:55:42 joreland@mysql.com +4 -2
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/mgmcommon/Makefile
    1.1.1.1 04/05/26 10:55:42 joreland@mysql.com +3 -0
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/mgmcommon/InitConfigFileParser.hpp
    1.4 04/05/26 10:55:42 joreland@mysql.com +30 -47
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/mgmcommon/InitConfigFileParser.cpp
    1.4 04/05/26 10:55:42 joreland@mysql.com +90 -69
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/mgmcommon/IPCConfig.cpp
    1.2 04/05/26 10:55:42 joreland@mysql.com +159 -0
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/mgmcommon/ConfigRetriever.cpp
    1.5 04/05/26 10:55:42 joreland@mysql.com +124 -262
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/mgmcommon/ConfigInfo.hpp
    1.2 04/05/26 10:55:42 joreland@mysql.com +16 -17
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/mgmcommon/ConfigInfo.cpp
    1.2 04/05/26 10:55:42 joreland@mysql.com +2186 -1688
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/mgmcommon/Config.hpp
    1.4 04/05/26 10:55:42 joreland@mysql.com +15 -7
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/mgmcommon/Config.cpp
    1.2 04/05/26 10:55:42 joreland@mysql.com +35 -24
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/debugger/signaldata/SignalNames.cpp
    1.2 04/05/26 10:55:42 joreland@mysql.com +7 -29
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/debugger/signaldata/SignalDataPrint.cpp
    1.2 04/05/26 10:55:42 joreland@mysql.com +8 -0
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/debugger/signaldata/Makefile
    1.1.1.1 04/05/26 10:55:42 joreland@mysql.com +1 -0
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/src/common/debugger/LogLevel.cpp
    1.2 04/05/26 10:55:42 joreland@mysql.com +10 -9
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/include/util/UtilBuffer.hpp
    1.4 04/05/26 10:55:42 joreland@mysql.com +9 -0
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/include/util/Properties.hpp
    1.4 04/05/26 10:55:42 joreland@mysql.com +12 -5
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/include/util/Bitmask.hpp
    1.6 04/05/26 10:55:42 joreland@mysql.com +15 -12
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/include/util/Base64.hpp
    1.2 04/05/26 10:55:41 joreland@mysql.com +3 -2
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/include/mgmcommon/IPCConfig.hpp
    1.2 04/05/26 10:55:41 joreland@mysql.com +4 -0
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/include/mgmcommon/ConfigRetriever.hpp
    1.2 04/05/26 10:55:41 joreland@mysql.com +13 -19
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/include/mgmapi/mgmapi.h
    1.3 04/05/26 10:55:41 joreland@mysql.com +34 -1
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/include/kernel/signaldata/SetLogLevelOrd.hpp
    1.2 04/05/26 10:55:41 joreland@mysql.com +1 -0
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/include/kernel/signaldata/ReadNodesConf.hpp
    1.2 04/05/26 10:55:41 joreland@mysql.com +12 -36
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/include/kernel/signaldata/FsOpenReq.hpp
    1.2 04/05/26 10:55:41 joreland@mysql.com +1 -0
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/include/kernel/signaldata/EventSubscribeReq.hpp
    1.2 04/05/26 10:55:41 joreland@mysql.com +3 -3
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/include/kernel/signaldata/CheckNodeGroups.hpp
    1.2 04/05/26 10:55:41 joreland@mysql.com +5 -7
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/include/kernel/LogLevel.hpp
    1.4 04/05/26 10:55:41 joreland@mysql.com +18 -10
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/include/kernel/GlobalSignalNumbers.h
    1.2 04/05/26 10:55:41 joreland@mysql.com +43 -41
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/include/kernel/BlockNumbers.h
    1.2 04/05/26 10:55:41 joreland@mysql.com +1 -0
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

  ndb/Epilogue.mk
    1.5.1.1 04/05/26 10:55:41 joreland@mysql.com +2 -0
    WL1371 - Cleanup configuration handling
    WL1356 - Discless db node
    WL1357 - sp 1-2

ChangeSet
  1.1346.623.10 04/05/26 10:45:37 marko@hundin.mysql.fi +6 -0
  InnoDB cleanup: Remove unused code for online backup

  innobase/mtr/mtr0mtr.c
    1.3.1.5 04/05/26 10:45:34 marko@hundin.mysql.fi +6 -195
    Remove references to MLOG_FULL_PAGE
    Remove references to online backup

  innobase/log/log0recv.c
    1.19.1.10 04/05/26 10:45:34 marko@hundin.mysql.fi +1 -12
    Remove references to MLOG_FULL_PAGE

  innobase/log/log0log.c
    1.20.1.15 04/05/26 10:45:34 marko@hundin.mysql.fi +0 -64
    Remove references to online backup

  innobase/include/mtr0mtr.h
    1.3.1.5 04/05/26 10:45:34 marko@hundin.mysql.fi +1 -11
    Remove references to MLOG_FULL_PAGE

  innobase/include/log0log.ic
    1.4.1.3 04/05/26 10:45:34 marko@hundin.mysql.fi +1 -35
    Remove references to online backup

  innobase/include/log0log.h
    1.10.1.4 04/05/26 10:45:34 marko@hundin.mysql.fi +0 -35
    Remove references to online backup

ChangeSet
  1.1346.623.9 04/05/26 00:01:23 monty@mysql.com +1 -0
  Added new header files

  include/Makefile.am
    1.29.1.11 04/05/26 00:01:21 monty@mysql.com +1 -1
    Added new header files

ChangeSet
  1.1616.429.4 04/05/25 13:27:01 brian@avenger.(none) +7 -0
  Added tests for archive. Cleaned up a merge mistake and added some information on how well archive compresses. 

ChangeSet
  1.1616.439.2 04/05/25 22:24:23 joreland@mysql.com +1 -0
  Bug#3882

  ndb/src/kernel/ndb-main/Main.cpp
    1.8.1.3 04/05/25 22:24:21 joreland@mysql.com +3 -0
    Bug#3882

  mysql-test/t/archive.test
    1.1 04/05/25 12:47:38 brian@avenger.(none) +1300 -0

  mysql-test/r/have_archive.require
    1.1 04/05/25 12:47:38 brian@avenger.(none) +2 -0

  mysql-test/r/archive.result
    1.1 04/05/25 12:47:38 brian@avenger.(none) +1396 -0

  mysql-test/t/archive.test
    1.0 04/05/25 12:47:38 brian@avenger.(none) +0 -0
    BitKeeper file /export/brian/archive-4.1/mysql-test/t/archive.test

  mysql-test/r/have_archive.require
    1.0 04/05/25 12:47:38 brian@avenger.(none) +0 -0
    BitKeeper file /export/brian/archive-4.1/mysql-test/r/have_archive.require

  mysql-test/r/archive.result
    1.0 04/05/25 12:47:38 brian@avenger.(none) +0 -0
    BitKeeper file /export/brian/archive-4.1/mysql-test/r/archive.result

  mysql-test/include/have_archive.inc
    1.1 04/05/25 12:47:37 brian@avenger.(none) +4 -0

  sql/set_var.cc
    1.34.42.1 04/05/25 12:47:37 brian@avenger.(none) +1 -0
    Adding in "have_archive" to variables shown to make tests work.

  sql/handler.h
    1.89.8.3 04/05/25 12:47:37 brian@avenger.(none) +1 -1
    Fixed broken merge.

  sql/examples/ha_archive.cc
    1.3 04/05/25 12:47:37 brian@avenger.(none) +15 -3
    Added in example information from testing archive with Slashdot's comments.

  mysql-test/include/have_archive.inc
    1.0 04/05/25 12:47:37 brian@avenger.(none) +0 -0
    BitKeeper file /export/brian/archive-4.1/mysql-test/include/have_archive.inc

ChangeSet
  1.1346.625.1 04/05/26 00:27:00 hf@deer.(none) +9 -0
  Proposed fix for bug #3818 (libmysqld.dll leads to program's crash)
  configurations added to build the libraries with USE_TLS flag to be
  used for libmysqld

  include/mysql_com.h
    1.43.1.12 04/05/26 00:26:47 hf@deer.(none) +8 -2
    __declspec(dllimport) seems to be necessary when one uses .dll
    on Windows

  VC++Files/mysys/mysys.dsp
    1.6.1.7 04/05/26 00:26:47 hf@deer.(none) +69 -0
    TLS and TLS_DEBUG configurations added

  VC++Files/myisammrg/myisammrg.dsp
    1.3.1.3 04/05/26 00:26:47 hf@deer.(none) +52 -0
    TLS and TLS_DEBUG configurations added

  VC++Files/myisam/myisam.dsp
    1.3.1.3 04/05/26 00:26:47 hf@deer.(none) +50 -0
    TLS and TLS_DEBUG configurations added

  VC++Files/libmysqld/libmysqld.dsp
    1.2.1.7 04/05/26 00:26:47 hf@deer.(none) +6 -6
    using of _tls libraries added

  VC++Files/libmysql/libmysql.dsp
    1.7.1.7 04/05/26 00:26:47 hf@deer.(none) +2 -2
    MYSQL_CLIENT define enabled

  VC++Files/isam/isam.dsp
    1.2.1.3 04/05/26 00:26:47 hf@deer.(none) +54 -0
    TLS and TLS_DEBUG configurations added

  VC++Files/heap/heap.dsp
    1.2.1.3 04/05/26 00:26:47 hf@deer.(none) +61 -0
    TLS and TLS_DEBUG configurations added

  VC++Files/dbug/dbug.dsp
    1.2.1.3 04/05/26 00:26:47 hf@deer.(none) +27 -0
    TLS_DEBUG configuration added

ChangeSet
  1.1616.425.21 04/05/25 22:08:59 monty@mysql.com +2 -0
  Remove not needed sql_olap.cc from Makefile.am

  libmysqld/Makefile.am
    1.29.1.19 04/05/25 22:08:06 monty@mysql.com +1 -1
    Remove not needed sql_olap.cc

  VC++Files/comp_err/comp_err.dsp
    1.8 04/05/25 22:08:06 monty@mysql.com +1 -1
    removed not needed library

ChangeSet
  1.1346.624.1 04/05/25 22:00:14 monty@mysql.com +45 -0
  Added patches from Novell

  netware/resolve_stack_dump.def
    1.1 04/05/25 22:00:12 monty@mysql.com +12 -0

  netware/mysql_waitpid.def
    1.1 04/05/25 22:00:12 monty@mysql.com +12 -0

  netware/myisam_ftdump.def
    1.1 04/05/25 22:00:12 monty@mysql.com +12 -0

  include/help_start.h
    1.1 04/05/25 22:00:12 monty@mysql.com +7 -0

  include/help_end.h
    1.1 04/05/25 22:00:12 monty@mysql.com +6 -0

  vio/viosslfactories.c
    1.16 04/05/25 22:00:12 monty@mysql.com +39 -2
    Added patches from Novell

  vio/viossl.c
    1.22 04/05/25 22:00:12 monty@mysql.com +25 -0
    Added patches from Novell

  vio/test-ssl.c
    1.8 04/05/25 22:00:12 monty@mysql.com +1 -1
    Added patches from Novell

  tools/mysqlmanager.c
    1.30.1.6 04/05/25 22:00:12 monty@mysql.com +15 -0
    Added patches from Novell

  sql/mysqld.cc
    1.297.47.1 04/05/25 22:00:12 monty@mysql.com +207 -8
    Added patches from Novell

  scripts/mysqlhotcopy.sh
    1.42 04/05/25 22:00:12 monty@mysql.com +18 -2
    Added patches from Novell

  scripts/make_binary_distribution.sh
    1.49.2.1 04/05/25 22:00:12 monty@mysql.com +54 -25
    Added patches from Novell

  netware/resolve_stack_dump.def
    1.0 04/05/25 22:00:12 monty@mysql.com +0 -0
    BitKeeper file /tmp/skr99/mysql-4.0/netware/resolve_stack_dump.def

  netware/mysql_waitpid.def
    1.0 04/05/25 22:00:12 monty@mysql.com +0 -0
    BitKeeper file /tmp/skr99/mysql-4.0/netware/mysql_waitpid.def

  netware/mysql_test_run.c
    1.3.1.2 04/05/25 22:00:12 monty@mysql.com +48 -11
    Added patches from Novell

  netware/mysql_install_db.c
    1.4 04/05/25 22:00:12 monty@mysql.com +2 -1
    Indentation fix

  netware/myisam_ftdump.def
    1.0 04/05/25 22:00:12 monty@mysql.com +0 -0
    BitKeeper file /tmp/skr99/mysql-4.0/netware/myisam_ftdump.def

  netware/my_manage.h
    1.2.1.1 04/05/25 22:00:12 monty@mysql.com +2 -2
    Added patches from Novell

  netware/my_manage.c
    1.2.1.2 04/05/25 22:00:12 monty@mysql.com +4 -4
    Added patches from Novell

  netware/init_db.sql
    1.2.1.1 04/05/25 22:00:12 monty@mysql.com +1 -1
    Added patches from Novell

  netware/Makefile.am
    1.6.1.2 04/05/25 22:00:12 monty@mysql.com +2 -1
    Added patches from Novell

  netware/BUILD/mwenv
    1.3.1.2 04/05/25 22:00:12 monty@mysql.com +3 -3
    Added patches from Novell

  netware/BUILD/compile-netware-standard
    1.3.1.2 04/05/25 22:00:12 monty@mysql.com +1 -0
    Added patches from Novell

  netware/BUILD/compile-netware-all
    1.3.1.2 04/05/25 22:00:12 monty@mysql.com +2 -2
    Added patches from Novell

  mysys/my_pthread.c
    1.35.1.4 04/05/25 22:00:12 monty@mysql.com +13 -9
    Added patches from Novell

  mysys/my_netware.c
    1.3 04/05/25 22:00:12 monty@mysql.com +1 -1
    Added patches from Novell

  mysys/my_init.c
    1.21.1.8 04/05/25 22:00:12 monty@mysql.com +7 -3
    Added patches from Novell

  mysys/my_getopt.c
    1.35.1.8 04/05/25 22:00:12 monty@mysql.com +4 -0
    Added patches from Novell

  mysys/default.c
    1.17.1.18 04/05/25 22:00:12 monty@mysql.com +3 -0
    Added patches from Novell

  myisam/myisampack.c
    1.22.1.6 04/05/25 22:00:12 monty@mysql.com +4 -0
    Added patches from Novell

  myisam/myisamchk.c
    1.80.1.33 04/05/25 22:00:12 monty@mysql.com +4 -0
    Added patches from Novell

  myisam/myisam_ftdump.c
    1.12.2.1 04/05/25 22:00:12 monty@mysql.com +3 -0
    Added patches from Novell

  libmysqld/Makefile.am
    1.19.1.6 04/05/25 22:00:12 monty@mysql.com +25 -19
    Added patches from Novell

  isam/isamchk.c
    1.21.1.1 04/05/25 22:00:12 monty@mysql.com +6 -0
    Added patches from Novell

  include/thr_alarm.h
    1.13.1.3 04/05/25 22:00:12 monty@mysql.com +1 -1
    Fixed wrong macro

  include/my_global.h
    1.34.5.1 04/05/25 22:00:12 monty@mysql.com +6 -0
    Defines to make NETWARE patches cleaner
    

  include/help_start.h
    1.0 04/05/25 22:00:12 monty@mysql.com +0 -0
    BitKeeper file /tmp/skr99/mysql-4.0/include/help_start.h

  include/help_end.h
    1.0 04/05/25 22:00:12 monty@mysql.com +0 -0
    BitKeeper file /tmp/skr99/mysql-4.0/include/help_end.h

  include/config-netware.h
    1.2.1.1 04/05/25 22:00:12 monty@mysql.com +33 -3
    Added patches from Novell

  extra/perror.c
    1.20.1.3 04/05/25 22:00:12 monty@mysql.com +19 -5
    Fixed error number reporting to not report 'Unknown error'

  configure.in
    1.191.16.1 04/05/25 22:00:12 monty@mysql.com +8 -5
    Added patches from Novell
    Added C_EXTRA_FLAGS as an easy way to pass flags to both CFLAGS and CXXFLAGS

  client/mysqltest.c
    1.77.8.1 04/05/25 22:00:12 monty@mysql.com +111 -1
    Added patches from Novell

  client/mysqlshow.c
    1.25.1.2 04/05/25 22:00:12 monty@mysql.com +6 -0
    Added patches from Novell

  client/mysqlimport.c
    1.29.1.3 04/05/25 22:00:12 monty@mysql.com +4 -1
    Added patches from Novell

  client/mysqldump.c
    1.65.1.45 04/05/25 22:00:12 monty@mysql.com +7 -1
    Added patches from Novell

  client/mysqlcheck.c
    1.25.1.2 04/05/25 22:00:12 monty@mysql.com +4 -0
    Added patches from Novell

  client/mysqlbinlog.cc
    1.70.1.30 04/05/25 22:00:12 monty@mysql.com +5 -0
    Added patches from Novell

  client/mysqladmin.c
    1.66.2.6 04/05/25 22:00:12 monty@mysql.com +4 -0
    Added patches from Novell

  client/mysql.cc
    1.93.1.58 04/05/25 22:00:12 monty@mysql.com +20 -5
    Added patches from Novell

  Build-tools/Do-compile
    1.74.2.1 04/05/25 22:00:11 monty@mysql.com +8 -8
    Fixed indentation

ChangeSet
  1.1665.11.1 04/05/25 19:46:21 pem@mysql.comhem.se +1 -0
  Added frame offset to debug pring of local SP variables.

  sql/item.h
    1.82 04/05/25 19:46:17 pem@mysql.com +3 -0
    Added frame offset to debug pring of local SP variables.

ChangeSet
  1.1346.623.6 04/05/25 20:12:09 marko@hundin.mysql.fi +14 -0
  InnoDB cleanup and possible bug-fix: Remove srv0que

  innobase/usr/usr0sess.c
    1.1.1.3 04/05/25 20:12:05 marko@hundin.mysql.fi +0 -2
    Remove sess->state

  innobase/trx/trx0trx.c
    1.20.1.19 04/05/25 20:12:05 marko@hundin.mysql.fi +36 -129
    Many functions: Remove output parameter next_thr; return it instead
    Remove references to srv0que.c
    Remove references to SESS_ERROR

  innobase/trx/trx0roll.c
    1.10.1.7 04/05/25 20:12:05 marko@hundin.mysql.fi +24 -53
    Many functions: Remove output parameter next_thr; return it instead
    Remove references to srv0que.c

  innobase/trx/trx0purge.c
    1.9.1.6 04/05/25 20:12:05 marko@hundin.mysql.fi +0 -3
    Remove unneeded references to srv0que.c

  innobase/srv/srv0srv.c
    1.35.1.36 04/05/25 20:12:05 marko@hundin.mysql.fi +0 -1
    Remove unnecessary #include "srv0que.h"

  innobase/que/que0que.c
    1.9.1.7 04/05/25 20:12:05 marko@hundin.mysql.fi +22 -87
    Remove unnecessary function que_fork_error_handle()
    que_thr_end_wait(): Remove output parameter next_thr; return it
    Remove references to srv0que.c

  innobase/include/usr0sess.h
    1.4 04/05/25 20:12:05 marko@hundin.mysql.fi +0 -6
    Remove sess->state and its literals SESS_ACTIVE and SESS_ERROR

  innobase/include/trx0trx.h
    1.30.1.1 04/05/25 20:12:05 marko@hundin.mysql.fi +9 -22
    trx_sig_send(), trx_sig_reply(), trx_sig_start_handle():
    Remove output parameter next_thr; return it instead

  innobase/include/trx0roll.h
    1.3.1.1 04/05/25 20:12:05 marko@hundin.mysql.fi +6 -15
    trx_rollback(), trx_finish_rollback_off_kernel():
    Remove output parameter next_thr; return it instead

  innobase/include/que0que.h
    1.7 04/05/25 20:12:05 marko@hundin.mysql.fi +4 -18
    Remove unnecessary function que_fork_error_handle()
    que_thr_end_wait(): Remove output parameter next_thr; return it

  ndb/test/tools/waiter/Makefile_old
    1.2 04/05/25 17:06:27 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/tools/waiter/Makefile -> ndb/test/tools/waiter/Makefile_old

  ndb/test/tools/Makefile.am
    1.1 04/05/25 17:06:06 tomas@poseidon.(none) +1 -0

  ndb/test/tools/Makefile.am
    1.0 04/05/25 17:06:06 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/test/tools/Makefile.am

ChangeSet
  1.1665.9.3 04/05/25 18:57:30 bell@sanja.is.com.ua +1 -0
  my_b_write() needs to be replaced with my_b_append() for a SEQ_READ_APPEND

  sql/parse_file.cc
    1.2 04/05/25 18:56:55 bell@sanja.is.com.ua +20 -20
    my_b_write() needs to be replaced with my_b_append() for a SEQ_READ_APPEND

ChangeSet
  1.1616.439.1 04/05/25 19:52:05 konstantin@mysql.com +1 -0
  changed comment for LONG_DATA_COMMAND

  sql/sql_prepare.cc
    1.34.18.9 04/05/25 19:52:02 konstantin@mysql.com +3 -3
    changed comment for LONG_DATA_COMMAND

ChangeSet
  1.1616.438.2 04/05/25 15:22:57 tomas@poseidon.(none) +2 -0
  updated configure for automake in ndb tree

  configure.in
    1.201.8.12 04/05/25 15:22:54 tomas@poseidon.(none) +102 -9
    updated configure for automake in ndb tree

  acinclude.m4
    1.95.1.1 04/05/25 15:22:54 tomas@poseidon.(none) +1 -1
    updated configure for automake in ndb tree

ChangeSet
  1.1346.623.5 04/05/25 15:53:29 monty@mysql.com +2 -0
  Fixed VC++ project files

  VC++Files/sql/mysqld.dsp
    1.6.1.10 04/05/25 15:53:28 monty@mysql.com +1 -1
    Added missing compiler option

  VC++Files/copy_mysql_files.bat
    1.3 04/05/25 15:53:28 monty@mysql.com +6 -6
    Added /Y to avoid questions
    Fixed wrong path for copying data files

ChangeSet
  1.1616.1.224 04/05/25 14:40:51 magnus@neptunus.(none) +7 -0
  Corrected index_flags returned when index are created with USING HASH
  Updated ndb_ test cases 

  sql/ha_ndbcluster.cc
    1.15 04/05/25 14:40:50 magnus@neptunus.(none) +4 -2
    Added the index flag HA_ONLY_WHOLE_INDEX if index is created with USING HASH.

  mysql-test/t/ndb_index_unique.test
    1.3 04/05/25 14:40:50 magnus@neptunus.(none) +41 -0
    Added test for USING HASH combined with PRIMARY KEY and UNIQUE index

  mysql-test/t/ndb_basic.test
    1.5 04/05/25 14:40:50 magnus@neptunus.(none) +3 -3
    Added som order by

  mysql-test/t/ndb_autodiscover.test
    1.2 04/05/25 14:40:50 magnus@neptunus.(none) +4 -0
    Correctede error case

  mysql-test/r/ndb_index_unique.result
    1.3 04/05/25 14:40:50 magnus@neptunus.(none) +42 -0
    Added test for USING HASH combined with PRIMARY KEY and UNIQUE index

  mysql-test/r/ndb_basic.result
    1.5 04/05/25 14:40:50 magnus@neptunus.(none) +9 -9
    Added som order by to sort the result correctly before comparing

  mysql-test/r/ndb_autodiscover.result
    1.2 04/05/25 14:40:50 magnus@neptunus.(none) +4 -1
    Updated to new output of error message

ChangeSet
  1.1616.425.18 04/05/25 17:40:20 bar@bar.intranet.mysql.r18.ru +17 -0
  Preparation for user-defined Unicode collations:
  weights data now comes from a static variables
  but from the charset structure. 

  strings/ctype-win1250ch.c
    1.36 04/05/25 17:40:10 bar@bar.intranet.mysql.r18.ru +1 -0
    Preparation for user-defined Unicode collations:
    weights data now comes from a static variables
    but from the charset structure. 

  strings/ctype-utf8.c
    1.60 04/05/25 17:40:10 bar@bar.intranet.mysql.r18.ru +2 -0
    Preparation for user-defined Unicode collations:
    weights data now comes from a static variables
    but from the charset structure. 

  strings/ctype-ujis.c
    1.51 04/05/25 17:40:09 bar@bar.intranet.mysql.r18.ru +6 -2
    Preparation for user-defined Unicode collations:
    weights data now comes from a static variables
    but from the charset structure. 

  strings/ctype-ucs2.c
    1.21 04/05/25 17:40:09 bar@bar.intranet.mysql.r18.ru +3 -25
    Preparation for user-defined Unicode collations:
    weights data now comes from a static variables
    but from the charset structure. 

  strings/ctype-uca.c
    1.4 04/05/25 17:40:09 bar@bar.intranet.mysql.r18.ru +40 -5
    Preparation for user-defined Unicode collations:
    weights data now comes from a static variables
    but from the charset structure. 

  strings/ctype-tis620.c
    1.67 04/05/25 17:40:09 bar@bar.intranet.mysql.r18.ru +2 -0
    Preparation for user-defined Unicode collations:
    weights data now comes from a static variables
    but from the charset structure. 

  strings/ctype-sjis.c
    1.60 04/05/25 17:40:09 bar@bar.intranet.mysql.r18.ru +2 -0
    Preparation for user-defined Unicode collations:
    weights data now comes from a static variables
    but from the charset structure. 

  strings/ctype-latin1.c
    1.27 04/05/25 17:40:09 bar@bar.intranet.mysql.r18.ru +3 -0
    Preparation for user-defined Unicode collations:
    weights data now comes from a static variables
    but from the charset structure. 

  strings/ctype-gbk.c
    1.54 04/05/25 17:40:09 bar@bar.intranet.mysql.r18.ru +2 -0
    Preparation for user-defined Unicode collations:
    weights data now comes from a static variables
    but from the charset structure. 

  strings/ctype-gb2312.c
    1.47 04/05/25 17:40:09 bar@bar.intranet.mysql.r18.ru +2 -0
    Preparation for user-defined Unicode collations:
    weights data now comes from a static variables
    but from the charset structure. 

  strings/ctype-extra.c
    1.15 04/05/25 17:40:08 bar@bar.intranet.mysql.r18.ru +1 -0
    Preparation for user-defined Unicode collations:
    weights data now comes from a static variables
    but from the charset structure. 

  strings/ctype-euc_kr.c
    1.50 04/05/25 17:40:08 bar@bar.intranet.mysql.r18.ru +2 -0
    Preparation for user-defined Unicode collations:
    weights data now comes from a static variables
    but from the charset structure. 

  strings/ctype-czech.c
    1.46 04/05/25 17:40:08 bar@bar.intranet.mysql.r18.ru +1 -0
    Preparation for user-defined Unicode collations:
    weights data now comes from a static variables
    but from the charset structure. 

  strings/ctype-bin.c
    1.45 04/05/25 17:40:08 bar@bar.intranet.mysql.r18.ru +3 -1
    Preparation for user-defined Unicode collations:
    weights data now comes from a static variables
    but from the charset structure. 

  strings/ctype-big5.c
    1.56 04/05/25 17:40:08 bar@bar.intranet.mysql.r18.ru +2 -0
    Preparation for user-defined Unicode collations:
    weights data now comes from a static variables
    but from the charset structure. 

  mysys/charset.c
    1.119 04/05/25 17:40:08 bar@bar.intranet.mysql.r18.ru +2 -1
    Preparation for user-defined Unicode collations:
    weights data now comes from a static variables
    but from the charset structure. 

  include/m_ctype.h
    1.91 04/05/25 17:40:08 bar@bar.intranet.mysql.r18.ru +2 -1
    Preparation for user-defined Unicode collations:
    weights data now comes from a static variables
    but from the charset structure. 

ChangeSet
  1.1616.436.1 04/05/25 11:09:11 tomas@poseidon.(none) +101 -0
  Intermediary commit: Removed some old Makefiles and introduces Makefile.am

ChangeSet
  1.1616.425.17 04/05/25 16:05:33 bar@bar.intranet.mysql.r18.ru +2 -0
  sql_string.h:
    Not used code.
    ,
  sql_string.cc:
    Not used code.

  sql/sql_string.h
    1.44.1.3 04/05/25 16:05:17 bar@bar.intranet.mysql.r18.ru +0 -1
    Not used code.
    ,

  sql/sql_string.cc
    1.77.1.4 04/05/25 16:05:02 bar@bar.intranet.mysql.r18.ru +0 -34
    Not used code.

ChangeSet
  1.1616.425.16 04/05/25 15:54:03 bar@bar.intranet.mysql.r18.ru +4 -0
  1. Some optimization when conversion is not needed.
  2. One now must pass length argument into append(const char *str, uint length),
  length is not calculated internally anymore.

  sql/sql_string.h
    1.44.1.2 04/05/25 15:54:00 bar@bar.intranet.mysql.r18.ru +2 -1
    1. Some optimization when conversion is not needed.
    2. One now must pass length argument into append(const char *str, uint length),
    length is not calculated internally anymore.

  sql/sql_string.cc
    1.77.1.3 04/05/25 15:54:00 bar@bar.intranet.mysql.r18.ru +28 -15
    1. Some optimization when conversion is not needed.
    2. One now must pass length argument into append(const char *str, uint length),
    length is not calculated internally anymore.

  sql/sql_show.cc
    1.122.1.44 04/05/25 15:54:00 bar@bar.intranet.mysql.r18.ru +3 -3
    1. Some optimization when conversion is not needed.
    2. One now must pass length argument into append(const char *str, uint length),
    length is not calculated internally anymore.

  sql/sql_select.cc
    1.216.1.117 04/05/25 15:54:00 bar@bar.intranet.mysql.r18.ru +5 -2
    1. Some optimization when conversion is not needed.
    2. One now must pass length argument into append(const char *str, uint length),
    length is not calculated internally anymore.

ChangeSet
  1.1346.623.4 04/05/25 13:26:24 monty@mysql.com +2 -0
  Removed references to BDB and InnoDB from 'classic' release

  VC++Files/sql/mysqld.dsp
    1.6.1.9 04/05/25 13:26:22 monty@mysql.com +3 -3
    Removed references to BDB and InnoDB from 'classic'

  VC++Files/mysqldemb/mysqldemb.dsp
    1.3.1.5 04/05/25 13:26:21 monty@mysql.com +2 -2
    Removed references to BDB and InnoDB from 'classic'

ChangeSet
  1.1346.623.3 04/05/25 13:17:33 monty@mysql.com +3 -0
  fixed typos

  VC++Files/sql/mysqld.dsp
    1.6.1.8 04/05/25 13:17:32 monty@mysql.com +2 -2
    fixed typos

  VC++Files/mysqldemb/mysqldemb.dsp
    1.3.1.4 04/05/25 13:17:32 monty@mysql.com +2 -2
    fixed typos

  VC++Files/libmysqld/libmysqld.dsp
    1.2.1.6 04/05/25 13:17:32 monty@mysql.com +1 -1
    fixed typos

ChangeSet
  1.1616.1.222 04/05/25 12:10:54 magnus@neptunus.(none) +1 -0
  Uses table_type() function to get name of storage engine before printing engine specific error message.

  sql/handler.cc
    1.103.1.26 04/05/25 12:10:52 magnus@neptunus.(none) +1 -1
    Use table_type to get "name" of this handler

ChangeSet
  1.1616.434.1 04/05/25 15:06:32 hf@deer.(none) +8 -0
  WL#1562 (Improving spatial code)
  A set of changes improving our RTree indexes and fixed few bugs
  found during the tests

ChangeSet
  1.1616.1.221 04/05/25 12:06:20 magnus@neptunus.(none) +3 -0
  These test program also uses old way to create tables, thus requires NdbSchemaCon.hpp

  ndb/test/src/NDBT_ResultRow.cpp
    1.7 04/05/25 12:06:18 magnus@neptunus.(none) +1 -1
    Correct spelling errors in comment's.

  ndb/test/ndbapi/flexTT/flexTT.cpp
    1.4 04/05/25 12:06:18 magnus@neptunus.(none) +3 -2
    This test program also uses old way to create tables, thus requires NdbSchemaCon.hpp

  ndb/test/ndbapi/flexHammer/flexHammer.cpp
    1.4 04/05/25 12:06:18 magnus@neptunus.(none) +8 -7
    This test program also uses old way to create tables, thus requires NdbSchemaCon.hpp

  sql/spatial.cc
    1.15.1.3 04/05/25 15:06:06 hf@deer.(none) +6 -1
    LINESTRING object can consist of single point

  myisam/rt_split.c
    1.9.1.1 04/05/25 15:06:06 hf@deer.(none) +5 -5
    my_multi_malloc changed with my_alloca

  myisam/rt_mbr.h
    1.2.1.1 04/05/25 15:06:06 hf@deer.(none) +2 -0
    interface for rtree_perimeter_increase

  myisam/rt_mbr.c
    1.4.1.1 04/05/25 15:06:06 hf@deer.(none) +101 -2
    operations for counting the perimeter of MBR added

  myisam/rt_key.h
    1.1.1.1 04/05/25 15:06:06 hf@deer.(none) +0 -2
    no need to make rtree_choose_key global

  myisam/rt_key.c
    1.6.1.1 04/05/25 15:06:06 hf@deer.(none) +2 -44
    counting of the size of the filled part of the page fixed
    rtree_choose_key moved to rt_index.c

  myisam/rt_index.h
    1.1.1.1 04/05/25 15:06:06 hf@deer.(none) +1 -1
    minimal size of the page set to 1/3
    It noticeable increases searching performance

  myisam/rt_index.c
    1.11.1.1 04/05/25 15:06:06 hf@deer.(none) +90 -2
    Algorythm for picking the branch to insert was fixed.
    pick_by_perimeter version of the algorythm added (mostly for testing
    purposes)

  ndb/test/ndbapi/flexBench/Makefile.am
    1.1 04/05/25 09:58:11 tomas@poseidon.(none) +14 -0

  ndb/test/ndbapi/flexBench/Makefile.am
    1.0 04/05/25 09:58:11 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/test/ndbapi/flexBench/Makefile.am

  ndb/test/ndbapi/flexBench/Makefile_old
    1.4 04/05/25 09:57:45 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/flexBench/Makefile.am -> ndb/test/ndbapi/flexBench/Makefile_old

  ndb/test/ndbapi/Makefile.am
    1.1 04/05/25 09:57:13 tomas@poseidon.(none) +2 -0

  ndb/test/ndbapi/Makefile.am
    1.0 04/05/25 09:57:13 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/test/ndbapi/Makefile.am

  ndb/test/ndbapi/Makefile_old
    1.4 04/05/25 09:56:47 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/Makefile.am -> ndb/test/ndbapi/Makefile_old

  ndb/test/src/Makefile.am
    1.1 04/05/25 09:55:10 tomas@poseidon.(none) +18 -0

  ndb/test/Makefile.am
    1.1 04/05/25 09:55:10 tomas@poseidon.(none) +2 -0

  ndb/Makefile.am
    1.1 04/05/25 09:55:10 tomas@poseidon.(none) +1 -0

  ndb/test/src/Makefile.am
    1.0 04/05/25 09:55:10 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/test/src/Makefile.am

  ndb/test/Makefile.am
    1.0 04/05/25 09:55:10 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/test/Makefile.am

  ndb/src/ndbapi/Makefile.am
    1.1 04/05/25 09:55:09 tomas@poseidon.(none) +55 -0

  ndb/src/mgmsrv/Makefile.am
    1.1 04/05/25 09:55:09 tomas@poseidon.(none) +29 -0

  ndb/src/mgmclient/Makefile.am
    1.1 04/05/25 09:55:09 tomas@poseidon.(none) +23 -0

  ndb/src/mgmapi/Makefile.am
    1.1 04/05/25 09:55:09 tomas@poseidon.(none) +20 -0

  ndb/src/kernel/vm/Makefile.am
    1.1 04/05/25 09:55:09 tomas@poseidon.(none) +28 -0

  ndb/src/kernel/ndb-main/Makefile.am
    1.1 04/05/25 09:55:09 tomas@poseidon.(none) +55 -0

  ndb/src/kernel/error/Makefile.am
    1.1 04/05/25 09:55:09 tomas@poseidon.(none) +11 -0

  ndb/src/kernel/blocks/Makefile.am
    1.1 04/05/25 09:55:09 tomas@poseidon.(none) +17 -0

  ndb/src/kernel/Makefile.am
    1.1 04/05/25 09:55:09 tomas@poseidon.(none) +1 -0

  ndb/src/Makefile.am
    1.1 04/05/25 09:55:09 tomas@poseidon.(none) +1 -0

  ndb/Makefile.am
    1.0 04/05/25 09:55:10 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/Makefile.am

  ndb/src/ndbapi/Makefile.am
    1.0 04/05/25 09:55:09 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/ndbapi/Makefile.am

  ndb/src/mgmsrv/Makefile.am
    1.0 04/05/25 09:55:09 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/mgmsrv/Makefile.am

  ndb/src/mgmclient/Makefile.am
    1.0 04/05/25 09:55:09 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/mgmclient/Makefile.am

  ndb/src/mgmapi/Makefile.am
    1.0 04/05/25 09:55:09 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/mgmapi/Makefile.am

  ndb/src/kernel/vm/Makefile.am
    1.0 04/05/25 09:55:09 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/vm/Makefile.am

  ndb/src/kernel/ndb-main/Makefile.am
    1.0 04/05/25 09:55:09 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/ndb-main/Makefile.am

  ndb/src/kernel/error/Makefile.am
    1.0 04/05/25 09:55:09 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/error/Makefile.am

  ndb/src/kernel/blocks/trix/Makefile.am
    1.1 04/05/25 09:55:08 tomas@poseidon.(none) +9 -0

  ndb/src/kernel/blocks/suma/Makefile.am
    1.1 04/05/25 09:55:08 tomas@poseidon.(none) +9 -0

  ndb/src/kernel/blocks/qmgr/Makefile.am
    1.1 04/05/25 09:55:08 tomas@poseidon.(none) +11 -0

  ndb/src/kernel/blocks/ndbfs/Makefile.am
    1.1 04/05/25 09:55:08 tomas@poseidon.(none) +13 -0

  ndb/src/kernel/blocks/ndbcntr/Makefile.am
    1.1 04/05/25 09:55:08 tomas@poseidon.(none) +12 -0

  ndb/src/kernel/blocks/grep/Makefile.am
    1.1 04/05/25 09:55:08 tomas@poseidon.(none) +9 -0

  ndb/src/kernel/blocks/dbutil/Makefile.am
    1.1 04/05/25 09:55:08 tomas@poseidon.(none) +9 -0

  ndb/src/kernel/blocks/dbtux/Makefile.am
    1.1 04/05/25 09:55:08 tomas@poseidon.(none) +17 -0

  ndb/src/kernel/blocks/dbtup/Makefile.am
    1.1 04/05/25 09:55:08 tomas@poseidon.(none) +27 -0

  ndb/src/kernel/blocks/dbtc/Makefile.am
    1.1 04/05/25 09:55:08 tomas@poseidon.(none) +9 -0

  ndb/src/kernel/blocks/dblqh/Makefile.am
    1.1 04/05/25 09:55:08 tomas@poseidon.(none) +11 -0

  ndb/src/kernel/blocks/Makefile.am
    1.0 04/05/25 09:55:09 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/blocks/Makefile.am

  ndb/src/kernel/Makefile.am
    1.0 04/05/25 09:55:09 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/Makefile.am

  ndb/src/Makefile.am
    1.0 04/05/25 09:55:09 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/Makefile.am

  ndb/src/kernel/blocks/trix/Makefile.am
    1.0 04/05/25 09:55:08 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/blocks/trix/Makefile.am

  ndb/src/kernel/blocks/suma/Makefile.am
    1.0 04/05/25 09:55:08 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/blocks/suma/Makefile.am

  ndb/src/kernel/blocks/qmgr/Makefile.am
    1.0 04/05/25 09:55:08 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/blocks/qmgr/Makefile.am

  ndb/src/kernel/blocks/ndbfs/Makefile.am
    1.0 04/05/25 09:55:08 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/blocks/ndbfs/Makefile.am

  ndb/src/kernel/blocks/ndbcntr/Makefile.am
    1.0 04/05/25 09:55:08 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/blocks/ndbcntr/Makefile.am

  ndb/src/kernel/blocks/grep/Makefile.am
    1.0 04/05/25 09:55:08 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/blocks/grep/Makefile.am

  ndb/src/kernel/blocks/dbutil/Makefile.am
    1.0 04/05/25 09:55:08 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/blocks/dbutil/Makefile.am

  ndb/src/kernel/blocks/dbtux/Makefile.am
    1.0 04/05/25 09:55:08 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/blocks/dbtux/Makefile.am

  ndb/src/kernel/blocks/dbtup/Makefile.am
    1.0 04/05/25 09:55:08 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/blocks/dbtup/Makefile.am

  ndb/src/kernel/blocks/dbtc/Makefile.am
    1.0 04/05/25 09:55:08 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/blocks/dbtc/Makefile.am

  ndb/src/kernel/blocks/dblqh/Makefile.am
    1.0 04/05/25 09:55:08 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/blocks/dblqh/Makefile.am

  ndb/src/kernel/blocks/dbdih/Makefile.am
    1.1 04/05/25 09:55:07 tomas@poseidon.(none) +9 -0

  ndb/src/kernel/blocks/dbdict/Makefile.am
    1.1 04/05/25 09:55:07 tomas@poseidon.(none) +11 -0

  ndb/src/kernel/blocks/dbacc/Makefile.am
    1.1 04/05/25 09:55:07 tomas@poseidon.(none) +10 -0

  ndb/src/kernel/blocks/cmvmi/Makefile.am
    1.1 04/05/25 09:55:07 tomas@poseidon.(none) +10 -0

  ndb/src/kernel/blocks/backup/restore/Makefile.am
    1.1 04/05/25 09:55:07 tomas@poseidon.(none) +10 -0

  ndb/src/kernel/blocks/backup/Makefile.am
    1.1 04/05/25 09:55:07 tomas@poseidon.(none) +12 -0

  ndb/src/cw/cpcd/Makefile.am
    1.1 04/05/25 09:55:07 tomas@poseidon.(none) +12 -0

  ndb/src/cw/Makefile.am
    1.1 04/05/25 09:55:07 tomas@poseidon.(none) +1 -0

  ndb/src/common/util/Makefile.am
    1.1 04/05/25 09:55:07 tomas@poseidon.(none) +16 -0

  ndb/src/common/transporter/Makefile.am
    1.1 04/05/25 09:55:07 tomas@poseidon.(none) +17 -0

  ndb/src/common/portlib/Makefile.am
    1.1 04/05/25 09:55:07 tomas@poseidon.(none) +1 -0

  ndb/src/common/Makefile.am
    1.1 04/05/25 09:55:07 tomas@poseidon.(none) +13 -0

  ndb/src/kernel/blocks/dbdih/Makefile.am
    1.0 04/05/25 09:55:07 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/blocks/dbdih/Makefile.am

  ndb/src/kernel/blocks/dbdict/Makefile.am
    1.0 04/05/25 09:55:07 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/blocks/dbdict/Makefile.am

  ndb/src/kernel/blocks/dbacc/Makefile.am
    1.0 04/05/25 09:55:07 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/blocks/dbacc/Makefile.am

  ndb/src/kernel/blocks/cmvmi/Makefile.am
    1.0 04/05/25 09:55:07 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/blocks/cmvmi/Makefile.am

  ndb/src/kernel/blocks/backup/restore/Makefile.am
    1.0 04/05/25 09:55:07 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/blocks/backup/restore/Makefile.am

  ndb/src/kernel/blocks/backup/Makefile.am
    1.0 04/05/25 09:55:07 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/kernel/blocks/backup/Makefile.am

  ndb/src/cw/cpcd/Makefile.am
    1.0 04/05/25 09:55:07 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/cw/cpcd/Makefile.am

  ndb/src/cw/Makefile.am
    1.0 04/05/25 09:55:07 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/cw/Makefile.am

  ndb/src/common/util/Makefile.am
    1.0 04/05/25 09:55:07 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/common/util/Makefile.am

  ndb/src/common/transporter/Makefile.am
    1.0 04/05/25 09:55:07 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/common/transporter/Makefile.am

  ndb/src/common/portlib/unix/Makefile.am
    1.1 04/05/25 09:55:06 tomas@poseidon.(none) +13 -0

  ndb/src/common/portlib/Makefile.am
    1.0 04/05/25 09:55:07 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/common/portlib/Makefile.am

  ndb/src/common/mgmcommon/Makefile.am
    1.1 04/05/25 09:55:06 tomas@poseidon.(none) +16 -0

  ndb/src/common/logger/Makefile.am
    1.1 04/05/25 09:55:06 tomas@poseidon.(none) +11 -0

  ndb/src/common/editline/Makefile.am
    1.1 04/05/25 09:55:06 tomas@poseidon.(none) +10 -0

  ndb/src/common/debugger/signaldata/Makefile.am
    1.1 04/05/25 09:55:06 tomas@poseidon.(none) +32 -0

  ndb/src/common/debugger/Makefile.am
    1.1 04/05/25 09:55:06 tomas@poseidon.(none) +11 -0

  ndb/src/common/Makefile.am
    1.0 04/05/25 09:55:07 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/common/Makefile.am

  ndb/config/type_ndbapitest.mk.am
    1.1 04/05/25 09:55:06 tomas@poseidon.(none) +2 -0

  ndb/config/type_ndbapiclient.mk.am
    1.1 04/05/25 09:55:06 tomas@poseidon.(none) +2 -0

  ndb/config/type_ndbapi.mk.am
    1.1 04/05/25 09:55:06 tomas@poseidon.(none) +2 -0

  ndb/config/type_mgmapiclient.mk.am
    1.1 04/05/25 09:55:06 tomas@poseidon.(none) +2 -0

  ndb/config/type_kernel.mk.am
    1.1 04/05/25 09:55:06 tomas@poseidon.(none) +2 -0

  ndb/config/common.mk.am
    1.1 04/05/25 09:55:06 tomas@poseidon.(none) +7 -0

  ndb/src/common/portlib/unix/Makefile.am
    1.0 04/05/25 09:55:06 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/common/portlib/unix/Makefile.am

  ndb/src/common/mgmcommon/Makefile.am
    1.0 04/05/25 09:55:06 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/common/mgmcommon/Makefile.am

  ndb/src/common/logger/Makefile.am
    1.0 04/05/25 09:55:06 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/common/logger/Makefile.am

  ndb/src/common/editline/Makefile.am
    1.0 04/05/25 09:55:06 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/common/editline/Makefile.am

  ndb/src/common/debugger/signaldata/Makefile.am
    1.0 04/05/25 09:55:06 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/common/debugger/signaldata/Makefile.am

  ndb/src/common/debugger/Makefile.am
    1.0 04/05/25 09:55:06 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/src/common/debugger/Makefile.am

  ndb/config/type_util.mk.am
    1.1 04/05/25 09:55:05 tomas@poseidon.(none) +7 -0

  ndb/config/type_ndbapitest.mk.am
    1.0 04/05/25 09:55:06 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/config/type_ndbapitest.mk.am

  ndb/config/type_ndbapiclient.mk.am
    1.0 04/05/25 09:55:06 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/config/type_ndbapiclient.mk.am

  ndb/config/type_ndbapi.mk.am
    1.0 04/05/25 09:55:06 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/config/type_ndbapi.mk.am

  ndb/config/type_mgmapiclient.mk.am
    1.0 04/05/25 09:55:06 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/config/type_mgmapiclient.mk.am

  ndb/config/type_kernel.mk.am
    1.0 04/05/25 09:55:06 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/config/type_kernel.mk.am

  ndb/config/common.mk.am
    1.0 04/05/25 09:55:06 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/config/common.mk.am

  ndb/config/type_util.mk.am
    1.0 04/05/25 09:55:05 tomas@poseidon.(none) +0 -0
    BitKeeper file /home/tomas/mysql-4.1-ndb-make/ndb/config/type_util.mk.am

  ndb/config/GuessConfig.sh_old
    1.6 04/05/25 09:53:31 tomas@poseidon.(none) +0 -0
    Rename: ndb/config/GuessConfig.sh -> ndb/config/GuessConfig.sh_old

  ndb/config/Makefile.am_old
    1.2 04/05/25 09:53:18 tomas@poseidon.(none) +0 -0
    Rename: ndb/config/Makefile.am -> ndb/config/Makefile.am_old

ChangeSet
  1.1616.1.220 04/05/25 11:53:07 magnus@neptunus.(none) +52 -0
  Removed AttrType.hpp and moved the "internal" datatypes to their corresponding class.
  Moved NdbSchemaCon and NdbSchemaOp out of the public NdbApi, it can however still be used by old test programs.
  Added print oof indexes to desc.

  ndb/tools/desc/desc.cpp
    1.2 04/05/25 11:53:05 magnus@neptunus.(none) +35 -10
    Alos print info about indexes for a table

  ndb/test/src/UtilTransactions.cpp
    1.3 04/05/25 11:53:05 magnus@neptunus.(none) +2 -2
    When AttrType.hpp, this hidden bug was discovered. Using wrong enum types in switch.

  ndb/test/src/NDBT_Table.cpp
    1.4 04/05/25 11:53:05 magnus@neptunus.(none) +36 -4
    Print table info more SQL like

  ndb/test/src/NDBT_ResultRow.cpp
    1.6 04/05/25 11:53:05 magnus@neptunus.(none) +10 -2
    This test program uses old NdbScheaCon.hpp
    But should soon use "printer" from NdbRecAttr

  ndb/test/ndbapi/testRestartGci/testRestartGci.cpp
    1.2 04/05/25 11:53:05 magnus@neptunus.(none) +1 -1
    Moved "internal" datatypes to corresponding class, in this case Ndb class

  ndb/test/ndbapi/testNdbApi/testNdbApi.cpp
    1.2 04/05/25 11:53:05 magnus@neptunus.(none) +2 -2
    Remove AttrType.hpp
    Define max number of Ndb objects test should "try" to create.

  ndb/test/ndbapi/testDataBuffers/testDataBuffers.cpp
    1.5 04/05/25 11:53:05 magnus@neptunus.(none) +3 -3
    This test program uses old NdbScheaCon.hpp

  ndb/test/ndbapi/telco/msa.cpp
    1.4 04/05/25 11:53:05 magnus@neptunus.(none) +4 -2
    This test program uses old NdbScheaCon.hpp

  ndb/test/ndbapi/ronja/initronja/initronja.cpp
    1.2 04/05/25 11:53:05 magnus@neptunus.(none) +6 -5
    This test program uses old NdbScheaCon.hpp

  ndb/test/ndbapi/lmc-bench/src/user/userInterface.cpp
    1.4 04/05/25 11:53:05 magnus@neptunus.(none) +30 -31
    This test program uses old NdbScheaCon.hpp

  ndb/test/ndbapi/interpreterInTup/interpreterInTup.cpp
    1.4 04/05/25 11:53:05 magnus@neptunus.(none) +19 -26
    This test program uses old NdbScheaCon.hpp

  ndb/test/ndbapi/flexScan/flexScan.cpp
    1.4 04/05/25 11:53:05 magnus@neptunus.(none) +9 -16
    This test program uses old NdbScheaCon.hpp

  ndb/test/ndbapi/flexAsynch/flexAsynch.cpp
    1.4 04/05/25 11:53:05 magnus@neptunus.(none) +6 -3
    This test program uses old NdbScheaCon.hpp

  ndb/test/ndbapi/acid/acid.cpp
    1.2 04/05/25 11:53:05 magnus@neptunus.(none) +6 -9
    This test program uses old NdbScheaCon.hpp

  ndb/test/include/NDBT_Table.hpp
    1.5 04/05/25 11:53:05 magnus@neptunus.(none) +9 -60
    Removed old NdbSchema*
    Added function to print information about an index

  ndb/src/ndbapi/TransporterFacade.hpp
    1.2 04/05/25 11:53:05 magnus@neptunus.(none) +6 -1
    Removed AttrType.hpp
    Moved internal definition of how many Ndb objects to create to here

  ndb/src/ndbapi/TransporterFacade.cpp
    1.5 04/05/25 11:53:05 magnus@neptunus.(none) +0 -1
    Removed AttrType.hpp

  ndb/src/ndbapi/Ndblist.cpp
    1.2 04/05/25 11:53:05 magnus@neptunus.(none) +4 -4
    Removed NdbSchemaCon and NdbSchemaOp from public NdbApi
    Moved "internal" types to their corresponding class

  ndb/src/ndbapi/Ndbinit.cpp
    1.2.1.1 04/05/25 11:53:05 magnus@neptunus.(none) +6 -6
    Removed NdbSchemaCon and NdbSchemaOp from public NdbApi

  ndb/src/ndbapi/Ndbif.cpp
    1.4 04/05/25 11:53:05 magnus@neptunus.(none) +47 -47
    Removed AttrType.hpp
    Removed NdbSchemaCon and NdbSchemaOp from public NdbApi
    Moved "interal" types to their corresponding class

  ndb/src/ndbapi/NdbUtil.hpp
    1.4 04/05/25 11:53:05 magnus@neptunus.(none) +0 -1
    Removed AttrType.hpp

  ndb/src/ndbapi/NdbSchemaOp.cpp
    1.4 04/05/25 11:53:05 magnus@neptunus.(none) +18 -3
    Updated not to be included in public NdbApi

  ndb/src/ndbapi/NdbSchemaCon.cpp
    1.2 04/05/25 11:53:05 magnus@neptunus.(none) +13 -10
    Updated not to be included in public NdbApi

  ndb/src/ndbapi/NdbResultSet.cpp
    1.2 04/05/25 11:53:05 magnus@neptunus.(none) +8 -4
    Moved the "internal" types to corresponding class

  ndb/src/ndbapi/NdbOperationSearch.cpp
    1.3 04/05/25 11:53:05 magnus@neptunus.(none) +1 -2
    Removed AttrType.hpp
    Use limits from ndbapi_limits.h

  ndb/src/ndbapi/NdbOperationScan.cpp
    1.2 04/05/25 11:53:05 magnus@neptunus.(none) +4 -4
    RemovedAttrType.hpp
    Use limits from ndbapi_limits.h

  ndb/src/ndbapi/NdbOperationInt.cpp
    1.2 04/05/25 11:53:04 magnus@neptunus.(none) +6 -7
    RemovedAttrType.hpp
    Use limits from ndbapi_limits.h

  ndb/src/ndbapi/NdbOperationExec.cpp
    1.5 04/05/25 11:53:04 magnus@neptunus.(none) +1 -1
    Moved internal tyeps to the class where they belongs

  ndb/src/ndbapi/NdbOperationDefine.cpp
    1.3 04/05/25 11:53:04 magnus@neptunus.(none) +0 -1
    Remove AttrType.hpp

  ndb/src/ndbapi/NdbOperation.cpp
    1.4 04/05/25 11:53:04 magnus@neptunus.(none) +2 -2
    Use limits from ndbapi_limits.h

  ndb/src/ndbapi/NdbIndexOperation.cpp
    1.2 04/05/25 11:53:04 magnus@neptunus.(none) +3 -3
    Use limitations from ndbapi_limits.h
    Moved internal tyeps to the class where they belongs

  ndb/src/ndbapi/NdbEventOperationImpl.cpp
    1.4 04/05/25 11:53:04 magnus@neptunus.(none) +57 -46
    Removed AttrType.hpp
    Moved printRecAttr to end since it depends on old types and need to include "NdbSchemaCon", function will be rewritten and moved to NdbRecAttr. It's also useful from other places where an attribute has been read into an NdbRecAttr.

  ndb/src/ndbapi/NdbDictionaryImpl.cpp
    1.3.2.1 04/05/25 11:53:04 magnus@neptunus.(none) +1 -2
    RemovedAttrType.hpp
    Use limits from ndbapi_limits.h

  ndb/src/ndbapi/NdbConnection.cpp
    1.2 04/05/25 11:53:04 magnus@neptunus.(none) +1 -1
    Moved internal type s to the class where they belong

  ndb/src/ndbapi/NdbApiSignal.hpp
    1.2 04/05/25 11:53:04 magnus@neptunus.(none) +0 -1
    Removed AttrType.hpp

  ndb/src/ndbapi/NdbApiSignal.cpp
    1.2 04/05/25 11:53:04 magnus@neptunus.(none) +0 -1
    Removed AttrType.hpp

  ndb/src/ndbapi/Ndb.cpp
    1.5.1.1 04/05/25 11:53:04 magnus@neptunus.(none) +7 -8
    Removed NdbSchemaCon and NdbSchemaOp includes from public NdbApi
    Removed AttrType.hpp
    Moved internal types to the class where they are used

  ndb/src/ndbapi/ClusterMgr.cpp
    1.6 04/05/25 11:53:04 magnus@neptunus.(none) +0 -1
    Remov AttrType.hpp

  ndb/src/mgmsrv/MgmtSrvr.cpp
    1.5 04/05/25 11:53:04 magnus@neptunus.(none) +0 -1
    Remov AttrType.hpp

  ndb/src/kernel/blocks/backup/restore/main.cpp
    1.5 04/05/25 11:53:04 magnus@neptunus.(none) +5 -2
    Include NdbOut

  ndb/src/kernel/blocks/backup/restore/Restore.hpp
    1.5 04/05/25 11:53:04 magnus@neptunus.(none) +1 -3
    Removed AttrType
    Include NdbSchemaCon since restore uses old types

  ndb/src/Makefile
    1.2.1.1 04/05/25 11:53:04 magnus@neptunus.(none) +0 -1
    Remove newtonapi from Makefile

  ndb/include/ndbapi/ndbapi_limits.h
    1.3 04/05/25 11:53:04 magnus@neptunus.(none) +3 -16
    Corrected limitations, added some from AttrTyp.hpp

  ndb/include/ndbapi/NdbSchemaOp.hpp
    1.4 04/05/25 11:53:04 magnus@neptunus.(none) +158 -27
    Removed NdbSchemaCon and NdbSchemaOp includes from public NdbApi
    Removed AttrType.hpp
    Moved all "old" datatypes here, so if a test program is still using old type, include NdbSchemaCon.hpp

  ndb/include/ndbapi/NdbSchemaCon.hpp
    1.2 04/05/25 11:53:04 magnus@neptunus.(none) +20 -5
    Removed NdbSchemaCon and NdbSchemaOp includes from public NdbApi
    Removed AttrType.hpp

  ndb/include/ndbapi/NdbRecAttr.hpp
    1.4 04/05/25 11:53:04 magnus@neptunus.(none) +3 -33
    Removed NdbSchemaCon and NdbSchemaOp includes from public NdbApi
    Removed AttrType.hpp

  ndb/include/ndbapi/NdbOperation.hpp
    1.3.1.1 04/05/25 11:53:04 magnus@neptunus.(none) +40 -38
    Removed NdbSchemaCon and NdbSchemaOp includes from public NdbApi
    Removed AttrType.hpp
    Remove faulty comment about how many attributes a key is allowed to consist of
    Removed unused member variables

  ndb/include/ndbapi/NdbIndexOperation.hpp
    1.2 04/05/25 11:53:04 magnus@neptunus.(none) +1 -1
    Use limit from ndbapi_limit.h

  ndb/include/ndbapi/NdbConnection.hpp
    1.3.1.1 04/05/25 11:53:04 magnus@neptunus.(none) +76 -7
    Removed NdbSchemaCon and NdbSchemaOp includes from public NdbApi
    Removed AttrType.hpp
    Moved internal types to the class where they are used

  ndb/include/ndbapi/NdbApi.hpp
    1.2 04/05/25 11:53:04 magnus@neptunus.(none) +1 -3
    Removed NdbSchemaCon and NdbSchemaOp includes from public NdbApi
    Removed AttrType.hpp

  ndb/include/ndbapi/Ndb.hpp
    1.3.1.1 04/05/25 11:53:04 magnus@neptunus.(none) +23 -35
    Removed NdbSchemaCon and NdbSchemaOp includes from public NdbApi
    Removed AttrType.hpp

  ndb/BinDist.sh
    1.3 04/05/25 11:53:04 magnus@neptunus.(none) +0 -1
    Removed AttrType.hpp from BinDist.sh

  ndb/src/kernel/blocks/backup/restore/Makefile_old
    1.4 04/05/25 01:10:46 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/blocks/backup/restore/Makefile -> ndb/src/kernel/blocks/backup/restore/Makefile_old

ChangeSet
  1.1616.310.4 04/05/24 17:20:22 patg@krsna.patg.net +2 -0
  logging_ok:
    Logging to logging@openlogging.org accepted
  Do-compile:
    1. Option to ensure that logs are moved and then backed up on each host prior to a build
    2. Option to run build with flag "--without-ndbcluster"

  BitKeeper/etc/logging_ok
    1.233.28.1 04/05/24 17:16:31 patg@krsna.patg.net +1 -0
    Logging to logging@openlogging.org accepted

  Build-tools/Do-compile
    1.81.1.1 04/05/24 17:10:07 patg@krsna.patg.net +5 -2
    1. Option to ensure that logs are moved and then backed up on each host prior to a build
    2. Option to run build with flag "--without-ndbcluster"

ChangeSet
  1.1346.623.2 04/05/25 02:49:43 monty@mysql.com +17 -0
  Fixed typo

  VC++Files/sql/mysqld.dsp
    1.6.1.7 04/05/25 02:49:41 monty@mysql.com +1 -1
    Fixed typo

  VC++Files/replace/replace.dsp
    1.4.1.5 04/05/25 02:49:41 monty@mysql.com +1 -1
    Fixed typo

  VC++Files/perror/perror.dsp
    1.5.1.5 04/05/25 02:49:41 monty@mysql.com +1 -1
    Fixed typo

  VC++Files/pack_isam/pack_isam.dsp
    1.5.1.5 04/05/25 02:49:41 monty@mysql.com +1 -1
    Fixed typo

  VC++Files/mysqlcheck/mysqlcheck.dsp
    1.4.1.5 04/05/25 02:49:41 monty@mysql.com +1 -1
    Fixed typo

  VC++Files/mysqlbinlog/mysqlbinlog.dsp
    1.7.1.5 04/05/25 02:49:41 monty@mysql.com +1 -1
    Fixed typo

  VC++Files/myisampack/myisampack.dsp
    1.3.1.5 04/05/25 02:49:41 monty@mysql.com +1 -1
    Fixed typo

  VC++Files/myisamlog/myisamlog.dsp
    1.2.1.5 04/05/25 02:49:41 monty@mysql.com +1 -1
    Fixed typo

  VC++Files/myisamchk/myisamchk.dsp
    1.2.1.4 04/05/25 02:49:41 monty@mysql.com +1 -1
    Fixed typo

  VC++Files/my_print_defaults/my_print_defaults.dsp
    1.1.1.6 04/05/25 02:49:41 monty@mysql.com +1 -1
    Fixed typo

  VC++Files/libmysqld/libmysqld.dsp
    1.2.1.5 04/05/25 02:49:41 monty@mysql.com +1 -1
    Fixed typo

  VC++Files/isamchk/isamchk.dsp
    1.2.1.5 04/05/25 02:49:41 monty@mysql.com +1 -1
    Fixed typo

  VC++Files/client/mysqlshow.dsp
    1.4.1.5 04/05/25 02:49:41 monty@mysql.com +1 -1
    Fixed typo

  VC++Files/client/mysqlimport.dsp
    1.4.1.5 04/05/25 02:49:41 monty@mysql.com +1 -1
    Fixed typo

  VC++Files/client/mysqldump.dsp
    1.4.1.5 04/05/25 02:49:41 monty@mysql.com +1 -1
    Fixed typo

  VC++Files/client/mysqladmin.dsp
    1.4.1.5 04/05/25 02:49:41 monty@mysql.com +1 -1
    Fixed typo

  VC++Files/client/mysql.dsp
    1.4.1.5 04/05/25 02:49:41 monty@mysql.com +1 -1
    Fixed typo

ChangeSet
  1.1346.623.1 04/05/25 02:28:44 monty@mysql.com +51 -0
  New MYSQL_SERVER_SUFFIX usage (for easier compilation)
  Update of VC++ project files.

  zlib/contrib/asm386/zlibvc.dsp
    1.2 04/05/25 02:28:43 monty@mysql.com +38 -38
    Updated for 4.0

  sql/set_var.cc
    1.12.1.44 04/05/25 02:28:43 monty@mysql.com +1 -1
    Use STRINGIFY()

  sql/mysqld_suffix.h
    1.2 04/05/25 02:28:43 monty@mysql.com +6 -17
    New MYSQL_SERVER_SUFFIX handling

  sql/mysqld.cc
    1.297.1.199 04/05/25 02:28:42 monty@mysql.com +2 -2
    New MYSQL_SERVER_SUFFIX handling

  libmysql/libmysql.c
    1.95.1.50 04/05/25 02:28:42 monty@mysql.com +1 -1
    Use STRINGIFY()

  innobase/eval/eval0eval.c
    1.4.1.2 04/05/25 02:28:42 monty@mysql.com +1 -1
    Fixed compiler warning

  include/mysql_version.h.in
    1.13.1.5 04/05/25 02:28:42 monty@mysql.com +2 -8
    New MYSQL_SERVER_SUFFIX handling

  include/my_global.h
    1.34.1.28 04/05/25 02:28:42 monty@mysql.com +3 -0
    Added QUOTE and STRINGIFY

  VC++Files/sql/mysqld.dsp
    1.6.1.6 04/05/25 02:28:42 monty@mysql.com +7 -7
    Use new version of MYSQL_SERVER_SUFFIX

  VC++Files/replace/replace.dsp
    1.4.1.4 04/05/25 02:28:42 monty@mysql.com +1 -1
    Use new version of MYSQL_SERVER_SUFFIX

  VC++Files/perror/perror.dsp
    1.5.1.4 04/05/25 02:28:42 monty@mysql.com +1 -1
    Use new version of MYSQL_SERVER_SUFFIX

  VC++Files/pack_isam/pack_isam.dsp
    1.5.1.4 04/05/25 02:28:42 monty@mysql.com +1 -1
    Use new version of MYSQL_SERVER_SUFFIX

  VC++Files/mysys/mysys.dsp
    1.6.1.6 04/05/25 02:28:42 monty@mysql.com +1 -1
    Use new version of MYSQL_SERVER_SUFFIX

  VC++Files/mysqlcheck/mysqlcheck.dsp
    1.4.1.4 04/05/25 02:28:42 monty@mysql.com +1 -1
    Use new version of MYSQL_SERVER_SUFFIX

  VC++Files/mysqlbinlog/mysqlbinlog.dsp
    1.7.1.4 04/05/25 02:28:42 monty@mysql.com +1 -1
    Use new version of MYSQL_SERVER_SUFFIX

  VC++Files/mysql.dsw
    1.5.1.7 04/05/25 02:28:42 monty@mysql.com +3 -0
    Use new version of MYSQL_SERVER_SUFFIX

  VC++Files/myisampack/myisampack.dsp
    1.3.1.4 04/05/25 02:28:42 monty@mysql.com +1 -1
    Use new version of MYSQL_SERVER_SUFFIX

  VC++Files/myisamlog/myisamlog.dsp
    1.2.1.4 04/05/25 02:28:42 monty@mysql.com +1 -1
    Use new version of MYSQL_SERVER_SUFFIX

  VC++Files/myisamchk/myisamchk.dsp
    1.2.1.3 04/05/25 02:28:42 monty@mysql.com +1 -1
    Use new version of MYSQL_SERVER_SUFFIX

  VC++Files/my_print_defaults/my_print_defaults.dsp
    1.1.1.5 04/05/25 02:28:42 monty@mysql.com +1 -1
    Use new version of MYSQL_SERVER_SUFFIX

  VC++Files/libmysqld/libmysqld.dsp
    1.2.1.4 04/05/25 02:28:42 monty@mysql.com +8 -8
    Use new version of MYSQL_SERVER_SUFFIX

  VC++Files/isamchk/isamchk.dsp
    1.2.1.4 04/05/25 02:28:42 monty@mysql.com +1 -1
    Use new version of MYSQL_SERVER_SUFFIX

  VC++Files/innobase/innobase.dsp
    1.7.1.6 04/05/25 02:28:42 monty@mysql.com +2 -10
    Use new version of MYSQL_SERVER_SUFFIX
    Remove old files

  VC++Files/copy_mysql_files.bat
    1.2 04/05/25 02:28:42 monty@mysql.com +2 -6
    Assume we are in correct directory

  VC++Files/client/mysqlshow.dsp
    1.4.1.4 04/05/25 02:28:42 monty@mysql.com +1 -1
    Use new version of MYSQL_SERVER_SUFFIX

  VC++Files/client/mysqlimport.dsp
    1.4.1.4 04/05/25 02:28:42 monty@mysql.com +1 -1
    Use new version of MYSQL_SERVER_SUFFIX

  VC++Files/client/mysqldump.dsp
    1.4.1.4 04/05/25 02:28:42 monty@mysql.com +1 -1
    Use new version of MYSQL_SERVER_SUFFIX

  VC++Files/client/mysqladmin.dsp
    1.4.1.4 04/05/25 02:28:42 monty@mysql.com +1 -1
    Use new version of MYSQL_SERVER_SUFFIX

  VC++Files/client/mysql.dsp
    1.4.1.4 04/05/25 02:28:42 monty@mysql.com +1 -1
    Use new version of MYSQL_SERVER_SUFFIX

  VC++Files/bdb/bdb.dsp
    1.3.1.3 04/05/25 02:28:42 monty@mysql.com +1 -1
    Use new version of MYSQL_SERVER_SUFFIX

  BUILD/compile-pentium-valgrind-max
    1.2.1.2 04/05/25 02:28:42 monty@mysql.com +1 -1
    Use MYSQL_SERVER_SUFFIX

ChangeSet
  1.1616.433.1 04/05/25 02:30:09 dlenev@brandersnatch.localdomain +2 -0
  Fix for sporadically failures of innodb.test on Darwin 7.3 
  which occured because we were not lowering case of file names 
  for temporary tables altough handler assumes so if 
  lower_case_table_names==2. Now we are lowering case for them.

  sql/sql_table.cc
    1.157.33.7 04/05/25 02:30:06 dlenev@brandersnatch.localdomain +6 -0
    Now we are lowering case of file names for temporary tables.

  sql/sql_select.cc
    1.216.72.1 04/05/25 02:30:03 dlenev@brandersnatch.localdomain +3 -0
    Now we are lowering case of file names for temporary tables.

ChangeSet
  1.1616.425.11 04/05/25 02:03:49 konstantin@mysql.com +30 -0
  Support for character set conversion in binary protocol: another go
  after Monty's review.
  - Item_param was rewritten.
  - it turns out that we can't convert string data to character set of
    connection on the fly, because they first should be written to the binary
    log.
    To support efficient conversion we need to rewrite prepared statements
    binlogging code first.

  tests/client_test.c
    1.51.1.37 04/05/25 02:03:29 konstantin@mysql.com +202 -7
    Test for support for character set conversions in prepared statements
    (binary and text data).

  sql/time.cc
    1.44 04/05/25 02:03:29 konstantin@mysql.com +119 -3
    - function TIME_to_string to convert TIME to String in default MySQL format
    - family of functions TIME_to_ulonglong_*

  sql/sql_string.h
    1.44.1.1 04/05/25 02:03:29 konstantin@mysql.com +3 -0
    Declraration for String::swap().

  sql/sql_string.cc
    1.77.1.2 04/05/25 02:03:29 konstantin@mysql.com +34 -11
    - String::append rewritten to support character set conversion for
    single-byte encodings.
    - added String::swap method to efficiently exchange two string objects.

  sql/sql_select.cc
    1.216.1.115 04/05/25 02:03:29 konstantin@mysql.com +2 -2
    rename: swap -> swap_variables

  sql/sql_prepare.cc
    1.34.18.8 04/05/25 02:03:29 konstantin@mysql.com +177 -95
      Many changes:
    - static specifier for set_param_* family of functions.
    - FIELD_TYPE -> MYSQL_TYPE
    - added set_param_binary as handler for BLOB types.
    - added character set support
    - added support for param typecode in mysql_stmt_get_longdata
      (mysql_stmt_send_long_data handler)
    - changes in Item_param deployed
    - few cleanups

  sql/sql_parse.cc
    1.271.71.11 04/05/25 02:03:28 konstantin@mysql.com +4 -1
    Shrink convert buffer in the end of each statement.

  sql/sql_insert.cc
    1.86.2.49 04/05/25 02:03:28 konstantin@mysql.com +1 -1
    A little fix in a comment.

  sql/sql_class.h
    1.146.34.8 04/05/25 02:03:28 konstantin@mysql.com +4 -0
    - THD::convert_buffer is shared between THD and network Protocols and
      used for character set conversion of strings.
    - new function to convert String object from one charset to another using
      THD::convert_buffer

  sql/sql_class.cc
    1.105.20.4 04/05/25 02:03:28 konstantin@mysql.com +31 -2
    - implementation of THD::convert_string using THD::convert_buffer
      (conversion of strings allocated in the system heap).

  sql/protocol.h
    1.15.1.3 04/05/25 02:03:28 konstantin@mysql.com +3 -1
    - Protocol::convert now points at THD::convert_buffer: we want to share one
      buffer between all protocol implementations.

  sql/protocol.cc
    1.56.1.29 04/05/25 02:03:28 konstantin@mysql.com +28 -30
    - added character set conversion support to binary protocol.
    - Protocol::convert changed to point at shared buffer in THD.
      This lets us use one convert buffer for binary and simple protocol.
      The same buffer is used for client->server conversions in prepared
      statements code.
    - string conversion code refactored to Protocol::store_string_aux function.
    - few more comments

  sql/opt_range.cc
    1.98.1.20 04/05/25 02:03:28 konstantin@mysql.com +3 -3
    rename: swap -> swap_variables

  sql/mysql_priv.h
    1.186.71.7 04/05/25 02:03:28 konstantin@mysql.com +19 -3
    - added declarations for TIME_to_ulonglong_*, TIME_to_string functions
    - const specifiers for make_date, make_time, make_datetime arguments

  sql/lock.cc
    1.42.1.6 04/05/25 02:03:28 konstantin@mysql.com +2 -2
    rename: swap -> swap_variables

  sql/item_timefunc.cc
    1.51.1.11 04/05/25 02:03:28 konstantin@mysql.com +21 -54
    Refactored to use functions from time.cc

  sql/item.h
    1.56.29.6 04/05/25 02:03:28 konstantin@mysql.com +51 -21
    Item_param:
    - 'state' member introduced instead of many boolean variables.
    - put ltime, int_value and real_value into union to save space.
    - remove unimplemented members
    - set_value renamed to set_str

  sql/item.cc
    1.58.50.9 04/05/25 02:03:28 konstantin@mysql.com +250 -173
    New implementation of Item_param class:
    added support for character sets conversion.

  sql/field.cc
    1.158 04/05/25 02:03:28 konstantin@mysql.com +5 -24
    Field::store_time refactored to use TIME_to_string function from time.cc

  mysys/my_handler.c
    1.13 04/05/25 02:03:28 konstantin@mysql.com +4 -4
    swap -> swap_variables

  mysys/my_compress.c
    1.11 04/05/25 02:03:28 konstantin@mysql.com +1 -1
    swap -> swap_variables

  mysys/my_chsize.c
    1.15 04/05/25 02:03:28 konstantin@mysql.com +1 -1
    rename: swap -> swap_variables

  mysys/charset.c
    1.118 04/05/25 02:03:28 konstantin@mysql.com +58 -0
    sub_escape_string was moved from libmysql.c to be able to use it in sql/
    code.

  myisam/mi_test2.c
    1.27 04/05/25 02:03:28 konstantin@mysql.com +1 -1
    swap -> swap_variables

  libmysql/libmysql.c
    1.156.1.76 04/05/25 02:03:28 konstantin@mysql.com +27 -82
    - sub_escape_string moved to mysys/charset.c to be visible in sql/
    - few cleanups

  isam/test2.c
    1.16 04/05/25 02:03:28 konstantin@mysql.com +1 -1
    swap -> swap_variables
    

  isam/_search.c
    1.14 04/05/25 02:03:28 konstantin@mysql.com +4 -4
    swap -> swap_variables

  include/mysql_com.h
    1.67.1.26 04/05/25 02:03:28 konstantin@mysql.com +1 -1
    Removed and moved back: a macro which is visible to libmysql user but
    has sence only in prepared statement protocol implementation.

  include/my_sys.h
    1.116.1.8 04/05/25 02:03:28 konstantin@mysql.com +2 -0
    Added declaration of escape_string_for_mysql()

  include/my_global.h
    1.47.6.6 04/05/25 02:03:28 konstantin@mysql.com +1 -1
    Macro swap(a, b, c) was renamed to resolve name conflict with
    String::swap() method.

  VC++Files/mysqlmanager/RES/toolbar.bmp
    1.2 04/05/24 23:46:19 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/RES/TOOLBAR.BMP -> VC++Files/mysqlmanager/RES/toolbar.bmp

  VC++Files/mysqlmanager/RES/query_ex.bmp
    1.2 04/05/24 23:46:18 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/RES/QUERY_EX.BMP -> VC++Files/mysqlmanager/RES/query_ex.bmp

  VC++Files/mysqlmanager/RES/fontu.bmp
    1.2 04/05/24 23:46:18 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/RES/FONTU.BMP -> VC++Files/mysqlmanager/RES/fontu.bmp

  VC++Files/mysqlmanager/RES/fontd.bmp
    1.2 04/05/24 23:46:18 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/RES/FONTD.BMP -> VC++Files/mysqlmanager/RES/fontd.bmp

  VC++Files/mysqlmanager/RES/database.bmp
    1.2 04/05/24 23:46:18 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/RES/DATABASE.BMP -> VC++Files/mysqlmanager/RES/database.bmp

  VC++Files/mysqlmanager/RES/bmp00002.bmp
    1.2 04/05/24 23:46:18 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/RES/BMP00002.BMP -> VC++Files/mysqlmanager/RES/bmp00002.bmp

  VC++Files/mysqlmanager/RES/bmp00001.bmp
    1.2 04/05/24 23:46:18 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/RES/BMP00001.BMP -> VC++Files/mysqlmanager/RES/bmp00001.bmp

  VC++Files/mysqlmanager/RES/bitmap3.bmp
    1.2 04/05/24 23:46:18 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/RES/BITMAP3.BMP -> VC++Files/mysqlmanager/RES/bitmap3.bmp

  VC++Files/mysqlmanager/RES/bitmap1.bmp
    1.2 04/05/24 23:46:18 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/RES/BITMAP1.BMP -> VC++Files/mysqlmanager/RES/bitmap1.bmp

  VC++Files/mysqlmanager/toolsql.h
    1.2 04/05/24 23:45:21 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/TOOLSQL.H -> VC++Files/mysqlmanager/toolsql.h

  VC++Files/mysqlmanager/toolsql.cpp
    1.2 04/05/24 23:45:21 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/TOOLSQL.CPP -> VC++Files/mysqlmanager/toolsql.cpp

  VC++Files/mysqlmanager/stdafx.h
    1.2 04/05/24 23:45:21 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/STDAFX.H -> VC++Files/mysqlmanager/stdafx.h

  VC++Files/mysqlmanager/stdafx.cpp
    1.2 04/05/24 23:45:20 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/STDAFX.CPP -> VC++Files/mysqlmanager/stdafx.cpp

  VC++Files/mysqlmanager/resource.h
    1.2 04/05/24 23:45:20 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/RESOURCE.H -> VC++Files/mysqlmanager/resource.h

  VC++Files/mysqlmanager/mysqlmanager.mak
    1.2 04/05/24 23:45:20 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/MySqlManager.mak -> VC++Files/mysqlmanager/mysqlmanager.mak

  VC++Files/mysqlmanager/mysqlmanager.dsp
    1.4.1.3 04/05/24 23:45:20 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/MySqlManager.dsp -> VC++Files/mysqlmanager/mysqlmanager.dsp

  VC++Files/mysqlmanager/mainfrm.h
    1.2 04/05/24 23:45:20 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/MAINFRM.H -> VC++Files/mysqlmanager/mainfrm.h

  VC++Files/mysqlmanager/mainfrm.cpp
    1.2 04/05/24 23:45:20 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/MAINFRM.CPP -> VC++Files/mysqlmanager/mainfrm.cpp

  VC++Files/mysqlmanager/childfrm.h
    1.2 04/05/24 23:45:19 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/CHILDFRM.H -> VC++Files/mysqlmanager/childfrm.h

  VC++Files/mysqlmanager/childfrm.cpp
    1.2 04/05/24 23:40:55 monty@mysql.com +0 -0
    Rename: VC++Files/mysqlmanager/CHILDFRM.CPP -> VC++Files/mysqlmanager/childfrm.cpp

ChangeSet
  1.1346.1.499 04/05/24 12:48:18 patg@krsna.patg.net +2 -0
  see notes for Do-compile

  BitKeeper/etc/logging_ok
    1.206.1.108 04/05/24 12:48:18 patg@krsna.patg.net +1 -0
    Logging to logging@openlogging.org accepted

  Build-tools/Do-compile
    1.74.1.7 04/05/24 12:45:45 patg@krsna.patg.net +5 -2
    Added two options that:
    1. Clear logs on each host prior to build
    2. Turn off ndbcluster

ChangeSet
  1.1616.396.19 04/05/24 21:12:05 sergefp@mysql.com +2 -0
  Added replication tests

  mysql-test/t/rpl_ps.test
    1.1 04/05/24 21:12:01 sergefp@mysql.com +43 -0

  mysql-test/r/rpl_ps.result
    1.1 04/05/24 21:12:01 sergefp@mysql.com +28 -0

  mysql-test/t/rpl_ps.test
    1.0 04/05/24 21:12:01 sergefp@mysql.com +0 -0
    BitKeeper file /dbdata/psergey/mysql-4.1-ps-merge/mysql-test/t/rpl_ps.test

  mysql-test/r/rpl_ps.result
    1.0 04/05/24 21:12:01 sergefp@mysql.com +0 -0
    BitKeeper file /dbdata/psergey/mysql-4.1-ps-merge/mysql-test/r/rpl_ps.result

ChangeSet
  1.1616.396.18 04/05/24 21:08:22 sergefp@mysql.com +2 -0
  Added support for PREPARE stmt1 FROM @var, 
  Fixed the problem of previous patch with replication,
  More post-review fixes

  sql/sql_prepare.cc
    1.34.1.67 04/05/24 21:08:18 sergefp@mysql.com +69 -39
    Added support for PREPARE stmt1 FROM @var, 
    Fixed the problem of previous patch with replication
    Post-review fixes.

  sql/sql_parse.cc
    1.271.1.80 04/05/24 21:08:18 sergefp@mysql.com +14 -13
    Added support for PREPARE stmt1 FROM @var 

ChangeSet
  1.1346.622.1 04/05/24 18:46:49 guilhem@mysql.com +1 -0
  Fix for BUG#3871: a slave must always replicate a statement, even if it examines more than 4G rows,
  so we set SQL_BIG_SELECTS to 1.

  sql/slave.cc
    1.164.1.115 04/05/24 18:46:45 guilhem@mysql.com +8 -4
    The slave SQL thread must always have SQL_BIG_SELECTS=1, so that it does not fail to replicate an INSERT SELECT
    examining more than 4 billion rows (for client threads, SQL_BIG_SELECTS is automatically set to 1 if
    max_join_size is 4G, but that's in handle_one_connection, so not for the slave thread).

  innobase/include/Makefile.am
    1.9 04/05/24 17:54:47 marko@hundin.mysql.fi +1 -1
    Remove srv0que.c

  BitKeeper/deleted/.del-srv0que.h~f12ecb4b5afe203e
    1.2 04/05/24 17:54:28 marko@hundin.mysql.fi +0 -0
    Delete: innobase/include/srv0que.h

  innobase/srv/Makefile.am
    1.3 04/05/24 17:54:05 marko@hundin.mysql.fi +1 -1
    Remove srv0que.c

  BitKeeper/deleted/.del-srv0que.c~d1feebb77b5a9b96
    1.3 04/05/24 17:53:38 marko@hundin.mysql.fi +0 -0
    Delete: innobase/srv/srv0que.c

  ndb/Epilogue.mk_old
    1.6 04/05/24 14:21:09 tomas@poseidon.(none) +0 -0
    Rename: ndb/Epilogue.mk -> ndb/Epilogue.mk_old

ChangeSet
  1.1346.1.497 04/05/24 15:43:34 marko@hundin.mysql.fi +1 -0
  InnoDB cleanup: sync0arr.c: sync_array_cell_print(): Remove unused variable str

  innobase/sync/sync0arr.c
    1.11.1.6 04/05/24 15:40:25 marko@hundin.mysql.fi +0 -1
    sync_array_cell_print(): Remove unused variable str

ChangeSet
  1.1616.427.4 04/05/24 15:48:19 dlenev@brandersnatch.localdomain +3 -0
  Fix for bug which caused temp_table.test fail on Darwin 7.3
  The code in mysql_create_table() code assumes that if lower_case_names==2 then table alias 
  should contain unchanged table name, and this was not true for temporary tables which
  had 'tmp-table' constant as alias. Now we are using table name as alias for such tables.

  sql/sql_yacc.yy
    1.203.106.1 04/05/24 15:48:16 dlenev@brandersnatch.localdomain +1 -5
    Let us use table name instead of 'tmp-table' as alias for table being created by 
    CREATE TEMPORARY TABLE statement. This fixes failing temp_table.test on Darwin 7.3 
    since mysql_create_table() code assumes that if lower_case_names==2 then table alias 
    should contain unchanged table name (and now this assumtion is true but it were false
    for temporary tables before...).

  sql/sql_lex.h
    1.102.37.1 04/05/24 15:48:15 dlenev@brandersnatch.localdomain +0 -2
    Removed tmp_table_alias constant which is no longer used.

  sql/sql_lex.cc
    1.97.1.26 04/05/24 15:48:11 dlenev@brandersnatch.localdomain +0 -2
    Removed tmp_table_alias constant which is no longer used.

ChangeSet
  1.1616.410.8 04/05/24 14:42:34 monty@mysql.com +19 -0
  After merge fixes
  Remove compiler warnings
  Update windows project files

  strings/ctype-tis620.c
    1.66 04/05/24 14:42:32 monty@mysql.com +1 -0
    After merge fixes

  sql/opt_range.cc
    1.98.1.19 04/05/24 14:42:32 monty@mysql.com +3 -2
    Removed compiler warnings

  sql/discover.cc
    1.2 04/05/24 14:42:32 monty@mysql.com +0 -1
    Remove not used lable

  mysql-test/t/variables.test
    1.18.1.20 04/05/24 14:42:32 monty@mysql.com +8 -0
    After merge fixes

  mysql-test/r/variables.result
    1.21.1.27 04/05/24 14:42:32 monty@mysql.com +5 -4
    After merge fixes

  mysql-test/r/func_str.result
    1.64 04/05/24 14:42:32 monty@mysql.com +9 -0
    After merge fixes

  libmysqld/libmysqld.def
    1.5 04/05/24 14:42:32 monty@mysql.com +1 -0
    Add function used by test programs

  innobase/srv/srv0srv.c
    1.60 04/05/24 14:42:32 monty@mysql.com +0 -7
    Remove reference to not existing variable (after merge fix)

  innobase/include/mem0pool.h
    1.7 04/05/24 14:42:32 monty@mysql.com +0 -2
    Remove reference to not existing variable (after merge fix)

  innobase/include/data0data.ic
    1.9 04/05/24 14:42:32 monty@mysql.com +1 -1
    Fix compiler warning

  VC++Files/strings/strings.dsp
    1.15 04/05/24 14:42:32 monty@mysql.com +1 -1
    Update project files after merge

  VC++Files/sql/mysqld.dsp
    1.17.1.5 04/05/24 14:42:32 monty@mysql.com +19 -25
    Update project files after merge

  VC++Files/mysqldemb/mysqldemb.dsp
    1.10 04/05/24 14:42:32 monty@mysql.com +6 -6
    Update project files after merge

  VC++Files/myisampack/myisampack.dsp
    1.9 04/05/24 14:42:32 monty@mysql.com +1 -1
    Update project files after merge

  VC++Files/myisamlog/myisamlog.dsp
    1.8 04/05/24 14:42:32 monty@mysql.com +1 -1
    Update project files after merge

  VC++Files/myisamchk/myisamchk.dsp
    1.7 04/05/24 14:42:32 monty@mysql.com +1 -1
    Update project files after merge

  VC++Files/libmysqld/libmysqld.dsp
    1.12.1.3 04/05/24 14:42:32 monty@mysql.com +59 -10
    Update project files after merge

  VC++Files/libmysqld/examples/test_libmysqld.dsp
    1.7 04/05/24 14:42:32 monty@mysql.com +0 -8
    Update project files after merge

  VC++Files/innobase/innobase.dsp
    1.15 04/05/24 14:42:32 monty@mysql.com +2 -10
    Update project files after merge

ChangeSet
  1.1616.425.7 04/05/24 14:38:55 dlenev@brandersnatch.localdomain +1 -0
  Fix of small syntax error - added missing backslash that prevented building of mysqlbinlog.

  client/mysqlbinlog.cc
    1.84.1.9 04/05/24 14:38:32 dlenev@brandersnatch.localdomain +1 -1
    Added missing backslash that prevented building of mysqlbinlog.

ChangeSet
  1.1616.1.219 04/05/24 12:35:39 magnus@neptunus.(none) +5 -0
  Fixed prototype of get_error_message to use String to return error message
  WL#1747 and #1746 allow user to decide if ordered index should be created or not

  sql/handler.h
    1.89.1.21 04/05/24 12:35:37 magnus@neptunus.(none) +1 -1
    Changed the function prototype for getting error messages from handler to use String datataype

  sql/handler.cc
    1.103.1.25 04/05/24 12:35:37 magnus@neptunus.(none) +10 -9
    Use String datatype as ouput parameter of get_error_message.

  sql/ha_ndbcluster.h
    1.12 04/05/24 12:35:37 magnus@neptunus.(none) +10 -5
    WL#1746 and WL#1747 Added ability to skip creating an ordered index in addition to the hash index if the user so wishes.
    Modified get_error_message to return error messaga in a String datatype, in that way the String class will take care of wheter the "data" has to be freed or not.

  sql/ha_ndbcluster.cc
    1.14 04/05/24 12:35:37 magnus@neptunus.(none) +102 -143
    Removed the NDB_ERR_CODE_OFFSET, ndb and handler error codes should not clash
    Encapsulated functionality to cache information about known indexes into buil_index_list
    Added detection of algorithm from key_info in function get_index_type_from_table
    Updated read_range_first and records_in_range to work wih new prototype.

ChangeSet
  1.1616.430.1 04/05/24 12:23:52 hf@deer.(none) +1 -0
  Fix for bug #3691 (libmysqld reports error 2 on CREATE DATABASE 
  but database is created)
  handling of CREATE DATABASE errors changed

  sql/sql_db.cc
    1.68.7.1 04/05/24 12:23:21 hf@deer.(none) +7 -1
    now we check my_stat errors in mysql_create_db

ChangeSet
  1.1616.421.5 04/05/24 09:01:04 joreland@mysql.com +1 -0
  Bug in readTuples(LM_CommittedRead)

  ndb/src/ndbapi/NdbScanOperation.cpp
    1.4.1.1 04/05/24 09:01:01 joreland@mysql.com +2 -2
    Bug in readTuples(LM_CommittedRead)

ChangeSet
  1.1616.425.5 04/05/23 17:42:12 guilhem@mysql.com +1 -0
  mysqlbinlog: new option --to-last-log. This option has effect only if --read-from-remote-server.
  It causes mysqlbinlog to not stop after the end of the requested binlog, and instead read
  until the end of the last binlog of mysqld (beware of endless loops if you pipe this
  into the same mysqld).
  I.e. it enables back (at customer's request) what we considered (and I still do)
  as BUG#3204, but now with an option instead of being the default behaviour.
  The default behaviour is still to stop after the end of the requested binlog,
  whether --read-from-remote-server or not.

  client/mysqlbinlog.cc
    1.84.1.8 04/05/23 17:42:09 guilhem@mysql.com +19 -12
    New option --to-last-log

ChangeSet
  1.1616.425.3 04/05/23 14:01:52 serg@serg.mylan +1 -0
  bug in repair_by_sort of fulltext indexes that contained identical
  (as of mi_compare_text) words with different lengths.
  bug #3835

  myisam/mi_check.c
    1.105.1.28 04/05/23 14:01:47 serg@serg.mylan +3 -4
    bug in repair_by_sort of fulltext indexes that contained identical
    (as of mi_compare_text) words with different lengths.
    bug #3835

  ndb/test/run-test/Makefile_old
    1.2 04/05/23 10:14:43 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/run-test/Makefile -> ndb/test/run-test/Makefile_old

  ndb/test/ndbapi/flexBench/Makefile.am
    1.3 04/05/23 07:55:26 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/flexBench/Makefile -> ndb/test/ndbapi/flexBench/Makefile.am

  ndb/test/ndbapi/Makefile.am
    1.3 04/05/23 07:55:10 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/ndbapi/Makefile -> ndb/test/ndbapi/Makefile.am

  ndb/test/tools/Makefile_old
    1.2 04/05/23 07:54:27 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/tools/Makefile -> ndb/test/tools/Makefile_old

  ndb/configure_old
    1.2 04/05/22 23:33:55 tomas@poseidon.(none) +0 -0
    Rename: ndb/configure -> ndb/configure_old

  ndb/src/common/editline/Makefile_old
    1.2 04/05/22 22:39:41 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/common/editline/Makefile -> ndb/src/common/editline/Makefile_old

  ndb/test/src/Makefile_old
    1.2 04/05/22 22:27:03 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/src/Makefile -> ndb/test/src/Makefile_old

  ndb/test/Makefile_old
    1.2 04/05/22 22:23:30 tomas@poseidon.(none) +0 -0
    Rename: ndb/test/Makefile -> ndb/test/Makefile_old

  ndb/src/cw/cpcd/Makefile_old
    1.2 04/05/22 22:17:52 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/cw/cpcd/Makefile -> ndb/src/cw/cpcd/Makefile_old

  ndb/src/cw/Makefile_old
    1.2 04/05/22 22:17:03 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/cw/Makefile -> ndb/src/cw/Makefile_old

  ndb/Makefile_old
    1.5 04/05/22 22:13:29 tomas@poseidon.(none) +0 -0
    Rename: ndb/Makefile -> ndb/Makefile_old

  ndb/src/mgmclient/Makefile_old
    1.2 04/05/22 21:25:58 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/mgmclient/Makefile -> ndb/src/mgmclient/Makefile_old

  ndb/src/mgmsrv/Makefile_old
    1.3 04/05/22 21:02:37 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/mgmsrv/Makefile -> ndb/src/mgmsrv/Makefile_old

  ndb/src/mgmapi/Makefile_old
    1.3 04/05/22 20:54:37 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/mgmapi/Makefile -> ndb/src/mgmapi/Makefile_old

  ndb/src/common/debugger/signaldata/Makefile_old
    1.2 04/05/22 20:38:37 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/common/debugger/signaldata/Makefile -> ndb/src/common/debugger/signaldata/Makefile_old

ChangeSet
  1.1616.427.3 04/05/22 23:41:58 dlenev@brandersnatch.localdomain +6 -0
  Fix for bug which caused grant.test fail on darwin7.3. We were converting db and table 
  names to lower case using latin1 instead of utf-8 in sql_acl.cc if lower_case_table_names 
  was on. Also replaced in other such places system_charset_info with files_charset_info
  for consistency.

  sql/sql_table.cc
    1.157.35.1 04/05/22 23:41:40 dlenev@brandersnatch.localdomain +5 -5
    Replaced system_charset_info with files_charset_info in places where we are converting 
    names to lower case because of lower_case_table_names for consistency.

  sql/sql_show.cc
    1.122.1.43 04/05/22 23:41:40 dlenev@brandersnatch.localdomain +1 -1
    Replaced system_charset_info with files_charset_info in places where we are converting 
    names to lower case because of lower_case_table_names for consistency.

  sql/sql_db.cc
    1.68.1.40 04/05/22 23:41:39 dlenev@brandersnatch.localdomain +1 -1
    Replaced system_charset_info with files_charset_info in places where we are converting 
    names to lower case because of lower_case_table_names for consistency.

  sql/sql_cache.cc
    1.46.1.30 04/05/22 23:41:38 dlenev@brandersnatch.localdomain +17 -2
    Added clarifying comments in tricky place after discussion with Sanja.
    Replaced system_charset_info with files_charset_info in places where we 
    are converting names to lower case because of lower_case_table_names for 
    consistency.

  sql/sql_acl.cc
    1.74.1.51 04/05/22 23:41:36 dlenev@brandersnatch.localdomain +6 -6
    We should use files_charset_info when converting db/table names to lower case because they
    could be in utf-8 and not in latin1!

  sql/handler.cc
    1.103.6.1 04/05/22 23:41:33 dlenev@brandersnatch.localdomain +2 -2
    Replaced system_charset_info with files_charset_info in places where we are converting 
    names to lower case because of lower_case_table_names for consistency.

  ndb/src/ndbapi/Makefile_old
    1.6 04/05/22 19:19:01 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/ndbapi/Makefile -> ndb/src/ndbapi/Makefile_old

ChangeSet
  1.1616.429.3 04/05/22 12:18:06 brian@brian-akers-computer.local +4 -0
  Merge

  sql/mysql_priv.h
    1.186.75.1 04/05/22 12:18:03 brian@brian-akers-computer.local +0 -0
    SCCS merged

  sql/handler.cc
    1.103.4.3 04/05/22 12:18:02 brian@brian-akers-computer.local +0 -0
    SCCS merged

  sql/Makefile.am
    1.77.6.1 04/05/22 12:18:02 brian@brian-akers-computer.local +0 -0
    SCCS merged

  configure.in
    1.201.11.1 04/05/22 12:18:01 brian@brian-akers-computer.local +0 -0
    SCCS merged

ChangeSet
  1.1616.429.2 04/05/22 12:16:49 brian@brian-akers-computer.local +2 -0
  Archive merge

  sql/mysqld.cc
    1.356.57.1 04/05/22 12:16:32 brian@brian-akers-computer.local +2 -3
    Merge of SHOW_COM_OPTION

  sql/handler.h
    1.89.8.2 04/05/22 12:16:32 brian@brian-akers-computer.local +0 -1
    Archive merge

  ndb/src/kernel/ndb-main/Makefile_old
    1.2 04/05/22 19:01:19 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/ndb-main/Makefile -> ndb/src/kernel/ndb-main/Makefile_old

  ndb/src/kernel/vm/Makefile_old
    1.2 04/05/22 18:58:40 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/vm/Makefile -> ndb/src/kernel/vm/Makefile_old

  ndb/src/kernel/blocks/dbtux/Makefile_old
    1.2 04/05/22 18:43:11 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/blocks/dbtux/Makefile -> ndb/src/kernel/blocks/dbtux/Makefile_old

  ndb/src/kernel/blocks/grep/Makefile_old
    1.2 04/05/22 18:42:58 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/blocks/grep/Makefile -> ndb/src/kernel/blocks/grep/Makefile_old

  ndb/src/kernel/blocks/suma/Makefile_old
    1.2 04/05/22 18:42:53 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/blocks/suma/Makefile -> ndb/src/kernel/blocks/suma/Makefile_old

  ndb/src/kernel/blocks/dbutil/Makefile_old
    1.2 04/05/22 18:42:41 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/blocks/dbutil/Makefile -> ndb/src/kernel/blocks/dbutil/Makefile_old

  ndb/src/kernel/blocks/backup/Makefile_old
    1.2 04/05/22 18:42:32 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/blocks/backup/Makefile -> ndb/src/kernel/blocks/backup/Makefile_old

  ndb/src/kernel/blocks/trix/Makefile_old
    1.2 04/05/22 18:42:26 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/blocks/trix/Makefile -> ndb/src/kernel/blocks/trix/Makefile_old

  ndb/src/kernel/blocks/qmgr/Makefile_old
    1.2 04/05/22 18:42:19 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/blocks/qmgr/Makefile -> ndb/src/kernel/blocks/qmgr/Makefile_old

  ndb/src/kernel/blocks/ndbcntr/Makefile_old
    1.2 04/05/22 18:42:13 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/blocks/ndbcntr/Makefile -> ndb/src/kernel/blocks/ndbcntr/Makefile_old

  ndb/src/kernel/blocks/ndbfs/Makefile_old
    1.2 04/05/22 18:42:03 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/blocks/ndbfs/Makefile -> ndb/src/kernel/blocks/ndbfs/Makefile_old

  ndb/src/kernel/blocks/dbtup/Makefile_old
    1.2 04/05/22 18:41:52 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/blocks/dbtup/Makefile -> ndb/src/kernel/blocks/dbtup/Makefile_old

  ndb/src/kernel/blocks/dbtc/Makefile_old
    1.2 04/05/22 18:14:42 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/blocks/dbtc/Makefile -> ndb/src/kernel/blocks/dbtc/Makefile_old

  ndb/src/kernel/blocks/dblqh/Makefile_old
    1.2 04/05/22 18:13:49 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/blocks/dblqh/Makefile -> ndb/src/kernel/blocks/dblqh/Makefile_old

  ndb/src/kernel/blocks/dbdih/Makefile_old
    1.2 04/05/22 18:13:33 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/blocks/dbdih/Makefile -> ndb/src/kernel/blocks/dbdih/Makefile_old

  ndb/src/kernel/blocks/dbdict/Makefile_old
    1.2 04/05/22 18:11:17 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/blocks/dbdict/Makefile -> ndb/src/kernel/blocks/dbdict/Makefile_old

  ndb/src/kernel/blocks/dbacc/Makefile_old
    1.2 04/05/22 18:08:49 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/blocks/dbacc/Makefile -> ndb/src/kernel/blocks/dbacc/Makefile_old

  ndb/src/kernel/blocks/cmvmi/Makefile_old
    1.2 04/05/22 18:04:43 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/blocks/cmvmi/Makefile -> ndb/src/kernel/blocks/cmvmi/Makefile_old

  ndb/src/kernel/blocks/Makefile_old
    1.2 04/05/22 18:00:01 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/blocks/Makefile -> ndb/src/kernel/blocks/Makefile_old

  ndb/src/kernel/error/Makefile_old
    1.2 04/05/22 17:59:37 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/error/Makefile -> ndb/src/kernel/error/Makefile_old

  ndb/src/kernel/Makefile_old
    1.2 04/05/22 17:59:28 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/kernel/Makefile -> ndb/src/kernel/Makefile_old

  ndb/src/common/transporter/Makefile_old
    1.5 04/05/22 17:59:12 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/common/transporter/Makefile -> ndb/src/common/transporter/Makefile_old

  ndb/src/common/mgmcommon/Makefile_old
    1.2 04/05/22 17:59:02 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/common/mgmcommon/Makefile -> ndb/src/common/mgmcommon/Makefile_old

  ndb/src/common/util/Makefile_old
    1.5 04/05/22 17:58:48 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/common/util/Makefile -> ndb/src/common/util/Makefile_old

  ndb/src/common/logger/Makefile_old
    1.2 04/05/22 17:58:39 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/common/logger/Makefile -> ndb/src/common/logger/Makefile_old

  ndb/src/common/debugger/Makefile_old
    1.2 04/05/22 17:58:32 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/common/debugger/Makefile -> ndb/src/common/debugger/Makefile_old

  ndb/src/common/portlib/unix/Makefile_old
    1.2 04/05/22 17:58:12 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/common/portlib/unix/Makefile -> ndb/src/common/portlib/unix/Makefile_old

  ndb/src/common/portlib/Makefile_old
    1.3 04/05/22 17:58:02 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/common/portlib/Makefile -> ndb/src/common/portlib/Makefile_old

  ndb/src/common/Makefile_old
    1.2 04/05/22 17:57:51 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/common/Makefile -> ndb/src/common/Makefile_old

  ndb/src/Makefile_old
    1.3 04/05/22 17:57:28 tomas@poseidon.(none) +0 -0
    Rename: ndb/src/Makefile -> ndb/src/Makefile_old

ChangeSet
  1.1616.426.1 04/05/21 19:57:03 vva@eagle.mysql.r18.ru +5 -0
  Introduced parameter object "ALTER_INFO" for mysql_alter_table
  to make list of parameters in mysql_alter_table shorted
  to avoid warning in MSVC (windows) building 

  sql/sql_yacc.yy
    1.203.103.11 04/05/21 19:57:00 vva@eagle.mysql.r18.ru +49 -51
    Introduced parameter object "ALTER_INFO" for mysql_alter_table
    - replaced using of removed from LEX fields my fields of LEX::alter_info

  sql/sql_table.cc
    1.157.33.5 04/05/21 19:57:00 vva@eagle.mysql.r18.ru +18 -19
    Introduced parameter object "ALTER_INFO" for mysql_alter_table
    - changed definition of mysql_alter_table

  sql/sql_parse.cc
    1.271.71.10 04/05/21 19:57:00 vva@eagle.mysql.r18.ru +17 -20
    Introduced parameter object "ALTER_INFO" for mysql_alter_table
    - changed invotaions of mysql_alter_table
    - replaced cleaning fields in SQLCOM_OPTIMIZE by ALTER_INFO::reset
    - changed invocation of mysql_drop_index (replaced lex->drop_list by &lex->alter_info)
    - changed definition of mysql_create_index and mysql_drop_index to use ALTER_INFO

  sql/sql_lex.h
    1.102.34.8 04/05/21 19:57:00 vva@eagle.mysql.r18.ru +16 -6
    Introduced parameter object "ALTER_INFO" for mysql_alter_table
    - declared struct ALTER_INFO
    - added ALTER_INFO alter_info; into LEX
    - removed fields which were added into ALTER_INFO from LEX 

  sql/mysql_priv.h
    1.186.74.1 04/05/21 19:57:00 vva@eagle.mysql.r18.ru +4 -7
    Introduced parameter object "ALTER_INFO" for mysql_alter_table
    - changed declaration of mysql_alter_table
    - changed declaration of mysql_drop_index 
      (replaced List<Alter_drop> by ALTER_INFO)

ChangeSet
  1.1616.421.4 04/05/21 16:46:56 joreland@mysql.com +5 -0
  Added unit performance test for scan

  ndb/include/ndbapi/NdbReceiver.hpp
    1.4 04/05/21 16:46:53 joreland@mysql.com +4 -0
    #include stdlib.h if #define NDB_NO_DROPPED_SIGNAL

  ndb/include/ndbapi/NdbOperation.hpp
    1.4 04/05/21 16:46:53 joreland@mysql.com +5 -0
    #include stdlib.h if #define NDB_NO_DROPPED_SIGNAL

  ndb/include/ndbapi/NdbConnection.hpp
    1.4 04/05/21 16:46:53 joreland@mysql.com +4 -0
    #include stdlib.h if #define NDB_NO_DROPPED_SIGNAL

  ndb/test/ndbapi/testScanPerf/testScanPerf.cpp
    1.1 04/05/21 16:44:25 joreland@mysql.com +368 -0

  ndb/test/ndbapi/testScanPerf/testScanPerf.cpp
    1.0 04/05/21 16:44:25 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/mysql-4.1-ndb/ndb/test/ndbapi/testScanPerf/testScanPerf.cpp

  ndb/test/ndbapi/testScanPerf/Makefile
    1.1 04/05/21 16:44:16 joreland@mysql.com +9 -0

  ndb/test/ndbapi/testScanPerf/Makefile
    1.0 04/05/21 16:44:16 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/mysql-4.1-ndb/ndb/test/ndbapi/testScanPerf/Makefile

ChangeSet
  1.1616.408.3 04/05/21 17:23:27 hf@deer.(none) +1 -0
  Addition to the fix for bug #3791 (libmysqld mysql segfaults if can's find 
  errormsg.sys)
  Cleanups added

  client/mysql.cc
    1.121.5.2 04/05/21 17:23:24 hf@deer.(none) +3 -1
    my_end(0) added to do all the necessary cleanups
    glob_buffer.realloc() moved beneath the mysql_server_init

ChangeSet
  1.1616.425.1 04/05/21 10:04:15 tomas@poseidon.(none) +2 -0
  fix for macosx where SIGRTMIN is missing

  BitKeeper/etc/logging_ok
    1.233.25.2 04/05/21 10:04:15 tomas@poseidon.(none) +1 -0
    Logging to logging@openlogging.org accepted

  ndb/src/kernel/ndb-main/Main.cpp
    1.8.1.2 04/05/21 10:04:11 tomas@poseidon.(none) +12 -3
    fix for macosx where SIGRTMIN is missing

ChangeSet
  1.1616.424.1 04/05/21 09:31:28 serg@serg.mylan +1 -0
  asserting table->file->enable_indexes() in union re-execution

  sql/sql_union.cc
    1.74.1.50 04/05/21 09:31:23 serg@serg.mylan +10 -7
    asserting table->file->enable_indexes() in union re-execution

ChangeSet
  1.1616.423.1 04/05/20 18:13:11 brian@avenger.(none) +11 -0
  First commit of archive example. Archive is a simple storage engine that handles inserts and selects. 

  BitKeeper/etc/logging_ok
    1.233.26.1 04/05/20 18:13:10 brian@avenger.(none) +1 -0
    Logging to logging@openlogging.org accepted

  sql/examples/ha_archive.h
    1.2 04/05/20 18:12:38 brian@avenger.(none) +4 -0
    Include file for archive storage engine addition. 

  sql/mysqld.cc
    1.356.56.1 04/05/20 18:12:37 brian@avenger.(none) +6 -1
    Ifdef foor HAVE_ARCHIVE_DB

  sql/mysql_priv.h
    1.186.73.1 04/05/20 18:12:37 brian@avenger.(none) +2 -1
    Archive show options

  sql/handler.h
    1.89.9.1 04/05/20 18:12:37 brian@avenger.(none) +1 -1
    ENUM for archive storage engine. 

  sql/handler.cc
    1.103.5.1 04/05/20 18:12:37 brian@avenger.(none) +9 -0
    Updates needed for adding archive storage engine.

  sql/examples/ha_archive.cc
    1.2 04/05/20 18:12:37 brian@avenger.(none) +64 -12
    Class file for archive storage engine. First version.

  sql/Makefile.am
    1.77.5.1 04/05/20 18:12:37 brian@avenger.(none) +2 -2
    Source updates to compile ha_archive

  configure.in
    1.201.10.1 04/05/20 18:12:37 brian@avenger.(none) +1 -0
    Adding tag for Archive

  acinclude.m4
    1.96 04/05/20 18:12:37 brian@avenger.(none) +30 -0
    Code needed for --with-archive-storage-engine flag for compile. 

  acconfig.h
    1.38 04/05/20 18:12:37 brian@avenger.(none) +3 -0
    Adding undef piece for HAVE_ARCHIVE_DB	

ChangeSet
  1.1616.403.3 04/05/21 04:27:50 sergefp@mysql.com +32 -0
  WL#1622 "SQL Syntax for Prepared Statements": Post-review fixes (1 of 2)

  sql/sql_yacc.yy
    1.203.1.118 04/05/21 04:27:33 sergefp@mysql.com +18 -3
    Added support for PREPARE stmt1 FROM @var syntax.

  sql/sql_prepare.cc
    1.34.1.65 04/05/21 04:27:32 sergefp@mysql.com +30 -22
    Code cleanup

  sql/sql_parse.cc
    1.271.1.78 04/05/21 04:27:32 sergefp@mysql.com +90 -9
    Added support for PREPARE stmt1 FROM @var syntax.

  sql/sql_lex.h
    1.102.1.59 04/05/21 04:27:32 sergefp@mysql.com +7 -1
    Added support for PREPARE stmt1 FROM @var syntax.

  sql/sql_class.h
    1.146.1.86 04/05/21 04:27:32 sergefp@mysql.com +7 -2
    SQL Prepared statements now can't be used by binary protocol commands

  sql/share/ukrainian/errmsg.txt
    1.27.18.1 04/05/21 04:27:32 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/swedish/errmsg.txt
    1.64.19.1 04/05/21 04:27:31 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/spanish/errmsg.txt
    1.64.22.1 04/05/21 04:27:31 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/slovak/errmsg.txt
    1.64.20.1 04/05/21 04:27:31 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/russian/errmsg.txt
    1.61.18.1 04/05/21 04:27:31 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/romanian/errmsg.txt
    1.62.20.1 04/05/21 04:27:31 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/portuguese/errmsg.txt
    1.64.21.1 04/05/21 04:27:31 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/polish/errmsg.txt
    1.63.19.1 04/05/21 04:27:31 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/norwegian/errmsg.txt
    1.63.20.1 04/05/21 04:27:31 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/norwegian-ny/errmsg.txt
    1.63.20.1 04/05/21 04:27:30 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/korean/errmsg.txt
    1.63.19.1 04/05/21 04:27:30 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/japanese/errmsg.txt
    1.63.19.1 04/05/21 04:27:30 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/italian/errmsg.txt
    1.70.20.1 04/05/21 04:27:30 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/hungarian/errmsg.txt
    1.65.19.1 04/05/21 04:27:30 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/greek/errmsg.txt
    1.64.19.1 04/05/21 04:27:30 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/german/errmsg.txt
    1.64.20.1 04/05/21 04:27:30 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/french/errmsg.txt
    1.63.20.1 04/05/21 04:27:29 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/estonian/errmsg.txt
    1.64.19.1 04/05/21 04:27:29 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/english/errmsg.txt
    1.70.23.1 04/05/21 04:27:29 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/dutch/errmsg.txt
    1.66.20.1 04/05/21 04:27:29 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/share/czech/errmsg.txt
    1.64.20.1 04/05/21 04:27:29 sergefp@mysql.com +1 -1
    Changed ER_UNKNOWN_STMT_HANDLER format string 

  sql/mysqld.cc
    1.356.1.106 04/05/21 04:27:29 sergefp@mysql.com +6 -3
    Reformmated the code

  sql/item.h
    1.56.1.71 04/05/21 04:27:29 sergefp@mysql.com +1 -2
    Removed one redundant Item_param::set_value function

  sql/item.cc
    1.58.1.81 04/05/21 04:27:28 sergefp@mysql.com +1 -6
    Removed one redundant Item_param::set_value function

  mysys/my_error.c
    1.14 04/05/21 04:27:28 sergefp@mysql.com +45 -10
    Added support for "%.*s" format

  mysql-test/t/ps.test
    1.5 04/05/21 04:27:28 sergefp@mysql.com +17 -0
    Added tests for PREPARE stmt1 FROM @var syntax

  mysql-test/r/ps.result
    1.5 04/05/21 04:27:28 sergefp@mysql.com +15 -1
    Added tests for PREPARE stmt1 FROM @var syntax

  sql/examples/ha_archive.h
    1.1 04/05/20 17:19:38 brian@avenger.(none) +117 -0

  sql/examples/ha_archive.cc
    1.1 04/05/20 17:19:38 brian@avenger.(none) +494 -0

  sql/examples/ha_archive.h
    1.0 04/05/20 17:19:38 brian@avenger.(none) +0 -0
    BitKeeper file /export/brian/archive-4.1/sql/examples/ha_archive.h

  sql/examples/ha_archive.cc
    1.0 04/05/20 17:19:38 brian@avenger.(none) +0 -0
    BitKeeper file /export/brian/archive-4.1/sql/examples/ha_archive.cc

ChangeSet
  1.1616.422.1 04/05/20 21:56:29 msvensson@build.mysql.com +2 -0
  Fix for BUG#3839 , too many signal handlers installed

  BitKeeper/etc/logging_ok
    1.233.25.1 04/05/20 21:51:00 msvensson@build.mysql.com +1 -0
    Logging to logging@openlogging.org accepted

  ndb/src/kernel/ndb-main/Main.cpp
    1.8.1.1 04/05/20 21:47:20 msvensson@build.mysql.com +2 -2
    Only install signalhandlers up to SIGRTMIN

ChangeSet
  1.1616.396.15 04/05/20 19:08:34 bell@sanja.is.com.ua +2 -0
  assigning max_length parameter for Item_param (Bug #3811)

  tests/client_test.c
    1.51.1.36 04/05/20 19:08:08 bell@sanja.is.com.ua +43 -1
    layout fixed
    test suite for bug 

  sql/item.cc
    1.58.50.8 04/05/20 19:08:08 bell@sanja.is.com.ua +19 -0
    assigning max_length/decimal parameter for Item_param

ChangeSet
  1.1665.9.2 04/05/20 17:47:43 timour@mysql.com +6 -0
  Better names for two system variables:
  - heuristic => optimizer_prune_level
  - plan_search_depth => optimizer_search_depth

  sql/sql_select.cc
    1.241.1.1 04/05/20 17:47:38 timour@mysql.com +14 -14
    Better names for two system variables:
    - heuristic => optimizer_prune_level
    - plan_search_depth => optimizer_search_depth

  sql/sql_class.h
    1.185.1.1 04/05/20 17:47:38 timour@mysql.com +2 -2
    Better names for two system variables:
    - heuristic => optimizer_prune_level
    - plan_search_depth => optimizer_search_depth

  sql/set_var.cc
    1.54 04/05/20 17:47:38 timour@mysql.com +10 -7
    Better names for two system variables:
    - heuristic => optimizer_prune_level
    - plan_search_depth => optimizer_search_depth

  sql/mysqld.cc
    1.381.1.1 04/05/20 17:47:38 timour@mysql.com +10 -10
    Better names for two system variables:
    - heuristic => optimizer_prune_level
    - plan_search_depth => optimizer_search_depth

  mysql-test/t/greedy_optimizer.test
    1.4 04/05/20 17:47:38 timour@mysql.com +27 -27
    Better names for two system variables:
    - heuristic => optimizer_prune_level
    - plan_search_depth => optimizer_search_depth

  mysql-test/r/greedy_optimizer.result
    1.4 04/05/20 17:47:38 timour@mysql.com +31 -31
    Better names for two system variables:
    - heuristic => optimizer_prune_level
    - plan_search_depth => optimizer_search_depth

ChangeSet
  1.1346.1.496 04/05/20 13:54:52 monty@mysql.com +3 -0
  Bug fixes:
  Use %windir% instead of c:\winnt\ (Bug #3786)
  Fixed wrong foreign key test in crash-me (Bug #3740)

  sql-bench/limits/mysql.cfg
    1.21.2.1 04/05/20 13:54:50 monty@mysql.com +250 -1
    Updated results

  sql-bench/crash-me.sh
    1.34.1.18 04/05/20 13:54:50 monty@mysql.com +1 -2
    Fixed wrong foreign key test (Bug #3740)

  VC++Files/libmysql/libmysql.dsp
    1.7.1.6 04/05/20 13:54:50 monty@mysql.com +1 -1
    Use %windir% instead of c:\winnt\ (Bug #3786)

ChangeSet
  1.1616.412.2 04/05/20 14:21:30 ram@gw.mysql.r18.ru +1 -0
  A comment for str_to_datetime().

  sql/time.cc
    1.43 04/05/20 14:21:27 ram@gw.mysql.r18.ru +14 -0
    A comment for str_to_datetime().

ChangeSet
  1.1616.421.1 04/05/20 11:11:39 pekka@mysql.com +3 -0
  more ndb odbc compile fix

  ndb/src/client/odbc/handles/PoolNdb.cpp
    1.2 04/05/20 11:09:33 pekka@mysql.com +1 -0
    more ndb odbc compile fix

  ndb/src/client/odbc/handles/HandleRoot.cpp
    1.2 04/05/20 11:09:33 pekka@mysql.com +1 -0
    more ndb odbc compile fix

  ndb/src/client/odbc/driver/driver.cpp
    1.2 04/05/20 11:09:33 pekka@mysql.com +1 -1
    more ndb odbc compile fix

ChangeSet
  1.1665.10.1 04/05/20 02:02:49 bell@sanja.is.com.ua +22 -0
  PS and SP made compatible in mechanism used for preparing query for rexecutions (Bug #2266)

  sql/sql_update.cc
    1.108 04/05/20 02:02:15 bell@sanja.is.com.ua +9 -3
    storing where for UPDATE and mark first execution

  sql/sql_union.cc
    1.93 04/05/20 02:02:15 bell@sanja.is.com.ua +13 -8
    made ancestor for Statement (Item_arena)

  sql/sql_select.cc
    1.242 04/05/20 02:02:15 bell@sanja.is.com.ua +12 -0
    storing where for SELECT/multi-DELETE/... and mark first execution

  sql/sql_prepare.cc
    1.60 04/05/20 02:02:15 bell@sanja.is.com.ua +21 -32
    made ancestor for Statement (Item_arena)
    storing where moved to preparation
    changed interface of reset_stmt_for_execute to use it is SP
    do not restore where/order by/group by before first execution (but tables and unit can be chenged without execution and should be prepared (subqueries executes on demand))

  sql/sql_parse.cc
    1.337 04/05/20 02:02:15 bell@sanja.is.com.ua +2 -0
    cleunup unit for any query

  sql/sql_lex.h
    1.131 04/05/20 02:02:15 bell@sanja.is.com.ua +6 -2
    reved variable od SP ol saving data
    flags to correctly make transformations of query and storing them in memory of PS/SP

  sql/sql_lex.cc
    1.102.1.5 04/05/20 02:02:15 bell@sanja.is.com.ua +10 -6
    flags to correctly make transformations of query and storing them in memory of PS/SP
    made ancestor for Statement (Item_arena)

  sql/sql_insert.cc
    1.106 04/05/20 02:02:15 bell@sanja.is.com.ua +1 -0
    mark first execution for INSERT

  sql/sql_derived.cc
    1.56 04/05/20 02:02:15 bell@sanja.is.com.ua +1 -1
    use method

  sql/sql_delete.cc
    1.120 04/05/20 02:02:15 bell@sanja.is.com.ua +7 -1
    storing where for DELETE and mark first execution

  sql/sql_class.h
    1.186 04/05/20 02:02:15 bell@sanja.is.com.ua +54 -39
    made ancestor for Statement (Item_arena)
    method to detect PS preparation added

  sql/sql_class.cc
    1.142 04/05/20 02:02:15 bell@sanja.is.com.ua +39 -16
    made ancestor for Statement (Item_arena)

  sql/sql_base.cc
    1.160 04/05/20 02:02:15 bell@sanja.is.com.ua +40 -27
    made ancestor for Statement (Item_arena)
    results of wild_setup made permanent
    setup_conds make natural joins expanding only once and store results in PS/SP memory

  sql/sp_head.h
    1.36 04/05/20 02:02:15 bell@sanja.is.com.ua +1 -3
    sp_head use Item_arena

  sql/sp_head.cc
    1.74 04/05/20 02:02:14 bell@sanja.is.com.ua +32 -104
    sp_head use Item_arena as ancestor to be PS cleunup compatible
    SP use PS storing/restoring/cleanup mechanisms
    cleanup() of SP Items added
    Items created in temporary memory pool during SP execution saved for normal freeing after SP execution

  sql/mysql_priv.h
    1.212.1.4 04/05/20 02:02:14 bell@sanja.is.com.ua +1 -0
    reset_stmt_for_execute use PS and SP

  sql/item_sum.h
    1.56 04/05/20 02:02:14 bell@sanja.is.com.ua +3 -1
    made ancestor for Statement (Item_arena)

  sql/item_sum.cc
    1.100 04/05/20 02:02:14 bell@sanja.is.com.ua +4 -4
    made ancestor for Statement (Item_arena)

  sql/item_subselect.h
    1.51.1.1 04/05/20 02:02:14 bell@sanja.is.com.ua +3 -3
    made ancestor for Statement (Item_arena)

  sql/item_subselect.cc
    1.75 04/05/20 02:02:14 bell@sanja.is.com.ua +21 -21
    made ancestor for Statement (Item_arena)

  mysql-test/t/sp.test
    1.60.1.1 04/05/20 02:02:14 bell@sanja.is.com.ua +12 -0
    test suite for Bug #2266

  mysql-test/r/sp.result
    1.63 04/05/20 02:02:14 bell@sanja.is.com.ua +10 -0
    test suite for Bug #2266

ChangeSet
  1.1616.396.13 04/05/20 01:32:02 marko@hundin.mysql.fi +2 -0
  InnoDB cleanup: Remove unused functions ut_sprintf() and ut_fprintf()

  innobase/ut/ut0ut.c
    1.24 04/05/20 01:09:36 marko@hundin.mysql.fi +0 -148
    Remove unused functions ut_sprintf() and ut_fprintf()

  innobase/include/ut0ut.h
    1.15 04/05/20 01:09:22 marko@hundin.mysql.fi +0 -32
    Remove unused functions ut_sprintf() and ut_fprintf()

ChangeSet
  1.1616.396.12 04/05/19 18:13:21 bell@sanja.is.com.ua +1 -0
  after merge fix

  sql/sql_union.cc
    1.74.1.49 04/05/19 18:13:18 bell@sanja.is.com.ua +2 -1
    describe should go until the end

ChangeSet
  1.1616.396.10 04/05/19 17:07:28 bell@sanja.is.com.ua +6 -0
  after review changes

  sql/sql_select.cc
    1.216.1.113 04/05/19 17:07:25 bell@sanja.is.com.ua +34 -13
    after review changes

  sql/sql_lex.h
    1.102.34.7 04/05/19 17:07:25 bell@sanja.is.com.ua +1 -1
    we do not need sign for now

  sql/sql_class.h
    1.146.34.5 04/05/19 17:07:25 bell@sanja.is.com.ua +1 -1
    we bo not need sign for now

  mysql-test/r/union.result
    1.46.1.26 04/05/19 17:07:25 bell@sanja.is.com.ua +5 -5
    explain of hidden subselect changed according to review

  mysql-test/r/subselect.result
    1.67.1.58 04/05/19 17:07:25 bell@sanja.is.com.ua +7 -7
    explain of hidden subselect changed according to review

  mysql-test/r/derived.result
    1.46 04/05/19 17:07:25 bell@sanja.is.com.ua +4 -4
    explain of hidden subselect changed according to review

ChangeSet
  1.1616.420.1 04/05/19 17:43:50 dlenev@brandersnatch.localdomain +5 -0
  Moved testing of binlog_cache_use/binlog_cache_disk_use statistical variables from
  rpl_relayrotate.test to innodb.test since this test requires innodb support.

  mysql-test/t/rpl_relayrotate.test
    1.7.1.3 04/05/19 17:43:32 dlenev@brandersnatch.localdomain +0 -16
    Moved testing of binlog_cache_use/binlog_cache_disk_use statistical variables from
    rpl_relayrotate.test to innodb.test since this test requires innodb support.

  mysql-test/t/innodb.test
    1.61 04/05/19 17:43:31 dlenev@brandersnatch.localdomain +33 -0
    Moved testing of binlog_cache_use/binlog_cache_disk_use statistical variables from
    rpl_relayrotate.test to innodb.test since this test requires innodb support.

  mysql-test/r/rpl_relayrotate.result
    1.4.1.3 04/05/19 17:43:30 dlenev@brandersnatch.localdomain +0 -15
    Moved testing of binlog_cache_use/binlog_cache_disk_use statistical variables from
    rpl_relayrotate.test to innodb.test since this test requires innodb support.

  mysql-test/r/innodb.result
    1.91 04/05/19 17:43:27 dlenev@brandersnatch.localdomain +23 -0
    Moved testing of binlog_cache_use/binlog_cache_disk_use statistical variables from
    rpl_relayrotate.test to innodb.test since this test requires innodb support.

ChangeSet
  1.1346.621.1 04/05/19 16:38:12 monty@mysql.com +64 -0
  Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'
  Ensured that all projects compile
  Removed compiler warnings
  Better setting of server_version variable.
  Fix that make_win_src_distribution creates the privilege tables.

  sql/mysqld_suffix.h
    1.1 04/05/19 16:37:59 monty@mysql.com +38 -0

  VC++Files/copy_mysql_files.bat
    1.1 04/05/19 16:37:59 monty@mysql.com +84 -0

  VC++Files/README.build-files
    1.1 04/05/19 16:37:59 monty@mysql.com +19 -0

  strings/ctype-tis620.c
    1.16.1.10 04/05/19 16:37:59 monty@mysql.com +4 -4
    Remove compiler warnings

  sql/set_var.cc
    1.12.11.1 04/05/19 16:37:59 monty@mysql.com +1 -3
    Fixed bug when showing lower_case_file_system

  sql/mysqld_suffix.h
    1.0 04/05/19 16:37:59 monty@mysql.com +0 -0
    BitKeeper file /home/my/mysql-4.0/sql/mysqld_suffix.h

  sql/mysqld.cc
    1.297.46.1 04/05/19 16:37:59 monty@mysql.com +30 -24
    Better setting of server_version variable

  sql/ha_innodb.cc
    1.73.1.137 04/05/19 16:37:59 monty@mysql.com +0 -1
    Remove not used variable

  sql/Makefile.am
    1.66.1.9 04/05/19 16:37:59 monty@mysql.com +2 -2
    Add new file mysqld_suffix.h
    Remove not used file sql_olap.h

  scripts/mysql_install_db.sh
    1.35.1.12 04/05/19 16:37:59 monty@mysql.com +30 -12
    Backport from 4.1 to allow make_win_src_distribution create the privilege tables

  scripts/make_win_src_distribution.sh
    1.7.1.4 04/05/19 16:37:59 monty@mysql.com +4 -0
    Safety fix

  mysys/sha1.c
    1.5 04/05/19 16:37:59 monty@mysql.com +1 -1
    Remove compiler warnings

  myisam/myisam_ftdump.c
    1.12.1.9 04/05/19 16:37:59 monty@mysql.com +1 -1
    Remove compiler warnings

  libmysqld/libmysqld.def
    1.2.1.1 04/05/19 16:37:59 monty@mysql.com +3 -0
    Add functions needed for mysql command line client

  libmysqld/lib_sql.cc
    1.25.3.16 04/05/19 16:37:59 monty@mysql.com +1 -7
    Better setting of server_version variable

  innobase/trx/trx0sys.c
    1.13.1.12 04/05/19 16:37:59 monty@mysql.com +1 -1
    Remove compiler warnings

  VC++Files/copy_mysql_files.bat
    1.0 04/05/19 16:37:59 monty@mysql.com +0 -0
    BitKeeper file /home/my/mysql-4.0/VC++Files/copy_mysql_files.bat

  VC++Files/README.build-files
    1.0 04/05/19 16:37:59 monty@mysql.com +0 -0
    BitKeeper file /home/my/mysql-4.0/VC++Files/README.build-files

  innobase/pars/pars0lex.l
    1.6 04/05/19 16:37:58 monty@mysql.com +2 -2
    Remove compiler warnings

  include/mysql_version.h.in
    1.13.1.4 04/05/19 16:37:58 monty@mysql.com +5 -1
    Better license text handling

  include/mysql_embed.h
    1.5.1.1 04/05/19 16:37:58 monty@mysql.com +0 -3
    Better setting of server_version variable

  include/m_string.h
    1.17.1.4 04/05/19 16:37:58 monty@mysql.com +1 -0
    Portability fix

  extra/my_print_defaults.c
    1.10.1.4 04/05/19 16:37:58 monty@mysql.com +1 -1
    Fixed bug in --verbose

  VC++Files/zlib/zlib.dsp
    1.3.1.3 04/05/19 16:37:58 monty@mysql.com +1 -1
    Automatic changes

  VC++Files/zlib/contrib/asm386/zlibvc.dsp
    1.2 04/05/19 16:37:58 monty@mysql.com +38 -38
    Automatic changes

  VC++Files/vio/vio.dsp
    1.4.1.3 04/05/19 16:37:58 monty@mysql.com +1 -1
    Automatic changes

  VC++Files/thr_test/thr_test.dsp
    1.4.1.3 04/05/19 16:37:58 monty@mysql.com +1 -1
    Automatic changes

  VC++Files/test1/test1.dsp
    1.4.1.3 04/05/19 16:37:58 monty@mysql.com +1 -1
    Automatic changes

  VC++Files/strings/strings.dsp
    1.2.1.3 04/05/19 16:37:58 monty@mysql.com +4 -8
    Removed duplicate code for strnlen

  VC++Files/sql/mysqld.dsp
    1.6.1.5 04/05/19 16:37:58 monty@mysql.com +580 -67
    Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'

  VC++Files/replace/replace.dsp
    1.4.1.3 04/05/19 16:37:58 monty@mysql.com +30 -1
    Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'

  VC++Files/regex/regex.dsp
    1.2.1.2 04/05/19 16:37:58 monty@mysql.com +4 -4
    Automatic changes

  VC++Files/perror/perror.dsp
    1.5.1.3 04/05/19 16:37:58 monty@mysql.com +34 -1
    Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'

  VC++Files/pack_isam/pack_isam.dsp
    1.5.1.3 04/05/19 16:37:58 monty@mysql.com +28 -1
    Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'

  VC++Files/mysys/mysys.dsp
    1.6.1.5 04/05/19 16:37:58 monty@mysql.com +16 -16
    Automatic changes

  VC++Files/mysqlwatch/mysqlwatch.dsp
    1.2.1.2 04/05/19 16:37:58 monty@mysql.com +3 -3
    Automatic changes

  VC++Files/mysqlshutdown/mysqlshutdown.dsp
    1.2.1.3 04/05/19 16:37:58 monty@mysql.com +1 -1
    Automatic changes

  VC++Files/mysqlserver/mysqlserver.dsp
    1.3.1.3 04/05/19 16:37:58 monty@mysql.com +1 -1
    Automatic changes

  VC++Files/mysqldemb/mysqldemb.dsp
    1.3.1.3 04/05/19 16:37:58 monty@mysql.com +55 -2
    Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'

  VC++Files/mysqlcheck/mysqlcheck.dsp
    1.4.1.3 04/05/19 16:37:58 monty@mysql.com +28 -1
    Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'

  VC++Files/mysqlbinlog/mysqlbinlog.dsp
    1.7.1.3 04/05/19 16:37:58 monty@mysql.com +30 -1
    Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'

  VC++Files/mysql.dsw
    1.5.1.6 04/05/19 16:37:58 monty@mysql.com +0 -1
    Automatic changes

  VC++Files/myisampack/myisampack.dsp
    1.3.1.3 04/05/19 16:37:58 monty@mysql.com +38 -11
    Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'

  VC++Files/myisammrg/myisammrg.dsp
    1.3.1.2 04/05/19 16:37:58 monty@mysql.com +4 -4
    Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'

  VC++Files/myisamlog/myisamlog.dsp
    1.2.1.3 04/05/19 16:37:58 monty@mysql.com +30 -1
    Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'

  VC++Files/myisamchk/myisamchk.dsp
    1.2.1.2 04/05/19 16:37:58 monty@mysql.com +33 -4
    Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'

  VC++Files/myisam_ftdump/myisam_ftdump.dsp
    1.2.1.1 04/05/19 16:37:58 monty@mysql.com +11 -11
    automatic changes

  VC++Files/myisam/myisam.dsp
    1.3.1.2 04/05/19 16:37:58 monty@mysql.com +4 -4
    automatic changes

  VC++Files/my_print_defaults/my_print_defaults.dsp
    1.1.1.4 04/05/19 16:37:58 monty@mysql.com +38 -11
    Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'

  VC++Files/merge/merge.dsp
    1.3.1.2 04/05/19 16:37:58 monty@mysql.com +4 -4
    Automatic changes

  VC++Files/libmysqltest/myTest.dsp
    1.4.1.3 04/05/19 16:37:58 monty@mysql.com +1 -1
    Automatic changes

  VC++Files/libmysqld/libmysqld.dsp
    1.2.1.3 04/05/19 16:37:58 monty@mysql.com +63 -1
    Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'

  VC++Files/libmysqld/examples/test_libmysqld.dsp
    1.1.1.2 04/05/19 16:37:58 monty@mysql.com +15 -3
    Add missing files

  VC++Files/libmysql/libmysql.dsp
    1.7.1.5 04/05/19 16:37:58 monty@mysql.com +1 -1
    Automatic changes

  VC++Files/isamchk/isamchk.dsp
    1.2.1.3 04/05/19 16:37:58 monty@mysql.com +32 -1
    Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'

  VC++Files/isam/isam.dsp
    1.2.1.2 04/05/19 16:37:58 monty@mysql.com +4 -4
    Automatic changes

  VC++Files/innobase/innobase.dsp
    1.7.1.5 04/05/19 16:37:58 monty@mysql.com +3 -3
    Automatic changes

  VC++Files/heap/heap.dsp
    1.2.1.2 04/05/19 16:37:58 monty@mysql.com +4 -4
    automatic changes

  VC++Files/dbug/dbug.dsp
    1.2.1.2 04/05/19 16:37:58 monty@mysql.com +4 -4
    Automatic changes

  VC++Files/comp_err/comp_err.dsp
    1.1.1.4 04/05/19 16:37:58 monty@mysql.com +9 -9
    Automatic changes

  VC++Files/client/mysqlshow.dsp
    1.4.1.3 04/05/19 16:37:58 monty@mysql.com +30 -1
    Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'

  VC++Files/client/mysqlimport.dsp
    1.4.1.3 04/05/19 16:37:58 monty@mysql.com +32 -1
    Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'

  VC++Files/client/mysqldump.dsp
    1.4.1.3 04/05/19 16:37:58 monty@mysql.com +32 -1
    Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'

  VC++Files/client/mysqlclient.dsp
    1.6.1.4 04/05/19 16:37:58 monty@mysql.com +12 -32
    Removed files that should only be used with mysql command line client

  VC++Files/client/mysqladmin.dsp
    1.4.1.3 04/05/19 16:37:58 monty@mysql.com +30 -1
    Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'

  VC++Files/client/mysql.dsp
    1.4.1.3 04/05/19 16:37:58 monty@mysql.com +46 -2
    Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'

  VC++Files/bdb/bdb.dsp
    1.3.1.2 04/05/19 16:37:58 monty@mysql.com +6 -6
    Small, automatic changes

  mysql-test/t/innodb-master.opt
    1.2 04/05/19 17:28:12 dlenev@brandersnatch.localdomain +0 -0
    Rename: mysql-test/t/rpl_relayrotate-master.opt -> mysql-test/t/innodb-master.opt

ChangeSet
  1.1346.620.1 04/05/19 15:03:32 guilhem@mysql.com +4 -0
  Fix for BUG#3829 "Setting server_id on fly doesn't allow replication to start"
  (fix by our Harrison Fisk): when one does SET GLOBAL SERVER_ID=x, we must set
  server_id_supplied to 1.

  sql/slave.cc
    1.164.1.114 04/05/19 15:03:30 guilhem@mysql.com +2 -4
    Correcting wrong comment

  sql/set_var.cc
    1.12.10.1 04/05/19 15:03:30 guilhem@mysql.com +6 -1
    when one does SET GLOBAL SERVER_ID=x; it should be considered as explicitely setting
    the server id, so do server_id_supplied=1.

  sql/mysqld.cc
    1.297.1.197 04/05/19 15:03:30 guilhem@mysql.com +5 -5
    rephrasing warnings when server id is not set explicitely.

  sql/mysql_priv.h
    1.150.1.69 04/05/19 15:03:30 guilhem@mysql.com +1 -1
    server_id_supplied must be here to be visible in set_var.cc

ChangeSet
  1.1616.399.12 04/05/19 14:51:41 pem@mysql.comhem.se +1 -0
  Fixed BUG#3709: SELECT INTO 1 FROM DUAL not parsed as expected
  
  Made the combination of INTO and FROM DUAL work, e.g.
  SELECT 1 INTO @x FROM DUAL.
  As a consequence, DUAL is made a reserved word. It would work to not have
  it reserved, but it was deemed to be confusing as a user defined table by
  the same name then must be qualified with a db (schema).

  sql/sql_yacc.yy
    1.203.103.10 04/05/19 14:51:38 pem@mysql.com +7 -7
    Made the combination of INTO and FROM DUAL work, e.g.
    SELECT 1 INTO @x FROM DUAL.
    As a consequence, DUAL is made a reserved word. It would work to not have
    it reserved, but it was deemed to be confusing as a user defined table by
    the same name then must be qualified with a db (schema).

ChangeSet
  1.1346.1.492 04/05/19 16:42:29 konstantin@mysql.com +3 -0
  Fix for Bug#3754 "SET GLOBAL myisam_max_sort_file_size doesn't 
  work as expected": precision-losing conversion removed from 
  sys_var_thd_ulonglong.

  sql/set_var.cc
    1.12.1.41 04/05/19 16:42:28 konstantin@mysql.com +2 -2
    Fix for Bug#3754: precision-losing conversion removed from 
    sys_var_thd_ulonglong.

  mysql-test/t/variables.test
    1.11.1.8 04/05/19 16:42:28 konstantin@mysql.com +7 -1
    Test case for Bug#3754

  mysql-test/r/variables.result
    1.15.1.8 04/05/19 16:42:28 konstantin@mysql.com +4 -0
    Test case for Bug#3754

ChangeSet
  1.1616.418.1 04/05/19 14:38:38 mysqldev@mysql.com +20 -0
  Forte compile fixes

  BitKeeper/etc/logging_ok
    1.233.24.1 04/05/19 14:38:38 mysqldev@mysql.com +1 -0
    Logging to logging@openlogging.org accepted

  ndb/src/rep/transfer/TransSS.hpp
    1.4 04/05/19 14:37:58 mysqldev@mysql.com +5 -1
    Forte compile fixes

  ndb/src/rep/transfer/TransSS.cpp
    1.4 04/05/19 14:37:58 mysqldev@mysql.com +3 -2
    Forte compile fixes

  ndb/src/rep/transfer/TransPS.hpp
    1.4 04/05/19 14:37:58 mysqldev@mysql.com +7 -1
    Forte compile fixes

  ndb/src/rep/transfer/TransPS.cpp
    1.4 04/05/19 14:37:58 mysqldev@mysql.com +3 -2
    Forte compile fixes

  ndb/src/rep/adapters/ExtNDB.hpp
    1.4 04/05/19 14:37:58 mysqldev@mysql.com +7 -3
    Forte compile fixes

  ndb/src/rep/adapters/ExtNDB.cpp
    1.4 04/05/19 14:37:58 mysqldev@mysql.com +6 -3
    Forte compile fixes

  ndb/src/rep/SignalQueue.hpp
    1.2 04/05/19 14:37:58 mysqldev@mysql.com +1 -1
    Forte compile fixes

  ndb/src/ndbapi/NdbDictionaryImpl.cpp
    1.3.1.1 04/05/19 14:37:58 mysqldev@mysql.com +2 -2
    Forte compile fixes

  ndb/src/ndbapi/NdbDictionary.cpp
    1.4 04/05/19 14:37:58 mysqldev@mysql.com +1 -1
    Forte compile fixes

  ndb/src/ndbapi/DictCache.hpp
    1.2 04/05/19 14:37:58 mysqldev@mysql.com +2 -1
    Forte compile fixes

  ndb/src/kernel/blocks/trix/Trix.hpp
    1.2 04/05/19 14:37:58 mysqldev@mysql.com +9 -8
    Forte compile fixes

  ndb/src/kernel/blocks/dbtux/Dbtux.hpp
    1.4 04/05/19 14:37:58 mysqldev@mysql.com +33 -1
    Forte compile fixes

  ndb/src/kernel/blocks/dbdict/Dbdict.hpp
    1.2 04/05/19 14:37:58 mysqldev@mysql.com +16 -16
    Forte compile fixes

  ndb/src/kernel/blocks/dbdict/Dbdict.cpp
    1.2.1.1 04/05/19 14:37:58 mysqldev@mysql.com +11 -5
    Forte compile fixes

  ndb/src/common/util/md5_hash.cpp
    1.2 04/05/19 14:37:57 mysqldev@mysql.com +1 -1
    Forte compile fixes

  ndb/include/util/Bitmask.hpp
    1.5 04/05/19 14:37:57 mysqldev@mysql.com +12 -3
    Forte compile fixes

  ndb/include/kernel/trigger_definitions.h
    1.2 04/05/19 14:37:57 mysqldev@mysql.com +1 -0
    Forte compile fixes

  ndb/include/kernel/signaldata/CreateEvnt.hpp
    1.2 04/05/19 14:37:57 mysqldev@mysql.com +1 -1
    Forte compile fixes

  ndb/config/GuessConfig.sh
    1.5 04/05/19 14:37:57 mysqldev@mysql.com +1 -0
    Forte compile fixes

ChangeSet
  1.1616.374.29 04/05/19 14:29:13 tomas@mc05.(none) +1 -0
  fix to make scan filter ndb testprogram work

  ndb/test/ndbapi/testScanInterpreter/testScanInterpreter.cpp
    1.2 04/05/19 14:29:10 tomas@mc05.(none) +10 -10
    fix to make scan filter ndb testprogram work

ChangeSet
  1.1616.417.1 04/05/19 11:17:24 tomas@mc05.(none) +11 -0
  removed global variable fullyQualifiedNames

  ndb/tools/list_tables/listTables.cpp
    1.4 04/05/19 11:17:21 tomas@mc05.(none) +3 -3
    removed global variable fullyQualifiedNames

  ndb/test/ndbapi/testGrep/verify/testGrepVerify.cpp
    1.4 04/05/19 11:17:21 tomas@mc05.(none) +1 -4
    removed global variable fullyQualifiedNames

  ndb/src/rep/state/Channel.cpp
    1.2 04/05/19 11:17:21 tomas@mc05.(none) +4 -4
    removed global variable fullyQualifiedNames

  ndb/src/rep/adapters/AppNDB.cpp
    1.2 04/05/19 11:17:21 tomas@mc05.(none) +5 -3
    removed global variable fullyQualifiedNames

  ndb/src/ndbapi/Ndbinit.cpp
    1.3 04/05/19 11:17:21 tomas@mc05.(none) +6 -2
    removed global variable fullyQualifiedNames

  ndb/src/ndbapi/NdbDictionaryImpl.hpp
    1.3 04/05/19 11:17:21 tomas@mc05.(none) +8 -7
    removed global variable fullyQualifiedNames

  ndb/src/ndbapi/NdbDictionaryImpl.cpp
    1.4 04/05/19 11:17:21 tomas@mc05.(none) +18 -18
    removed global variable fullyQualifiedNames

  ndb/src/ndbapi/Ndb.cpp
    1.8 04/05/19 11:17:21 tomas@mc05.(none) +35 -27
    removed global variable fullyQualifiedNames

  ndb/src/common/portlib/unix/NdbThread.c
    1.8 04/05/19 11:17:21 tomas@mc05.(none) +1 -1
    removed global variable fullyQualifiedNames

  ndb/include/ndbapi/Ndb.hpp
    1.4 04/05/19 11:17:21 tomas@mc05.(none) +6 -2
    removed global variable fullyQualifiedNames

  ndb/include/ndb_global.h
    1.8 04/05/19 11:17:21 tomas@mc05.(none) +2 -0
    removed global variable fullyQualifiedNames

ChangeSet
  1.1616.415.1 04/05/19 05:21:35 tomas@mc05.(none) +4 -0
  ndb tablehandler, ndb make and endien define, see each file

  ndb/src/ndbapi/Ndb.cpp
    1.7 04/05/19 05:21:32 tomas@mc05.(none) +1 -1
    changed ifdef _BIG_ENDIAN => WORDS_BIGENDIAN

  ndb/src/kernel/blocks/dbdict/Dbdict.cpp
    1.3 04/05/19 05:21:32 tomas@mc05.(none) +3 -1
    changed ifdef _BIG_ENDIAN => WORDS_BIGENDIAN

  ndb/Makefile
    1.4 04/05/19 05:21:32 tomas@mc05.(none) +5 -5
    fix for problems with parallell make

  configure.in
    1.201.8.11 04/05/19 05:21:32 tomas@mc05.(none) +8 -0
    configure to check if HAVE_COMPRESS for ndbcluster table handler

ChangeSet
  1.1616.414.1 04/05/19 05:09:10 monty@mysql.com +12 -0
  Portability fixes
  Fixed wrong number of warnings/duplicates for machines with high-byte-first

  tests/client_test.c
    1.51.13.1 04/05/19 05:09:06 monty@mysql.com +11 -9
    Portability fixes

  strings/ctype-uca.c
    1.3 04/05/19 05:09:06 monty@mysql.com +3 -3
    Portability fix

  strings/ctype-mb.c
    1.23 04/05/19 05:09:06 monty@mysql.com +1 -1
    Portability fix

  strings/ctype-gbk.c
    1.53 04/05/19 05:09:06 monty@mysql.com +4 -4
    Portability fix

  strings/ctype-big5.c
    1.55 04/05/19 05:09:05 monty@mysql.com +5 -5
    Portability fix

  sql/sql_insert.cc
    1.86.2.48 04/05/19 05:09:05 monty@mysql.com +2 -2
    Fixed wrong number of warnings/duplicates for machines with high-byte-first

  mysql-test/t/rpl_trunc_binlog.test
    1.7.1.2 04/05/19 05:09:05 monty@mysql.com +1 -1
    Portability fix
    (Column 23 was different on openbsd)

  mysql-test/r/rpl_trunc_binlog.result
    1.9.1.4 04/05/19 05:09:05 monty@mysql.com +1 -1
    Portability fix

  myisam/rt_test.c
    1.9.1.2 04/05/19 05:09:05 monty@mysql.com +1 -1
    Portability fix

  myisam/ft_nlq_search.c
    1.36 04/05/19 05:09:05 monty@mysql.com +3 -2
    Fix valgrind error (not fatal)

  client/mysqltest.c
    1.92.1.41 04/05/19 05:09:05 monty@mysql.com +1 -1
    Remove double ;

  client/mysql.cc
    1.121.6.1 04/05/19 05:09:05 monty@mysql.com +1 -3
    Remove not used variables

ChangeSet
  1.1346.619.2 04/05/19 02:18:54 sergefp@mysql.com +2 -0
  Fix for BUG33649: Post-review fixes 

  sql/sql_handler.cc
    1.19.1.22 04/05/19 02:18:51 sergefp@mysql.com +33 -35
    Fix for BUG33649: Post-review fixes: added RNEXT_SAME 

  sql/sql_class.h
    1.111.1.66 04/05/19 02:18:51 sergefp@mysql.com +1 -1
    Fix for BUG33649: Post-review fixes: added RNEXT_SAME

ChangeSet
  1.1346.619.1 04/05/18 22:59:43 sergefp@mysql.com +3 -0
  Fix and test case for BUG#3649.

  sql/sql_handler.cc
    1.19.1.21 04/05/18 22:59:24 sergefp@mysql.com +39 -29
    Fix for BUG#3649: when doing an index scan for an equality condition, use index_next_same to retrieve subsequent rows.

  mysql-test/t/handler.test
    1.7.1.8 04/05/18 22:59:24 sergefp@mysql.com +12 -0
    Test case for BUG#3649

  mysql-test/r/handler.result
    1.7.1.8 04/05/18 22:59:23 sergefp@mysql.com +12 -0
    Test case for BUG#3649

ChangeSet
  1.1616.413.1 04/05/18 09:54:36 brian@brian-akers-computer.local +1 -0
  Updating range_in_rows for the include file for ha_example (the main .cc file has already been updated). 

  sql/examples/ha_example.h
    1.5 04/05/18 09:54:22 brian@brian-akers-computer.local +2 -4
    Updating ha_example.h for new records_in_range. ha_example.cc has already been updated.

ChangeSet
  1.1616.410.4 04/05/18 17:26:49 jani@a80-186-24-72.elisa-laajakaista.fi +1 -0
  Fixed a bug in mysql-copy-right-2 script. As it was, it destroyed some ndb source
  files, such as ha_ndbcluster.cc

  Build-tools/mysql-copyright-2
    1.6 04/05/18 17:26:46 jani@a80-186-24-72.elisa-laajakaista.fi +1 -1
    Fixed a bug in mysql-copy-right-2 script. As it was, it destroyed some ndb source
    files, such as ha_ndbcluster.cc

ChangeSet
  1.1616.399.10 04/05/18 19:13:21 hf@deer.(none) +1 -0
  embedded library: fix for sending of parameters to stored procedure.
  using of methods like sint2korr() doesn't work on Bigendian machines

  sql/sql_prepare.cc
    1.34.18.7 04/05/18 19:13:19 hf@deer.(none) +13 -3
    special 'embedded' patches added to almost all set_parameter_XXX functions

  BitKeeper/deleted/.del-AttrType.hpp~a9b2d6efcf660378
    1.2 04/05/18 14:50:13 magnus@neptunus.(none) +1 -298
    Delete: ndb/include/ndbapi/AttrType.hpp

ChangeSet
  1.1616.410.3 04/05/18 10:29:20 serg@serg.mylan +1 -0
  don't try to purge closed logs

  sql/sql_parse.cc
    1.271.74.2 04/05/18 10:29:15 serg@serg.mylan +1 -1
    don't try to purge closed logs

ChangeSet
  1.1616.411.2 04/05/18 09:58:30 pekka@mysql.com +9 -0
  fix ndb odbc compile

  BitKeeper/etc/logging_ok
    1.233.23.2 04/05/18 09:58:30 pekka@mysql.com +1 -0
    Logging to logging@openlogging.org accepted

ChangeSet
  1.1616.410.2 04/05/18 09:56:45 serg@serg.mylan +1 -0
  after merge fix

  client/mysql.cc
    1.121.1.46 04/05/18 09:56:40 serg@serg.mylan +1 -1
    after merge fix

  ndb/tools/ndbsql/ndbsql.cpp
    1.2 04/05/18 09:50:20 pekka@mysql.com +1 -0
    fix ndb odbc compile

  ndb/test/odbc/driver/testOdbcDriver.cpp
    1.4 04/05/18 09:50:20 pekka@mysql.com +2 -0
    fix ndb odbc compile

  ndb/src/client/odbc/handles/PoolNdb.hpp
    1.2 04/05/18 09:50:20 pekka@mysql.com +1 -1
    fix ndb odbc compile

  ndb/src/client/odbc/common/common.hpp
    1.3 04/05/18 09:50:20 pekka@mysql.com +4 -0
    fix ndb odbc compile

  ndb/src/client/odbc/common/OdbcData.cpp
    1.4 04/05/18 09:50:20 pekka@mysql.com +0 -1
    fix ndb odbc compile

  ndb/src/client/odbc/common/DataField.cpp
    1.4 04/05/18 09:50:19 pekka@mysql.com +0 -1
    fix ndb odbc compile

  ndb/src/client/odbc/common/Ctx.cpp
    1.4 04/05/18 09:50:19 pekka@mysql.com +0 -1
    fix ndb odbc compile

  ndb/src/client/odbc/codegen/SimpleParser.cpp
    1.2 04/05/18 09:50:19 pekka@mysql.com +1 -0
    fix ndb odbc compile

ChangeSet
  1.1616.412.1 04/05/18 12:16:00 ram@gw.mysql.r18.ru +3 -0
  A fix (Bug #3728: Missing warning in 4.1).

  sql/time.cc
    1.42 04/05/18 12:15:26 ram@gw.mysql.r18.ru +1 -1
    A fix (Bug #3728: Missing warning in 4.1).

  sql/field.cc
    1.157 04/05/18 12:15:26 ram@gw.mysql.r18.ru +5 -0
    A fix (Bug #3728: Missing warning in 4.1).

  mysql-test/r/type_datetime.result
    1.19 04/05/18 12:15:26 ram@gw.mysql.r18.ru +6 -0
    A fix (Bug #3728: Missing warning in 4.1).

ChangeSet
  1.1346.1.490 04/05/18 01:53:06 heikki@hundin.mysql.fi +1 -0
  mem0pool.c:
    Fix a memory corruption bug: in 32-bit computers, every 4 billionth malloc outside innodb_additional_mem_pool_size was mistreated when freeing the memory; this could corrupt the InnoDB additional mem pool and could have caused crashes anywhere, also inside MySQL, or even database corruption! the bug exists also in 3.23 and 4.1; workaround: configure innodb_additional_mem_pool_size big enough

  innobase/mem/mem0pool.c
    1.9.1.6 04/05/18 01:52:42 heikki@hundin.mysql.fi +6 -14
    Fix a memory corruption bug: in 32-bit computers, every 4 billionth malloc outside innodb_additional_mem_pool_size was mistreated when freeing the memory; this could corrupt the InnoDB additional mem pool and could have caused crashes anywhere, also inside MySQL, or even database corruption! the bug exists also in 3.23 and 4.1; workaround: configure innodb_additional_mem_pool_size big enough

ChangeSet
  1.1616.410.1 04/05/17 18:45:59 serg@serg.mylan +1 -0
  current_thd is 0 if ha_resolve_by_name() is called when parsing command-line options

  sql/handler.cc
    1.103.4.2 04/05/17 18:45:55 serg@serg.mylan +4 -3
    current_thd is 0 if ha_resolve_by_name() is called when parsing command-line options

ChangeSet
  1.1346.1.489 04/05/17 17:27:25 heikki@hundin.mysql.fi +1 -0
  dict0dict.c:
    Allocate the table name buffer from the mem heap of a foreign key object rather than pointing to the name buffer in the table object; even though this apparently caused no bugs in RENAME, DROP, ALTER TABLE, or elsewhere, this convention was very prone to memory allocation bugs

  innobase/dict/dict0dict.c
    1.26.1.26 04/05/17 17:27:17 heikki@hundin.mysql.fi +2 -1
    Allocate the table name buffer from the mem heap of a foreign key object rather than pointing to the name buffer in the table object; even though this apparently caused no bugs in RENAME, DROP, ALTER TABLE, or elsewhere, this convention was very prone to memory allocation bugs

ChangeSet
  1.1346.1.488 04/05/17 16:19:55 marko@hundin.mysql.fi +1 -0
  InnoDB: srv0srv.c: Remove reference to sync0ipm.h (fix ChangeSet@1.1833)

  innobase/srv/srv0srv.c
    1.35.1.35 04/05/17 16:18:18 marko@hundin.mysql.fi +0 -1
    Remove reference to sync0ipm.h

ChangeSet
  1.1665.9.1 04/05/17 15:14:19 timour@mysql.com +1 -0
  poratble printing of ha_rows values

  sql/sql_test.cc
    1.36 04/05/17 15:13:29 timour@mysql.com +4 -2
    poratble printing of ha_rows values

ChangeSet
  1.1616.399.8 04/05/17 14:51:46 marko@hundin.mysql.fi +1 -0
  InnoDB cleanup: Remove unused function ut_printf()

  innobase/ut/ut0ut.c
    1.23 04/05/17 14:51:41 marko@hundin.mysql.fi +0 -73
    Remove unused function ut_printf()

ChangeSet
  1.1616.407.6 04/05/17 14:40:31 marko@hundin.mysql.fi +31 -0
  InnoDB cleanup: Add const qualifiers to many char* arguments

  innobase/trx/trx0sys.c
    1.26 04/05/17 14:40:26 marko@hundin.mysql.fi +1 -1
    Replace char* arguments with const char*

  innobase/trx/trx0roll.c
    1.14 04/05/17 14:40:26 marko@hundin.mysql.fi +2 -2
    Replace char* arguments with const char*

  innobase/row/row0sel.c
    1.50 04/05/17 14:40:26 marko@hundin.mysql.fi +5 -5
    Replace char* arguments with const char*

  innobase/row/row0mysql.c
    1.59 04/05/17 14:40:26 marko@hundin.mysql.fi +26 -25
    Replace char* arguments with const char*

  innobase/pars/pars0sym.c
    1.3 04/05/17 14:40:26 marko@hundin.mysql.fi +1 -4
    Use mem_heap_strdupl() instead of mem_heap_alloc() and memcpy()

  innobase/pars/pars0pars.c
    1.10 04/05/17 14:40:26 marko@hundin.mysql.fi +2 -2
    Replace char* arguments with const char*

  innobase/os/os0sync.c
    1.23 04/05/17 14:40:26 marko@hundin.mysql.fi +9 -9
    Replace char* arguments with const char*

  innobase/os/os0file.c
    1.72 04/05/17 14:40:26 marko@hundin.mysql.fi +87 -76
    Replace char* arguments with const char*

  innobase/include/ut0ut.h
    1.14 04/05/17 14:40:26 marko@hundin.mysql.fi +0 -15
    Remove unused function ut_printf()

  innobase/include/ut0rnd.ic
    1.3 04/05/17 14:40:26 marko@hundin.mysql.fi +5 -5
    Replace char* arguments with const char*

  innobase/include/ut0rnd.h
    1.3 04/05/17 14:40:26 marko@hundin.mysql.fi +5 -5
    Replace char* arguments with const char*

  innobase/include/trx0trx.h
    1.31 04/05/17 14:40:26 marko@hundin.mysql.fi +3 -3
    Replace char* arguments with const char*

  innobase/include/trx0sys.h
    1.12 04/05/17 14:40:25 marko@hundin.mysql.fi +1 -1
    Replace char* arguments with const char*

  innobase/include/trx0roll.h
    1.4 04/05/17 14:40:25 marko@hundin.mysql.fi +2 -2
    Replace char* arguments with const char*

  innobase/include/row0sel.h
    1.5 04/05/17 14:40:25 marko@hundin.mysql.fi +5 -5
    Replace char* arguments with const char*

  innobase/include/row0mysql.h
    1.23 04/05/17 14:40:25 marko@hundin.mysql.fi +26 -25
    Replace char* arguments with const char*

  innobase/include/pars0sym.h
    1.3 04/05/17 14:40:25 marko@hundin.mysql.fi +2 -2
    Replace char* arguments with const char*

  innobase/include/pars0pars.h
    1.6 04/05/17 14:40:25 marko@hundin.mysql.fi +2 -2
    Replace char* arguments with const char*

  innobase/include/os0sync.h
    1.14 04/05/17 14:40:25 marko@hundin.mysql.fi +9 -9
    Replace char* arguments with const char*

  innobase/include/os0file.h
    1.29 04/05/17 14:40:25 marko@hundin.mysql.fi +83 -73
    Replace char* arguments with const char*

  innobase/include/fil0fil.h
    1.14 04/05/17 14:40:25 marko@hundin.mysql.fi +55 -49
    Replace char* arguments with const char*

  innobase/include/dict0mem.h
    1.18 04/05/17 14:40:25 marko@hundin.mysql.fi +36 -34
    Replace char* arguments with const char*

  innobase/include/dict0load.h
    1.4 04/05/17 14:40:25 marko@hundin.mysql.fi +13 -10
    Replace char* arguments with const char*

  innobase/include/dict0dict.ic
    1.8 04/05/17 14:40:25 marko@hundin.mysql.fi +5 -5
    Replace char* arguments with const char*

  innobase/include/dict0dict.h
    1.23 04/05/17 14:40:25 marko@hundin.mysql.fi +29 -24
    Replace char* arguments with const char*

  innobase/include/data0data.ic
    1.8 04/05/17 14:40:25 marko@hundin.mysql.fi +1 -1
    dfield_set_data(): add const qualifier
    (temporarily shut up compiler warnings)

  innobase/include/data0data.h
    1.12 04/05/17 14:40:25 marko@hundin.mysql.fi +1 -1
    dfield_set_data(): add const qualifier

  innobase/fil/fil0fil.c
    1.26 04/05/17 14:40:25 marko@hundin.mysql.fi +67 -60
    Replace char* arguments with const char*

  innobase/dict/dict0mem.c
    1.13 04/05/17 14:40:25 marko@hundin.mysql.fi +20 -22
    Replace char* arguments with const char*

  innobase/dict/dict0load.c
    1.17 04/05/17 14:40:25 marko@hundin.mysql.fi +15 -13
    Replace char* arguments with const char*

  innobase/dict/dict0dict.c
    1.40 04/05/17 14:40:25 marko@hundin.mysql.fi +36 -30
    Replace char* arguments with const char*

ChangeSet
  1.1616.407.5 04/05/17 11:10:22 serg@serg.mylan +1 -0
  typo fixed

  sql/ha_heap.cc
    1.41 04/05/17 11:10:15 serg@serg.mylan +1 -1
    typo fixed

ChangeSet
  1.1616.409.1 04/05/17 11:04:12 serg@serg.mylan +2 -0
  bug#3681 - order by, distinct, refer to aliased field by name
  check for field_name (not only for name) in find_item_in_list, to be compatible with item->eq() that is done later

  sql/sql_base.cc
    1.145.1.63 04/05/17 11:04:07 serg@serg.mylan +3 -1
    bug#3681 - order by, distinct, refer to aliased field by name
    check for field_name (not only for name) in find_item_in_list, to be compatible with item->eq() that is done later

  mysql-test/r/order_by.result
    1.40 04/05/17 11:04:07 serg@serg.mylan +2 -2
    bug#3681 - order by, distinct, refer to aliased field by name

ChangeSet
  1.1346.618.2 04/05/17 13:40:02 ram@gw.mysql.r18.ru +1 -0
  added newline at the end of the file.

  mysql-test/t/func_str.test
    1.15.2.12 04/05/17 13:40:01 ram@gw.mysql.r18.ru +1 -1
    added newline at the end of the file.

ChangeSet
  1.1616.407.3 04/05/17 11:22:30 monty@mysql.com +2 -0
  After merge fixes

  sql/log_event.cc
    1.113.1.41 04/05/17 11:22:29 monty@mysql.com +1 -1
    Fixed typo

  mysql-test/r/type_float.result
    1.20 04/05/17 11:22:28 monty@mysql.com +1 -1
    Fix result after merge

ChangeSet
  1.1346.1.487 04/05/17 11:11:26 marko@hundin.mysql.fi +6 -0
  InnoDB: Remove unused module sync0ipm

  innobase/sync/Makefile.am
    1.3 04/05/17 11:11:23 marko@hundin.mysql.fi +1 -1
    Remove unused file sync0ipm.c

  innobase/include/Makefile.am
    1.8 04/05/17 11:11:23 marko@hundin.mysql.fi +1 -1
    Remove unused files sync0ipm.h and sync0ipm.ic

  innobase/sync/makefilewin
    1.2 04/05/17 11:08:14 marko@hundin.mysql.fi +2 -5
    Remove unused file sync0ipm.c

  BitKeeper/deleted/.del-sync0ipm.ic~2024167f6418de39
    1.2.1.1 04/05/17 11:03:37 marko@hundin.mysql.fi +0 -0
    Delete: innobase/include/sync0ipm.ic

  BitKeeper/deleted/.del-sync0ipm.h~92a27f3bd9b15164
    1.2 04/05/17 11:03:37 marko@hundin.mysql.fi +0 -0
    Delete: innobase/include/sync0ipm.h

  BitKeeper/deleted/.del-sync0ipm.c~48eb5196b6819734
    1.2 04/05/17 11:03:37 marko@hundin.mysql.fi +0 -0
    Delete: innobase/sync/sync0ipm.c

ChangeSet
  1.1616.1.217 04/05/17 09:53:13 magnus@neptunus.(none) +5 -0
  Added test(s) for auto discover of frm file

  mysql-test/t/ndb_autodiscover2.test
    1.1 04/05/17 09:53:11 magnus@neptunus.(none) +13 -0

  mysql-test/t/ndb_autodiscover2-master.opt
    1.1 04/05/17 09:53:11 magnus@neptunus.(none) +1 -0

  mysql-test/t/ndb_autodiscover.test
    1.1 04/05/17 09:53:11 magnus@neptunus.(none) +303 -0

  mysql-test/r/ndb_autodiscover2.result
    1.1 04/05/17 09:53:11 magnus@neptunus.(none) +10 -0

  mysql-test/r/ndb_autodiscover.result
    1.1 04/05/17 09:53:11 magnus@neptunus.(none) +211 -0

  mysql-test/t/ndb_autodiscover2.test
    1.0 04/05/17 09:53:11 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/t/ndb_autodiscover2.test

  mysql-test/t/ndb_autodiscover2-master.opt
    1.0 04/05/17 09:53:11 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/t/ndb_autodiscover2-master.opt

  mysql-test/t/ndb_autodiscover.test
    1.0 04/05/17 09:53:11 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/t/ndb_autodiscover.test

  mysql-test/r/ndb_autodiscover2.result
    1.0 04/05/17 09:53:11 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/r/ndb_autodiscover2.result

  mysql-test/r/ndb_autodiscover.result
    1.0 04/05/17 09:53:11 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/r/ndb_autodiscover.result

ChangeSet
  1.1616.1.216 04/05/17 09:51:02 magnus@neptunus.(none) +2 -0
  Fixes made after running with sql-bench

  sql/ha_ndbcluster.h
    1.10 04/05/17 09:51:00 magnus@neptunus.(none) +1 -0
    Added new function set_primary_key_from_old_data

  sql/ha_ndbcluster.cc
    1.12 04/05/17 09:51:00 magnus@neptunus.(none) +39 -61
    Added new function set_primary_key_from_old_data, used from update_row to specify the primary key of the record to update.
    Simplified index_read function, to use read_range_first
    Close the active cursor if read_range_first is called on an open cursor.
    In read_range_first, map error code from HA_ERR_KEY_NOT_FOUND to HA_ERR_END_OF_FILE.
    Remove call to function waitUntilReady from check_ndb_connection, this shuold remove the delay from transactions executed when node(s) are down.

ChangeSet
  1.1346.1.486 04/05/17 10:49:01 marko@hundin.mysql.fi +6 -0
  InnoDB: Remove unused module os0shm

  innobase/os/makefilewin
    1.2 04/05/17 10:48:58 marko@hundin.mysql.fi +2 -5
    Remove unused file os0shm.c

  innobase/os/Makefile.am
    1.4 04/05/17 10:48:58 marko@hundin.mysql.fi +1 -1
    Remove unused file os0shm.c

  innobase/include/Makefile.am
    1.7 04/05/17 10:48:58 marko@hundin.mysql.fi +1 -1
    Remove unused files os0shm.h and os0shm.ic

ChangeSet
  1.1346.618.1 04/05/17 12:47:16 ram@gw.mysql.r18.ru +3 -0
  A fix (bug #3756: ISNULL(QUOTE()) returns 1 for every row after 1st NULL)

  sql/item_strfunc.cc
    1.36.1.42 04/05/17 12:46:52 ram@gw.mysql.r18.ru +1 -0
    A fix (bug #3756: ISNULL(QUOTE()) returns 1 for every row after 1st NULL)

  mysql-test/t/func_str.test
    1.15.2.11 04/05/17 12:46:52 ram@gw.mysql.r18.ru +9 -0
    A fix (bug #3756: ISNULL(QUOTE()) returns 1 for every row after 1st NULL)

  mysql-test/r/func_str.result
    1.16.2.11 04/05/17 12:46:52 ram@gw.mysql.r18.ru +9 -0
    A fix (bug #3756: ISNULL(QUOTE()) returns 1 for every row after 1st NULL)

ChangeSet
  1.1616.1.215 04/05/17 09:43:51 magnus@neptunus.(none) +1 -0
  flags should be sent as second arg to my_error 

  sql/handler.cc
    1.103.1.23 04/05/17 09:43:50 magnus@neptunus.(none) +2 -2
    Added the flag argument to my_error

ChangeSet
  1.1616.1.214 04/05/17 09:40:35 magnus@neptunus.(none) +2 -0
  Updated ndb_basic test 

  mysql-test/t/ndb_basic.test
    1.4 04/05/17 09:40:33 magnus@neptunus.(none) +209 -1
    Add more tests to ndb_basic

  mysql-test/r/ndb_basic.result
    1.4 04/05/17 09:40:33 magnus@neptunus.(none) +211 -1
    Add more tests to ndb_basic

  BitKeeper/deleted/.del-os0shm.ic~1cac6731d2a64d53
    1.2 04/05/17 10:34:17 marko@hundin.mysql.fi +0 -0
    Delete: innobase/include/os0shm.ic

  BitKeeper/deleted/.del-os0shm.c~489ce7f33d07ffa
    1.3 04/05/17 10:34:17 marko@hundin.mysql.fi +0 -0
    Delete: innobase/os/os0shm.c

  BitKeeper/deleted/.del-os0shm.h~72e5e03d7b74061f
    1.2 04/05/17 10:34:16 marko@hundin.mysql.fi +0 -0
    Delete: innobase/include/os0shm.h

ChangeSet
  1.1616.408.2 04/05/17 12:07:58 hf@deer.(none) +1 -0
  Proposed fix for #3791 (embedded: mysql segfaults if cannot find
  errmsg.sys)

  client/mysql.cc
    1.121.5.1 04/05/17 12:07:55 hf@deer.(none) +5 -1
    Checking of mysql_server_init output added

ChangeSet
  1.1616.408.1 04/05/17 12:05:57 hf@deer.(none) +3 -0
  Proposed fix for #3744 (embedded server, wrong error message if database is
  missing)

  libmysqld/libmysqld.c
    1.59 04/05/17 12:05:30 hf@deer.(none) +1 -0
    embedded_get_error call added

  libmysqld/lib_sql.cc
    1.75.4.1 04/05/17 12:05:30 hf@deer.(none) +19 -12
    embedded_get_error implementation/using added

  libmysqld/embedded_priv.h
    1.12 04/05/17 12:05:30 hf@deer.(none) +1 -0
    embedded_get_error interface added

ChangeSet
  1.1616.406.1 04/05/16 14:48:32 monty@mishka.local +37 -0
  key_cmp -> key_cmp_if_same
  New records_in_range() interface (similar to read_range())
  Macros for faster bitmap handling
  Simplify read_range() code (#WL1786)
  New general key_cmp() function to compare keys
  
  

  sql/sql_select.cc
    1.216.71.1 04/05/16 14:48:25 monty@mishka.local +2 -2
    key_cmp -> key_cmp_if_same

  sql/sql_acl.cc
    1.74.18.1 04/05/16 14:48:25 monty@mishka.local +2 -2
    key_cmp -> key_cmp_if_same

  sql/opt_sum.cc
    1.35 04/05/16 14:48:25 monty@mishka.local +1 -1
    key_cmp -> key_cmp_if_same

  sql/opt_range.h
    1.28.1.6 04/05/16 14:48:25 monty@mishka.local +6 -1
    Added key_part_info to QUICK_SELECT to be able to use key_cmp() in get_next()

  sql/opt_range.cc
    1.98.1.18 04/05/16 14:48:25 monty@mishka.local +31 -50
    New records_in_range() interface
    Simplify cmp_prev()
    (We can in 5.0 simplify cmp_next() the same way)
    

  sql/mysql_priv.h
    1.186.71.4 04/05/16 14:48:25 monty@mishka.local +3 -2
    Prototypes for new functions

  sql/key.cc
    1.24 04/05/16 14:48:25 monty@mishka.local +74 -2
    Rename key_cmp() to key_cmp_if_same() to make it more descriptive
    Add new key_cmp() function usable from range and handler code.

  sql/handler.h
    1.89.8.1 04/05/16 14:48:25 monty@mishka.local +8 -17
    Move key_range to my_base.h to be used by external table handlers
    Simplify read_range() interface
    New records_in_range() interface

  sql/handler.cc
    1.103.4.1 04/05/16 14:48:25 monty@mishka.local +22 -44
    Simplify read_range() interface:
    - Add 'eq_range' to read_range_first
    - Remove 'eq_range' parameer from read_range_next()
    - Trust values from index_next_same()
    - Simplfy compare_key() by moving key_comparision to key.cc (as this code can be reused from other places)
    

  sql/ha_ndbcluster.h
    1.2.3.2 04/05/16 14:48:24 monty@mishka.local +1 -6
    New records_in_range() interface

  sql/ha_ndbcluster.cc
    1.3.3.1 04/05/16 14:48:24 monty@mishka.local +10 -13
    New records_in_range() interface

  sql/ha_myisammrg.h
    1.31 04/05/16 14:48:24 monty@mishka.local +1 -5
    New records_in_range() interface

  sql/ha_myisammrg.cc
    1.51 04/05/16 14:48:24 monty@mishka.local +5 -11
    New records_in_range() interface

  sql/ha_myisam.h
    1.56 04/05/16 14:48:24 monty@mishka.local +1 -5
    New records_in_range() interface

  sql/ha_myisam.cc
    1.115.1.26 04/05/16 14:48:24 monty@mishka.local +7 -19
    New records_in_range() interface

  sql/ha_isam.h
    1.25 04/05/16 14:48:24 monty@mishka.local +1 -5
    New records_in_range() interface

  sql/ha_isam.cc
    1.29 04/05/16 14:48:24 monty@mishka.local +13 -10
    New records_in_range() interface

  sql/ha_innodb.h
    1.57.1.6 04/05/16 14:48:24 monty@mishka.local +1 -5
    New records_in_range() interface

  sql/ha_innodb.cc
    1.90.1.37 04/05/16 14:48:24 monty@mishka.local +16 -25
    New records_in_range() interface

  sql/ha_heap.h
    1.26 04/05/16 14:48:24 monty@mishka.local +1 -4
    New records_in_range() interface

  sql/ha_heap.cc
    1.40 04/05/16 14:48:24 monty@mishka.local +13 -21
    New records_in_range() interface

  sql/ha_berkeley.h
    1.57.1.4 04/05/16 14:48:24 monty@mishka.local +1 -6
    New records_in_range() interface

  sql/ha_berkeley.cc
    1.117.1.15 04/05/16 14:48:24 monty@mishka.local +14 -15
    New records_in_range() interface

  sql/field.cc
    1.156 04/05/16 14:48:24 monty@mishka.local +5 -4
    Fixed indentation

  sql/examples/ha_example.cc
    1.5 04/05/16 14:48:23 monty@mishka.local +4 -7
    New records_in_range() interface

  mysys/my_bitmap.c
    1.17.1.1 04/05/16 14:48:23 monty@mishka.local +3 -3
    Make some bitmap functions inline for faster usage in one thread

  myisammrg/myrg_range.c
    1.3 04/05/16 14:48:23 monty@mishka.local +3 -8
    New records_in_range() interface

  myisam/sp_test.c
    1.9.1.1 04/05/16 14:48:23 monty@mishka.local +31 -53
    New records_in_range() interface
    Indentation fixes

  myisam/rt_test.c
    1.9.1.1 04/05/16 14:48:23 monty@mishka.local +29 -50
    New records_in_range() interface
    Indentation fixes

  myisam/mi_test2.c
    1.26 04/05/16 14:48:23 monty@mishka.local +18 -4
    New records_in_range() interface

  myisam/mi_range.c
    1.10.1.1 04/05/16 14:48:23 monty@mishka.local +44 -28
    New records_in_range() interface

  include/myisammrg.h
    1.15 04/05/16 14:48:23 monty@mishka.local +1 -4
    New records_in_range() interface

  include/myisam.h
    1.61 04/05/16 14:48:23 monty@mishka.local +1 -4
    New records_in_range() interface

  include/my_bitmap.h
    1.8.1.1 04/05/16 14:48:23 monty@mishka.local +6 -0
    Make some bitmap functions inline for faster usage in one thread

  include/my_base.h
    1.58 04/05/16 14:48:23 monty@mishka.local +10 -0
    Moved 'key_range' here so that all table handlers can use it

  include/heap.h
    1.19 04/05/16 14:48:23 monty@mishka.local +2 -5
    New records_in_range() interface

  heap/hp_hash.c
    1.30 04/05/16 14:48:23 monty@mishka.local +16 -21
    New records_in_range() interface

ChangeSet
  1.1616.405.1 04/05/15 16:13:08 Sinisa@sinisa.nasamreza.org +1 -0
  Optimising UNION ALL (WL 1687)

  sql/sql_union.cc
    1.74.23.1 04/05/15 16:13:02 Sinisa@sinisa.nasamreza.org +7 -3
    Optimising UNION ALL (WL 1687)

ChangeSet
  1.1616.395.2 04/05/15 17:07:44 hf@deer.(none) +5 -0
  Fixes for #3371, #3372, #3374, #3375, #3376

  tests/client_test.c
    1.51.12.1 04/05/15 17:07:41 hf@deer.(none) +3 -0
    this test fails if privilege-checking pars are disabled
    (it's the default for libmysqld)

  sql/sql_prepare.cc
    1.34.18.6 04/05/15 17:07:41 hf@deer.(none) +58 -0
    to fix #3774 and #3776
    special function for datetime values in embedded server added
    unsigned flag now specified for values in embedded server

  sql/sql_parse.cc
    1.271.71.7 04/05/15 17:07:41 hf@deer.(none) +1 -1
    to fix #3773
    silly mistake here :\

  libmysqld/lib_sql.cc
    1.75.1.32 04/05/15 17:07:41 hf@deer.(none) +5 -2
    to fix #3771 and #3775
    stmt->affected_rows specifying added
    code getting default values changed so it will add terminating /0 to
    values

  libmysql/libmysql.c
    1.156.1.75 04/05/15 17:07:41 hf@deer.(none) +30 -24
    code to fix #3772
    counting of field->max_length moved to mysql_store_stmt_result so
    it will work in libmysqld also

ChangeSet
  1.1616.399.3 04/05/15 11:20:42 serg@serg.mylan +3 -0
  bad old merge fixed

  sql/sql_select.cc
    1.216.70.1 04/05/15 11:20:37 serg@serg.mylan +0 -1
    bad old merge fixed

  mysql-test/t/order_by.test
    1.26 04/05/15 11:20:37 serg@serg.mylan +10 -0
    test for bug#3681

  mysql-test/r/order_by.result
    1.39 04/05/15 11:20:37 serg@serg.mylan +9 -0
    buggy results bug#3681

ChangeSet
  1.1616.404.1 04/05/15 11:57:40 monty@mysql.com +6 -0
  Better fix for bug #3749 (bug in deleting automatic generated foreign keys)

  tests/client_test.c
    1.51.1.33 04/05/15 11:57:39 monty@mysql.com +2 -3
    Added missing mysql_stmt_close()

  sql/sql_table.cc
    1.157.34.1 04/05/15 11:57:39 monty@mysql.com +9 -15
    Better fix for bug #3749 (bug in deleting automatic generated foreign keys)

  sql/sql_class.cc
    1.105.20.3 04/05/15 11:57:39 monty@mysql.com +1 -1
    Updated comment

  mysql-test/t/innodb.test
    1.58.1.1 04/05/15 11:57:39 monty@mysql.com +10 -0
    Added test for bug #3749 (bug in deleting automatic generated foreign keys)

  mysql-test/r/innodb.result
    1.87.1.1 04/05/15 11:57:38 monty@mysql.com +31 -0
    Added test for bug #3749 (bug in deleting automatic generated foreign keys)

  mysql-test/r/func_encrypt.result
    1.4.2.1 04/05/15 11:57:38 monty@mysql.com +6 -6
    Update tests (left after sanjas last push)

ChangeSet
  1.1616.400.8 04/05/15 11:20:43 bell@sanja.is.com.ua +3 -0
  results fix

  mysql-test/t/func_gconcat.test
    1.15 04/05/15 11:20:40 bell@sanja.is.com.ua +1 -1
    make results stable

  mysql-test/r/func_gconcat.result
    1.24 04/05/15 11:20:40 bell@sanja.is.com.ua +4 -4
    make results stable

  mysql-test/r/func_encrypt.result
    1.4.1.1 04/05/15 11:20:40 bell@sanja.is.com.ua +6 -6
    right SELECT print

ChangeSet
  1.1346.1.485 04/05/15 09:08:03 monty@mysql.com +3 -0
  Extra safety fixes (probably not needed, but can't hurt)

  sql/sql_show.cc
    1.76.1.47 04/05/15 09:08:02 monty@mysql.com +1 -2
    Simple optimization

  sql/sql_parse.cc
    1.218.1.150 04/05/15 09:08:02 monty@mysql.com +2 -1
    Extra safety fixes (probably not needed, but can't hurt)

  sql/ha_innodb.cc
    1.73.1.136 04/05/15 09:08:02 monty@mysql.com +3 -6
    simple optimization

ChangeSet
  1.1665.1.17 04/05/14 23:19:42 guilhem@mysql.com +4 -0
  a code fix (don't specify default value of argument twice), updating a line of SHOW SLAVE STATUS
  in tests after the last 4.1->5.0 merge, and:
  *** The same as ChangeSet@1.1822.1.1, 2004-05-14 23:08:03+02:00, guilhem@mysql.com of MySQL 4.0 ***
    Replication testsuite: making the master-slave synchronization less likely to fail,
    by adding sleep-and-retries (max 4 times) if MASTER_POS_WAIT() returns NULL
    in sync_with_master and sync_slave_with_master.
    The problem showed up only today, in MySQL 5.0 in rpl_server_id2.test,
    but may affect 4.x as well, so I fixed 4.x too. Note that I am also fixing
    5.0, with the same exact patch, because I don't want to leave 5.0 broken
    until the next 4.0->4.1->5.0 merge.

  sql/slave.cc
    1.212 04/05/14 23:18:48 guilhem@mysql.com +2 -2
    gcc compiler complained that the default value of skip_lock was specified in slave.h AND slave.cc

  mysql-test/t/rpl_server_id2.test
    1.3.1.1 04/05/14 23:18:48 guilhem@mysql.com +0 -1
     master_slave.inc already drops the table

  mysql-test/r/rpl_server_id2.result
    1.5 04/05/14 23:18:48 guilhem@mysql.com +1 -4
    result update

  client/mysqltest.c
    1.109 04/05/14 23:18:48 guilhem@mysql.com +18 -3
    in sync_with_master (and sync_slave_with_master), if MASTER_POS_WAIT() returns NULL,
    it may be that the slave SQL thread did not have time to start yes, so we sleep
    1 sec and retry, 4 times at most.

ChangeSet
  1.1346.617.1 04/05/14 23:08:03 guilhem@mysql.com +3 -0
  Replication testsuite: making the master-slave synchronization less likely to fail,
  by adding sleep-and-retries (max 4 times) if MASTER_POS_WAIT() returns NULL
  in sync_with_master and sync_slave_with_master.
  The problem showed up only today, in MySQL 5.0 in rpl_server_id2.test,
  but may affect 4.x as well, so fixing it here. Note that I am also fixing
  5.0 too, with the same exact patch, because I don't want to leave 5.0 broken
  until the next 4.0->4.1->5.0 merge.

  mysql-test/t/rpl_server_id2.test
    1.4 04/05/14 23:08:00 guilhem@mysql.com +0 -1
    master_slave.inc already drops the table

  mysql-test/r/rpl_server_id2.result
    1.3.1.1 04/05/14 23:08:00 guilhem@mysql.com +0 -1
    result update

  client/mysqltest.c
    1.77.1.38 04/05/14 23:07:59 guilhem@mysql.com +18 -3
    in sync_with_master (and sync_slave_with_master), if MASTER_POS_WAIT() returns NULL,
    it may be that the slave SQL thread did not have time to start yes, so we sleep
    1 sec and retry, 4 times at most.

ChangeSet
  1.1616.399.2 04/05/14 19:12:09 serg@serg.mylan +1 -0
  get rid of remaining strtolls - irix64 compatibility

  sql/sql_yacc.yy
    1.203.103.9 04/05/14 19:12:04 serg@serg.mylan +2 -2
    get rid of remaining strtolls - irix64 compatibility

ChangeSet
  1.1616.403.1 04/05/14 21:00:29 hf@deer.(none) +1 -0
  CXX linker specified for client_test with libmysqld

  libmysqld/examples/Makefile.am
    1.17 04/05/14 20:59:58 hf@deer.(none) +1 -0
    CXXLINK specified for client_test with libmysqld

ChangeSet
  1.1616.400.6 04/05/14 18:55:24 bell@sanja.is.com.ua +3 -0
  check of item name presence in find_item_in_list (Bug #3752)

  sql/sql_base.cc
    1.145.1.62 04/05/14 18:55:21 bell@sanja.is.com.ua +8 -1
    check of item name presence in find_item_in_list

  mysql-test/t/func_gconcat.test
    1.14 04/05/14 18:55:21 bell@sanja.is.com.ua +10 -0
    test of Bug #3752

  mysql-test/r/func_gconcat.result
    1.23 04/05/14 18:55:21 bell@sanja.is.com.ua +9 -0
    test of Bug #3752

ChangeSet
  1.1665.1.16 04/05/14 17:47:11 pem@mysql.comhem.se +2 -0
  Post-merge post-merge post fix. ;-)

  mysql-test/t/greedy_optimizer.test
    1.3 04/05/14 17:47:08 pem@mysql.com +1 -1
    Post-merge post-merge post fix. ;-)
    (Syntax errror in create table.)

  mysql-test/r/greedy_optimizer.result
    1.3 04/05/14 17:47:08 pem@mysql.com +1 -1
    Post-merge post-merge post fix. ;-)
    (Syntax errror in create table.)

ChangeSet
  1.1665.1.14 04/05/14 16:00:57 pem@mysql.comhem.se +19 -0
  Post-merge fixes.
  Note: One sp.test still fails (prime), and rpl_server_id2.test fails (will be fixed by guilhem ASAP).

  tests/client_test.c
    1.56 04/05/14 16:00:53 pem@mysql.com +1 -1
    Post-merge fix: key_len length in explain has changed.

  sql/sql_parse.cc
    1.336 04/05/14 16:00:53 pem@mysql.com +4 -0
    Post-merge fix: Need to set/reset select_limit at SP CALL time as well.

  sql/sp_head.cc
    1.73 04/05/14 16:00:53 pem@mysql.com +2 -2
    Got rid of warning (reordering initialization).

  sql/slave.h
    1.76 04/05/14 16:00:53 pem@mysql.com +5 -3
    Post-merge fixes with some help from Guilhem.

  sql/slave.cc
    1.211 04/05/14 16:00:53 pem@mysql.com +30 -9
    Post-merge fixes with some help from Guilhem.

  sql/opt_range.h
    1.39 04/05/14 16:00:53 pem@mysql.com +13 -1
    Manually merged by Monty.

  sql/opt_range.cc
    1.111.1.3 04/05/14 16:00:53 pem@mysql.com +223 -187
    Manually merged by Monty.

  mysql-test/t/sp-error.test
    1.38 04/05/14 16:00:53 pem@mysql.com +49 -49
    Post-merge fix of error codes.

  mysql-test/t/index_merge_innodb2.test
    1.3 04/05/14 16:00:53 pem@mysql.com +1 -1
    Fixed syntax error (no ',' after last index in create table any more).

  mysql-test/t/index_merge_innodb.test
    1.3 04/05/14 16:00:53 pem@mysql.com +1 -1
    Fixed syntax error (no ',' after last index in create table any more).

  mysql-test/t/index_merge_bdb.test
    1.3 04/05/14 16:00:52 pem@mysql.com +1 -1
    Fixed syntax error (no ',' after last index in create table any more).

  mysql-test/t/index_merge.test
    1.5 04/05/14 16:00:52 pem@mysql.com +2 -2
    Fixed syntax error (no ',' after last index in create table any more).

  mysql-test/r/variables.result
    1.45 04/05/14 16:00:52 pem@mysql.com +1 -1
    Update result after merge.

  mysql-test/r/sp-error.result
    1.38 04/05/14 16:00:52 pem@mysql.com +2 -2
    Update result after merge.

  mysql-test/r/rpl_server_id1.result
    1.4 04/05/14 16:00:52 pem@mysql.com +1 -1
    Update result after merge.

  mysql-test/r/index_merge_innodb2.result
    1.3 04/05/14 16:00:52 pem@mysql.com +1 -1
    Fixed syntax error (no ',' after last index in create table any more).

  mysql-test/r/index_merge_innodb.result
    1.4 04/05/14 16:00:52 pem@mysql.com +1 -1
    Fixed syntax error (no ',' after last index in create table any more).

  mysql-test/r/index_merge_bdb.result
    1.3 04/05/14 16:00:52 pem@mysql.com +1 -1
    Fixed syntax error (no ',' after last index in create table any more).

  mysql-test/r/index_merge.result
    1.7 04/05/14 16:00:52 pem@mysql.com +2 -2
    Fixed syntax error (no ',' after last index in create table any more).

ChangeSet
  1.1616.402.1 04/05/14 16:56:47 bell@sanja.is.com.ua +1 -0
  SELECT options print fixed

  sql/sql_select.cc
    1.216.69.1 04/05/14 16:56:45 bell@sanja.is.com.ua +1 -1
    SELECT options print fixed

ChangeSet
  1.1346.1.483 04/05/14 16:48:56 heikki@hundin.mysql.fi +7 -0
  Many files:
    Fix remaining cases of Bug #3596: fix possible races caused by an obsolete value of thd->query_length in SHOW PROCESSLIST and SHOW INNODB STATUS; this fix depends on the fact that thd->query is always set to NULL before setting it to point to a new query

  sql/sql_show.cc
    1.76.1.46 04/05/14 16:48:30 heikki@hundin.mysql.fi +5 -1
    Fix remaining cases of Bug #3596: fix possible races caused by an obsolete value of thd->query_length in SHOW PROCESSLIST and SHOW INNODB STATUS; this fix depends on the fact that thd->query is always set to NULL before setting it to point to a new query

  sql/sql_parse.cc
    1.218.1.149 04/05/14 16:48:30 heikki@hundin.mysql.fi +1 -0
    Fix remaining cases of Bug #3596: fix possible races caused by an obsolete value of thd->query_length in SHOW PROCESSLIST and SHOW INNODB STATUS; this fix depends on the fact that thd->query is always set to NULL before setting it to point to a new query

  sql/sql_db.cc
    1.39.1.32 04/05/14 16:48:30 heikki@hundin.mysql.fi +2 -0
    Fix remaining cases of Bug #3596: fix possible races caused by an obsolete value of thd->query_length in SHOW PROCESSLIST and SHOW INNODB STATUS; this fix depends on the fact that thd->query is always set to NULL before setting it to point to a new query

  sql/slave.cc
    1.164.1.113 04/05/14 16:48:30 heikki@hundin.mysql.fi +2 -0
    Fix remaining cases of Bug #3596: fix possible races caused by an obsolete value of thd->query_length in SHOW PROCESSLIST and SHOW INNODB STATUS; this fix depends on the fact that thd->query is always set to NULL before setting it to point to a new query

  sql/log_event.cc
    1.77.1.78 04/05/14 16:48:30 heikki@hundin.mysql.fi +1 -0
    Fix remaining cases of Bug #3596: fix possible races caused by an obsolete value of thd->query_length in SHOW PROCESSLIST and SHOW INNODB STATUS; this fix depends on the fact that thd->query is always set to NULL before setting it to point to a new query

  sql/ha_innodb.cc
    1.73.1.135 04/05/14 16:48:29 heikki@hundin.mysql.fi +4 -3
    Fix remaining cases of Bug #3596: fix possible races caused by an obsolete value of thd->query_length in SHOW PROCESSLIST and SHOW INNODB STATUS; this fix depends on the fact that thd->query is always set to NULL before setting it to point to a new query

  sql/sql_class.h
    1.111.1.65 04/05/14 16:48:18 heikki@hundin.mysql.fi +18 -1
    Fix remaining cases of Bug #3596: fix possible races caused by an obsolete value of thd->query_length in SHOW PROCESSLIST and SHOW INNODB STATUS; this fix depends on the fact that thd->query is always set to NULL before setting it to point to a new query

ChangeSet
  1.1616.401.1 04/05/14 16:06:21 marko@hundin.mysql.fi +27 -0
  InnoDB cleanup: eliminate IB__FILE__

  innobase/trx/trx0rec.c
    1.12 04/05/14 16:06:16 marko@hundin.mysql.fi +1 -1
    Replace IB__FILE__ with __FILE__

  innobase/sync/sync0sync.c
    1.27 04/05/14 16:06:16 marko@hundin.mysql.fi +7 -6
    Add const qualifiers

  innobase/sync/sync0rw.c
    1.14 04/05/14 16:06:16 marko@hundin.mysql.fi +6 -6
    Replace IB__FILE__ with __FILE__
    Add const qualifiers

  innobase/sync/sync0arr.c
    1.16 04/05/14 16:06:16 marko@hundin.mysql.fi +2 -2
    Add const qualifiers

  innobase/pars/pars0pars.c
    1.9 04/05/14 16:06:15 marko@hundin.mysql.fi +2 -1
    Add const qualifiers

  innobase/mem/mem0mem.c
    1.8 04/05/14 16:06:15 marko@hundin.mysql.fi +17 -17
    Add const qualifiers

  innobase/log/log0recv.c
    1.32 04/05/14 16:06:15 marko@hundin.mysql.fi +3 -3
    Replace IB__FILE__ with __FILE__

  innobase/lock/lock0lock.c
    1.31 04/05/14 16:06:15 marko@hundin.mysql.fi +1 -1
    Replace IB__FILE__ with __FILE__

  innobase/include/ut0dbg.h
    1.14 04/05/14 16:06:15 marko@hundin.mysql.fi +3 -3
    Replace IB__FILE__ with __FILE__

  innobase/include/univ.i
    1.34 04/05/14 16:06:15 marko@hundin.mysql.fi +0 -5
    Remove IB__FILE__

  innobase/include/sync0sync.ic
    1.14 04/05/14 16:06:15 marko@hundin.mysql.fi +4 -4
    Add const qualifiers

  innobase/include/sync0sync.h
    1.15 04/05/14 16:06:15 marko@hundin.mysql.fi +8 -8
    Replace IB__FILE__ with __FILE__
    Add const qualifiers

  innobase/include/sync0rw.ic
    1.8 04/05/14 16:06:15 marko@hundin.mysql.fi +11 -11
    Add const qualifiers

  innobase/include/sync0rw.h
    1.7 04/05/14 16:06:15 marko@hundin.mysql.fi +22 -22
    Replace IB__FILE__ with __FILE__
    Add const qualifiers

  innobase/include/sync0ipm.ic
    1.3 04/05/14 16:06:15 marko@hundin.mysql.fi +2 -2
    Replace IB__FILE__ with __FILE__

  innobase/include/sync0arr.h
    1.5 04/05/14 16:06:15 marko@hundin.mysql.fi +1 -1
    Add const qualifiers

  innobase/include/pars0pars.h
    1.5 04/05/14 16:06:15 marko@hundin.mysql.fi +1 -1
    Add const qualifiers

  innobase/include/mtr0mtr.ic
    1.3 04/05/14 16:06:15 marko@hundin.mysql.fi +2 -2
    Add const qualifiers

  innobase/include/mtr0mtr.h
    1.8 04/05/14 16:06:15 marko@hundin.mysql.fi +4 -4
    Replace IB__FILE__ with __FILE__
    Add const qualifiers

  innobase/include/mem0mem.ic
    1.8 04/05/14 16:06:15 marko@hundin.mysql.fi +48 -48
    Add const qualifiers

  innobase/include/mem0mem.h
    1.8 04/05/14 16:06:15 marko@hundin.mysql.fi +49 -47
    Replace IB__FILE__ with __FILE__
    Add const qualifiers

  innobase/include/buf0buf.ic
    1.15 04/05/14 16:06:15 marko@hundin.mysql.fi +1 -1
    Replace IB__FILE__ with __FILE__

  innobase/include/buf0buf.h
    1.22 04/05/14 16:06:15 marko@hundin.mysql.fi +7 -7
    Replace IB__FILE__ with __FILE__
    Add const qualifiers

  innobase/ibuf/ibuf0ibuf.c
    1.27 04/05/14 16:06:15 marko@hundin.mysql.fi +1 -1
    Replace IB__FILE__ with __FILE__

  innobase/buf/buf0buf.c
    1.34 04/05/14 16:06:15 marko@hundin.mysql.fi +4 -4
    Replace IB__FILE__ with __FILE__
    Add const qualifiers

  innobase/btr/btr0sea.c
    1.22 04/05/14 16:06:15 marko@hundin.mysql.fi +2 -2
    Replace IB__FILE__ with __FILE__

  innobase/btr/btr0cur.c
    1.34 04/05/14 16:06:15 marko@hundin.mysql.fi +3 -3
    Replace IB__FILE__ with __FILE__

ChangeSet
  1.1616.396.8 04/05/14 15:28:59 bell@sanja.is.com.ua +3 -0
  after merge fix

  sql/sql_union.cc
    1.74.1.46 04/05/14 15:28:56 bell@sanja.is.com.ua +1 -1
    after merge fix

  mysql-test/r/subselect.result
    1.67.1.56 04/05/14 15:28:56 bell@sanja.is.com.ua +1 -1
    after merge fix

  mysql-test/r/func_encrypt.result
    1.5 04/05/14 15:28:56 bell@sanja.is.com.ua +6 -6
    after merge fix

ChangeSet
  1.1616.400.2 04/05/14 14:23:46 marko@hundin.mysql.fi +3 -0
  InnoDB: ut0mem: Remove ut_str_catenate(), add const qualifiers

  innobase/ut/ut0mem.c
    1.19 04/05/14 14:19:33 marko@hundin.mysql.fi +0 -26
    Remove unused function ut_str_catenate()

  innobase/include/ut0mem.ic
    1.5 04/05/14 14:19:19 marko@hundin.mysql.fi +6 -6
    Add const qualifiers

  innobase/include/ut0mem.h
    1.13 04/05/14 14:16:21 marko@hundin.mysql.fi +5 -16
    Add const qualifiers and remove unused function ut_str_catenate()

ChangeSet
  1.1616.400.1 04/05/14 14:11:13 marko@hundin.mysql.fi +1 -0
  InnoDB: Disable file locking on FreeBSD

  innobase/os/os0file.c
    1.70 04/05/14 14:03:51 marko@hundin.mysql.fi +14 -5
    Disable os_file_lock() on FreeBSD

ChangeSet
  1.1616.399.1 04/05/14 12:49:18 serg@serg.mylan +3 -0
  better fix for bug#3749 - do not consider already removed keys in key removal process

  sql/sql_table.cc
    1.157.33.3 04/05/14 12:49:13 serg@serg.mylan +6 -13
    better fix for bug#3749 - do not consider already removed keys in key removal process

  mysql-test/t/innodb.test
    1.59 04/05/14 12:49:13 serg@serg.mylan +11 -1
    tests for bug#3749

  mysql-test/r/innodb.result
    1.88 04/05/14 12:49:13 serg@serg.mylan +24 -1
    tests for bug#3749

ChangeSet
  1.1616.364.2 04/05/14 13:28:20 bell@sanja.is.com.ua +1 -0
  UNCACHEABLE_EXPLAIN is enough

  sql/sql_select.cc
    1.216.67.2 04/05/14 13:28:17 bell@sanja.is.com.ua +1 -1
    UNCACHEABLE_EXPLAIN is enough

ChangeSet
  1.1346.1.482 04/05/14 12:26:12 marko@hundin.mysql.fi +2 -0
  InnoDB: Remove unused function ut_str_catenate()

  innobase/ut/ut0mem.c
    1.8.1.9 04/05/14 12:25:19 marko@hundin.mysql.fi +0 -26
    Remove unused function ut_str_catenate()

  innobase/include/ut0mem.h
    1.5.1.5 04/05/14 12:25:19 marko@hundin.mysql.fi +0 -11
    Remove unused function ut_str_catenate()

ChangeSet
  1.1616.398.1 04/05/14 11:09:57 bell@sanja.is.com.ua +1 -0
  fixed flags of printed query

  mysql-test/r/func_group.result
    1.29 04/05/14 11:09:54 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

ChangeSet
  1.1616.396.5 04/05/14 13:08:22 bar@bar.intranet.mysql.r18.ru +3 -0
  Bug #3403 Wrong encoding in EXPLAIN SELECT output

  sql/sql_select.cc
    1.216.68.4 04/05/14 13:08:18 bar@bar.intranet.mysql.r18.ru +3 -3
    Bug #3403 Wrong encoding in EXPLAIN SELECT output

  mysql-test/t/explain.test
    1.7 04/05/14 13:08:18 bar@bar.intranet.mysql.r18.ru +11 -0
    Bug #3403 Wrong encoding in EXPLAIN SELECT output

  mysql-test/r/explain.result
    1.15 04/05/14 13:08:18 bar@bar.intranet.mysql.r18.ru +9 -0
    Bug #3403 Wrong encoding in EXPLAIN SELECT output

ChangeSet
  1.1616.396.4 04/05/14 12:16:27 bar@bar.intranet.mysql.r18.ru +3 -0
  Bug #3403 Wrong encoding in SHOW GRANTS, EPLAIN SELECT output
  This change fixes SHOW GRANTS problem, while EXPLAIN will be fixed
  in a separate patch.

  sql/sql_acl.cc
    1.74.1.49 04/05/14 12:16:23 bar@bar.intranet.mysql.r18.ru +11 -7
    Bug #3403 Wrong encoding in SHOW GRANTS, EPLAIN SELECT output
    This change fixes SHOW GRANTS problem, while EXPLAIN will be fixed
    in a separate patch.

  mysql-test/t/grant.test
    1.16 04/05/14 12:16:23 bar@bar.intranet.mysql.r18.ru +23 -0
    Bug #3403 Wrong encoding in SHOW GRANTS, EPLAIN SELECT output
    This change fixes SHOW GRANTS problem, while EXPLAIN will be fixed
    in a separate patch.

  mysql-test/r/grant.result
    1.19 04/05/14 12:16:23 bar@bar.intranet.mysql.r18.ru +24 -0
    Bug #3403 Wrong encoding in SHOW GRANTS, EPLAIN SELECT output
    This change fixes SHOW GRANTS problem, while EXPLAIN will be fixed
    in a separate patch.

ChangeSet
  1.1616.396.3 04/05/14 09:02:06 heikki@hundin.mysql.fi +1 -0
  sql_table.cc:
    Fix bug #3749: if there were several indexs that made an automatically generated FOREIGN KEY index redundant, then MySQL miscalculated the number of keys, and the AUTO_INCREMENT flag was forgotten by MySQL from a PRIMARY KEY. There were probably a multitude of other errors caused by this.

  sql/sql_table.cc
    1.157.33.2 04/05/14 09:01:39 heikki@hundin.mysql.fi +16 -4
    Fix bug #3749: if there were several indexs that made an automatically generated FOREIGN KEY index redundant, then MySQL miscalculated the number of keys, and the AUTO_INCREMENT flag was forgotten by MySQL from a PRIMARY KEY. There were probably a multitude of other errors caused by this.

ChangeSet
  1.1616.397.1 04/05/14 01:24:17 serg@serg.mylan +1 -0
  compatibility fix for hp-ux 64bit (hpux compiler) and sun 64-bit (sun forte)

  strings/my_strtoll10.c
    1.8 04/05/14 01:24:09 serg@serg.mylan +7 -7
    compatibility fix for hp-ux 64bit (hpux compiler) and sun 64-bit (sun forte)

ChangeSet
  1.1616.396.1 04/05/13 23:47:20 bell@sanja.is.com.ua +39 -0
  fixed flags of printed query

  sql/sql_select.cc
    1.216.68.3 04/05/13 23:46:58 bell@sanja.is.com.ua +6 -6
    fixed flags of printed query

  mysql-test/r/variables.result
    1.21.1.25 04/05/13 23:46:58 bell@sanja.is.com.ua +3 -3
    fixed flags of printed query

  mysql-test/r/varbinary.result
    1.13 04/05/13 23:46:58 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/union.result
    1.46.5.1 04/05/13 23:46:58 bell@sanja.is.com.ua +2 -2
    fixed flags of printed query

  mysql-test/r/type_blob.result
    1.38 04/05/13 23:46:58 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/subselect.result
    1.67.53.1 04/05/13 23:46:58 bell@sanja.is.com.ua +46 -46
    fixed flags of printed query

  mysql-test/r/select.result
    1.37.1.1 04/05/13 23:46:58 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/rpl_master_pos_wait.result
    1.6 04/05/13 23:46:58 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/rpl_get_lock.result
    1.12 04/05/13 23:46:58 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/rpl000001.result
    1.26 04/05/13 23:46:58 bell@sanja.is.com.ua +2 -2
    fixed flags of printed query

  mysql-test/r/row.result
    1.18 04/05/13 23:46:58 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/query_cache.result
    1.26.1.21 04/05/13 23:46:58 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/olap.result
    1.11 04/05/13 23:46:58 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/null.result
    1.18.1.4 04/05/13 23:46:58 bell@sanja.is.com.ua +3 -3
    fixed flags of printed query

  mysql-test/r/insert_update.result
    1.9 04/05/13 23:46:58 bell@sanja.is.com.ua +2 -2
    fixed flags of printed query

  mysql-test/r/having.result
    1.10 04/05/13 23:46:57 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/group_by.result
    1.38 04/05/13 23:46:57 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/gis.result
    1.15 04/05/13 23:46:57 bell@sanja.is.com.ua +11 -11
    fixed flags of printed query

  mysql-test/r/func_time.result
    1.23.1.8 04/05/13 23:46:57 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/func_test.result
    1.24 04/05/13 23:46:57 bell@sanja.is.com.ua +6 -6
    fixed flags of printed query

  mysql-test/r/func_system.result
    1.17 04/05/13 23:46:57 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/func_str.result
    1.62 04/05/13 23:46:57 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/func_set.result
    1.10 04/05/13 23:46:57 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/func_regexp.result
    1.8 04/05/13 23:46:57 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/func_op.result
    1.8 04/05/13 23:46:57 bell@sanja.is.com.ua +2 -2
    fixed flags of printed query

  mysql-test/r/func_math.result
    1.18 04/05/13 23:46:57 bell@sanja.is.com.ua +13 -13
    fixed flags of printed query

  mysql-test/r/func_in.result
    1.12 04/05/13 23:46:57 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/func_if.result
    1.10 04/05/13 23:46:57 bell@sanja.is.com.ua +2 -2
    fixed flags of printed query

  mysql-test/r/func_gconcat.result
    1.22 04/05/13 23:46:57 bell@sanja.is.com.ua +3 -3
    fixed flags of printed query

  mysql-test/r/func_default.result
    1.3 04/05/13 23:46:57 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/func_crypt.result
    1.17 04/05/13 23:46:57 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/func_compress.result
    1.11 04/05/13 23:46:57 bell@sanja.is.com.ua +2 -2
    fixed flags of printed query

  mysql-test/r/fulltext.result
    1.60 04/05/13 23:46:57 bell@sanja.is.com.ua +2 -2
    fixed flags of printed query

  mysql-test/r/date_formats.result
    1.10 04/05/13 23:46:57 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/ctype_collate.result
    1.27 04/05/13 23:46:57 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/cast.result
    1.19 04/05/13 23:46:57 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/case.result
    1.14 04/05/13 23:46:57 bell@sanja.is.com.ua +3 -3
    fixed flags of printed query

  mysql-test/r/bench_count_distinct.result
    1.6 04/05/13 23:46:57 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

  mysql-test/r/auto_increment.result
    1.25 04/05/13 23:46:57 bell@sanja.is.com.ua +1 -1
    fixed flags of printed query

ChangeSet
  1.1346.1.481 04/05/13 22:07:51 heikki@hundin.mysql.fi +4 -0
  ha_innodb.cc, trx0trx.h, lock0lock.c, trx0trx.c:
  Reserve the MySQL LOCK_thread_count mutex when printing thd->query of
  an arbitrary transaction; if we are printing thd->query of a transaction that
  we know is currently executing inside InnoDB, then we know that MySQL cannot
  meanwhile change thd->query, and no need to reserve the MySQL mutex; note
  that this patch still leaves open the possibility of races in MySQL's
  thd->query_len

  sql/ha_innodb.cc
    1.73.1.134 04/05/13 22:01:11 heikki@hundin.mysql.fi +34 -14
    Reserve the MySQL LOCK_thread_count mutex when printing thd->query of an arbitrary transaction; if we are printing thd->query of the a transaction that we know is currently executing inside InnoDB, then we know that MySQL cannot meanwhile change thd->query, and no need to reserve the MySQL mutex; note that thsi patch still leaves aopen the possibility of races in MySQL's thd->query_len

  innobase/include/trx0trx.h
    1.30 04/05/13 22:00:54 heikki@hundin.mysql.fi +4 -2
    Reserve the MySQL LOCK_thread_count mutex when printing thd->query of an arbitrary transaction; if we are printing thd->query of the a transaction that we know is currently executing inside InnoDB, then we know that MySQL cannot meanwhile change thd->query, and no need to reserve the MySQL mutex; note that thsi patch still leaves aopen the possibility of races in MySQL's thd->query_len

  innobase/lock/lock0lock.c
    1.20.1.15 04/05/13 22:00:46 heikki@hundin.mysql.fi +34 -0
    Reserve the MySQL LOCK_thread_count mutex when printing thd->query of an arbitrary transaction; if we are printing thd->query of the a transaction that we know is currently executing inside InnoDB, then we know that MySQL cannot meanwhile change thd->query, and no need to reserve the MySQL mutex; note that thsi patch still leaves aopen the possibility of races in MySQL's thd->query_len

  innobase/trx/trx0trx.c
    1.20.1.18 04/05/13 22:00:36 heikki@hundin.mysql.fi +3 -1
    Reserve the MySQL LOCK_thread_count mutex when printing thd->query of an arbitrary transaction; if we are printing thd->query of the a transaction that we know is currently executing inside InnoDB, then we know that MySQL cannot meanwhile change thd->query, and no need to reserve the MySQL mutex; note that thsi patch still leaves aopen the possibility of races in MySQL's thd->query_len

ChangeSet
  1.1616.374.25 04/05/13 19:49:10 mronstrom@mysql.com +2 -0
  Snippet from the Internet:
  Common Symbols
  
  If you get errors in linking complaining about common symbols
  ld: common symbols not allowed with MH_DYLIB format
  
  Then it means that you've got a global variable in the library which has
  not been assigned a value.
  
  Got this problem with three globals in NdbDaemon.c

  BitKeeper/etc/logging_ok
    1.233.1.67 04/05/13 19:49:08 mronstrom@mysql.com +1 -0
    Logging to logging@openlogging.org accepted

  ndb/src/common/portlib/unix/NdbDaemon.c
    1.7 04/05/13 19:47:46 mronstrom@mysql.com +3 -3
    Snippet from the Internet:
    Common Symbols
    
    If you get errors in linking complaining about common symbols
    ld: common symbols not allowed with MH_DYLIB format
    
    Then it means that you've got a global variable in the library which has
    not been assigned a value.
    
    Got this problem with three globals in NdbDaemon.c

ChangeSet
  1.1346.616.1 04/05/13 20:02:05 heikki@hundin.mysql.fi +1 -0
  ha_innodb.cc:
    A flawed fix of the thd->query race in SHOW INNODB STATUS; see the comments in code about how to fix this properly; we cannot use LOCK_thread_count to protect thd->query, because that will cause a deadlock of threads

  sql/ha_innodb.cc
    1.73.1.133 04/05/13 20:01:06 heikki@hundin.mysql.fi +26 -4
    A flawed fix of the thd->query race in SHOW INNODB STATUS; see the comments in code about how to fix this properly; we cannot use LOCK_thread_count to protect thd->query, because that will cause a deadlock of threads

ChangeSet
  1.1346.615.1 04/05/13 18:50:09 lenz@mysql.com +1 -0
   - make sure the binaries are executable before calling them during
     make_binary_distribution (bug#2857)

  scripts/make_binary_distribution.sh
    1.49.1.7 04/05/13 18:50:07 lenz@mysql.com +1 -0
     - make sure the binaries are executable before calling them (bug#2857)

ChangeSet
  1.1616.374.24 04/05/13 15:58:28 tomas@mc05.(none) +1 -0
  portability fix

  ndb/src/ndbapi/Ndb.cpp
    1.6 04/05/13 15:58:25 tomas@mc05.(none) +1 -1
    portability fix

ChangeSet
  1.1616.374.23 04/05/13 15:41:20 tomas@mc05.(none) +6 -0
  portability fixes and some comments

  ndb/src/mgmclient/CommandInterpreter.cpp
    1.4 04/05/13 15:41:17 tomas@mc05.(none) +22 -6
    portability fixes and some comments

  ndb/src/kernel/ndb-main/Main.cpp
    1.9 04/05/13 15:41:17 tomas@mc05.(none) +3 -3
    portability fixes and some comments

  ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp
    1.5 04/05/13 15:41:17 tomas@mc05.(none) +6 -4
    portability fixes and some comments

  ndb/src/common/portlib/unix/NdbThread.c
    1.7 04/05/13 15:41:17 tomas@mc05.(none) +3 -4
    portability fixes and some comments

  ndb/src/client/odbc/common/common.hpp
    1.2 04/05/13 15:41:17 tomas@mc05.(none) +1 -1
    portability fixes and some comments

  ndb/include/portlib/PortDefs.h
    1.2 04/05/13 15:41:17 tomas@mc05.(none) +1 -1
    portability fixes and some comments

ChangeSet
  1.1346.1.478 04/05/13 16:18:39 marko@hundin.mysql.fi +1 -0
  ha_innodb.cc:
    innobase_mysql_print_thd(): protect thd with LOCK_thread_count (Bug #3596)

  sql/ha_innodb.cc
    1.73.1.132 04/05/13 16:15:21 marko@hundin.mysql.fi +9 -2
    innobase_mysql_print_thd(): protect thd with LOCK_thread_count

ChangeSet
  1.1346.1.477 04/05/13 15:51:02 marko@hundin.mysql.fi +1 -0
  InnoDB: fixed bug in dict0dict.c: dict_index_name_print()

  innobase/dict/dict0dict.c
    1.26.1.25 04/05/13 15:49:07 marko@hundin.mysql.fi +1 -1
    dict_index_name_print(): output table name to file, not stderr

ChangeSet
  1.1346.1.476 04/05/13 15:28:56 marko@hundin.mysql.fi +1 -0
  InnoDB: Remove os_file_lock() from the 4.0 tree (unfix Bug #3608)

  innobase/os/os0file.c
    1.44.1.24 04/05/13 15:28:53 marko@hundin.mysql.fi +0 -41
    Remove os_file_lock()

ChangeSet
  1.1616.374.20 04/05/13 13:44:45 tomas@mc05.(none) +2 -0
  portability fix for MACOSX bugreport 3735

  ndb/src/ndbapi/Makefile
    1.5 04/05/13 13:44:20 tomas@mc05.(none) +1 -1
    portability fix for MACOSX bugreport 3735

ChangeSet
  1.1616.393.1 04/05/13 13:42:36 tomas@mc05.(none) +3 -0
  portability fixes

  ndb/src/common/portlib/unix/NdbMem.c
    1.8 04/05/13 13:42:34 tomas@mc05.(none) +6 -6
    portability fixes

  ndb/include/ndb_types.h
    1.5 04/05/13 13:42:34 tomas@mc05.(none) +8 -2
    portability fixes

  ndb/Defs.mk
    1.5 04/05/13 13:42:34 tomas@mc05.(none) +0 -1
    portability fixes

  ndb/src/ndbapi/Ndberr.cpp
    1.7 04/05/13 13:39:20 tomas@mc05.(none) +0 -0
    Rename: ndb/src/ndbapi/Ndberror.cpp -> ndb/src/ndbapi/Ndberr.cpp

ChangeSet
  1.1665.7.2 04/05/13 13:29:18 pem@mysql.comhem.se +1 -0
  Fixed comment for prime test.
  (Again, mostly to test sendmail replacement for tunneling.)

  mysql-test/t/sp.test
    1.62 04/05/13 13:29:16 pem@mysql.com +6 -5
    Fixed comment for prime test.

ChangeSet
  1.1665.7.1 04/05/13 13:08:16 pem@mysql.comhem.se +1 -0
  Added comment about expected result for prime test.
  (This is mostly to test sendmail tunneling of commit email...
   might not actually get pushed)

  mysql-test/t/sp.test
    1.61 04/05/13 13:08:13 pem@mysql.com +5 -0
    Added comment about expected result for prime test.

ChangeSet
  1.1616.1.212 04/05/13 11:56:45 magnus@neptunus.(none) +27 -0
  WL #1729 Handler: error text for NDB errors
  - New solution after discussions with Sergei, no handler specific code or error messages should be in sql layer.
  next_result, only check for error if check is -1
  Improved index_read 

  sql/share/ukrainian/errmsg.txt
    1.27.1.50 04/05/13 11:56:43 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/swedish/errmsg.txt
    1.64.1.52 04/05/13 11:56:43 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/spanish/errmsg.txt
    1.64.1.54 04/05/13 11:56:43 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/slovak/errmsg.txt
    1.64.1.53 04/05/13 11:56:43 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/serbian/errmsg.txt
    1.18.1.48 04/05/13 11:56:43 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/russian/errmsg.txt
    1.61.1.51 04/05/13 11:56:43 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/romanian/errmsg.txt
    1.62.1.53 04/05/13 11:56:43 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/portuguese/errmsg.txt
    1.64.1.52 04/05/13 11:56:43 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/polish/errmsg.txt
    1.63.1.53 04/05/13 11:56:43 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/norwegian/errmsg.txt
    1.63.1.54 04/05/13 11:56:43 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/norwegian-ny/errmsg.txt
    1.63.1.53 04/05/13 11:56:43 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/korean/errmsg.txt
    1.63.1.53 04/05/13 11:56:43 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/italian/errmsg.txt
    1.70.1.53 04/05/13 11:56:43 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/hungarian/errmsg.txt
    1.65.1.52 04/05/13 11:56:43 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/greek/errmsg.txt
    1.64.1.52 04/05/13 11:56:43 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/german/errmsg.txt
    1.64.1.49 04/05/13 11:56:43 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/french/errmsg.txt
    1.63.1.53 04/05/13 11:56:42 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/estonian/errmsg.txt
    1.64.1.52 04/05/13 11:56:42 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/english/errmsg.txt
    1.70.1.57 04/05/13 11:56:42 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/dutch/errmsg.txt
    1.66.1.52 04/05/13 11:56:42 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/danish/errmsg.txt
    1.62.1.52 04/05/13 11:56:42 magnus@neptunus.(none) +2 -2
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/share/czech/errmsg.txt
    1.64.1.53 04/05/13 11:56:42 magnus@neptunus.(none) +2 -0
    Error message for ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG

  sql/handler.h
    1.89.1.19 04/05/13 11:56:42 magnus@neptunus.(none) +1 -0
    Add new function get_error_message

  sql/handler.cc
    1.103.1.22 04/05/13 11:56:42 magnus@neptunus.(none) +30 -1
    Add new function get_error_message usedc to ask handler for a message for an error.
    Call get_error_message from print_error if error code is not known. 

  sql/ha_ndbcluster.h
    1.9 04/05/13 11:56:42 magnus@neptunus.(none) +1 -1
    Remplace print_error with get_error_message

  sql/ha_ndbcluster.cc
    1.11 04/05/13 11:56:42 magnus@neptunus.(none) +43 -31
    Removed print_error from ha_ndbcluster, added code to handler::print_error to ask  handler::get_error_message for message for an error.
    Fix bug in next_result, only check for error if -1 is returned.
    Make index_read easier, special case where pk_read or unique_index_read is detected and as default do ordered_index_scan

  include/mysqld_error.h
    1.61.1.40 04/05/13 11:56:42 magnus@neptunus.(none) +3 -3
    New error codes ER_GET_ERRMSG and ER_GET_TEMPORARY_ERRMSG, update number to 298.
    Removed prevoius ER_NDB_ERROR, handler specific error should not be here. 

ChangeSet
  1.1665.6.1 04/05/13 15:46:02 wax@kishkin.ru +1 -0
  SCRUM
  add option --local-service when service is installed

  sql/mysqld.cc
    1.379.1.3 04/05/13 15:45:36 wax@mysql.com +38 -13
    Changed code of a resolve inline options when service is installed

ChangeSet
  1.1616.1.211 04/05/13 11:21:56 magnus@neptunus.(none) +1 -0
  Fix for sql-bench/test-create

  sql-bench/server-cfg.sh
    1.49 04/05/13 11:21:52 magnus@neptunus.(none) +1 -0
    Set max number of tables to create in NDB to 32

ChangeSet
  1.1616.392.1 04/05/13 10:30:42 hf@deer.(none) +2 -0
  client_test with embedded library will be built so one can check if he broke
  something in embedded PS

  libmysqld/examples/Makefile.am
    1.16 04/05/13 10:30:40 hf@deer.(none) +9 -1
    tests/client_test is now symlinked to libmysqld/examples catalog
    then it's built with libmysqld.a

  BitKeeper/etc/ignore
    1.153.1.32 04/05/13 10:30:40 hf@deer.(none) +1 -0
    Added libmysqld/examples/client_test.c to the ignore list

ChangeSet
  1.1665.4.6 04/05/13 04:50:54 sergefp@mysql.com +3 -0
  Post-merge fixes (code review fixes will follow)

  mysql-test/r/rowid_order_innodb.result
    1.2 04/05/13 04:50:50 sergefp@mysql.com +1 -1
    Post-merge fixes

  mysql-test/r/index_merge_ror_cpk.result
    1.2 04/05/13 04:50:50 sergefp@mysql.com +5 -5
    Post-merge fixes

  include/my_base.h
    1.53.2.2 04/05/13 04:50:50 sergefp@mysql.com +1 -1
    Post-merge fixes

ChangeSet
  1.1644.7.1 04/05/13 01:38:40 sergefp@mysql.com +28 -0
  This is first cset for WL#1394 "Optimize index merge when all involved index ranges include only values with equal keys"
  The main idea is to exploit the fact that key scans for "key=const" return ordered sequences of rowids.

  mysql-test/t/rowid_order_innodb.test
    1.1 04/05/13 01:38:02 sergefp@mysql.com +108 -0

  mysql-test/t/rowid_order_bdb.test
    1.1 04/05/13 01:38:02 sergefp@mysql.com +108 -0

  mysql-test/t/index_merge_ror_cpk.test
    1.1 04/05/13 01:38:02 sergefp@mysql.com +81 -0

  mysql-test/t/rowid_order_innodb.test
    1.0 04/05/13 01:38:02 sergefp@mysql.com +0 -0
    BitKeeper file /dbdata/psergey/mysql-5.0-wl1394-may/mysql-test/t/rowid_order_innodb.test

  mysql-test/t/rowid_order_bdb.test
    1.0 04/05/13 01:38:02 sergefp@mysql.com +0 -0
    BitKeeper file /dbdata/psergey/mysql-5.0-wl1394-may/mysql-test/t/rowid_order_bdb.test

  mysql-test/t/index_merge_ror_cpk.test
    1.0 04/05/13 01:38:02 sergefp@mysql.com +0 -0
    BitKeeper file /dbdata/psergey/mysql-5.0-wl1394-may/mysql-test/t/index_merge_ror_cpk.test

  mysql-test/t/index_merge_ror.test
    1.1 04/05/13 01:38:01 sergefp@mysql.com +215 -0

  mysql-test/r/rowid_order_innodb.result
    1.1 04/05/13 01:38:01 sergefp@mysql.com +186 -0

  mysql-test/r/rowid_order_bdb.result
    1.1 04/05/13 01:38:01 sergefp@mysql.com +186 -0

  mysql-test/r/index_merge_ror_cpk.result
    1.1 04/05/13 01:38:01 sergefp@mysql.com +93 -0

  mysql-test/r/index_merge_ror.result
    1.1 04/05/13 01:38:01 sergefp@mysql.com +168 -0

  sql/sql_update.cc
    1.102.1.1 04/05/13 01:38:01 sergefp@mysql.com +10 -31
    Account for new quick select types

  sql/sql_test.cc
    1.32.2.1 04/05/13 01:38:01 sergefp@mysql.com +2 -31
    Account for new quick select types

  sql/sql_select.h
    1.64.1.1 04/05/13 01:38:01 sergefp@mysql.com +1 -1
    New, proper rowid ordering/comparison function to be used with Unique class etc.

  mysql-test/t/index_merge_ror.test
    1.0 04/05/13 01:38:01 sergefp@mysql.com +0 -0
    BitKeeper file /dbdata/psergey/mysql-5.0-wl1394-may/mysql-test/t/index_merge_ror.test

  mysql-test/r/rowid_order_innodb.result
    1.0 04/05/13 01:38:01 sergefp@mysql.com +0 -0
    BitKeeper file /dbdata/psergey/mysql-5.0-wl1394-may/mysql-test/r/rowid_order_innodb.result

  mysql-test/r/rowid_order_bdb.result
    1.0 04/05/13 01:38:01 sergefp@mysql.com +0 -0
    BitKeeper file /dbdata/psergey/mysql-5.0-wl1394-may/mysql-test/r/rowid_order_bdb.result

  mysql-test/r/index_merge_ror_cpk.result
    1.0 04/05/13 01:38:01 sergefp@mysql.com +0 -0
    BitKeeper file /dbdata/psergey/mysql-5.0-wl1394-may/mysql-test/r/index_merge_ror_cpk.result

  mysql-test/r/index_merge_ror.result
    1.0 04/05/13 01:38:01 sergefp@mysql.com +0 -0
    BitKeeper file /dbdata/psergey/mysql-5.0-wl1394-may/mysql-test/r/index_merge_ror.result

  sql/sql_select.cc
    1.235.1.1 04/05/13 01:38:00 sergefp@mysql.com +28 -48
    Account for new quick select types

  sql/sql_delete.cc
    1.114.1.1 04/05/13 01:38:00 sergefp@mysql.com +11 -5
    Changed to use new ROWID comparison function
    also always call quick->reset() for quick selects 

  sql/opt_range.h
    1.34.1.1 04/05/13 01:38:00 sergefp@mysql.com +149 -14
    Added QUICK_ROR_{INTERSECT,UNION}_SELECT classes

  sql/opt_range.cc
    1.110.2.1 04/05/13 01:38:00 sergefp@mysql.com +2170 -359
    Added QUICK_ROR_{INTERSECT,UNION}_SELECT classes and related optimizer code 

  sql/handler.h
    1.95.1.1 04/05/13 01:38:00 sergefp@mysql.com +5 -0
    Added cmp_ref rowid comparison function.

  sql/ha_innodb.h
    1.59.1.1 04/05/13 01:38:00 sergefp@mysql.com +1 -0
    Added cmp_ref rowid comparison function.

  sql/ha_innodb.cc
    1.101.1.1 04/05/13 01:38:00 sergefp@mysql.com +57 -0
    Added cmp_ref rowid comparison function and support from HA_EXTRA_KEYREAD_PRESERVE_FIELDS

  sql/ha_heap.h
    1.22.1.1 04/05/13 01:38:00 sergefp@mysql.com +6 -1
    Added cmp_ref rowid comparison function.

  sql/ha_berkeley.h
    1.59.1.1 04/05/13 01:38:00 sergefp@mysql.com +1 -0
    Added cmp_ref rowid comparison function.

  sql/ha_berkeley.cc
    1.121.1.1 04/05/13 01:38:00 sergefp@mysql.com +25 -0
    Added cmp_ref rowid comparison function.

  mysys/my_bitmap.c
    1.18 04/05/13 01:38:00 sergefp@mysql.com +56 -0
    Added a couple of utility functions

  mysys/my_bit.c
    1.4 04/05/13 01:38:00 sergefp@mysql.com +5 -0
    Added my_count_bits_ushort function

  innobase/row/row0sel.c
    1.41.1.1 04/05/13 01:38:00 sergefp@mysql.com +28 -3
    Added support for HA_EXTRA_KEYREAD_PRESERVE_FIELDS 

  innobase/include/row0mysql.h
    1.18.1.1 04/05/13 01:38:00 sergefp@mysql.com +4 -0
    Added support for HA_EXTRA_KEYREAD_PRESERVE_FIELDS 

  include/my_sys.h
    1.117.1.1 04/05/13 01:38:00 sergefp@mysql.com +1 -0
    Added my_conunt_bits_ushort function

  include/my_bitmap.h
    1.9 04/05/13 01:38:00 sergefp@mysql.com +2 -0
    Added a couple of utility functions

  include/my_base.h
    1.50.1.1 04/05/13 01:38:00 sergefp@mysql.com +7 -1
    Added HA_EXTRA_KEYREAD_PRESERVE_FIELDS flag

ChangeSet
  1.1616.390.5 04/05/12 20:58:35 joreland@mysql.com +1 -0
  Only compile SHM if configured to

  ndb/src/common/transporter/Makefile
    1.2.1.1 04/05/12 20:58:33 joreland@mysql.com +1 -1
    Only compile SHM if configured to

ChangeSet
  1.1616.391.1 04/05/12 16:15:43 tulin@build.mysql.com +1 -0
  regression.sh:
    fixed typo

  ndb/bin/regression.sh
    1.1.1.1 04/05/12 16:13:18 tulin@build.mysql.com +1 -1
    fixed typo

ChangeSet
  1.1346.1.475 04/05/12 16:44:53 marko@hundin.mysql.fi +1 -0
  InnoDB: avoid some data races in innobase_mysql_print_thd() (Bug #3596)

  sql/ha_innodb.cc
    1.73.1.131 04/05/12 16:42:40 marko@hundin.mysql.fi +7 -6
    innobase_mysql_print_thd(): initial fix to Bug #3596

ChangeSet
  1.1616.374.17 04/05/12 14:16:04 tomas@mc05.(none) +2 -0
  Daemon code to run on all unixes

  ndb/src/common/portlib/win32/NdbDaemon.c
    1.2 04/05/12 14:16:00 tomas@mc05.(none) +5 -2
    Daemon code to run on all unixes

  ndb/src/common/portlib/unix/NdbDaemon.c
    1.6 04/05/12 14:16:00 tomas@mc05.(none) +3 -3
    Daemon code to run on all unixes

ChangeSet
  1.1616.374.16 04/05/12 12:24:16 tomas@mc05.(none) +1 -0
  NdbMutex.h:
    oops forgot this one

  ndb/include/portlib/NdbMutex.h
    1.4 04/05/12 12:23:59 tomas@mc05.(none) +1 -1
    oops forgot this one

ChangeSet
  1.1616.390.1 04/05/12 12:17:24 ejonore@mc03.ndb.mysql.com +1 -0
  Fix broken arg fot getrlimit

  ndb/src/cw/cpcd/Process.cpp
    1.9 04/05/12 12:16:48 ejonore@mc03.ndb.mysql.com +20 -16
    Fix broken arg for getrlimit

ChangeSet
  1.1616.374.14 04/05/12 12:14:54 tomas@mc05.(none) +14 -0
  portability/autoconf fixes

  ndb/src/rep/Makefile
    1.2 04/05/12 12:14:51 tomas@mc05.(none) +0 -2
    portability/autoconf fixes

  ndb/src/ndbapi/Ndb.cpp
    1.5 04/05/12 12:14:51 tomas@mc05.(none) +2 -1
    portability/autoconf fixes

  ndb/src/mgmsrv/MgmtSrvr.cpp
    1.4 04/05/12 12:14:51 tomas@mc05.(none) +1 -1
    postability/autoconf fixes

  ndb/src/mgmsrv/Makefile
    1.2 04/05/12 12:14:51 tomas@mc05.(none) +0 -2
    portability/autoconf fixes

  ndb/src/kernel/ndb-main/Main.cpp
    1.8 04/05/12 12:14:51 tomas@mc05.(none) +0 -5
    portability/autoconf fixes

  ndb/src/common/transporter/SHM_Transporter.cpp
    1.4 04/05/12 12:14:50 tomas@mc05.(none) +1 -3
    postability/autoconf fixes

  ndb/src/common/transporter/Makefile
    1.3 04/05/12 12:14:50 tomas@mc05.(none) +1 -1
    postability/autoconf fixes

  ndb/src/common/portlib/unix/NdbThread.c
    1.6 04/05/12 12:14:50 tomas@mc05.(none) +1 -1
    postability/autoconf fixes

  ndb/src/common/portlib/unix/NdbTCP.c
    1.2 04/05/12 12:14:50 tomas@mc05.(none) +16 -10
    postability/autoconf fixes

  ndb/src/common/portlib/memtest/memtest.c
    1.4 04/05/12 12:14:50 tomas@mc05.(none) +1 -2
    postability/autoconf fixes

  ndb/src/common/portlib/Makefile
    1.2 04/05/12 12:14:50 tomas@mc05.(none) +5 -27
    portability/autoconf fixes

  ndb/src/common/editline/unix.h
    1.2 04/05/12 12:14:50 tomas@mc05.(none) +1 -2
    postability/autoconf fixes

  ndb/include/portlib/NdbMutex.h
    1.3 04/05/12 12:14:50 tomas@mc05.(none) +0 -1
    postability/autoconf fixes

  ndb/config/Defs.LINUX.x86.GCC.mk
    1.4 04/05/12 12:14:50 tomas@mc05.(none) +7 -3
    postability/autoconf fixes

ChangeSet
  1.1616.373.2 04/05/12 12:27:43 bell@sanja.is.com.ua +1 -0
  used item method (Bug #3686)

  sql/sql_select.cc
    1.216.68.2 04/05/12 12:27:41 bell@sanja.is.com.ua +1 -2
    used item method (Bug #3686)

ChangeSet
  1.1346.1.474 04/05/12 10:40:04 marko@hundin.mysql.fi +1 -0
  eval0eval.c:
    Backport suppression of MSVC++ warning from 4.1

ChangeSet
  1.1616.374.13 04/05/12 09:27:59 tomas@mc05.(none) +9 -0
  portability/autoconf fixes

  ndb/test/src/HugoAsynchTransactions.cpp
    1.2 04/05/12 09:27:55 tomas@mc05.(none) +4 -0
    portability/autoconf fixes

  ndb/src/kernel/ndb-main/Main.cpp
    1.7 04/05/12 09:27:55 tomas@mc05.(none) +3 -1
    portability/autoconf fixes

  ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp
    1.4 04/05/12 09:27:55 tomas@mc05.(none) +7 -3
    portability/autoconf fixes

  ndb/src/common/transporter/TransporterInternalDefinitions.hpp
    1.2 04/05/12 09:27:55 tomas@mc05.(none) +7 -28
    portability/autoconf fixes

  ndb/src/common/transporter/Makefile
    1.2 04/05/12 09:27:55 tomas@mc05.(none) +3 -22
    portability/autoconf fixes

  ndb/include/portlib/NdbTCP.h
    1.5 04/05/12 09:27:55 tomas@mc05.(none) +15 -17
    portability/autoconf fixes

  ndb/include/ndb_global.h
    1.7 04/05/12 09:27:55 tomas@mc05.(none) +7 -1
    portability/autoconf fixes

  ndb/config/GuessConfig.sh
    1.4 04/05/12 09:27:55 tomas@mc05.(none) +5 -0
    portability/autoconf fixes

  ndb/Defs.mk
    1.4 04/05/12 09:27:55 tomas@mc05.(none) +5 -1
    portability/autoconf fixes

  innobase/eval/eval0eval.c
    1.4.1.1 04/05/12 10:12:02 marko@hundin.mysql.fi +1 -1
    Backport suppression of MSVC++ warning from 4.1

ChangeSet
  1.1665.5.1 04/05/12 09:52:35 timour@mysql.com +1 -0
  Moved the declaration of status variable Last_query_cost to follow alphabetic order.

  sql/mysqld.cc
    1.379.1.2 04/05/12 09:52:32 timour@mysql.com +1 -1
    Moved the declaration of status variable Last_query_cost to follow alphabetic order.

ChangeSet
  1.1616.388.1 04/05/12 06:24:12 tomas@mc05.(none) +31 -0
  portability/autoconf fixes and removed warnings

  ndb/tools/cpcc/cpcc.cpp
    1.2.1.1 04/05/12 06:24:09 tomas@mc05.(none) +1 -1
    removed warnings

  ndb/test/src/NdbRestarter.cpp
    1.2.1.1 04/05/12 06:24:09 tomas@mc05.(none) +2 -2
    removed warnings

  ndb/test/src/NdbConfig.cpp
    1.2.1.1 04/05/12 06:24:09 tomas@mc05.(none) +0 -2
    removed warnings

  ndb/test/src/NdbBackup.cpp
    1.2.1.1 04/05/12 06:24:09 tomas@mc05.(none) +0 -1
    removed warnings

  ndb/test/src/NDBT_ResultRow.cpp
    1.3.1.1 04/05/12 06:24:09 tomas@mc05.(none) +3 -1
    removed warnings

  ndb/test/src/HugoTransactions.cpp
    1.3 04/05/12 06:24:09 tomas@mc05.(none) +4 -2
    removed warnings

  ndb/test/src/HugoOperations.cpp
    1.2 04/05/12 06:24:09 tomas@mc05.(none) +3 -3
    removed warnings

  ndb/test/src/HugoCalculator.cpp
    1.2.1.1 04/05/12 06:24:09 tomas@mc05.(none) +1 -1
    removed warnings

  ndb/test/ndbapi/flexBench/flexBench.cpp
    1.2.1.1 04/05/12 06:24:09 tomas@mc05.(none) +15 -15
    removed warnings

  ndb/src/mgmsrv/main.cpp
    1.3 04/05/12 06:24:08 tomas@mc05.(none) +2 -3
    portability/autoconf fixes

  ndb/src/mgmsrv/MgmtSrvr.cpp
    1.3 04/05/12 06:24:08 tomas@mc05.(none) +3 -5
    portability/autoconf fixes

  ndb/src/kernel/ndb-main/Main.cpp
    1.4.1.1 04/05/12 06:24:08 tomas@mc05.(none) +0 -3
    portability/autoconf fixes

  ndb/src/kernel/error/TimeModule.cpp
    1.2 04/05/12 06:24:08 tomas@mc05.(none) +1 -1
    portability/autoconf fixes

  ndb/src/kernel/blocks/ndbfs/AsyncFileTest/AsyncFileTest.cpp
    1.2 04/05/12 06:24:08 tomas@mc05.(none) +1 -3
    portability/autoconf fixes

  ndb/src/kernel/blocks/dbdih/printSysfile/printSysfile.cpp
    1.2.1.1 04/05/12 06:24:08 tomas@mc05.(none) +0 -1
    portability/autoconf fixes

  ndb/src/kernel/blocks/dbdict/printSchemafile/printSchemafile.cpp
    1.2.1.1 04/05/12 06:24:08 tomas@mc05.(none) +0 -1
    portability/autoconf fixes

  ndb/src/cw/cpcd/main.cpp
    1.2 04/05/12 06:24:08 tomas@mc05.(none) +1 -3
    portability/autoconf fixes

  ndb/src/cw/cpcd/common.cpp
    1.3 04/05/12 06:24:08 tomas@mc05.(none) +2 -2
    portability/autoconf fixes

  ndb/src/cw/cpcd/Process.cpp
    1.6.1.1 04/05/12 06:24:08 tomas@mc05.(none) +0 -3
    portability/autoconf fixes

  ndb/src/common/util/strlcpy.c
    1.2.1.1 04/05/12 06:24:08 tomas@mc05.(none) +0 -5
    portability/autoconf fixes

  ndb/src/common/util/strlcat.c
    1.5.1.1 04/05/12 06:24:08 tomas@mc05.(none) +0 -1
    portability/autoconf fixes

  ndb/src/common/util/getarg.c
    1.4.1.1 04/05/12 06:24:08 tomas@mc05.(none) +0 -2
    portability/autoconf fixes

  ndb/src/common/util/File.cpp
    1.3.1.1 04/05/12 06:24:08 tomas@mc05.(none) +2 -6
    portability/autoconf fixes

  ndb/src/common/portlib/unix/NdbHost.c
    1.2 04/05/12 06:24:08 tomas@mc05.(none) +1 -1
    portability/autoconf fixes

  ndb/src/common/portlib/unix/NdbDaemon.c
    1.3.1.1 04/05/12 06:24:08 tomas@mc05.(none) +11 -4
    portability/autoconf fixes

  ndb/src/common/portlib/unix/NdbCondition.c
    1.3.1.1 04/05/12 06:24:08 tomas@mc05.(none) +0 -1
    portability/autoconf fixes

  ndb/src/common/portlib/memtest/munmaptest/munmaptest.cpp
    1.2.1.1 04/05/12 06:24:08 tomas@mc05.(none) +0 -1
    portability/autoconf fixes

  ndb/src/common/mgmcommon/ConfigRetriever.cpp
    1.2.1.1 04/05/12 06:24:08 tomas@mc05.(none) +0 -1
    portability/autoconf fixes

  ndb/src/common/editline/editline.c
    1.2 04/05/12 06:24:07 tomas@mc05.(none) +2 -2
    portability/autoconf fixes

  ndb/include/portlib/NdbMutex.h
    1.2 04/05/12 06:24:07 tomas@mc05.(none) +3 -1
    portability/autoconf fixes

  ndb/include/newtonapi/defs/pcn_types.h
    1.2.1.1 04/05/12 06:24:07 tomas@mc05.(none) +0 -6
    portability/autoconf fixes

ChangeSet
  1.1616.387.1 04/05/12 02:38:57 monty@mysql.com +6 -0
  Portability fixes

  strings/my_strtoll10.c
    1.7 04/05/12 02:38:56 monty@mysql.com +3 -3
    Fix compiler warnings

  sql/sql_yacc.yy
    1.203.103.8 04/05/12 02:38:55 monty@mysql.com +12 -10
    Use my_strtoll10() instead of strtoull()

  sql/sql_analyse.cc
    1.43 04/05/12 02:38:55 monty@mysql.com +9 -3
    Use my_strtoll10() instead of strtoull()

  sql/repl_failsafe.cc
    1.32.1.21 04/05/12 02:38:55 monty@mysql.com +3 -1
    Use my_strtoll10() instead of strtoull()

  sql/item_func.cc
    1.124.1.73 04/05/12 02:38:55 monty@mysql.com +4 -1
    Use my_strtoll10() instead of strtoull()

  scripts/mysql_install_db.sh
    1.37.1.23 04/05/12 02:38:55 monty@mysql.com +7 -3
    Portability fix (! is not portable)
    

ChangeSet
  1.1346.1.473 04/05/12 01:23:27 lenz@mysql.com +1 -0
   - Bumped up version number from 4.0.19 -> 4.0.20
   - Tagged ChangeSet@1.1800.1.1 as "mysql-4.0.19"

  configure.in
    1.191.1.109 04/05/12 01:22:58 lenz@mysql.com +1 -1
     - Bumped up version number from 4.0.19 -> 4.0.20

ChangeSet
  1.1616.386.1 04/05/11 15:59:20 brian@brian-akers-computer.local +2 -0
  Added comments to all methods. Added explanation for a sequential read through a storage engine.

ChangeSet
  1.1616.384.2 04/05/12 00:29:52 monty@mysql.com +14 -0
  Don't automaticly generate a new key for a foreign key constraint if there is already a usable key.
  Prefer not automatic keys before automatic keys. If there is two conf

  strings/strings-x86.s
    1.8 04/05/12 00:29:50 monty@mysql.com +3 -1
    Portability fix.

  sql/sql_yacc.yy
    1.203.103.7 04/05/12 00:29:50 monty@mysql.com +7 -5
    Added flag for automaticly generated keys

  sql/sql_table.cc
    1.157.33.1 04/05/12 00:29:50 monty@mysql.com +28 -11
    Don't automaticly generate a new key for a foreign key constraint if there is already a usable key.
    Prefer not automatic keys before automatic keys. If there is two conflicting automatic keys, prefer the longer one.

  sql/sql_parse.cc
    1.271.71.6 04/05/12 00:29:50 monty@mysql.com +2 -2
    Added flag for automaticly generated keys

  sql/sql_class.h
    1.146.34.3 04/05/12 00:29:50 monty@mysql.com +6 -4
    Added flag for automaticly generated keys

  sql/sql_class.cc
    1.105.20.2 04/05/12 00:29:50 monty@mysql.com +60 -15
    Fix key comparison to handle prefix and optionally key segments in different order.

  sql/sql_acl.cc
    1.74.1.48 04/05/12 00:29:50 monty@mysql.com +5 -3
    Indentation fixes

  mysql-test/t/key_cache.test
    1.13 04/05/12 00:29:50 monty@mysql.com +3 -3
    Portability fixes (64 BIT os)

  mysql-test/t/innodb.test
    1.58 04/05/12 00:29:50 monty@mysql.com +43 -0
    Added test of automatic creation of foreign keys

  mysql-test/r/innodb.result
    1.87 04/05/12 00:29:50 monty@mysql.com +99 -0
    Added test of automatic creation of foreign keys

  mysql-test/r/create.result
    1.72 04/05/12 00:29:50 monty@mysql.com +31 -1
    Update tests after bug fix

  mysql-test/r/constraints.result
    1.6 04/05/12 00:29:50 monty@mysql.com +3 -1
    Update tests after bug fix

  include/my_base.h
    1.57 04/05/12 00:29:50 monty@mysql.com +1 -1
    Added flag for automaticly generated key

  BitKeeper/etc/ignore
    1.153.1.31 04/05/12 00:28:24 monty@mysql.com +1 -0
    added *.d

ChangeSet
  1.1616.374.8 04/05/11 22:34:14 joreland@mysql.com +348 -0
  Cset include: ndbdev@ndbmaster.mysql.com|ChangeSet|20040511202610|13901
  Cset include: ndbdev@ndbmaster.mysql.com|ChangeSet|20040511202329|47736
  Cset include: tomas@mc05.(none)|ChangeSet|20040511192517|11620
  Cset include: joreland@mysql.com|ChangeSet|20040511192516|46068
  Cset include: tomas@mc05.(none)|ChangeSet|20040511123917|46372
  Cset include: tomas@mc05.(none)|ChangeSet|20040511123143|38188
  Cset include: tulin@build.mysql.com|ChangeSet|20040510154057|38196
  Cset include: joreland@mysql.com|ChangeSet|20040508224854|24167
  Cset include: tomas@mc05.(none)|ChangeSet|20040507133412|23798
  Cset include: tomas@mc05.(none)|ChangeSet|20040507063942|37686
  Cset include: tomas@mc05.(none)|ChangeSet|20040506111114|33079
  Cset include: tomas@mc05.(none)|ChangeSet|20040506105341|38394
  Cset include: tomas@mc05.(none)|ChangeSet|20040506071539|38751
  Cset include: tomas@mc05.(none)|ChangeSet|20040505121947|31340
  Cset include: tomas@mc05.(none)|ChangeSet|20040505113759|32666
  Cset include: tomas@mc05.(none)|ChangeSet|20040505104200|32652
  Cset include: tomas@mc05.(none)|ChangeSet|20040505092956|32651
  Cset include: tomas@mc05.(none)|ChangeSet|20040504130019|09791
  Cset include: tomas@mc05.(none)|ChangeSet|20040503043335|03888
  Cset include: tomas@mc05.(none)|ChangeSet|20040428084951|62492

  ndb/tools/verify_index/verify_index.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/tools/transproxy/transproxy.cpp
    1.4 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/tools/select_count/select_count.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/tools/select_all/select_all.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/tools/list_tables/listTables.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/tools/drop_tab/drop_tab.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/tools/drop_index/drop_index.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/tools/delete_all/delete_all.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/tools/create_index/create_index.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/tools/cpcc/cpcc.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/tools/copy_tab/copy_tab.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/tools/waiter/waiter.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/tools/restart/restart.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/tools/hugoScanUpdate/hugoScanUpd.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/tools/hugoScanRead/hugoScanRead.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/tools/hugoPkUpdate/hugoPkUpd.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/tools/hugoPkReadRecord/hugoPkReadRecord.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/tools/hugoPkRead/hugoPkRead.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/tools/hugoPkDelete/hugoPkDel.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/tools/hugoLockRecords/hugoLockRecords.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/tools/hugoFill/hugoFill.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/tools/hugoCalculator/hugoCalculator.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/src/NdbRestarter.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/src/NdbGrep.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/src/NdbConfig.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/src/NdbBackup.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/src/NDBT_Tables.cpp
    1.4 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/src/NDBT_Table.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/src/NDBT_ReturnCodes.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/src/NDBT_ResultRow.cpp
    1.4 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/src/NDBT_Error.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/src/HugoCalculator.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/run-test/run-test.hpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/run-test/main.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/odbc/driver/testOdbcDriver.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/newtonapi/perf_test/perf.cpp
    1.4 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/newtonapi/basic_test/too_basic.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/newtonapi/basic_test/ptr_binding/ptr_binding_test.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/newtonapi/basic_test/common.hpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/newtonapi/basic_test/common.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/newtonapi/basic_test/bulk_read/br_test.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/newtonapi/basic_test/basic/basic.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/vw_test/size.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/vw_test/cdrserver.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/vw_test/bcd.h
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/testOIBasic/testOIBasic.cpp
    1.4 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/testGrep/verify/testGrepVerify.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/testDataBuffers/testDataBuffers.cpp
    1.4 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/testBlobs/testBlobs.cpp
    1.4 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/telco/msa.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/ronja/benchronja/benchronja.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/restarts/restarts.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/restarter2/restarter2.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/restarter/restarter.cpp
    1.3 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/ndberror.c
    1.5 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/NdbErrorOut.cpp
    1.4 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/include/ndbapi/ndberror.h
    1.4 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/include/ndb_net.h
    1.2 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/include/ndb_global.h
    1.6 04/05/11 22:34:13 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/lmc-bench/src/user/userTransaction.c
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/lmc-bench/src/user/userInterface.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/lmc-bench/src/user/old/userTransaction.c
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/lmc-bench/src/user/old/userInterface.c
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/lmc-bench/src/user/ndb_user_populate.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/lmc-bench/src/user/ndb_error.hpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/lmc-bench/src/user/macros.h
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/lmc-bench/src/user/localDbPrepare.c
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/lmc-bench/src/populator/mainPopulate.c
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/lmc-bench/src/populator/dbPopulate.c
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/lmc-bench/src/generator/mainGenerator.c
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/lmc-bench/src/generator/dbGenerator.c
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/lmc-bench/include/testDefinitions.h
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/lmc-bench/async-src/user/userInterface.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/lmc-bench/async-src/user/ndb_error.hpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/lmc-bench/async-src/user/macros.h
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/lmc-bench/async-src/generator/mainAsyncGenerator.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/lmc-bench/async-src/generator/asyncGenerator.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/interpreterInTup/interpreterInTup.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/indexTest2/index2.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/indexTest/index.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/flex_bench_mysql/flex_bench_mysql.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/flexTT/flexTT.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/flexScan/flexScan.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/flexHammer/flexHammer.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/flexBench/flexBench.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/flexAsynch/flexAsynch.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/drop_all_tabs/drop_all_tabs.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/create_tab/create_tab.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/create_all_tabs/create_all_tabs.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/bulk_copy/bulk_copy.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/bank/bankValidateAllGLs/bankValidateAllGLs.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/bank/bankTransactionMaker/bankTransactionMaker.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/bank/bankTimer/bankTimer.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/bank/bankSumAccounts/bankSumAccounts.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/bank/bankMakeGL/bankMakeGL.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/bank/bankCreator/bankCreator.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/ndbapi/acid2/acid2.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/include/NdbTimer.hpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/include/NDBT_Test.hpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/include/NDBT_Table.hpp
    1.4 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/test/include/NDBT_Stats.hpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/transfer/TransSS.hpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/transfer/TransSS.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/transfer/TransPS.hpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/transfer/TransPS.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/storage/NodeGroupInfo.hpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/storage/LogRecord.hpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/storage/GCIContainer.hpp
    1.4 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/storage/GCIBuffer.hpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/storage/GCIBuffer.cpp
    1.4 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/state/Interval.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/repapi/repapi.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/rep_version.hpp
    1.4 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/dbug_hack.cpp
    1.4 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/adapters/ExtNDB.hpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/adapters/ExtNDB.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/adapters/AppNDB.hpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/Requestor.hpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/Requestor.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/RepMain.cpp
    1.4 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/RepComponents.hpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/rep/RepApiService.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/newtonapi/dba_internal.hpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/newtonapi/dba_error.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/signal-sender/SignalSender.hpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/signal-sender/SignalSender.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/TransporterFacade.cpp
    1.4 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/ObjectMap.hpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/Ndbif.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/Ndberror.cpp
    1.6 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/NdbUtil.hpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/NdbScanReceiver.hpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/NdbScanOperation.cpp
    1.4 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/NdbRecAttr.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/NdbPoolImpl.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/NdbOperationExec.cpp
    1.4 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/NdbOperation.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/NdbEventOperationImpl.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/NdbDictionaryImpl.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/NdbDictionary.cpp
    1.3 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/NdbConnectionScan.cpp
    1.4 04/05/11 22:34:12 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/Ndb.cpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/Makefile
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/DictCache.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/ndbapi/ClusterMgr.cpp
    1.5 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/mgmsrv/mkconfig/mkconfig.cpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/mgmsrv/convertStrToInt.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/mgmsrv/NodeLogLevelList.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/mgmsrv/NodeLogLevel.hpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/mgmsrv/MgmtSrvr.hpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/mgmsrv/CommandInterpreter.hpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/mgmclient/test_cpcd/test_cpcd.cpp
    1.6 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/mgmclient/main.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/mgmclient/CpcClient.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/mgmclient/CommandInterpreter.hpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/mgmclient/CommandInterpreter.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/mgmapi/test/mgmSrvApi.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/mgmapi/test/keso.c
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/mgmapi/mgmapi.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/vm/testSimplePropertiesSection/test.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/vm/testLongSig/testLongSig.cpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/vm/testDataBuffer/testDataBuffer.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/vm/testCopy/testCopy.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/vm/testCopy/rr.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/vm/al_test/main.cpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/vm/al_test/arrayPoolTest.cpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/vm/al_test/arrayListTest.cpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/vm/VMSignal.hpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/vm/TransporterCallback.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/vm/SimulatedBlock.cpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/vm/GlobalData.hpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/vm/Emulator.cpp
    1.5 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/vm/DLHashTable2.hpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/vm/DLHashTable.hpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/vm/Configuration.cpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/vm/ClusterConfiguration.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/vm/ArrayPool.hpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/ndb-main/Main.cpp
    1.5 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/error/ErrorReporter.hpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/error/ErrorReporter.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/blocks/ndbfs/MemoryChannelOSE.hpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/blocks/ndbfs/MemoryChannel.hpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/blocks/ndbfs/Filename.hpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/blocks/ndbfs/Filename.cpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/blocks/dbutil/DbUtil.cpp
    1.5 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/blocks/dbtux/Dbtux.hpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/blocks/dblqh/redoLogReader/redoLogFileReader.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/blocks/dbdih/printSysfile/printSysfile.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/blocks/dbdict/printSchemafile/printSchemafile.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/blocks/backup/restore/main.cpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/blocks/backup/restore/Restore.hpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/blocks/backup/restore/Restore.cpp
    1.5 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/blocks/backup/restore/Makefile
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/blocks/backup/read.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/kernel/blocks/backup/FsBuffer.hpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/cw/util/ClientInterface.hpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/cw/test/socketclient/socketClientTest.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/cw/cpcd/common.hpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/cw/cpcd/Process.cpp
    1.7 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/cw/cpcd/Monitor.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/cw/cpcd/CPCD.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/cw/cpcd/APIService.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/cw/cpcc-win32/C++/StdAfx.h
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/version.c
    1.5 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/uucode.c
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/testSimpleProperties/sp_test.cpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/testProperties/testProperties.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/strlcpy.c
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/strlcat.c
    1.6 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/strdup.c
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/socket_io.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/random.c
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/getarg.c
    1.5 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/filetest/FileUnitTest.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/SocketServer.cpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/SimpleProperties.cpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/Properties.cpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/Parser.cpp
    1.5 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/OutputStream.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/NdbSqlUtil.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/NdbOut.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/NdbErrHnd.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/Makefile
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/InputStream.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/File.cpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/BaseString.cpp
    1.4 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/Base64.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/transporter/priotest/prioTransporterTest.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/transporter/perftest/perfTransporterTest.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/transporter/failoverSCI/failoverSCI.cpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/transporter/buddy.hpp
    1.3 04/05/11 22:34:11 joreland@mysql.com +0 -0
    Include

  ndb/src/common/transporter/buddy.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/transporter/basictest/basicTransporterTest.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/transporter/TransporterRegistry.cpp
    1.4 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/transporter/Transporter.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/transporter/TCP_Transporter.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/transporter/SendBuffer.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/transporter/SHM_Transporter.win32.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/transporter/SHM_Transporter.unix.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/transporter/SHM_Transporter.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/transporter/SHM_Buffer.hpp
    1.4 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/transporter/SCI_Transporter.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/transporter/Packer.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/transporter/OSE_Transporter.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/transporter/OSE_Receiver.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/win32/NdbThread.c
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/win32/NdbMutex.c
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/win32/NdbMem.c
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/win32/NdbCondition.c
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/unix/NdbTick.c
    1.4 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/unix/NdbThread.c
    1.5 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/unix/NdbSleep.c
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/unix/NdbMutex.c
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/unix/NdbMem.c
    1.7 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/unix/NdbEnv.c
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/unix/NdbDaemon.c
    1.4 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/unix/NdbCondition.c
    1.4 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/test/NdbPortLibTest.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/ose/NdbThread.c
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/ose/NdbOut.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/ose/NdbMutex.c
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/ose/NdbMem.c
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/ose/NdbCondition.c
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/mmstest/mmstest.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/mmstest/mmslist.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/memtest/munmaptest/munmaptest.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/portlib/memtest/memtest.c
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/mgmcommon/printConfig/printConfig.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/mgmcommon/NdbConfig.c
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/mgmcommon/LocalConfig.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/mgmcommon/InitConfigFileParser.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/mgmcommon/InitConfigFileParser.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/mgmcommon/ConfigRetriever.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/mgmcommon/Config.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/logger/loggertest/LoggerUnitTest.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/logger/listtest/LogHandlerListUnitTest.cpp
    1.4 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/logger/SysLogHandler.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/logger/Logger.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/logger/LogHandlerList.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/logger/LogHandler.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/logger/FileLogHandler.cpp
    1.4 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/editline/test/testit.c
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/editline/editline_win32.c
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/editline/editline_internal.h
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/debugger/signaldata/SystemError.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/debugger/signaldata/PrepFailReqRef.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/debugger/signaldata/ContinueB.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/debugger/signaldata/CloseComReqConf.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/debugger/SignalLoggerManager.cpp
    1.5 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/debugger/EventLogger.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/debugger/DebuggerNames.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/client/odbc/common/OdbcData.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/client/odbc/common/DataType.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/client/odbc/common/DataField.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/client/odbc/common/Ctx.cpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/util/uucode.h
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/util/socket_io.h
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/util/getarg.h
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/util/Vector.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/util/UtilBuffer.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/util/SimpleProperties.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/util/Properties.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/util/OutputStream.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/util/NdbAutoPtr.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/util/InputStream.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/util/File.hpp
    1.4 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/util/Bitmask.hpp
    1.4 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/util/BaseString.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/transporter/TransporterDefinitions.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/portlib/NdbThread.h
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/portlib/NdbTCP.h
    1.4 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/portlib/NdbMem.h
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/newtonapi/defs/pcn_types.h
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/newtonapi/dba.h
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/ndbapi/NdbSchemaOp.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/ndbapi/NdbScanOperation.hpp
    1.4 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/ndbapi/NdbReceiver.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/ndbapi/NdbRecAttr.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/ndbapi/NdbOperation.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/ndbapi/NdbEventOperation.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/ndbapi/NdbError.hpp
    1.4 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/ndbapi/NdbConnection.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/ndbapi/Ndb.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/ndb_version.h
    1.5 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/ndb_types.h
    1.4 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/mgmcommon/MgmtErrorReporter.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/logger/Logger.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/logger/LogHandler.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/logger/FileLogHandler.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/include/kernel/signaldata/SignalDataPrint.hpp
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  BitKeeper/deleted/.del-NdbUnistd.h~a1b3840adcd49985
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  BitKeeper/deleted/.del-NdbString.h~1f9f26341ce5f5f
    1.4 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  BitKeeper/deleted/.del-NdbStdio.h~17be17a4f591c671
    1.4 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  BitKeeper/deleted/.del-NdbConstant.hpp~de1038c1758cc1f9
    1.3 04/05/11 22:34:10 joreland@mysql.com +0 -0
    Include

  ndb/src/common/util/new.cpp
    1.4 04/05/11 22:34:09 joreland@mysql.com +0 -0
    Include

  ndb/include/kernel/signaldata/SignalData.hpp
    1.4 04/05/11 22:34:09 joreland@mysql.com +0 -0
    Include

  ndb/include/kernel/signaldata/BuildIndx.hpp
    1.3 04/05/11 22:34:09 joreland@mysql.com +0 -0
    Include

  ndb/include/kernel/LogLevel.hpp
    1.3 04/05/11 22:34:09 joreland@mysql.com +0 -0
    Include

  ndb/include/debugger/SignalLoggerManager.hpp
    1.5 04/05/11 22:34:09 joreland@mysql.com +0 -0
    Include

  ndb/examples/ndbapi_scan_example/ndbapi_scan.cpp
    1.3 04/05/11 22:34:09 joreland@mysql.com +0 -0
    Include

  ndb/examples/ndbapi_async_example/ndbapi_async.cpp
    1.4 04/05/11 22:34:09 joreland@mysql.com +0 -0
    Include

  ndb/Epilogue.mk
    1.5 04/05/11 22:34:09 joreland@mysql.com +0 -0
    Include

  ndb/Defs.mk
    1.3 04/05/11 22:34:09 joreland@mysql.com +0 -0
    Include

  extra/perror.c
    1.25 04/05/11 22:34:09 joreland@mysql.com +0 -0
    Include

  extra/Makefile.am
    1.15 04/05/11 22:34:09 joreland@mysql.com +0 -0
    Include

  BitKeeper/etc/logging_ok
    1.233.1.66 04/05/11 22:34:09 joreland@mysql.com +0 -0
    Include

ChangeSet
  1.1665.4.3 04/05/11 23:23:49 bell@sanja.is.com.ua +32 -0
  file parser for new .frm

ChangeSet
  1.1616.385.1 04/05/11 22:23:29 ndbdev@ndbmaster.mysql.com +2 -0
  Inverted #ifdef on HAVE_MLOCKALL

  BitKeeper/etc/logging_ok
    1.233.22.1 04/05/11 22:23:28 ndbdev@ndbmaster.mysql.com +1 -0
    Logging to logging@openlogging.org accepted

  sql/parse_file.h
    1.1 04/05/11 23:23:06 bell@sanja.is.com.ua +68 -0

  sql/parse_file.h
    1.0 04/05/11 23:23:06 bell@sanja.is.com.ua +0 -0
    BitKeeper file /home/bell/mysql/bk/work-parser-5.0/sql/parse_file.h

  sql/parse_file.cc
    1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +785 -0

  BitKeeper/etc/ignore
    1.165.1.1 04/05/11 23:23:06 bell@sanja.is.com.ua +1 -0
    Added libmysqld/parse_file.cc to the ignore list

  sql/share/ukrainian/errmsg.txt
    1.61.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/swedish/errmsg.txt
    1.99.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/spanish/errmsg.txt
    1.98.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/slovak/errmsg.txt
    1.98.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/serbian/errmsg.txt
    1.52.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/russian/errmsg.txt
    1.96.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/romanian/errmsg.txt
    1.95.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/portuguese/errmsg.txt
    1.97.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/polish/errmsg.txt
    1.98.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/norwegian/errmsg.txt
    1.97.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/norwegian-ny/errmsg.txt
    1.97.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/korean/errmsg.txt
    1.97.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/japanese/errmsg.txt
    1.97.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/italian/errmsg.txt
    1.104.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/hungarian/errmsg.txt
    1.99.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/greek/errmsg.txt
    1.98.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/german/errmsg.txt
    1.97.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/french/errmsg.txt
    1.97.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/estonian/errmsg.txt
    1.99.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/english/errmsg.txt
    1.106.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/dutch/errmsg.txt
    1.101.1.1 04/05/11 23:23:05 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/parse_file.cc
    1.0 04/05/11 23:23:05 bell@sanja.is.com.ua +0 -0
    BitKeeper file /home/bell/mysql/bk/work-parser-5.0/sql/parse_file.cc

  sql/share/danish/errmsg.txt
    1.97.1.1 04/05/11 23:23:04 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/share/czech/errmsg.txt
    1.97.1.1 04/05/11 23:23:04 bell@sanja.is.com.ua +5 -0
    file parser errors

  sql/mysql_priv.h
    1.212.3.2 04/05/11 23:23:04 bell@sanja.is.com.ua +1 -0
    parser file added

  sql/Makefile.am
    1.89.1.1 04/05/11 23:23:04 bell@sanja.is.com.ua +3 -2
    parser file added

  mysys/mf_getdate.c
    1.6 04/05/11 23:23:04 bell@sanja.is.com.ua +30 -12
    function comment for get_date()
    2 new flags added
    names for get_date format flags

  libmysqld/Makefile.am
    1.40.1.1 04/05/11 23:23:04 bell@sanja.is.com.ua +2 -1
    parser file added

  include/mysqld_error.h
    1.96.1.1 04/05/11 23:23:04 bell@sanja.is.com.ua +6 -1
    error of parser

  include/my_sys.h
    1.119 04/05/11 23:23:04 bell@sanja.is.com.ua +7 -0
    names for get_date format flags

  ndb/src/common/portlib/unix/NdbMem.c
    1.6 04/05/11 22:22:56 ndbdev@ndbmaster.mysql.com +2 -2
    Inverted #ifdef on HAVE_MLOCKALL

  BitKeeper/etc/ignore
    1.153.1.30 04/05/11 23:10:19 monty@mysql.com +4 -0
    added ndb/config/autom4te.cache/* ndb/config/config.mk ndb/src/common/mgmcommon/printConfig/*.d ndb/src/mgmclient/test_cpcd/*.d

  sql/examples/ha_example.h
    1.4 04/05/11 13:08:26 brian@brian-akers-computer.local +38 -2
    Documenation update, lots of comments in the code. 

  sql/examples/ha_example.cc
    1.4 04/05/11 13:08:25 brian@brian-akers-computer.local +363 -7
    Documentation updates (lots of comments in the code).

ChangeSet
  1.1616.374.5 04/05/11 21:25:16 joreland@mysql.com +2 -0
  cpcd - setsid - angle fixes

  ndb/src/mgmclient/test_cpcd/test_cpcd.cpp
    1.5 04/05/11 21:25:15 joreland@mysql.com +10 -4
    Test using different programs

  ndb/src/cw/cpcd/Process.cpp
    1.6 04/05/11 21:25:14 joreland@mysql.com +20 -21
    Write pgrp in pid-file
    Always operate on process group instead of process

ChangeSet
  1.1616.374.4 04/05/11 14:39:17 tomas@mc05.(none) +9 -0
  lots of HAVE_ and some ndb_global fixes for ndb subtree

  ndb/src/kernel/vm/Emulator.cpp
    1.4 04/05/11 14:39:14 tomas@mc05.(none) +0 -6
    ndb_global

  ndb/src/common/portlib/unix/NdbTick.c
    1.3 04/05/11 14:39:14 tomas@mc05.(none) +3 -7
    HAVE_CLOCK_GETTIME

  ndb/src/common/portlib/unix/NdbThread.c
    1.4 04/05/11 14:39:14 tomas@mc05.(none) +2 -3
    .

  ndb/src/common/portlib/unix/NdbSleep.c
    1.2 04/05/11 14:39:13 tomas@mc05.(none) +1 -11
    ndb_global

  ndb/src/common/portlib/unix/NdbMem.c
    1.5 04/05/11 14:39:13 tomas@mc05.(none) +4 -4
    used HAVE_MLOCKALL

  ndb/src/common/portlib/unix/NdbCondition.c
    1.3 04/05/11 14:39:13 tomas@mc05.(none) +9 -40
    Used HAVE_CLOCK_GETTIME

  ndb/include/portlib/NdbThread.h
    1.2 04/05/11 14:39:13 tomas@mc05.(none) +1 -2
    ndb_global

  ndb/include/portlib/NdbTCP.h
    1.3 04/05/11 14:39:13 tomas@mc05.(none) +2 -10
    introduced ndb_net.h

  ndb/include/ndb_net.h
    1.1 04/05/11 14:33:13 tomas@mc05.(none) +7 -0

  ndb/include/ndb_net.h
    1.0 04/05/11 14:33:13 tomas@mc05.(none) +0 -0
    BitKeeper file /space2/tomas/mysql-4.1/ndb/include/ndb_net.h

ChangeSet
  1.1616.374.3 04/05/11 14:31:43 tomas@mc05.(none) +1 -0
  updated with HAV_ symbols in ndb_global

  ndb/include/ndb_global.h
    1.5 04/05/11 14:31:41 tomas@mc05.(none) +13 -2
    updated with HAV_ symbols in ndb_global

ChangeSet
  1.1616.1.210 04/05/11 13:59:22 magnus@neptunus.(none) +26 -0
  WL# 1729 Handler: error text for NDB errors
  - Close an open scan if index_read is called without closing the previous one.
  - Removed some errors that occured during previous merge

  sql/share/ukrainian/errmsg.txt
    1.27.1.49 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/swedish/errmsg.txt
    1.64.1.51 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/spanish/errmsg.txt
    1.64.1.53 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/slovak/errmsg.txt
    1.64.1.52 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/serbian/errmsg.txt
    1.18.1.47 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/russian/errmsg.txt
    1.61.1.50 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/romanian/errmsg.txt
    1.62.1.52 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/portuguese/errmsg.txt
    1.64.1.51 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/polish/errmsg.txt
    1.63.1.52 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/norwegian/errmsg.txt
    1.63.1.53 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/norwegian-ny/errmsg.txt
    1.63.1.52 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/korean/errmsg.txt
    1.63.1.52 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/japanese/errmsg.txt
    1.63.1.51 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/italian/errmsg.txt
    1.70.1.52 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/hungarian/errmsg.txt
    1.65.1.51 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/greek/errmsg.txt
    1.64.1.51 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/german/errmsg.txt
    1.64.1.48 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/french/errmsg.txt
    1.63.1.52 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/estonian/errmsg.txt
    1.64.1.51 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/english/errmsg.txt
    1.70.1.56 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/dutch/errmsg.txt
    1.66.1.51 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/danish/errmsg.txt
    1.62.1.51 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/share/czech/errmsg.txt
    1.64.1.52 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

  sql/ha_ndbcluster.h
    1.8 04/05/11 13:59:19 magnus@neptunus.(none) +2 -2
    Added print_error function, overrides handler::print_error
    Added close_scan
    Moved get_ndb_lock_type from class to local function 

  sql/ha_ndbcluster.cc
    1.10 04/05/11 13:59:19 magnus@neptunus.(none) +68 -59
    Added more error code mappings, from NDB code to MySQL 
    Added function to print out the error message when an NDB error occurs.
    Added two new error codes, which will represent either a permanent or temporary NDB error.
    Modev get_ndb_lock_type from class to local function
    Removed some merge errors
    New function close_scan, to close an open scan.

  include/mysqld_error.h
    1.61.1.39 04/05/11 13:59:19 magnus@neptunus.(none) +2 -0
    Added two new error messages for NDB

ChangeSet
  1.1616.1.209 04/05/11 13:29:01 magnus@neptunus.(none) +1 -0
  Test case for BUG #3657

  ndb/test/ndbapi/testScan/testScan.cpp
    1.3 04/05/11 13:28:59 magnus@neptunus.(none) +91 -0
    Added test case for "slow" scanning if one node is down

ChangeSet
  1.1616.1.208 04/05/11 13:27:40 magnus@neptunus.(none) +1 -0
  Update error code on "parent" connection if a new NdbScanOperation could not be returned

  ndb/src/ndbapi/NdbScanOperation.cpp
    1.1.1.1 04/05/11 13:27:38 magnus@neptunus.(none) +3 -1
    Set error code on "parent" NdbConnection

ChangeSet
  1.1616.377.2 04/05/11 12:39:00 serg@serg.mylan +3 -0
  out-of-bound array access fixed

  sql/field.cc
    1.155 04/05/11 12:38:52 serg@serg.mylan +4 -2
    out-of-bound array access fixed

  mysql-test/t/type_float.test
    1.8 04/05/11 12:38:52 serg@serg.mylan +6 -0
    out-of-bound array access fixed

  mysql-test/r/type_float.result
    1.18 04/05/11 12:38:52 serg@serg.mylan +12 -0
    out-of-bound array access fixed

ChangeSet
  1.1346.613.2 04/05/11 12:19:37 serg@serg.mylan +3 -0
  bug#3612 - Item_func_div set decimals incorrectly

  sql/item_func.cc
    1.60.1.49 04/05/11 12:19:35 serg@serg.mylan +1 -0
    bug#3612 - Item_func_div set decimals incorrectly

  mysql-test/t/type_float.test
    1.5.1.1 04/05/11 12:19:35 serg@serg.mylan +8 -0
    bug#3612 - Item_func_div set decimals incorrectly

  mysql-test/r/type_float.result
    1.8.1.1 04/05/11 12:19:35 serg@serg.mylan +15 -0
    bug#3612 - Item_func_div set decimals incorrectly

ChangeSet
  1.1616.383.3 04/05/11 12:51:42 marko@hundin.mysql.fi +3 -0
  InnoDB: Replace ut_strdup() with mem_strdup()

  innobase/ut/ut0mem.c
    1.18 04/05/11 12:51:37 marko@hundin.mysql.fi +0 -24
    Remove ut_strdup(), as it is a clone of mem_strdup()

  innobase/os/os0file.c
    1.69 04/05/11 12:51:37 marko@hundin.mysql.fi +3 -3
    Replace ut_strdup() with mem_strdup()

  innobase/include/ut0mem.h
    1.12 04/05/11 12:51:37 marko@hundin.mysql.fi +0 -10
    Remove ut_strdup(), as it is a clone of mem_strdup()

ChangeSet
  1.1667 04/05/11 12:19:48 monty@mysql.com +1 -0
  Update limits

  sql-bench/limits/mysql.cfg
    1.21.1.1 04/05/11 12:19:47 monty@mysql.com +275 -266
    Update limits

ChangeSet
  1.1665.4.2 04/05/11 12:15:58 timour@mysql.com +12 -0
  Merge of WL#1469 with latest bk sources.

  sql/structs.h
    1.34.1.1 04/05/11 12:15:55 timour@mysql.com +0 -0
    Merge of WL#1469 with latest bk sources.

  sql/sql_test.cc
    1.33.1.1 04/05/11 12:15:55 timour@mysql.com +0 -0
    Merge of WL#1469 with latest bk sources.

  sql/sql_show.cc
    1.138.1.1 04/05/11 12:15:55 timour@mysql.com +0 -0
    Merge of WL#1469 with latest bk sources.

  sql/sql_select.h
    1.66.1.1 04/05/11 12:15:55 timour@mysql.com +0 -0
    Merge of WL#1469 with latest bk sources.

  sql/sql_select.cc
    1.239.1.1 04/05/11 12:15:55 timour@mysql.com +14 -4
    Merge of WL#1469 with latest bk sources.

  sql/sql_class.h
    1.183.1.1 04/05/11 12:15:55 timour@mysql.com +0 -0
    Merge of WL#1469 with latest bk sources.

  sql/set_var.cc
    1.51.1.1 04/05/11 12:15:55 timour@mysql.com +1 -1
    Merge of WL#1469 with latest bk sources.

  sql/mysqld.cc
    1.379.1.1 04/05/11 12:15:55 timour@mysql.com +2 -2
    Merge of WL#1469 with latest bk sources.

  sql/mysql_priv.h
    1.212.3.1 04/05/11 12:15:55 timour@mysql.com +1 -1
    Merge of WL#1469 with latest bk sources.

  mysql-test/r/subselect.result
    1.85.1.1 04/05/11 12:15:55 timour@mysql.com +0 -0
    Merge of WL#1469 with latest bk sources.

  mysql-test/r/select.result
    1.38 04/05/11 12:15:54 timour@mysql.com +0 -0
    Merge of WL#1469 with latest bk sources.

  mysql-test/r/func_group.result
    1.26.1.1 04/05/11 12:15:54 timour@mysql.com +0 -0
    Merge of WL#1469 with latest bk sources.

ChangeSet
  1.1616.1.207 04/05/11 10:40:48 magnus@neptunus.(none) +10 -0
  Updated ndb_* test cases
  Added two new, ndb_replace and ndb_minmax

  mysql-test/t/ndb_replace.test
    1.1 04/05/11 10:40:45 magnus@neptunus.(none) +27 -0

  mysql-test/t/ndb_minmax.test
    1.1 04/05/11 10:40:45 magnus@neptunus.(none) +65 -0

  mysql-test/r/ndb_replace.result
    1.1 04/05/11 10:40:45 magnus@neptunus.(none) +21 -0

  mysql-test/r/ndb_minmax.result
    1.1 04/05/11 10:40:45 magnus@neptunus.(none) +120 -0

  mysql-test/t/ndb_replace.test
    1.0 04/05/11 10:40:45 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/t/ndb_replace.test

  mysql-test/t/ndb_minmax.test
    1.0 04/05/11 10:40:45 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/t/ndb_minmax.test

  mysql-test/t/ndb_index_unique.test
    1.2 04/05/11 10:40:45 magnus@neptunus.(none) +6 -6
    Correct faulty CREATE TABLE statement

  mysql-test/t/ndb_index_ordered.test
    1.3 04/05/11 10:40:45 magnus@neptunus.(none) +1 -1
    Correct faulty CREATE TABLE statement

  mysql-test/t/ndb_index.test
    1.2 04/05/11 10:40:45 magnus@neptunus.(none) +5 -2
    Disable query, since index used is case sensitive

  mysql-test/r/ndb_replace.result
    1.0 04/05/11 10:40:45 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/r/ndb_replace.result

  mysql-test/r/ndb_minmax.result
    1.0 04/05/11 10:40:45 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/r/ndb_minmax.result

  mysql-test/r/ndb_index_unique.result
    1.2 04/05/11 10:40:45 magnus@neptunus.(none) +6 -6
    Correct faulty CREATE TABLE statement

  mysql-test/r/ndb_index_ordered.result
    1.3 04/05/11 10:40:45 magnus@neptunus.(none) +1 -1
    Correct faulty CREATE TABLE statement

  mysql-test/r/ndb_index.result
    1.2 04/05/11 10:40:45 magnus@neptunus.(none) +0 -6
    Disable query, since index used is case sensitive

ChangeSet
  1.1616.383.1 04/05/11 13:32:01 bar@bar.intranet.mysql.r18.ru +5 -0
  Use Windows code page 1252 instead of real ISO 8859-1

  mysql-test/t/ctype_latin1.test
    1.1 04/05/11 13:31:57 bar@bar.intranet.mysql.r18.ru +55 -0

  mysql-test/r/ctype_latin1.result
    1.1 04/05/11 13:31:57 bar@bar.intranet.mysql.r18.ru +298 -0

  strings/dump_map.c
    1.2 04/05/11 13:31:57 bar@bar.intranet.mysql.r18.ru +6 -4
    Produce better formatted dump.

  strings/ctype-sjis.c
    1.59 04/05/11 13:31:57 bar@bar.intranet.mysql.r18.ru +7 -1
    Use Windows code page 1252 instead of real ISO 8859-1

  strings/ctype-latin1.c
    1.26 04/05/11 13:31:57 bar@bar.intranet.mysql.r18.ru +272 -68
    Use Windows code page 1252 instead of real ISO 8859-1

  mysql-test/t/ctype_latin1.test
    1.0 04/05/11 13:31:57 bar@bar.intranet.mysql.r18.ru +0 -0
    BitKeeper file /usr/home/bar/mysql-4.1/mysql-test/t/ctype_latin1.test

  mysql-test/r/ctype_latin1.result
    1.0 04/05/11 13:31:57 bar@bar.intranet.mysql.r18.ru +0 -0
    BitKeeper file /usr/home/bar/mysql-4.1/mysql-test/r/ctype_latin1.result

  mysql-test/r/subselect.result
    1.83.1.2 04/05/11 11:23:35 timour@mysql.com +0 -0
    Turn off EOLN_NATIVE flag

ChangeSet
  1.1346.1.471 04/05/11 11:05:02 marko@hundin.mysql.fi +10 -0
  InnoDB: Changed bug reporting address to http://bugs.mysql.com

  innobase/ut/ut0dbg.c
    1.1.1.3 04/05/11 11:04:58 marko@hundin.mysql.fi +1 -1
    Changed bug reporting address to http://bugs.mysql.com

  innobase/trx/trx0rec.c
    1.7.1.4 04/05/11 11:04:58 marko@hundin.mysql.fi +9 -13
    Changed bug reporting address to http://bugs.mysql.com

  innobase/row/row0upd.c
    1.18.1.6 04/05/11 11:04:58 marko@hundin.mysql.fi +1 -2
    Changed bug reporting address to http://bugs.mysql.com

  innobase/row/row0umod.c
    1.11.1.4 04/05/11 11:04:58 marko@hundin.mysql.fi +1 -2
    Changed bug reporting address to http://bugs.mysql.com

  innobase/row/row0sel.c
    1.28.1.20 04/05/11 11:04:58 marko@hundin.mysql.fi +1 -2
    Changed bug reporting address to http://bugs.mysql.com

  innobase/row/row0ins.c
    1.26.1.9 04/05/11 11:04:58 marko@hundin.mysql.fi +1 -2
    Changed bug reporting address to http://bugs.mysql.com

  innobase/lock/lock0lock.c
    1.20.1.14 04/05/11 11:04:58 marko@hundin.mysql.fi +4 -2
    Changed bug reporting address to http://bugs.mysql.com

  innobase/ibuf/ibuf0ibuf.c
    1.18.1.7 04/05/11 11:04:58 marko@hundin.mysql.fi +3 -4
    Changed bug reporting address to http://bugs.mysql.com

  innobase/dict/dict0load.c
    1.7.1.7 04/05/11 11:04:58 marko@hundin.mysql.fi +1 -1
    Changed bug reporting address to http://bugs.mysql.com

  innobase/btr/btr0btr.c
    1.21.1.7 04/05/11 11:04:58 marko@hundin.mysql.fi +1 -1
    Changed bug reporting address to http://bugs.mysql.com

ChangeSet
  1.1616.381.3 04/05/10 22:25:51 miguel@hegel.local +1 -0
  Removing VC++ compiler warnings

  libmysqld/emb_qcache.cc
    1.4 04/05/10 22:25:45 miguel@hegel.local +3 -3
    Removing VC++ compiler warnings

ChangeSet
  1.1616.381.2 04/05/10 20:55:52 miguel@hegel.local +1 -0
  Fix VC++ compiler error (function redifinition) for embedded server

  libmysql/client_settings.h
    1.29 04/05/10 20:55:46 miguel@hegel.local +1 -1
    Fix VC++ compiler error (function redifinition) for embedded server

ChangeSet
  1.1616.382.1 04/05/10 23:19:50 tsmith@build.mysql.com +4 -0
  logging_ok:
    Logging to logging@openlogging.org accepted
  item_cmpfunc.cc, ctype_recoding.test, ctype_recoding.result:
    Call Item_func_conv_charset::fix_fields() in Item_bool_func2::fix_length_and_dec() (but #3704)

  BitKeeper/etc/logging_ok
    1.233.21.1 04/05/10 23:19:00 tsmith@build.mysql.com +1 -0
    Logging to logging@openlogging.org accepted

  sql/item_cmpfunc.cc
    1.111.1.26 04/05/10 23:15:55 tsmith@build.mysql.com +1 -0
    Call Item_func_conv_charset::fix_fields() in Item_bool_func2::fix_length_and_dec()

  mysql-test/t/ctype_recoding.test
    1.13 04/05/10 23:15:55 tsmith@build.mysql.com +7 -1
    Call Item_func_conv_charset::fix_fields() in Item_bool_func2::fix_length_and_dec()

  mysql-test/r/ctype_recoding.result
    1.18 04/05/10 23:15:55 tsmith@build.mysql.com +7 -0
    Call Item_func_conv_charset::fix_fields() in Item_bool_func2::fix_length_and_dec()

ChangeSet
  1.1616.380.1 04/05/10 21:52:24 ingo@mysql.com +1 -0
  Update casts from very old my_lock.c source.

  mysys/my_lock.c
    1.11 04/05/10 21:52:20 ingo@mysql.com +6 -4
    Update casts from very old my_lock.c source.

ChangeSet
  1.1616.378.1 04/05/10 20:32:44 lenz@mysql.com +2 -0
   - Renamed the Mac OS X StartupItem directory from 
     /Library/StartupItems/MySQL to /Library/StartupItems/MySQLCOM
     to avoid a name space collision with the MySQL Startup Item shipped
     with Mac OS X Server, updated the MySQLStartupItem PKG version
     number to reflect the change.

  support-files/MacOSX/StartupItem.Description.plist
    1.2 04/05/10 20:32:25 lenz@mysql.com +1 -1
     - Bumped up the StartupItem Package version to 1.1 to indicate the
       change in directory naming

  Build-tools/Do-pkg
    1.7 04/05/10 20:32:25 lenz@mysql.com +9 -6
     - Renamed the StartupItem directory from /Library/StartupItems/MySQL
       to /Library/StartupItems/MySQLCOM to avoid a name space collision
       with the MySQL Startup Item in Mac OS X Server

ChangeSet
  1.1616.375.1 04/05/10 17:37:38 monty@mysql.com +5 -0
  Add read_rnd_buffer_size in my.cnf example files
  Remove wrong redefine of vio_reset() (to compile libmysqld on windows)

  support-files/my-small.cnf.sh
    1.18 04/05/10 17:37:36 monty@mysql.com +2 -0
    Add read_rnd_buffer_size

  support-files/my-medium.cnf.sh
    1.20 04/05/10 17:37:36 monty@mysql.com +2 -0
    Add read_rnd_buffer_size

  support-files/my-large.cnf.sh
    1.20 04/05/10 17:37:36 monty@mysql.com +1 -0
    Add read_rnd_buffer_size

  support-files/my-huge.cnf.sh
    1.21 04/05/10 17:37:36 monty@mysql.com +1 -0
    Add read_rnd_buffer_size

  include/violite.h
    1.35 04/05/10 17:37:36 monty@mysql.com +2 -8
    Remove wrong redefine of vio_reset()

ChangeSet
  1.1346.614.1 04/05/10 17:15:29 marko@hundin.mysql.fi +1 -0
  InnoDB: Fix assertion failure for orphaned tables in DROP DATABASE

  innobase/row/row0mysql.c
    1.39.1.26 04/05/10 17:15:26 marko@hundin.mysql.fi +3 -2
    Compare database part of table name with memcmp(), not strcmp()

ChangeSet
  1.1665.3.2 04/05/10 15:48:50 timour@mysql.com +8 -0
  Complete implementation of WL#1469 "Greedy algorithm to search for an optimal execution plan",
  consisting of pos-review fixes and improvements.

  sql/sql_test.cc
    1.32.1.1 04/05/10 15:48:47 timour@mysql.com +96 -0
    Moved function print_plan() to sql_test.cc

  sql/sql_select.cc
    1.238.1.2 04/05/10 15:48:47 timour@mysql.com +349 -276
    - Simplified the recursion in best_extension_by_limited_search()
      and aligned it with its pseudo-code.
    - Renamed functions to better reflect their semantics.
    - Post-review changes of function specifications.
    - Moved function print_plan() to sql_test.cc.

  sql/mysql_priv.h
    1.212.2.2 04/05/10 15:48:47 timour@mysql.com +2 -0
    Moved function print_plan() to sql_test.cc

  mysql-test/t/greedy_optimizer.test
    1.2 04/05/10 15:48:47 timour@mysql.com +32 -38
    - Adjusted to account for pre-sorting of tables before optimiziation.
    - Removed unnecessary test.
    - More comments.

  mysql-test/r/select.result
    1.35.1.1 04/05/10 15:48:47 timour@mysql.com +4 -4
    - Adjusted to account for pre-sorting of tables before optimiziation.

  mysql-test/r/greedy_optimizer.result
    1.2 04/05/10 15:48:47 timour@mysql.com +124 -200
    - Adjusted to account for pre-sorting of tables before optimiziation.
    - Removed unnecessary test.
    - More comments.

  mysql-test/r/func_group.result
    1.25.1.1 04/05/10 15:48:47 timour@mysql.com +3 -3
    Adjusted to account for pre-sorting of tables before optimiziation.

  mysql-test/r/distinct.result
    1.31 04/05/10 15:48:47 timour@mysql.com +1 -1
    Adjusted to account for pre-sorting of tables before optimiziation.

ChangeSet
  1.1616.371.2 04/05/10 14:46:06 magnus@neptunus.(none) +2 -0
  Use correct access method, found using sql-bench and comparing with other handler.  

  sql/ha_ndbcluster.cc
    1.7.1.1 04/05/10 14:46:05 magnus@neptunus.(none) +43 -37
    Change index flags, remove HA_WRONG_ASCII_ORDER and HA_ONLY_WHOLE_INDEX.
    HA_WRONG_ASCII_ORDER was used in field::optimize_range and if it was set, the index was hardly ever used.
    Correct check of start_key and start_key->flag != HA_READ_KEY_EXACT, ignore end-Key in suc a case
    Updated implementation o read_range_first
    Made the calculation of number of bytes par batch easier to underatsn and easier to configure. The value bytesperbatch can be made a config variable.
    AReduce the number of bytes sent per batch, don't overload.
    Increase the value returned from scan_time in order to make it clear to optimizer that scanning is the worst alternative. Always use index if available.
    

ChangeSet
  1.1616.370.8 04/05/10 14:39:54 tomas@mc05.(none) +1 -0
  Makefile:
    slim make for ndb

  ndb/Makefile
    1.3 04/05/10 14:39:31 tomas@mc05.(none) +2 -2
    slim make for ndb

ChangeSet
  1.1616.370.7 04/05/10 14:25:32 tomas@mc05.(none) +3 -0
  make warning fixes for ndb

  ndb/src/ndbapi/NdbSchemaOp.cpp
    1.3 04/05/10 14:25:30 tomas@mc05.(none) +2 -2
    make warning fixes for ndb

  ndb/src/mgmsrv/CommandInterpreter.cpp
    1.3 04/05/10 14:25:30 tomas@mc05.(none) +1 -1
    make warning fixes for ndb

  ndb/src/common/util/strlcat.c
    1.1.1.1 04/05/10 14:25:30 tomas@mc05.(none) +1 -1
    make warning fixes for ndb

ChangeSet
  1.1616.351.5 04/05/10 14:14:14 magnus@neptunus.(none) +2 -0
  Updated ndb_basic

  mysql-test/t/ndb_basic.test
    1.3 04/05/10 14:14:12 magnus@neptunus.(none) +16 -5
    Updated ndb_basic for better coverage

  mysql-test/r/ndb_basic.result
    1.3 04/05/10 14:14:12 magnus@neptunus.(none) +51 -3
    Updated ndb_basic for better coverage

ChangeSet
  1.1616.351.4 04/05/10 14:12:28 magnus@neptunus.(none) +2 -0
  WL# 1728 Handler: use scanReadExclusive for scan update and delete
  

  sql/ha_ndbcluster.h
    1.5.1.1 04/05/10 14:12:09 magnus@neptunus.(none) +3 -3
    Add function define_read_attrs, used to set the fields to read
    Add get_nd_lock_type funciton ,to convert MySQL lock type to NDB lock type
    Always compile filtered scan function even if it's not used yet.
    Add variable ops_pending to keep track of "pending" update/delete operations. 

  sql/ha_ndbcluster.cc
    1.8 04/05/10 14:12:09 magnus@neptunus.(none) +224 -172
    Modified next_result to process fetched records cached in NdbApi before asking NDB for more. 
    It should also NoCommit any pending operations before contacting NDB again.
    Added utility function define_read_attrs to set the fields that should be read.

ChangeSet
  1.1616.370.6 04/05/10 14:10:04 tomas@mc05.(none) +1 -0
  more slim make of ndb tree

  ndb/Makefile
    1.2 04/05/10 14:10:01 tomas@mc05.(none) +7 -0
    more slim make of ndb tree

ChangeSet
  1.1346.612.1 04/05/10 12:39:01 serg@serg.mylan +5 -0
  backport from 4.1:
  "phrase search" should not match partial words (it should not match 'paraphrase searches')

  mysql-test/t/fulltext.test
    1.34.2.10 04/05/10 12:38:58 serg@serg.mylan +1 -0
    backport from 4.1:
    "phrase search" should not match partial words (it should not match 'paraphrase searches')

  mysql-test/r/fulltext.result
    1.29.1.16 04/05/10 12:38:58 serg@serg.mylan +2 -1
    backport from 4.1:
    "phrase search" should not match partial words (it should not match 'paraphrase searches')

  myisam/ftdefs.h
    1.17.1.2 04/05/10 12:38:58 serg@serg.mylan +3 -2
    backport from 4.1:
    "phrase search" should not match partial words (it should not match 'paraphrase searches')

  myisam/ft_parser.c
    1.24.1.6 04/05/10 12:38:58 serg@serg.mylan +0 -9
    backport from 4.1:
    "phrase search" should not match partial words (it should not match 'paraphrase searches')

  myisam/ft_boolean_search.c
    1.47.1.15 04/05/10 12:38:58 serg@serg.mylan +19 -10
    backport from 4.1:
    "phrase search" should not match partial words (it should not match 'paraphrase searches')

ChangeSet
  1.1616.373.1 04/05/10 13:29:02 bell@sanja.is.com.ua +2 -0
  treat parameter as constant in ORDER BY check of fields in SELECT list(Bug #3686)

  tests/client_test.c
    1.51.1.32 04/05/10 13:28:38 bell@sanja.is.com.ua +47 -1
    test of using parameters in SELECT list with ORDER BY

  sql/sql_select.cc
    1.216.68.1 04/05/10 13:28:38 bell@sanja.is.com.ua +2 -1
    treat parameter as constant in ORDER BY check of fields in SELECT list

ChangeSet
  1.1346.611.1 04/05/10 12:15:40 ingo@mysql.com +6 -0
  Fix replace_result of $MASTER_MYPORT instead of literal numbers.

  mysql-test/t/rpl_rotate_logs.test
    1.34.1.6 04/05/10 12:15:38 ingo@mysql.com +5 -5
    Fix replace_result of $MASTER_MYPORT instead of literal numbers.

  mysql-test/t/rpl_max_relay_size.test
    1.3.1.2 04/05/10 12:15:38 ingo@mysql.com +6 -6
    Fix replace_result of $MASTER_MYPORT instead of literal numbers.

  mysql-test/t/rpl_log_pos.test
    1.20.1.3 04/05/10 12:15:38 ingo@mysql.com +4 -4
    Fix replace_result of $MASTER_MYPORT instead of literal numbers.

  mysql-test/t/rpl_log.test
    1.11.1.4 04/05/10 12:15:38 ingo@mysql.com +3 -3
    Fix replace_result of $MASTER_MYPORT instead of literal numbers.

  mysql-test/t/rpl_error_ignored_table.test
    1.2.1.4 04/05/10 12:15:38 ingo@mysql.com +1 -1
    Fix replace_result of $MASTER_MYPORT instead of literal numbers.

  mysql-test/t/rpl000015.test
    1.20.1.2 04/05/10 12:15:38 ingo@mysql.com +1 -1
    Fix replace_result of $MASTER_MYPORT instead of literal numbers.
    The test case rpl000015 needs one exlpicit literal number.
    It changes partial master settings, which seems to reset other settings
    to their defaults. To test this is obviously the intent of this case.

ChangeSet
  1.1616.370.5 04/05/10 11:50:17 tomas@mc05.(none) +32 -0
  fix compiler warnings in ndb

  ndb/src/rep/state/RepState.cpp
    1.2 04/05/10 11:48:54 tomas@mc05.(none) +6 -2
    fix compiler warnings in ndb

  ndb/src/newtonapi/dba_binding.cpp
    1.2 04/05/10 11:48:54 tomas@mc05.(none) +6 -0
    fix compiler warnings in ndb

  ndb/src/ndbapi/Ndbinit.cpp
    1.2 04/05/10 11:48:54 tomas@mc05.(none) +2 -2
    fix compiler warnings in ndb

  ndb/src/ndbapi/Ndberror.cpp
    1.1.1.2 04/05/10 11:48:54 tomas@mc05.(none) +2 -0
    fix compiler warnings in ndb

  ndb/src/ndbapi/NdbSchemaOp.cpp
    1.2 04/05/10 11:48:54 tomas@mc05.(none) +3 -0
    fix compiler warnings in ndb

  ndb/src/ndbapi/NdbOperationSearch.cpp
    1.2 04/05/10 11:48:54 tomas@mc05.(none) +1 -1
    fix compiler warnings in ndb

  ndb/src/ndbapi/NdbOperationDefine.cpp
    1.2 04/05/10 11:48:54 tomas@mc05.(none) +0 -2
    fix compiler warnings in ndb

  ndb/src/ndbapi/NdbDictionaryImpl.hpp
    1.2 04/05/10 11:48:54 tomas@mc05.(none) +1 -1
    fix compiler warnings in ndb

  ndb/src/mgmsrv/main.cpp
    1.2 04/05/10 11:48:54 tomas@mc05.(none) +1 -0
    fix compiler warnings in ndb

  ndb/src/mgmsrv/CommandInterpreter.cpp
    1.2 04/05/10 11:48:54 tomas@mc05.(none) +2 -0
    fix compiler warnings in ndb

  ndb/src/mgmclient/test_cpcd/test_cpcd.cpp
    1.1.1.1 04/05/10 11:48:54 tomas@mc05.(none) +2 -2
    fix compiler warnings in ndb

  ndb/src/mgmapi/test/keso.c
    1.1.1.1 04/05/10 11:48:54 tomas@mc05.(none) +2 -2
    fix compiler warnings in ndb

  ndb/src/mgmapi/Makefile
    1.2 04/05/10 11:48:54 tomas@mc05.(none) +1 -1
    fix compiler warnings in ndb

  ndb/src/kernel/ndb-main/Main.cpp
    1.2.1.1 04/05/10 11:48:54 tomas@mc05.(none) +1 -1
    fix compiler warnings in ndb

  ndb/src/kernel/blocks/suma/SumaInit.cpp
    1.2 04/05/10 11:48:54 tomas@mc05.(none) +2 -2
    fix compiler warnings in ndb

  ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp
    1.1.1.1 04/05/10 11:48:54 tomas@mc05.(none) +2 -3
    fix compiler warnings in ndb

  ndb/src/kernel/blocks/grep/Grep.cpp
    1.2 04/05/10 11:48:54 tomas@mc05.(none) +1 -1
    fix compiler warnings in ndb

  ndb/src/kernel/blocks/dbutil/DbUtil.cpp
    1.2.1.1 04/05/10 11:48:53 tomas@mc05.(none) +0 -61
    fix compiler warnings in ndb

  ndb/src/kernel/blocks/dbtup/DbtupMeta.cpp
    1.2 04/05/10 11:48:53 tomas@mc05.(none) +1 -1
    fix compiler warnings in ndb

  ndb/src/kernel/blocks/backup/restore/Restore.cpp
    1.2.1.1 04/05/10 11:48:53 tomas@mc05.(none) +3 -2
    fix compiler warnings in ndb

  ndb/src/cw/cpcd/common.cpp
    1.2 04/05/10 11:48:53 tomas@mc05.(none) +4 -1
    fix compiler warnings in ndb

  ndb/src/common/util/version.c
    1.2.1.1 04/05/10 11:48:53 tomas@mc05.(none) +3 -3
    fix compiler warnings in ndb

  ndb/src/common/util/getarg.c
    1.1.1.1 04/05/10 11:48:53 tomas@mc05.(none) +2 -2
    fix compiler warnings in ndb

  ndb/src/common/util/Parser.cpp
    1.1.1.1 04/05/10 11:48:53 tomas@mc05.(none) +1 -0
    fix compiler warnings in ndb

  ndb/src/common/portlib/unix/NdbTick.c
    1.2 04/05/10 11:48:53 tomas@mc05.(none) +2 -2
    fix compiler warnings in ndb

  ndb/src/common/portlib/unix/NdbThread.c
    1.1.1.1 04/05/10 11:48:53 tomas@mc05.(none) +1 -1
    fix compiler warnings in ndb

  ndb/src/common/portlib/unix/NdbMem.c
    1.2.1.1 04/05/10 11:48:53 tomas@mc05.(none) +0 -1
    fix compiler warnings in ndb

  ndb/src/common/debugger/signaldata/CreateFragmentation.cpp
    1.2 04/05/10 11:48:53 tomas@mc05.(none) +1 -1
    fix compiler warnings in ndb

  ndb/include/portlib/NdbTick.h
    1.2 04/05/10 11:48:53 tomas@mc05.(none) +1 -1
    fix compiler warnings in ndb

  ndb/include/ndb_version.h
    1.2.1.1 04/05/10 11:48:53 tomas@mc05.(none) +1 -1
    fix compiler warnings in ndb

  ndb/include/mgmapi/mgmapi.h
    1.2 04/05/10 11:48:53 tomas@mc05.(none) +6 -6
    fix compiler warnings in ndb

  ndb/include/debugger/SignalLoggerManager.hpp
    1.2.1.1 04/05/10 11:48:53 tomas@mc05.(none) +1 -1
    fix compiler warnings in ndb

ChangeSet
  1.1616.341.12 04/05/09 00:48:54 joreland@mysql.com +1 -0
  Stop entire process group (if child has forked)
  Impl. to handle "angle" process of ndb

  ndb/src/cw/cpcd/Process.cpp
    1.5 04/05/09 00:48:34 joreland@mysql.com +21 -15
    Stop entire process group (if child has forked)
    (Does not handle child doing setsid)

ChangeSet
  1.1616.372.1 04/05/07 23:06:11 bell@sanja.is.com.ua +11 -0
  keep old engine & JOIN if we changed subquery Item (Bug #3646)

  sql/sql_union.cc
    1.74.22.3 04/05/07 23:05:43 bell@sanja.is.com.ua +29 -0
    method for changing result in JOIN

  sql/sql_select.h
    1.60.1.9 04/05/07 23:05:43 bell@sanja.is.com.ua +1 -0
    method for changing result in JOIN

  sql/sql_select.cc
    1.216.1.110 04/05/07 23:05:43 bell@sanja.is.com.ua +25 -2
    method for changing result in JOIN

  sql/sql_lex.h
    1.102.36.4 04/05/07 23:05:43 bell@sanja.is.com.ua +1 -0
    method for changing result of UNION JOINs

  sql/sql_lex.cc
    1.97.13.1 04/05/07 23:05:43 bell@sanja.is.com.ua +2 -1
    note about new method

  sql/item_sum.h
    1.48.1.18 04/05/07 23:05:43 bell@sanja.is.com.ua +1 -7
    Item_sum_hybrid::clear moved to .cc file (to keep .h clean and to make inserving/removing debug info easy)

  sql/item_sum.cc
    1.89.1.24 04/05/07 23:05:43 bell@sanja.is.com.ua +8 -0
    Item_sum_hybrid::clear moved to .cc file (to keep .h clean and to make inserving/removing debug info easy)

  sql/item_subselect.h
    1.52 04/05/07 23:05:43 bell@sanja.is.com.ua +4 -0
    change item & results procedure

  sql/item_subselect.cc
    1.60.1.40 04/05/07 23:05:43 bell@sanja.is.com.ua +98 -9
    keep old engine & JOIN if we changed subquery Item, which allow avoid second all SELECT items fix_fields call with pervios clean up (because of second setup_tables which remove table->key_use and maybe something else)
    keep list when we change Item in SELECT list
    processing inserted max/min function (now JOIN::prepare will be called only once)
    methods of changing item for subselect engines

  mysql-test/t/subselect.test
    1.58.37.1 04/05/07 23:05:43 bell@sanja.is.com.ua +33 -1
    ALL/ANY test

  mysql-test/r/subselect.result
    1.67.52.1 04/05/07 23:05:43 bell@sanja.is.com.ua +89 -0
    ALL/ANY test

ChangeSet
  1.1616.341.11 04/05/07 15:34:12 tomas@mc05.(none) +177 -0
  more removing of "system" files and introducing ndb_global/my_global

  ndb/tools/transproxy/transproxy.cpp
    1.3 04/05/07 15:34:06 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/tools/list_tables/listTables.cpp
    1.2 04/05/07 15:34:06 tomas@mc05.(none) +2 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/tools/cpcc/cpcc.cpp
    1.2 04/05/07 15:34:06 tomas@mc05.(none) +1 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/tools/waiter/waiter.cpp
    1.2 04/05/07 15:34:06 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/tools/restart/restart.cpp
    1.2 04/05/07 15:34:06 tomas@mc05.(none) +2 -3
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/src/NdbRestarter.cpp
    1.2 04/05/07 15:34:06 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/src/NdbGrep.cpp
    1.2 04/05/07 15:34:06 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/src/NdbConfig.cpp
    1.2 04/05/07 15:34:06 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/src/NdbBackup.cpp
    1.2 04/05/07 15:34:06 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/src/NDBT_Tables.cpp
    1.3 04/05/07 15:34:06 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/src/NDBT_Table.cpp
    1.2 04/05/07 15:34:05 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/src/NDBT_ResultRow.cpp
    1.3 04/05/07 15:34:05 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/src/NDBT_Error.cpp
    1.2 04/05/07 15:34:05 tomas@mc05.(none) +1 -3
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/src/HugoCalculator.cpp
    1.2 04/05/07 15:34:05 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/odbc/driver/testOdbcDriver.cpp
    1.2 04/05/07 15:34:05 tomas@mc05.(none) +1 -8
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/newtonapi/perf_test/perf.cpp
    1.3 04/05/07 15:34:05 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/newtonapi/basic_test/ptr_binding/ptr_binding_test.cpp
    1.2 04/05/07 15:34:05 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/newtonapi/basic_test/bulk_read/br_test.cpp
    1.2 04/05/07 15:34:05 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/newtonapi/basic_test/basic/basic.cpp
    1.2 04/05/07 15:34:05 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/ndbapi/testOIBasic/testOIBasic.cpp
    1.3 04/05/07 15:34:05 tomas@mc05.(none) +1 -3
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/ndbapi/testGrep/verify/testGrepVerify.cpp
    1.2 04/05/07 15:34:05 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/ndbapi/testDataBuffers/testDataBuffers.cpp
    1.3 04/05/07 15:34:05 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/ndbapi/testBlobs/testBlobs.cpp
    1.3 04/05/07 15:34:05 tomas@mc05.(none) +0 -3
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/ndbapi/telco/msa.cpp
    1.2 04/05/07 15:34:05 tomas@mc05.(none) +1 -4
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/ndbapi/restarts/restarts.cpp
    1.2 04/05/07 15:34:05 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/ndbapi/restarter2/restarter2.cpp
    1.2 04/05/07 15:34:05 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/ndbapi/restarter/restarter.cpp
    1.2 04/05/07 15:34:05 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/ndbapi/interpreterInTup/interpreterInTup.cpp
    1.2 04/05/07 15:34:05 tomas@mc05.(none) +0 -3
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/ndbapi/flex_bench_mysql/flex_bench_mysql.cpp
    1.2 04/05/07 15:34:04 tomas@mc05.(none) +0 -4
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/ndbapi/flexScan/flexScan.cpp
    1.2 04/05/07 15:34:04 tomas@mc05.(none) +0 -3
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/ndbapi/flexHammer/flexHammer.cpp
    1.2 04/05/07 15:34:04 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/ndbapi/flexBench/flexBench.cpp
    1.2 04/05/07 15:34:04 tomas@mc05.(none) +0 -4
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/ndbapi/flexAsynch/flexAsynch.cpp
    1.2 04/05/07 15:34:04 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/ndbapi/bulk_copy/bulk_copy.cpp
    1.2 04/05/07 15:34:04 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/ndbapi/acid2/acid2.cpp
    1.2 04/05/07 15:34:04 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/include/NdbTimer.hpp
    1.2 04/05/07 15:34:04 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/include/NDBT_Test.hpp
    1.2 04/05/07 15:34:04 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/include/NDBT_Table.hpp
    1.3 04/05/07 15:34:04 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/test/include/NDBT_Stats.hpp
    1.2 04/05/07 15:34:04 tomas@mc05.(none) +1 -3
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/rep/transfer/TransSS.hpp
    1.2 04/05/07 15:34:04 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/rep/transfer/TransSS.cpp
    1.2 04/05/07 15:34:04 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/rep/transfer/TransPS.hpp
    1.2 04/05/07 15:34:04 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/rep/transfer/TransPS.cpp
    1.2 04/05/07 15:34:04 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/rep/storage/NodeGroupInfo.hpp
    1.2 04/05/07 15:34:04 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/rep/storage/GCIBuffer.cpp
    1.3 04/05/07 15:34:04 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/rep/dbug_hack.cpp
    1.3 04/05/07 15:34:04 tomas@mc05.(none) +2 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/rep/adapters/ExtNDB.cpp
    1.2 04/05/07 15:34:04 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/rep/adapters/AppNDB.hpp
    1.2 04/05/07 15:34:03 tomas@mc05.(none) +0 -4
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/rep/Requestor.cpp
    1.2 04/05/07 15:34:03 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/rep/RepMain.cpp
    1.3 04/05/07 15:34:03 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/rep/RepApiService.cpp
    1.2 04/05/07 15:34:03 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/newtonapi/dba_error.cpp
    1.2 04/05/07 15:34:03 tomas@mc05.(none) +2 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/ndbapi/signal-sender/SignalSender.cpp
    1.2 04/05/07 15:34:03 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/ndbapi/ndberror.c
    1.4 04/05/07 15:34:03 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/ndbapi/TransporterFacade.cpp
    1.3 04/05/07 15:34:03 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/ndbapi/Ndbif.cpp
    1.2 04/05/07 15:34:03 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/ndbapi/NdbScanReceiver.hpp
    1.2 04/05/07 15:34:03 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/ndbapi/NdbScanOperation.cpp
    1.3 04/05/07 15:34:03 tomas@mc05.(none) +0 -4
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/ndbapi/NdbPoolImpl.cpp
    1.2 04/05/07 15:34:03 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/ndbapi/NdbOperationExec.cpp
    1.3 04/05/07 15:34:03 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/ndbapi/NdbOperation.cpp
    1.2 04/05/07 15:34:03 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/ndbapi/NdbErrorOut.cpp
    1.3 04/05/07 15:34:03 tomas@mc05.(none) +1 -4
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/ndbapi/NdbDictionaryImpl.cpp
    1.2 04/05/07 15:34:03 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/ndbapi/NdbDictionary.cpp
    1.2 04/05/07 15:34:03 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/ndbapi/NdbConnectionScan.cpp
    1.3 04/05/07 15:34:02 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/ndbapi/Ndb.cpp
    1.3 04/05/07 15:34:01 tomas@mc05.(none) +2 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/ndbapi/ClusterMgr.cpp
    1.4 04/05/07 15:34:01 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/mgmsrv/mkconfig/mkconfig.cpp
    1.3 04/05/07 15:34:01 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/mgmsrv/NodeLogLevelList.cpp
    1.2 04/05/07 15:34:01 tomas@mc05.(none) +2 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/mgmsrv/NodeLogLevel.hpp
    1.2 04/05/07 15:34:01 tomas@mc05.(none) +2 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/mgmsrv/MgmtSrvr.hpp
    1.2 04/05/07 15:34:01 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/mgmsrv/CommandInterpreter.hpp
    1.3 04/05/07 15:34:01 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/mgmclient/test_cpcd/test_cpcd.cpp
    1.3 04/05/07 15:34:01 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/mgmclient/CommandInterpreter.hpp
    1.3 04/05/07 15:34:01 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/vm/testLongSig/testLongSig.cpp
    1.3 04/05/07 15:34:01 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/vm/al_test/main.cpp
    1.3 04/05/07 15:34:01 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/vm/al_test/arrayPoolTest.cpp
    1.3 04/05/07 15:34:01 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/vm/al_test/arrayListTest.cpp
    1.3 04/05/07 15:34:01 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/vm/SimulatedBlock.cpp
    1.3 04/05/07 15:34:01 tomas@mc05.(none) +2 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/vm/GlobalData.hpp
    1.3 04/05/07 15:34:01 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/vm/DLHashTable2.hpp
    1.2 04/05/07 15:34:01 tomas@mc05.(none) +2 -3
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/vm/DLHashTable.hpp
    1.2 04/05/07 15:34:01 tomas@mc05.(none) +1 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/vm/Configuration.cpp
    1.3 04/05/07 15:34:01 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/vm/ClusterConfiguration.cpp
    1.2 04/05/07 15:34:00 tomas@mc05.(none) +2 -3
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/vm/ArrayPool.hpp
    1.2 04/05/07 15:34:00 tomas@mc05.(none) +2 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/ndb-main/Main.cpp
    1.3 04/05/07 15:34:00 tomas@mc05.(none) +2 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/error/ErrorReporter.cpp
    1.2 04/05/07 15:34:00 tomas@mc05.(none) +2 -3
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp
    1.2 04/05/07 15:34:00 tomas@mc05.(none) +1 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/blocks/ndbfs/MemoryChannelOSE.hpp
    1.2 04/05/07 15:34:00 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/blocks/ndbfs/MemoryChannel.hpp
    1.2 04/05/07 15:34:00 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/blocks/ndbfs/Filename.hpp
    1.2 04/05/07 15:34:00 tomas@mc05.(none) +1 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp
    1.2 04/05/07 15:34:00 tomas@mc05.(none) +2 -7
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/blocks/dbutil/DbUtil.cpp
    1.3 04/05/07 15:34:00 tomas@mc05.(none) +2 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/blocks/backup/restore/main.cpp
    1.3 04/05/07 15:34:00 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/blocks/backup/restore/Restore.hpp
    1.3 04/05/07 15:34:00 tomas@mc05.(none) +1 -4
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/blocks/backup/restore/Restore.cpp
    1.3 04/05/07 15:34:00 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/kernel/blocks/backup/FsBuffer.hpp
    1.3 04/05/07 15:34:00 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/cw/cpcd/Process.cpp
    1.4 04/05/07 15:34:00 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/cw/cpcd/Monitor.cpp
    1.2 04/05/07 15:34:00 tomas@mc05.(none) +2 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/cw/cpcd/CPCD.cpp
    1.2 04/05/07 15:34:00 tomas@mc05.(none) +1 -4
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/cw/cpcd/APIService.cpp
    1.2 04/05/07 15:34:00 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/util/testSimpleProperties/sp_test.cpp
    1.3 04/05/07 15:34:00 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/util/strlcat.c
    1.4 04/05/07 15:33:59 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/util/socket_io.cpp
    1.2 04/05/07 15:33:59 tomas@mc05.(none) +2 -4
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/util/filetest/FileUnitTest.cpp
    1.2 04/05/07 15:33:59 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/util/SocketServer.cpp
    1.3 04/05/07 15:33:59 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/util/SimpleProperties.cpp
    1.3 04/05/07 15:33:59 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/util/Properties.cpp
    1.3 04/05/07 15:33:59 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/util/Parser.cpp
    1.3 04/05/07 15:33:59 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/util/OutputStream.cpp
    1.2 04/05/07 15:33:59 tomas@mc05.(none) +2 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/util/NdbSqlUtil.cpp
    1.2 04/05/07 15:33:59 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/util/NdbOut.cpp
    1.2 04/05/07 15:33:59 tomas@mc05.(none) +3 -5
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/util/NdbErrHnd.cpp
    1.2 04/05/07 15:33:59 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/util/InputStream.cpp
    1.2 04/05/07 15:33:59 tomas@mc05.(none) +2 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/util/BaseString.cpp
    1.3 04/05/07 15:33:59 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/transporter/TransporterRegistry.cpp
    1.3 04/05/07 15:33:59 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/transporter/Transporter.cpp
    1.2 04/05/07 15:33:59 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/transporter/SHM_Buffer.hpp
    1.3 04/05/07 15:33:59 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/transporter/OSE_Transporter.cpp
    1.2 04/05/07 15:33:59 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/transporter/OSE_Receiver.cpp
    1.2 04/05/07 15:33:59 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/portlib/win32/NdbThread.c
    1.2 04/05/07 15:33:59 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/portlib/win32/NdbMutex.c
    1.2 04/05/07 15:33:58 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/portlib/win32/NdbMem.c
    1.2 04/05/07 15:33:58 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/portlib/win32/NdbCondition.c
    1.2 04/05/07 15:33:58 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/portlib/unix/NdbThread.c
    1.2 04/05/07 15:33:58 tomas@mc05.(none) +2 -8
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/portlib/unix/NdbMutex.c
    1.2 04/05/07 15:33:58 tomas@mc05.(none) +3 -4
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/portlib/unix/NdbMem.c
    1.3 04/05/07 15:33:58 tomas@mc05.(none) +2 -7
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/portlib/unix/NdbEnv.c
    1.2 04/05/07 15:33:58 tomas@mc05.(none) +3 -3
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/portlib/unix/NdbDaemon.c
    1.3 04/05/07 15:33:58 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/portlib/unix/NdbCondition.c
    1.2 04/05/07 15:33:58 tomas@mc05.(none) +3 -9
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/portlib/ose/NdbThread.c
    1.2 04/05/07 15:33:58 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/portlib/ose/NdbOut.cpp
    1.2 04/05/07 15:33:58 tomas@mc05.(none) +2 -5
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/portlib/ose/NdbMutex.c
    1.2 04/05/07 15:33:58 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/portlib/ose/NdbMem.c
    1.2 04/05/07 15:33:58 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/portlib/ose/NdbCondition.c
    1.2 04/05/07 15:33:58 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/mgmcommon/InitConfigFileParser.cpp
    1.2 04/05/07 15:33:58 tomas@mc05.(none) +2 -5
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/mgmcommon/Config.hpp
    1.2 04/05/07 15:33:58 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/logger/loggertest/LoggerUnitTest.cpp
    1.2 04/05/07 15:33:58 tomas@mc05.(none) +0 -4
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/logger/listtest/LogHandlerListUnitTest.cpp
    1.3 04/05/07 15:33:58 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/logger/SysLogHandler.cpp
    1.2 04/05/07 15:33:58 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/logger/Logger.cpp
    1.2 04/05/07 15:33:58 tomas@mc05.(none) +1 -7
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/logger/LogHandlerList.cpp
    1.2 04/05/07 15:33:57 tomas@mc05.(none) +0 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/logger/LogHandler.cpp
    1.2 04/05/07 15:33:57 tomas@mc05.(none) +0 -3
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/logger/FileLogHandler.cpp
    1.3 04/05/07 15:33:57 tomas@mc05.(none) +0 -6
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/debugger/signaldata/SystemError.cpp
    1.2 04/05/07 15:33:57 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/debugger/signaldata/PrepFailReqRef.cpp
    1.2 04/05/07 15:33:57 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/debugger/signaldata/ContinueB.cpp
    1.2 04/05/07 15:33:57 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/debugger/signaldata/CloseComReqConf.cpp
    1.2 04/05/07 15:33:57 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/debugger/SignalLoggerManager.cpp
    1.4 04/05/07 15:33:57 tomas@mc05.(none) +0 -3
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/common/debugger/EventLogger.cpp
    1.2 04/05/07 15:33:57 tomas@mc05.(none) +2 -4
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/client/odbc/common/OdbcData.cpp
    1.2 04/05/07 15:33:57 tomas@mc05.(none) +1 -3
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/client/odbc/common/DataType.cpp
    1.2 04/05/07 15:33:56 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/client/odbc/common/DataField.cpp
    1.2 04/05/07 15:33:56 tomas@mc05.(none) +1 -7
    more removing of "system" files and introducing ndb_global/my_global

  ndb/src/client/odbc/common/Ctx.cpp
    1.2 04/05/07 15:33:56 tomas@mc05.(none) +1 -5
    more removing of "system" files and introducing ndb_global/my_global

  ndb/include/util/socket_io.h
    1.2 04/05/07 15:33:56 tomas@mc05.(none) +2 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/include/util/getarg.h
    1.2 04/05/07 15:33:56 tomas@mc05.(none) +1 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/include/util/SimpleProperties.hpp
    1.2 04/05/07 15:33:56 tomas@mc05.(none) +1 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/include/util/File.hpp
    1.3 04/05/07 15:33:56 tomas@mc05.(none) +1 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/include/util/Bitmask.hpp
    1.3 04/05/07 15:33:56 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/include/portlib/NdbTCP.h
    1.2 04/05/07 15:33:56 tomas@mc05.(none) +3 -34
    more removing of "system" files and introducing ndb_global/my_global

  ndb/include/portlib/NdbMem.h
    1.2 04/05/07 15:33:56 tomas@mc05.(none) +1 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/include/newtonapi/defs/pcn_types.h
    1.2 04/05/07 15:33:56 tomas@mc05.(none) +1 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/include/ndb_types.h
    1.3 04/05/07 15:33:56 tomas@mc05.(none) +0 -5
    more removing of "system" files and introducing ndb_global/my_global

  ndb/include/ndb_global.h
    1.4 04/05/07 15:33:56 tomas@mc05.(none) +66 -0
    more removing of "system" files and introducing ndb_global/my_global

  ndb/include/logger/Logger.hpp
    1.2 04/05/07 15:33:56 tomas@mc05.(none) +1 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/include/logger/LogHandler.hpp
    1.2 04/05/07 15:33:56 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/include/kernel/signaldata/SignalDataPrint.hpp
    1.2 04/05/07 15:33:56 tomas@mc05.(none) +1 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/include/kernel/signaldata/SignalData.hpp
    1.3 04/05/07 15:33:56 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/include/kernel/signaldata/BuildIndx.hpp
    1.2 04/05/07 15:33:56 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/include/kernel/LogLevel.hpp
    1.2 04/05/07 15:33:56 tomas@mc05.(none) +1 -2
    more removing of "system" files and introducing ndb_global/my_global

  ndb/include/debugger/SignalLoggerManager.hpp
    1.3 04/05/07 15:33:55 tomas@mc05.(none) +0 -1
    more removing of "system" files and introducing ndb_global/my_global

  ndb/examples/ndbapi_scan_example/ndbapi_scan.cpp
    1.2 04/05/07 15:33:55 tomas@mc05.(none) +2 -10
    more removing of "system" files and introducing ndb_global/my_global

  ndb/examples/ndbapi_async_example/ndbapi_async.cpp
    1.3 04/05/07 15:33:55 tomas@mc05.(none) +2 -10
    more removing of "system" files and introducing ndb_global/my_global

  BitKeeper/deleted/.del-NdbUnistd.h~a1b3840adcd49985
    1.2 04/05/07 15:16:21 tomas@mc05.(none) +0 -0
    Delete: ndb/include/portlib/NdbUnistd.h

ChangeSet
  1.1616.370.4 04/05/07 14:50:10 georg@beethoven.local +3 -0
  Added additional parameter userdata for mysql_set_local_infile_handler
  to allow binding of userland functions in PHP.

  BitKeeper/etc/logging_ok
    1.233.1.62 04/05/07 14:48:13 georg@beethoven.local +1 -0
    Logging to logging@openlogging.org accepted

  libmysql/libmysql.c
    1.156.1.74 04/05/07 14:45:38 georg@beethoven.local +9 -4
    added parameter userdata in mysql_set_local_infile_handler
    added parameter (void *userdata __attribute__ ((unused))) in mysql_local_infile_init
    passed additional parameter userdata to init function in handle_local_infile

  include/mysql.h
    1.122 04/05/07 14:45:38 georg@beethoven.local +6 -3
    added new last parameter (void *) for mysql_set_local_infile_handler
    st_mysql_options:
      added void *local_infile_userdata
      added last parameter (void *) for local_infile_init function pointer

  BitKeeper/deleted/.del-NdbConstant.hpp~de1038c1758cc1f9
    1.2 04/05/07 14:24:39 tomas@mc05.(none) +0 -0
    Delete: ndb/include/portlib/NdbConstant.hpp

  BitKeeper/deleted/.del-NdbString.h~1f9f26341ce5f5f
    1.3 04/05/07 14:24:18 tomas@mc05.(none) +0 -0
    Delete: ndb/include/util/NdbString.h

  BitKeeper/deleted/.del-NdbStdio.h~17be17a4f591c671
    1.3 04/05/07 14:23:01 tomas@mc05.(none) +0 -0
    Delete: ndb/include/portlib/NdbStdio.h

  BitKeeper/deleted/.del-regression.sh~c19f771726612629
    1.2 04/05/07 11:26:04 magnus@neptunus.(none) +0 -0
    Delete: ndb/bin/regression.sh

ChangeSet
  1.1346.610.1 04/05/07 12:13:45 marko@hundin.mysql.fi +2 -0
  Fix auto_inc locking bug introduced in ChangeSet@1.1794.1.1

  mysql-test/r/innodb.result
    1.40.1.38 04/05/07 12:13:42 marko@hundin.mysql.fi +1 -1
    Revert ChangeSet@1.1794.1.1

  innobase/row/row0mysql.c
    1.39.1.25 04/05/07 12:13:42 marko@hundin.mysql.fi +1 -1
    Revert accidental modification to row_lock_table_autoinc_for_mysql()
    made in ChangeSet@1.1794.1.1 

ChangeSet
  1.1616.341.10 04/05/07 08:39:42 tomas@mc05.(none) +196 -0
  introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/tools/verify_index/verify_index.cpp
    1.2 04/05/07 08:39:38 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/tools/transproxy/transproxy.cpp
    1.2 04/05/07 08:39:38 tomas@mc05.(none) +1 -7
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/tools/select_count/select_count.cpp
    1.2 04/05/07 08:39:38 tomas@mc05.(none) +2 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/tools/select_all/select_all.cpp
    1.2 04/05/07 08:39:38 tomas@mc05.(none) +2 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/tools/drop_tab/drop_tab.cpp
    1.2 04/05/07 08:39:38 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/tools/drop_index/drop_index.cpp
    1.2 04/05/07 08:39:38 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/tools/delete_all/delete_all.cpp
    1.2 04/05/07 08:39:38 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/tools/create_index/create_index.cpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/tools/copy_tab/copy_tab.cpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/tools/hugoScanUpdate/hugoScanUpd.cpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +2 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/tools/hugoScanRead/hugoScanRead.cpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +2 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/tools/hugoPkUpdate/hugoPkUpd.cpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +2 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/tools/hugoPkReadRecord/hugoPkReadRecord.cpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +2 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/tools/hugoPkRead/hugoPkRead.cpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +2 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/tools/hugoPkDelete/hugoPkDel.cpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +2 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/tools/hugoLockRecords/hugoLockRecords.cpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +2 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/tools/hugoFill/hugoFill.cpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/tools/hugoCalculator/hugoCalculator.cpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +3 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/src/NDBT_ReturnCodes.cpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +3 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/src/NDBT_ResultRow.cpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +2 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/run-test/run-test.hpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +2 -0
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/run-test/main.cpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/newtonapi/perf_test/perf.cpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +6 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/newtonapi/basic_test/too_basic.cpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +3 -7
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/newtonapi/basic_test/common.hpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +2 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/newtonapi/basic_test/common.cpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +0 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/vw_test/size.cpp
    1.2 04/05/07 08:39:37 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/vw_test/cdrserver.cpp
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +3 -9
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/vw_test/bcd.h
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/testOIBasic/testOIBasic.cpp
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +1 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/testDataBuffers/testDataBuffers.cpp
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +2 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/testBlobs/testBlobs.cpp
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +3 -5
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/ronja/benchronja/benchronja.cpp
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +2 -5
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/lmc-bench/src/user/userTransaction.c
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/lmc-bench/src/user/userInterface.cpp
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +1 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/lmc-bench/src/user/old/userTransaction.c
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/lmc-bench/src/user/old/userInterface.c
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +1 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/lmc-bench/src/user/ndb_user_populate.cpp
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/lmc-bench/src/user/ndb_error.hpp
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +0 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/lmc-bench/src/user/macros.h
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/lmc-bench/src/user/localDbPrepare.c
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/lmc-bench/src/populator/mainPopulate.c
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +1 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/lmc-bench/src/populator/dbPopulate.c
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +1 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/lmc-bench/src/generator/mainGenerator.c
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +1 -5
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/lmc-bench/src/generator/dbGenerator.c
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/lmc-bench/include/testDefinitions.h
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +7 -13
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/lmc-bench/async-src/user/userInterface.cpp
    1.2 04/05/07 08:39:36 tomas@mc05.(none) +1 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/lmc-bench/async-src/user/ndb_error.hpp
    1.2 04/05/07 08:39:35 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/lmc-bench/async-src/user/macros.h
    1.2 04/05/07 08:39:35 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/lmc-bench/async-src/generator/mainAsyncGenerator.cpp
    1.2 04/05/07 08:39:35 tomas@mc05.(none) +1 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/lmc-bench/async-src/generator/asyncGenerator.cpp
    1.2 04/05/07 08:39:35 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/indexTest2/index2.cpp
    1.2 04/05/07 08:39:35 tomas@mc05.(none) +2 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/indexTest/index.cpp
    1.2 04/05/07 08:39:35 tomas@mc05.(none) +2 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/flexTT/flexTT.cpp
    1.2 04/05/07 08:39:35 tomas@mc05.(none) +3 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/drop_all_tabs/drop_all_tabs.cpp
    1.2 04/05/07 08:39:35 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/create_tab/create_tab.cpp
    1.2 04/05/07 08:39:35 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/create_all_tabs/create_all_tabs.cpp
    1.2 04/05/07 08:39:35 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/bank/bankValidateAllGLs/bankValidateAllGLs.cpp
    1.2 04/05/07 08:39:35 tomas@mc05.(none) +2 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/bank/bankTransactionMaker/bankTransactionMaker.cpp
    1.2 04/05/07 08:39:35 tomas@mc05.(none) +2 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/bank/bankTimer/bankTimer.cpp
    1.2 04/05/07 08:39:35 tomas@mc05.(none) +2 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/bank/bankSumAccounts/bankSumAccounts.cpp
    1.2 04/05/07 08:39:35 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/bank/bankMakeGL/bankMakeGL.cpp
    1.2 04/05/07 08:39:35 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/ndbapi/bank/bankCreator/bankCreator.cpp
    1.2 04/05/07 08:39:35 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/test/include/NDBT_Table.hpp
    1.2 04/05/07 08:39:35 tomas@mc05.(none) +3 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/rep/storage/LogRecord.hpp
    1.2 04/05/07 08:39:34 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/rep/storage/GCIContainer.hpp
    1.3 04/05/07 08:39:34 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/rep/storage/GCIBuffer.hpp
    1.2 04/05/07 08:39:34 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/rep/storage/GCIBuffer.cpp
    1.2 04/05/07 08:39:33 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/rep/state/Interval.cpp
    1.2 04/05/07 08:39:33 tomas@mc05.(none) +2 -0
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/rep/repapi/repapi.cpp
    1.2 04/05/07 08:39:33 tomas@mc05.(none) +1 -6
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/rep/dbug_hack.cpp
    1.2 04/05/07 08:39:33 tomas@mc05.(none) +2 -0
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/rep/adapters/ExtNDB.hpp
    1.2 04/05/07 08:39:33 tomas@mc05.(none) +2 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/rep/Requestor.hpp
    1.2 04/05/07 08:39:33 tomas@mc05.(none) +2 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/rep/RepMain.cpp
    1.2 04/05/07 08:39:33 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/newtonapi/dba_internal.hpp
    1.2 04/05/07 08:39:33 tomas@mc05.(none) +2 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/ndbapi/signal-sender/SignalSender.hpp
    1.2 04/05/07 08:39:33 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/ndbapi/ndberror.c
    1.3 04/05/07 08:39:33 tomas@mc05.(none) +5 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/ndbapi/TransporterFacade.cpp
    1.2 04/05/07 08:39:33 tomas@mc05.(none) +2 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/ndbapi/ObjectMap.hpp
    1.2 04/05/07 08:39:33 tomas@mc05.(none) +1 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/ndbapi/NdbUtil.hpp
    1.2 04/05/07 08:39:33 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/ndbapi/NdbScanOperation.cpp
    1.2 04/05/07 08:39:33 tomas@mc05.(none) +19 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/ndbapi/NdbRecAttr.cpp
    1.2 04/05/07 08:39:33 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/ndbapi/NdbOperationExec.cpp
    1.2 04/05/07 08:39:33 tomas@mc05.(none) +6 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/ndbapi/NdbEventOperationImpl.cpp
    1.2 04/05/07 08:39:33 tomas@mc05.(none) +2 -11
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/ndbapi/NdbConnectionScan.cpp
    1.2 04/05/07 08:39:33 tomas@mc05.(none) +7 -5
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/ndbapi/Ndb.cpp
    1.2 04/05/07 08:39:33 tomas@mc05.(none) +4 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/ndbapi/DictCache.cpp
    1.2 04/05/07 08:39:33 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/ndbapi/ClusterMgr.cpp
    1.3 04/05/07 08:39:33 tomas@mc05.(none) +4 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/mgmsrv/mkconfig/mkconfig.cpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +4 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/mgmsrv/convertStrToInt.cpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +1 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/mgmsrv/CommandInterpreter.hpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/mgmclient/test_cpcd/test_cpcd.cpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/mgmclient/main.cpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +1 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/mgmclient/CpcClient.cpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +1 -5
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/mgmclient/CommandInterpreter.hpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/mgmclient/CommandInterpreter.cpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +1 -8
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/mgmapi/test/mgmSrvApi.cpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +1 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/mgmapi/test/keso.c
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +2 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/mgmapi/mgmapi.cpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +2 -6
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/kernel/vm/testSimplePropertiesSection/test.cpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +3 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/kernel/vm/testLongSig/testLongSig.cpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +2 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/kernel/vm/testDataBuffer/testDataBuffer.cpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +4 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/kernel/vm/testCopy/testCopy.cpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +1 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/kernel/vm/testCopy/rr.cpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +2 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/kernel/vm/al_test/main.cpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +3 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/kernel/vm/al_test/arrayPoolTest.cpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +3 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/kernel/vm/al_test/arrayListTest.cpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +3 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/kernel/vm/VMSignal.hpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +4 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/kernel/vm/TransporterCallback.cpp
    1.2 04/05/07 08:39:32 tomas@mc05.(none) +2 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/kernel/vm/GlobalData.hpp
    1.2 04/05/07 08:39:31 tomas@mc05.(none) +2 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/kernel/vm/Emulator.cpp
    1.3 04/05/07 08:39:31 tomas@mc05.(none) +2 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/kernel/error/ErrorReporter.hpp
    1.2 04/05/07 08:39:31 tomas@mc05.(none) +2 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/kernel/blocks/ndbfs/Filename.cpp
    1.3 04/05/07 08:39:31 tomas@mc05.(none) +2 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/kernel/blocks/dblqh/redoLogReader/redoLogFileReader.cpp
    1.2 04/05/07 08:39:31 tomas@mc05.(none) +3 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/kernel/blocks/dbdih/printSysfile/printSysfile.cpp
    1.2 04/05/07 08:39:31 tomas@mc05.(none) +3 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/kernel/blocks/dbdict/printSchemafile/printSchemafile.cpp
    1.2 04/05/07 08:39:31 tomas@mc05.(none) +3 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/kernel/blocks/backup/read.cpp
    1.2 04/05/07 08:39:31 tomas@mc05.(none) +1 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/kernel/blocks/backup/FsBuffer.hpp
    1.2 04/05/07 08:39:31 tomas@mc05.(none) +1 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/cw/util/ClientInterface.hpp
    1.2 04/05/07 08:39:31 tomas@mc05.(none) +1 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/cw/test/socketclient/socketClientTest.cpp
    1.2 04/05/07 08:39:31 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/cw/cpcd/common.hpp
    1.2 04/05/07 08:39:31 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/cw/cpcd/Process.cpp
    1.3 04/05/07 08:39:31 tomas@mc05.(none) +1 -5
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/cw/cpcc-win32/C++/StdAfx.h
    1.2 04/05/07 08:39:31 tomas@mc05.(none) +1 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/util/version.c
    1.3 04/05/07 08:39:31 tomas@mc05.(none) +1 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/util/uucode.c
    1.2 04/05/07 08:39:31 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/util/testSimpleProperties/sp_test.cpp
    1.2 04/05/07 08:39:31 tomas@mc05.(none) +3 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/util/testProperties/testProperties.cpp
    1.2 04/05/07 08:39:31 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/util/strdup.c
    1.3 04/05/07 08:39:31 tomas@mc05.(none) +0 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/util/random.c
    1.2 04/05/07 08:39:31 tomas@mc05.(none) +1 -9
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/util/new.cpp
    1.3 04/05/07 08:39:31 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/util/getarg.c
    1.3 04/05/07 08:39:31 tomas@mc05.(none) +0 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/util/SocketServer.cpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +3 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/util/SimpleProperties.cpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/util/Properties.cpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +3 -5
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/util/Parser.cpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +3 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/util/File.cpp
    1.3 04/05/07 08:39:30 tomas@mc05.(none) +0 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/util/BaseString.cpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +2 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/util/Base64.cpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/transporter/priotest/prioTransporterTest.cpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +2 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/transporter/perftest/perfTransporterTest.cpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +2 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/transporter/failoverSCI/failoverSCI.cpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +3 -6
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/transporter/buddy.hpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/transporter/buddy.cpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +0 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/transporter/basictest/basicTransporterTest.cpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +2 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/transporter/TransporterRegistry.cpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +3 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/transporter/TCP_Transporter.cpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +2 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/transporter/SendBuffer.hpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/transporter/SHM_Transporter.win32.cpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +2 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/transporter/SHM_Transporter.unix.cpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +2 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/transporter/SHM_Transporter.cpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +2 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/transporter/SHM_Buffer.hpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +3 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/transporter/SCI_Transporter.cpp
    1.2 04/05/07 08:39:30 tomas@mc05.(none) +3 -6
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/transporter/Packer.cpp
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +2 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/portlib/unix/NdbDaemon.c
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +2 -20
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/portlib/test/NdbPortLibTest.cpp
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +1 -6
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/portlib/mmstest/mmstest.cpp
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +2 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/portlib/mmstest/mmslist.cpp
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +2 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/portlib/memtest/munmaptest/munmaptest.cpp
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +3 -7
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/portlib/memtest/memtest.c
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/mgmcommon/printConfig/printConfig.cpp
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +2 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/mgmcommon/NdbConfig.c
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/mgmcommon/LocalConfig.hpp
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +1 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/mgmcommon/InitConfigFileParser.hpp
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +2 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/mgmcommon/ConfigRetriever.cpp
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +4 -6
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/logger/listtest/LogHandlerListUnitTest.cpp
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +3 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/editline/test/testit.c
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +1 -5
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/editline/editline_win32.c
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/editline/editline_internal.h
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +2 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/debugger/SignalLoggerManager.cpp
    1.3 04/05/07 08:39:29 tomas@mc05.(none) +2 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/src/common/debugger/DebuggerNames.cpp
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +2 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/util/uucode.h
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/util/Vector.hpp
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/util/UtilBuffer.hpp
    1.2 04/05/07 08:39:29 tomas@mc05.(none) +1 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/util/Properties.hpp
    1.2 04/05/07 08:39:28 tomas@mc05.(none) +1 -4
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/util/OutputStream.hpp
    1.2 04/05/07 08:39:28 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/util/NdbAutoPtr.hpp
    1.2 04/05/07 08:39:28 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/util/InputStream.hpp
    1.2 04/05/07 08:39:28 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/util/Bitmask.hpp
    1.2 04/05/07 08:39:28 tomas@mc05.(none) +1 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/util/BaseString.hpp
    1.2 04/05/07 08:39:28 tomas@mc05.(none) +1 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/transporter/TransporterDefinitions.hpp
    1.2 04/05/07 08:39:28 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/portlib/NdbStdio.h
    1.2 04/05/07 08:39:28 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/newtonapi/dba.h
    1.2 04/05/07 08:39:28 tomas@mc05.(none) +1 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/ndbapi/ndberror.h
    1.3 04/05/07 08:39:28 tomas@mc05.(none) +1 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/ndbapi/NdbSchemaOp.hpp
    1.2 04/05/07 08:39:28 tomas@mc05.(none) +1 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/ndbapi/NdbScanOperation.hpp
    1.3 04/05/07 08:39:28 tomas@mc05.(none) +0 -19
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/ndbapi/NdbReceiver.hpp
    1.2 04/05/07 08:39:28 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/ndbapi/NdbRecAttr.hpp
    1.2 04/05/07 08:39:28 tomas@mc05.(none) +7 -10
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/ndbapi/NdbOperation.hpp
    1.2 04/05/07 08:39:28 tomas@mc05.(none) +7 -10
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/ndbapi/NdbEventOperation.hpp
    1.2 04/05/07 08:39:28 tomas@mc05.(none) +3 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/ndbapi/NdbConnection.hpp
    1.2 04/05/07 08:39:28 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/ndbapi/Ndb.hpp
    1.2 04/05/07 08:39:28 tomas@mc05.(none) +3 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/ndb_version.h
    1.3 04/05/07 08:39:28 tomas@mc05.(none) +0 -3
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/ndb_types.h
    1.2 04/05/07 08:39:28 tomas@mc05.(none) +2 -0
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/ndb_global.h
    1.3 04/05/07 08:39:28 tomas@mc05.(none) +5 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/mgmcommon/MgmtErrorReporter.hpp
    1.2 04/05/07 08:39:28 tomas@mc05.(none) +1 -1
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

  ndb/include/kernel/signaldata/SignalData.hpp
    1.2 04/05/07 08:39:28 tomas@mc05.(none) +1 -2
    introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib

ChangeSet
  1.1616.370.2 04/05/07 10:24:12 bar@bar.intranet.mysql.r18.ru +3 -0
  ctype-win1250ch.c, ctype-czech.c:
    Czech collations were renamed to _cs
  Index.xml:
    Czech collation were renamed to _cs

  strings/ctype-win1250ch.c
    1.35 04/05/07 10:18:20 bar@bar.intranet.mysql.r18.ru +1 -1
    Czech collations were renamed to _cs

  strings/ctype-czech.c
    1.45 04/05/07 10:17:59 bar@bar.intranet.mysql.r18.ru +1 -1
    Czech collations were renamed to _cs

  sql/share/charsets/Index.xml
    1.31 04/05/07 10:17:35 bar@bar.intranet.mysql.r18.ru +2 -2
    Czech collation were renamed to _cs

ChangeSet
  1.1616.370.1 04/05/07 06:34:44 monty@mysql.com +1 -0
  Portablity fix for system with case insenstive table names. (Without this ALTER TABLE can fail for InnoDB)

  sql/sql_table.cc
    1.157.32.1 04/05/07 06:34:43 monty@mysql.com +3 -0
    Portablity fix for system with case insenstive table names. (Without this ALTER TABLE can fail for InnoDB)

ChangeSet
  1.1616.363.6 04/05/07 03:32:51 sergefp@mysql.com +2 -0
  Added a test for a problem that was fixed by automerge and fixed a typo.

  mysql-test/t/ps.test
    1.4 04/05/07 03:32:47 sergefp@mysql.com +14 -2
    Added a test for a problem that was fixed by automerge and fixed a typo.

  mysql-test/r/ps.result
    1.4 04/05/07 03:32:47 sergefp@mysql.com +11 -2
    Added a test for a problem that was fixed by automerge and fixed a typo.

ChangeSet
  1.1616.369.1 04/05/07 01:43:17 monty@mysql.com +15 -0
  Portability fixes
  Change strtoll -> my_strtoll10()
  Fixed bug in my_strntoul() and my_strntol() where we got different values on 32 and 64 bit systems (Bug #3472)

  strings/ctype-ucs2.c
    1.20 04/05/07 01:43:12 monty@mysql.com +14 -15
    Fixed bug in my_strntoul() and my_strntol() where we got different values on 32 and 64 bit systems

  strings/ctype-simple.c
    1.49 04/05/07 01:43:12 monty@mysql.com +14 -14
    Fixed bug in my_strntoul() and my_strntol() where we got different values on 32 and 64 bit systems

  sql/item_timefunc.cc
    1.51.1.10 04/05/07 01:43:12 monty@mysql.com +1 -1
    Fixed compiler warning

  sql/item_sum.h
    1.48.1.17 04/05/07 01:43:12 monty@mysql.com +6 -2
    Portability fix (don't use strtoll())

  sql/item.h
    1.56.29.5 04/05/07 01:43:11 monty@mysql.com +2 -7
    Portability fix (don't use strtoll())

  sql/item.cc
    1.58.53.1 04/05/07 01:43:11 monty@mysql.com +23 -0
    Portability fix (don't use strtoll())

  mysql-test/t/key_cache.test
    1.12 04/05/07 01:43:11 monty@mysql.com +10 -6
    Updated results to not depend on key_blocks_unused

  mysql-test/t/func_str.test
    1.54 04/05/07 01:43:11 monty@mysql.com +3 -2
    More test of long overflow

  mysql-test/r/key_cache.result
    1.11 04/05/07 01:43:11 monty@mysql.com +3 -9
    Updated results to not depend on key_blocks_unused

  mysql-test/r/func_str.result
    1.61 04/05/07 01:43:11 monty@mysql.com +11 -4
    Updated results

  libmysql/libmysql.c
    1.156.16.1 04/05/07 01:43:11 monty@mysql.com +9 -1
    Remove compiler warnings

  libmysql/client_settings.h
    1.28 04/05/07 01:43:11 monty@mysql.com +0 -6
    Remove compiler warnings

  include/my_global.h
    1.47.6.5 04/05/07 01:43:11 monty@mysql.com +1 -1
    Portability fix (IRIX64)

  extra/my_print_defaults.c
    1.13 04/05/07 01:43:11 monty@mysql.com +1 -1
    Fixed wrong definition for 'verbose'

  configure.in
    1.201.8.9 04/05/07 01:43:10 monty@mysql.com +2 -1
    Fixed problem on IRIX64 (One can't have AC_MSG_RESULT on same row as AC_DEFINE

ChangeSet
  1.1346.609.1 04/05/07 01:02:57 jani@a80-186-24-72.elisa-laajakaista.fi +2 -0
  Fixed a problem with option --where, which earlier was not dynamic. One was not able
  to use long query strings with it.
  Bug#3633

  BitKeeper/etc/logging_ok
    1.206.27.1 04/05/07 01:02:57 jani@a80-186-24-72.elisa-laajakaista.fi +1 -0
    Logging to logging@openlogging.org accepted

  client/mysqldump.c
    1.65.1.44 04/05/07 01:02:50 jani@a80-186-24-72.elisa-laajakaista.fi +47 -16
    Fixed a problem with option --where, which earlier was not dynamic. One was not able
    to use long query strings with it.
    Bug#3633

ChangeSet
  1.1616.368.2 04/05/07 00:32:44 bell@sanja.is.com.ua +2 -0
  postreview fixes

  sql/sql_union.cc
    1.74.22.2 04/05/07 00:32:42 bell@sanja.is.com.ua +2 -1
    layout fixed

  sql/sql_lex.h
    1.102.36.3 04/05/07 00:32:42 bell@sanja.is.com.ua +4 -1
    description of field

ChangeSet
  1.1616.368.1 04/05/07 00:08:21 bell@sanja.is.com.ua +2 -0
  fake_select_lex should be prepared during PS preparation to work correctly
  item_list for fake_select will be created only once
  (problem reported by valgrind in test_union2 fixed)

  sql/sql_union.cc
    1.74.22.1 04/05/07 00:07:59 bell@sanja.is.com.ua +60 -18
    fake_select_lex should be prepared during PS preparation to work correctly
    item_list for fake_select will be created only once

  sql/sql_lex.h
    1.102.36.2 04/05/07 00:07:59 bell@sanja.is.com.ua +2 -1
    new function to keep code in one place

ChangeSet
  1.1346.608.1 04/05/06 22:55:30 guilhem@mysql.com +1 -0
  A DBUG_RETURN to match a DBUG_ENTER

  myisam/mi_dynrec.c
    1.33.1.1 04/05/06 22:55:28 guilhem@mysql.com +1 -1
    need DBUG_RETURN as we DBUG_ENTER

ChangeSet
  1.1616.366.1 04/05/06 21:37:43 lenz@mysql.com +1 -0
   - removed duplicate file ..\strings\strxnmov.c from the mysqlclient.dsp
     that was accidently added by the last BK auto merge

  VC++Files/client/mysqlclient.dsp
    1.24 04/05/06 21:37:37 lenz@mysql.com +0 -4
     - removed duplicate file ..\strings\strxnmov.c that was added by the
       last auto merge

ChangeSet
  1.1616.358.3 04/05/06 20:45:25 serg@serg.mylan +1 -0
  mysqldump: help text corrected

  client/mysqldump.c
    1.125.1.1 04/05/06 20:45:21 serg@serg.mylan +2 -2
    help text corrected

ChangeSet
  1.1616.363.4 04/05/06 22:44:00 konstantin@mysql.com +3 -0
  mysql_stmt_reset now expects ok/error packet from server.

  tests/client_test.c
    1.51.1.31 04/05/06 22:43:57 konstantin@mysql.com +4 -1
    Memory leak fixed.

  sql/sql_prepare.cc
    1.34.18.5 04/05/06 22:43:57 konstantin@mysql.com +11 -7
    mysql_stmt_reset now sends ok/error reply to the client.

  libmysql/libmysql.c
    1.156.1.72 04/05/06 22:43:57 konstantin@mysql.com +2 -1
    Make advanced_command check client reply

ChangeSet
  1.1616.365.1 04/05/06 19:55:12 pem@mysql.comhem.se +7 -0
  Fixed (portability) bug in handler.h, and tried to silence cast warnings on some platforms.

  sql/sql_lex.h
    1.102.36.1 04/05/06 19:55:09 pem@mysql.com +9 -3
    Attempt to silence cast warnings on some platforms.

  sql/sql_cache.cc
    1.46.1.29 04/05/06 19:55:09 pem@mysql.com +1 -1
    Silence warning (wrong cast).

  sql/spatial.h
    1.9.1.4 04/05/06 19:55:09 pem@mysql.com +1 -1
    Attempt to silence cast warnings on some platforms.

  sql/set_var.cc
    1.34.41.1 04/05/06 19:55:09 pem@mysql.com +1 -1
    Silence warning (missing cast).

  sql/item_subselect.h
    1.51 04/05/06 19:55:09 pem@mysql.com +1 -1
    Attempt to silence cast warnings on some platforms.

  sql/item_cmpfunc.h
    1.73.1.13 04/05/06 19:55:09 pem@mysql.com +2 -1
    Attempt to silence cast warnings on some platforms.

  sql/handler.h
    1.89.1.17 04/05/06 19:55:09 pem@mysql.com +3 -3
    Fixed (portability) bug. No qualified method names in the class definition.

ChangeSet
  1.1616.364.1 04/05/06 20:40:21 bell@sanja.is.com.ua +11 -0
  EXPLAIN UNION using same routing which used for execution which allow return correct bug messages (Bug #3639)
  EXPLAIN of hidden SELECT of UNION

  sql/sql_union.cc
    1.74.1.44 04/05/06 20:40:15 bell@sanja.is.com.ua +29 -7
    EXPLAIN UNION using same routing which used for execution

  sql/sql_select.cc
    1.216.67.1 04/05/06 20:40:15 bell@sanja.is.com.ua +98 -49
    EXPLAIN UNION using same routing which used for execution
    explain for hidden SELECT of UNION

  sql/sql_lex.h
    1.102.34.4 04/05/06 20:40:15 bell@sanja.is.com.ua +2 -1
    new flag of UNION EXPLAIN
    select ID can be negative (for hidden SELECTs)

  sql/sql_lex.cc
    1.97.1.24 04/05/06 20:40:15 bell@sanja.is.com.ua +1 -0
    new flag of UNION EXPLAIN

  sql/sql_class.h
    1.146.35.1 04/05/06 20:40:15 bell@sanja.is.com.ua +1 -2
    select ID can be negative (for hidden SELECTs)
    removed unused field

  sql/item.cc
    1.58.50.6 04/05/06 20:40:15 bell@sanja.is.com.ua +8 -3
    fixed name constructing for global ORDER BY items

  mysql-test/t/union.test
    1.68 04/05/06 20:40:15 bell@sanja.is.com.ua +12 -0
    correct error messages on EXPLAIN with union

  mysql-test/t/subselect.test
    1.58.1.48 04/05/06 20:40:15 bell@sanja.is.com.ua +1 -1
    show eliminated costants in WHERE clause

  mysql-test/r/union.result
    1.46.1.24 04/05/06 20:40:15 bell@sanja.is.com.ua +13 -10
    explain of hidden select
    correct error messages on explain

  mysql-test/r/subselect.result
    1.67.1.54 04/05/06 20:40:15 bell@sanja.is.com.ua +10 -1
    explain of hidden select

  mysql-test/r/derived.result
    1.45 04/05/06 20:40:14 bell@sanja.is.com.ua +4 -0
    explain of hidden select

ChangeSet
  1.1616.363.1 04/05/06 18:31:09 lenz@mysql.com +5 -0
   - Windows compile fixes: added some missing files to the Windows Project
     files, fixed linking of myisam_ftdump

  VC++Files/strings/strings.dsp
    1.13 04/05/06 18:31:01 lenz@mysql.com +4 -0
     - added strings/ctype.uca.c

  VC++Files/sql/mysqld.dsp
    1.17.1.3 04/05/06 18:31:01 lenz@mysql.com +4 -0
     - added discover.cpp

  VC++Files/myisam_ftdump/myisam_ftdump.dsp
    1.3 04/05/06 18:31:01 lenz@mysql.com +2 -2
     - added zlib to the link line

  VC++Files/libmysql/libmysql.dsp
    1.22 04/05/06 18:31:01 lenz@mysql.com +4 -0
     - added strings/ctype.uca.c

  VC++Files/client/mysqlclient.dsp
    1.23 04/05/06 18:31:01 lenz@mysql.com +4 -0
     - added strings/ctype.uca.c

ChangeSet
  1.1616.360.2 04/05/06 13:28:16 miguel@hegel.local +1 -0
  Windows VC++ compability fix

  sql/set_var.cc
    1.34.1.82 04/05/06 13:28:09 miguel@hegel.local +1 -1
    Fix VC++ compiler error

ChangeSet
  1.1346.604.2 04/05/06 16:15:46 ingo@mysql.com +2 -0
  Fix a forgotten skip of space at line begin for the 'system' command.

  BitKeeper/etc/logging_ok
    1.206.1.106 04/05/06 16:15:46 ingo@mysql.com +1 -0
    Logging to logging@openlogging.org accepted

  client/mysql.cc
    1.93.1.57 04/05/06 16:15:17 ingo@mysql.com +4 -0
    Fix a forgotten skip of space at line begin for the 'system' command.

ChangeSet
  1.1616.362.1 04/05/06 15:53:01 ingo@mysql.com +12 -0
  WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
  HEAP: Copies the key count to a backup variable and sets the key count to zero.
  That way, no HEAP function will ever try to touch any index.
  Re-enabling is done by copying back the backup variable.
  To avoid memory leak at table close, disable deletes all index trees.
  Re-enabling must be done with empty indexes and data anyway. Otherwise,
  the indexes would need to be repaired, wich HEAP is not capable of.
  MyISAM: Only the key_map is cleared and set.
  Re-enabling must be done with empty indexes and data. Otherwise, repair needs
  to be done which will enable all keys persistently.
  The former implementation disabled only non-unique keys and maked this persistent.
  The new implementation additionally can disable all keys, but only without
  making this persistent. Re-enabling all keys can be done without repair,
  if data file and indexes are empty.

  sql/sql_table.cc
    1.157.31.1 04/05/06 15:52:58 ingo@mysql.com +3 -3
    WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
    Modified the calls of dis-/enable_indexes() for the new argument.

  sql/sql_select.cc
    1.216.66.1 04/05/06 15:52:57 ingo@mysql.com +3 -1
    WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
    In create_myisam_from_heap() take notice of disabled keys
    and disable them in the new table before copying the data.

  sql/handler.h
    1.89.7.1 04/05/06 15:52:57 ingo@mysql.com +11 -3
    WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
    Added declarations for the operation modes for the key switching functions.
    Modified the declarations of dis-/enable_indexes() for the new argument.
    Added the declaration of the new function to ask for the key state.

  sql/ha_myisam.h
    1.55 04/05/06 15:52:57 ingo@mysql.com +4 -3
    WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
    Modified the declarations of dis-/enable_indexes() for the new argument.
    Added the declaration of the new function to ask for the key state.

  sql/ha_myisam.cc
    1.115.1.25 04/05/06 15:52:57 ingo@mysql.com +130 -30
    WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
    Extended disable_indexes() for all keys and no save.
    The argument is now 'mode' as it must handle different cases.
    Extended enable_indexes() for no save.
    The new feature needs the new argument 'mode' with the same semantics as in disable_indexes().
    Added indexes_are_disabled() to ask for the key state.
    Extended the existing call to enable_indexes() by the new argument.

  sql/ha_heap.h
    1.25 04/05/06 15:52:57 ingo@mysql.com +5 -1
    WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
    Added declarations for the new functions.

  sql/ha_heap.cc
    1.39 04/05/06 15:52:57 ingo@mysql.com +137 -7
    WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
    Pulled set_keys_for_scanning() out of open().
    Added the new functions for disabling and enabling keys and to ask for the key state.

  myisam/myisamdef.h
    1.59.1.16 04/05/06 15:52:57 ingo@mysql.com +4 -1
    WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
    Added declarations for the new functions.

  myisam/mi_open.c
    1.74.1.1 04/05/06 15:52:57 ingo@mysql.com +82 -1
    WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
    Added the new functions for disabling and enabling keys and to ask for the key state.

  include/heap.h
    1.18 04/05/06 15:52:57 ingo@mysql.com +6 -1
    WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
    Added a new HP_SHARE element to save the key count while keys are disabled.
    Added declarations for the new functions.

  heap/hp_clear.c
    1.7 04/05/06 15:52:57 ingo@mysql.com +139 -6
    WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
    Pulled hp_clear_keys() out of hp_clear().
    Added the new functions for disabling and enabling keys and to ask for the key state.

  heap/heapdef.h
    1.13 04/05/06 15:52:57 ingo@mysql.com +2 -1
    WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
    Pulled hp_clear_keys() out of hp_clear().

ChangeSet
  1.1616.358.2 04/05/06 15:13:23 serg@serg.mylan +1 -0
  don't let -B increment opt_silent twice

  client/mysql.cc
    1.121.1.44 04/05/06 15:13:18 serg@serg.mylan +1 -1
    don't let -B increment opt_silent twice

ChangeSet
  1.1616.341.9 04/05/06 13:11:14 tomas@mc05.(none) +10 -0
  Many files:
    included full my_global.h and resolved some resulting name conflicts

  ndb/src/rep/storage/GCIContainer.hpp
    1.2 04/05/06 13:00:32 tomas@mc05.(none) +2 -0
    included full my_global.h and resolved some resulting name conflicts

  ndb/src/rep/rep_version.hpp
    1.3 04/05/06 13:00:31 tomas@mc05.(none) +1 -1
    included full my_global.h and resolved some resulting name conflicts

  ndb/src/rep/RepComponents.hpp
    1.2 04/05/06 13:00:31 tomas@mc05.(none) +0 -1
    included full my_global.h and resolved some resulting name conflicts

  ndb/src/kernel/blocks/dbtux/Dbtux.hpp
    1.2 04/05/06 13:00:26 tomas@mc05.(none) +3 -0
    included full my_global.h and resolved some resulting name conflicts

  ndb/src/common/util/strlcat.c
    1.3 04/05/06 13:00:20 tomas@mc05.(none) +1 -0
    included full my_global.h and resolved some resulting name conflicts

  ndb/src/common/util/File.cpp
    1.2 04/05/06 13:00:20 tomas@mc05.(none) +22 -22
    included full my_global.h and resolved some resulting name conflicts

  ndb/src/common/logger/FileLogHandler.cpp
    1.2 04/05/06 13:00:17 tomas@mc05.(none) +6 -6
    included full my_global.h and resolved some resulting name conflicts

  ndb/include/util/File.hpp
    1.2 04/05/06 13:00:07 tomas@mc05.(none) +7 -7
    included full my_global.h and resolved some resulting name conflicts

  ndb/include/logger/FileLogHandler.hpp
    1.2 04/05/06 13:00:06 tomas@mc05.(none) +2 -2
    included full my_global.h and resolved some resulting name conflicts

  ndb/include/ndb_global.h
    1.2 04/05/06 13:00:02 tomas@mc05.(none) +2 -2
    included full my_global.h and resolved some resulting name conflicts

ChangeSet
  1.1616.341.8 04/05/06 12:53:41 tomas@mc05.(none) +1 -0
  Makefile:
    forgot to fix makefile to remove e.g. NDB_STRLCAT

  ndb/src/common/util/Makefile
    1.3 04/05/06 12:52:26 tomas@mc05.(none) +1 -9
    forgot to fix makefile to remove e.g. NDB_STRLCAT

ChangeSet
  1.1616.360.1 04/05/06 13:49:20 konstantin@mysql.com +1 -0
  Few cleanups to client_test.c

  tests/client_test.c
    1.51.1.30 04/05/06 13:49:17 konstantin@mysql.com +5 -9
    Few cleanups

ChangeSet
  1.1346.1.462 04/05/06 11:42:23 monty@mysql.com +1 -0
  Remove not used variable

  sql/sql_acl.cc
    1.51.1.73 04/05/06 11:42:22 monty@mysql.com +2 -2
    Remove not used variable

ChangeSet
  1.1616.341.7 04/05/06 09:15:39 tomas@mc05.(none) +8 -0
  strlcpy.c, strlcat.c, strdup.c, getarg.c, NdbString.h, Epilogue.mk, Defs.mk:
    introduced ndb_global.h and removed som HAVE_ and -D flags
  ndb_global.h:
    new file

  ndb/src/common/util/strlcpy.c
    1.2 04/05/06 09:09:48 tomas@mc05.(none) +1 -4
    introduced ndb_global.h and removed som HAVE_ and -D flags

  ndb/src/common/util/strlcat.c
    1.2 04/05/06 09:09:48 tomas@mc05.(none) +1 -4
    introduced ndb_global.h and removed som HAVE_ and -D flags

  ndb/src/common/util/strdup.c
    1.2 04/05/06 09:09:48 tomas@mc05.(none) +1 -0
    introduced ndb_global.h and removed som HAVE_ and -D flags

  ndb/src/common/util/getarg.c
    1.2 04/05/06 09:09:47 tomas@mc05.(none) +1 -5
    introduced ndb_global.h and removed som HAVE_ and -D flags

  ndb/include/util/NdbString.h
    1.2 04/05/06 09:09:35 tomas@mc05.(none) +1 -0
    introduced ndb_global.h and removed som HAVE_ and -D flags

  ndb/Epilogue.mk
    1.4 04/05/06 09:09:26 tomas@mc05.(none) +1 -1
    introduced ndb_global.h and removed som HAVE_ and -D flags

  ndb/Defs.mk
    1.2 04/05/06 09:09:26 tomas@mc05.(none) +0 -23
    introduced ndb_global.h and removed som HAVE_ and -D flags

  ndb/include/ndb_global.h
    1.1 04/05/06 09:06:12 tomas@mc05.(none) +3 -0

  ndb/include/ndb_global.h
    1.0 04/05/06 09:06:12 tomas@mc05.(none) +0 -0
    BitKeeper file /space2/tomas/mysql-4.1/ndb/include/ndb_global.h

ChangeSet
  1.1616.359.1 04/05/06 04:40:45 monty@mysql.com +3 -0
  Fixed wrong key usage which caused wrong result for some "WHERE primary_key=constant" queries where MySQL could use 'only index' (Bug #3666)
  The bug was introduced in a patch in the 4.1.2 source tree.

  sql/sql_select.cc
    1.216.1.108 04/05/06 04:40:43 monty@mysql.com +2 -2
    Fixed wrong key usage which caused wrong result for some "WHERE primary_key=constant" queries where MySQL could use 'only index' (Bug #3666)

  mysql-test/t/key.test
    1.13 04/05/06 04:40:43 monty@mysql.com +12 -0
    Added test case for bug in key read

  mysql-test/r/key.result
    1.17 04/05/06 04:40:43 monty@mysql.com +13 -0
    New result

ChangeSet
  1.1616.358.1 04/05/05 22:47:09 serg@serg.mylan +3 -0
  mysql.cc:
    allow several -e on the command line
    clarify --help text
    make -B to work as advertised
    in force mode execute the rest of multi-statement line in case of error in one statement

  client/readline.cc
    1.10 04/05/05 22:47:05 serg@serg.mylan +24 -16
    allow several -e on the command line

  client/mysql.cc
    1.121.1.43 04/05/05 22:47:05 serg@serg.mylan +11 -17
    mysql.cc:
      allow several -e on the command line
      clarify --help text
      make -B to work as advertised
      in force mode execute the rest of multi-statement line in case of error in one statement

  client/my_readline.h
    1.6 04/05/05 22:47:05 serg@serg.mylan +1 -1
    allow several -e on the command line

ChangeSet
  1.1616.1.199 04/05/05 23:29:35 bell@sanja.is.com.ua +1 -0
  fixed test results

  mysql-test/r/raid.result
    1.10 04/05/05 23:29:33 bell@sanja.is.com.ua +1 -1
    fixed test results

ChangeSet
  1.1616.357.3 04/05/05 22:01:41 guilhem@mysql.com +2 -0
  Replication:
  as the I/O thread filters on the server id, we must test replicate_same_server_id in it (on top of in the SQL thread).

  sql/slave.cc
    1.188.1.52 04/05/05 22:01:38 guilhem@mysql.com +2 -6
    As the I/O thread filters on the server id, we must test replicate_same_server_id in it (on top of in the SQL thread).

  mysql-test/r/rpl_server_id2.result
    1.2.1.1 04/05/05 22:01:38 guilhem@mysql.com +6 -4
    result update

ChangeSet
  1.1346.607.1 04/05/05 21:50:51 guilhem@mysql.com +3 -0
  very minor changes: a STOP SLAVE in a replication test to get rid of a non critical message in slave.err,
  and a comment update

  sql/slave.cc
    1.164.1.112 04/05/05 21:50:48 guilhem@mysql.com +3 -3
    update comment about 4.1 now that 4.1 is fixed (in a few minutes, exactly)

  mysql-test/t/rpl_server_id2.test
    1.3 04/05/05 21:50:48 guilhem@mysql.com +4 -0
    We stop the slave before cleaning up otherwise we'll get
    'drop table t1' executed twice, so an error in the slave.err
    (not critical).

  mysql-test/r/rpl_server_id2.result
    1.3 04/05/05 21:50:48 guilhem@mysql.com +1 -0
    result update

ChangeSet
  1.1616.357.2 04/05/05 21:46:16 monty@mysql.com +4 -0
  After merge fixes

  mysql-test/t/subselect.test
    1.58.1.47 04/05/05 21:46:14 monty@mysql.com +2 -2
    After merge fixes

  mysql-test/t/show_check.test
    1.30 04/05/05 21:46:14 monty@mysql.com +1 -1
    After merge fixes

  mysql-test/r/subselect.result
    1.67.51.1 04/05/05 21:46:14 monty@mysql.com +2 -2
    After merge fixes

  mysql-test/r/show_check.result
    1.31.1.20 04/05/05 21:46:14 monty@mysql.com +2 -2
    After merge fixes

ChangeSet
  1.1616.355.2 04/05/05 21:24:21 monty@mysql.com +18 -0
  after merge fixes

  sql/sql_yacc.yy
    1.203.104.2 04/05/05 21:24:19 monty@mysql.com +7 -2
    after merge fixes

  sql/sql_union.cc
    1.74.20.1 04/05/05 21:24:19 monty@mysql.com +1 -3
    after merge fixes

  sql/sql_select.cc
    1.216.1.107 04/05/05 21:24:19 monty@mysql.com +12 -8
    after merge fixes

  sql/sql_acl.cc
    1.74.1.46 04/05/05 21:24:19 monty@mysql.com +9 -2
    after merge fixes

  sql/mysqld.cc
    1.356.51.12 04/05/05 21:24:19 monty@mysql.com +4 -0
    after merge fixes

  sql/item_timefunc.cc
    1.51.1.9 04/05/05 21:24:19 monty@mysql.com +3 -2
    after merge fixes

  sql/item.cc
    1.58.50.4 04/05/05 21:24:19 monty@mysql.com +1 -1
    after merge fixes

  mysql-test/t/union.test
    1.65.1.1 04/05/05 21:24:18 monty@mysql.com +3 -5
    after merge fixes

  mysql-test/t/rpl_server_id1.test
    1.3 04/05/05 21:24:18 monty@mysql.com +0 -1
    after merge fixes

  mysql-test/t/innodb-lock.test
    1.2 04/05/05 21:24:18 monty@mysql.com +3 -0
    after merge fixes

  mysql-test/t/derived.test
    1.42 04/05/05 21:24:18 monty@mysql.com +1 -1
    after merge fixes

  mysql-test/r/rpl_server_id1.result
    1.3 04/05/05 21:24:18 monty@mysql.com +4 -5
    after merge fixes

  mysql-test/r/rpl_multi_delete2.result
    1.2 04/05/05 21:24:18 monty@mysql.com +4 -4
    after merge fixes

  mysql-test/r/func_str.result
    1.60 04/05/05 21:24:18 monty@mysql.com +1 -1
    after merge fixes

  mysql-test/r/derived.result
    1.44 04/05/05 21:24:18 monty@mysql.com +1 -1
    after merge fixes

  mysql-test/r/create.result
    1.69.1.2 04/05/05 21:24:18 monty@mysql.com +3 -3
    after merge fixes

  myisam/myisamchk.c
    1.92.1.19 04/05/05 21:24:18 monty@mysql.com +2 -2
    after merge fix

  client/mysqldump.c
    1.126 04/05/05 21:24:18 monty@mysql.com +1 -1
    Fixed problem with multiple tables (--skip-quote didn't work properly for second table)
    

ChangeSet
  1.1616.352.2 04/05/05 21:21:41 bell@sanja.is.com.ua +11 -0
  caching of queries with isammerge tables forbiden using general way
  SQL_SELECT_LIMIT as default will be applied only for SELECT statement if there was not explicit LIMIT clause
  correct table list passed to class constructor of select_update

  sql/sql_yacc.yy
    1.203.105.1 04/05/05 21:21:36 bell@sanja.is.com.ua +9 -4
    explicit LIMIT marked

  sql/sql_update.cc
    1.83.15.2 04/05/05 21:21:36 bell@sanja.is.com.ua +6 -7
    reverted incorrect patch
    correct table list passed to class constructor

  sql/sql_union.cc
    1.74.19.1 04/05/05 21:21:36 bell@sanja.is.com.ua +3 -12
    reverted incorrect patch

  sql/sql_parse.cc
    1.271.73.1 04/05/05 21:21:36 bell@sanja.is.com.ua +10 -7
    blanks in empty line removed
    no limit by default (SQL_SELECT_LIMIT as default will be applied only for SELECT statement if there was not explicit LIMIT clause)

  sql/sql_lex.h
    1.102.34.3 04/05/05 21:21:36 bell@sanja.is.com.ua +2 -0
    tag of explicit limit in statement

  sql/sql_lex.cc
    1.97.12.1 04/05/05 21:21:36 bell@sanja.is.com.ua +2 -4
    tag of explicit limit in statement

  sql/sql_cache.cc
    1.46.1.28 04/05/05 21:21:36 bell@sanja.is.com.ua +3 -4
    removed check on isammerge

  sql/ha_isammrg.h
    1.19 04/05/05 21:21:36 bell@sanja.is.com.ua +1 -0
    caching of queries with isammerge tables forbiden

  mysql-test/t/union.test
    1.66 04/05/05 21:21:36 bell@sanja.is.com.ua +12 -0
    test of LIMIT + ORDER

  mysql-test/r/union.result
    1.46.1.23 04/05/05 21:21:36 bell@sanja.is.com.ua +14 -0
    test of LIMIT + ORDER

  mysql-test/r/subselect.result
    1.67.50.1 04/05/05 21:21:36 bell@sanja.is.com.ua +10 -10
    do not show limit if it is not explicit

ChangeSet
  1.1616.356.1 04/05/05 20:04:25 sergefp@mysql.com +2 -0
  Make Item_param::val_int and Item_param::val_str follow the used convention and return 0 if null_value==1.

  sql/item.h
    1.56.30.1 04/05/05 20:03:53 sergefp@mysql.com +1 -0
    Added comments about Item::valxx() behavior if Item's value is NULL.

  sql/item.cc
    1.58.52.1 04/05/05 20:03:53 sergefp@mysql.com +4 -0
    Make Item_param::val_int and Item_param::val_str follow the used convention and return 0 if null_value==1.

ChangeSet
  1.1616.354.2 04/05/05 19:11:40 sergefp@mysql.com +2 -0
  WL#1622: Post-merge fixes

  sql/sql_prepare.cc
    1.34.1.63 04/05/05 19:11:36 sergefp@mysql.com +8 -8
    WL#1622: Post-merge fixes

  sql/sql_parse.cc
    1.271.1.75 04/05/05 19:11:36 sergefp@mysql.com +0 -1
    WL#1622: Post-merge fixes

ChangeSet
  1.1616.351.3 04/05/05 16:04:23 magnus@neptunus.(none) +5 -0
  BUG# 3658 ALTER TABLE corrupts table
  Added  test file for ALTER TABLE, engine = ndbcluster

  sql/sql_table.cc
    1.157.30.2 04/05/05 16:04:22 magnus@neptunus.(none) +5 -1
    Send HA_EXTRA_RETRIEVE_ALL_COLS to handler in copy_data_between_tables

  sql/ha_ndbcluster.h
    1.5 04/05/05 16:04:22 magnus@neptunus.(none) +1 -0
    Add var for retreiving all fields

  sql/ha_ndbcluster.cc
    1.7 04/05/05 16:04:22 magnus@neptunus.(none) +8 -1
    Add code to retriev all fields if HA_EXTRA_RETRIEVE_ALL_COLS are set.

ChangeSet
  1.1616.1.194 04/05/05 10:54:11 miguel@hegel.local +2 -0
  Fixes for prior commit

  sql/sql_prepare.cc
    1.34.18.3 04/05/05 10:54:04 miguel@hegel.local +3 -3
    Fix prior commit

  mysys/my_getsystime.c
    1.4 04/05/05 10:54:04 miguel@hegel.local +2 -0
    Applied Sergei's fixes

ChangeSet
  1.1346.1.460 04/05/05 15:54:28 marko@hundin.mysql.fi +4 -0
  InnoDB portability fix: new function os_file_set_eof()

  sql/ha_innodb.cc
    1.73.1.130 04/05/05 15:54:25 marko@hundin.mysql.fi +1 -1
    Replace my_chsize() with os_file_set_eof()

  innobase/srv/srv0srv.c
    1.35.1.34 04/05/05 15:54:25 marko@hundin.mysql.fi +1 -5
    Replace chsize() or ftruncate() with os_file_set_eof()

  innobase/os/os0file.c
    1.44.1.23 04/05/05 15:54:25 marko@hundin.mysql.fi +17 -0
    Add os_file_set_eof()

  innobase/include/os0file.h
    1.19.1.3 04/05/05 15:54:24 marko@hundin.mysql.fi +8 -0
    Add os_file_set_eof()

ChangeSet
  1.1616.341.6 04/05/05 14:19:47 tomas@mc05.(none) +2 -0
  extended perror to enable printing of storage engine specific errors for ndb

  extra/perror.c
    1.22.1.1 04/05/05 14:19:45 tomas@mc05.(none) +23 -1
    extended perror to enable printing of storage engine specific errors for ndb

  extra/Makefile.am
    1.14 04/05/05 14:19:45 tomas@mc05.(none) +1 -1
    extended perror to enable printing of storage engine specific errors for ndb

ChangeSet
  1.1346.1.459 04/05/05 14:40:44 monty@mysql.com +1 -0
  Portability fix

  sql/ha_innodb.cc
    1.73.1.129 04/05/05 14:40:43 monty@mysql.com +1 -5
    Portability fix

ChangeSet
  1.1616.341.5 04/05/05 13:37:59 tomas@mc05.(none) +1 -0
  small fix after bar's code review

  ndb/src/ndbapi/ndberror.c
    1.2 04/05/05 13:37:57 tomas@mc05.(none) +5 -10
    small fix after bar's code review

  mysql-test/r/ndb_alter_table.result
    1.1 04/05/05 13:22:19 magnus@neptunus.(none) +29 -0

  mysql-test/r/ndb_alter_table.result
    1.0 04/05/05 13:22:19 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/r/ndb_alter_table.result

  mysql-test/t/ndb_alter_table.test
    1.1 04/05/05 13:22:12 magnus@neptunus.(none) +41 -0

  mysql-test/t/ndb_alter_table.test
    1.0 04/05/05 13:22:12 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/t/ndb_alter_table.test

ChangeSet
  1.1616.353.2 04/05/05 16:06:01 ram@gw.mysql.r18.ru +3 -0
  a fix (Bug #3435: STDDEV|VARIANCE(constant) returns constant if no rows)

  sql/item_sum.h
    1.48.1.16 04/05/05 16:05:45 ram@gw.mysql.r18.ru +1 -0
    a fix (Bug #3435: STDDEV|VARIANCE(constant) returns constant if no rows)

  mysql-test/t/func_group.test
    1.23 04/05/05 16:05:45 ram@gw.mysql.r18.ru +9 -0
    a fix (Bug #3435: STDDEV|VARIANCE(constant) returns constant if no rows)

  mysql-test/r/func_group.result
    1.28 04/05/05 16:05:45 ram@gw.mysql.r18.ru +8 -0
    a fix (Bug #3435: STDDEV|VARIANCE(constant) returns constant if no rows)

ChangeSet
  1.1616.341.4 04/05/05 12:42:00 tomas@mc05.(none) +2 -0
  Fix ndberror after jonas comments

  ndb/include/ndbapi/ndberror.h
    1.2 04/05/05 12:41:58 tomas@mc05.(none) +2 -2
    Fix ndberror after jonas comments

  ndb/include/ndbapi/NdbError.hpp
    1.3 04/05/05 12:41:58 tomas@mc05.(none) +1 -1
    Fix ndberror after jonas comments

ChangeSet
  1.1616.349.3 04/05/05 12:40:33 monty@mysql.com +2 -0
  Delete Items created during Prepared Stat (memory leak bug) (Bug #3451)

  sql/sql_prepare.cc
    1.34.19.1 04/05/05 12:40:31 monty@mysql.com +5 -2
    Delete Items created during Prepared Stat (memory leak bug)

  sql/sql_parse.cc
    1.271.72.1 04/05/05 12:40:31 monty@mysql.com +1 -0
    Delete Items created during Prepared Stat (memory leak bug)

ChangeSet
  1.1616.349.2 04/05/05 12:31:17 monty@mysql.com +11 -0
  Fixed crashing bug with alter table when table was in use (Bug #3643)
  We didn't use 'only index' for tables of type 'const'. (Bug #3497)

  sql/sql_select.cc
    1.216.65.2 04/05/05 12:31:15 monty@mysql.com +14 -1
    We didn't use 'only index' for tables of type 'const'. (Bug #3497)

  sql/sql_load.cc
    1.46.3.28 04/05/05 12:31:15 monty@mysql.com +3 -3
    Indentation fixes

  sql/sql_base.cc
    1.145.1.60 04/05/05 12:31:15 monty@mysql.com +3 -2
    Fixed crashing bug with alter table when table was in use (Bug #3643)

  sql/item.cc
    1.58.51.1 04/05/05 12:31:14 monty@mysql.com +3 -2
    Added assert

  mysql-test/t/key.test
    1.12 04/05/05 12:31:14 monty@mysql.com +12 -0
    Test of key read with primary key (Bug #3497)

  mysql-test/t/func_str.test
    1.52 04/05/05 12:31:14 monty@mysql.com +13 -5
    Updated bug texts
    Added test for conversion of long string value to integer (Bug #3472)

  mysql-test/r/subselect.result
    1.67.49.1 04/05/05 12:31:14 monty@mysql.com +4 -4
    Update after "We didn't use 'only index' for tables of type 'const'" fix.

  mysql-test/r/null_key.result
    1.26 04/05/05 12:31:14 monty@mysql.com +1 -1
    Update after "We didn't use 'only index' for tables of type 'const'" fix.

  mysql-test/r/key_primary.result
    1.8 04/05/05 12:31:14 monty@mysql.com +1 -1
    Update after "We didn't use 'only index' for tables of type 'const'" fix.

  mysql-test/r/key.result
    1.16 04/05/05 12:31:14 monty@mysql.com +16 -0
    New test

  mysql-test/r/func_str.result
    1.58 04/05/05 12:31:14 monty@mysql.com +11 -0
    New testfin

ChangeSet
  1.1616.341.3 04/05/05 11:29:56 tomas@mc05.(none) +7 -0
  Restructure of ndb error

  ndb/src/ndbapi/Ndberror.cpp
    1.4 04/05/05 11:29:54 tomas@mc05.(none) +42 -554
    Restructure of ndb error

  ndb/src/ndbapi/NdbErrorOut.cpp
    1.2 04/05/05 11:29:54 tomas@mc05.(none) +3 -62
    Restructure of ndb error

  ndb/src/ndbapi/Makefile
    1.3 04/05/05 11:29:54 tomas@mc05.(none) +1 -0
    Restructure of ndb error

  ndb/src/kernel/blocks/backup/restore/Makefile
    1.2 04/05/05 11:29:54 tomas@mc05.(none) +3 -3
    better make

  ndb/include/ndbapi/NdbError.hpp
    1.2 04/05/05 11:29:54 tomas@mc05.(none) +38 -20
    Restructure of ndb error

  ndb/src/ndbapi/ndberror.c
    1.1 04/05/05 11:14:47 tomas@mc05.(none) +596 -0

  ndb/src/ndbapi/ndberror.c
    1.0 04/05/05 11:14:47 tomas@mc05.(none) +0 -0
    BitKeeper file /space2/tomas/mysql-4.1/ndb/src/ndbapi/ndberror.c

  ndb/include/ndbapi/ndberror.h
    1.1 04/05/05 11:14:20 tomas@mc05.(none) +100 -0

  ndb/include/ndbapi/ndberror.h
    1.0 04/05/05 11:14:20 tomas@mc05.(none) +0 -0
    BitKeeper file /space2/tomas/mysql-4.1/ndb/include/ndbapi/ndberror.h

ChangeSet
  1.1346.1.458 04/05/05 11:50:58 marko@hundin.mysql.fi +2 -0
  InnoDB: Truncate "<datadir>/innodb.status.<pid>" to its actual size
  (Bug #3596)

  sql/ha_innodb.cc
    1.73.1.128 04/05/05 11:50:55 marko@hundin.mysql.fi +5 -0
    Truncate "<datadir>/innodb.status.<pid>" to its actual size (Bug #3596)

  innobase/srv/srv0srv.c
    1.35.1.33 04/05/05 11:50:54 marko@hundin.mysql.fi +5 -0
    Truncate "<datadir>/innodb.status.<pid>" to its actual size (Bug #3596)

ChangeSet
  1.1346.1.457 04/05/05 11:40:17 marko@hundin.mysql.fi +1 -0
  InnoDB: os0file.c: Lock files exclusively (Bug #3608)

  innobase/os/os0file.c
    1.44.1.22 04/05/05 11:40:14 marko@hundin.mysql.fi +48 -7
    Lock files unless #defined __WIN__ or UNIV_HOTBACKUP (Bug #3608)

ChangeSet
  1.1616.352.1 04/05/05 11:22:10 bell@sanja.is.com.ua +5 -0
  avoid using ndb tables in query cache

  mysql-test/t/ndb_cache.test
    1.1 04/05/05 11:21:27 bell@sanja.is.com.ua +31 -0

  mysql-test/r/ndb_cache.result
    1.1 04/05/05 11:21:27 bell@sanja.is.com.ua +43 -0

  sql/sql_cache.cc
    1.46.1.27 04/05/05 11:21:27 bell@sanja.is.com.ua +3 -1
    support of new caching type (caching prohibited)

  sql/handler.h
    1.89.1.16 04/05/05 11:21:27 bell@sanja.is.com.ua +4 -2
    new caching type

  sql/ha_ndbcluster.h
    1.2.3.1 04/05/05 11:21:27 bell@sanja.is.com.ua +2 -2
    fixed layout
    prohibit using query cache with ndb tables

  mysql-test/t/ndb_cache.test
    1.0 04/05/05 11:21:27 bell@sanja.is.com.ua +0 -0
    BitKeeper file /home/bell/mysql/bk/work-ndb-4.1/mysql-test/t/ndb_cache.test

  mysql-test/r/ndb_cache.result
    1.0 04/05/05 11:21:27 bell@sanja.is.com.ua +0 -0
    BitKeeper file /home/bell/mysql/bk/work-ndb-4.1/mysql-test/r/ndb_cache.result

ChangeSet
  1.1616.335.5 04/05/05 08:54:12 magnus@neptunus.(none) +1 -0
  Merge fixes

  sql/ha_ndbcluster.cc
    1.6 04/05/05 08:54:10 magnus@neptunus.(none) +11 -9
    Updated use of extra ordered index after merge
    Removed TODO note in swedish

ChangeSet
  1.1616.1.193 04/05/05 02:59:17 miguel@hegel.local +11 -0
  Windows fixes for VC++ compiler compability

  sql/sql_union.cc
    1.74.1.41 04/05/05 02:58:35 miguel@hegel.local +1 -2
    Removed non-used variable and VC++ compiler compability fix

  sql/sql_prepare.cc
    1.34.18.2 04/05/05 02:58:35 miguel@hegel.local +2 -2
    VC++ compiler compability fix

  sql/sql_parse.cc
    1.271.71.3 04/05/05 02:58:35 miguel@hegel.local +2 -3
    VC++ compiler compability fix

  sql/sql_lex.cc
    1.97.1.22 04/05/05 02:58:35 miguel@hegel.local +4 -4
    VC++ compiler compability fix

  sql/sql_insert.cc
    1.86.2.46 04/05/05 02:58:35 miguel@hegel.local +1 -1
    VC++ compiler compability fix

  sql/opt_range.cc
    1.98.1.17 04/05/05 02:58:35 miguel@hegel.local +2 -2
    VC++ compiler compability fix

  sql/item_strfunc.cc
    1.172 04/05/05 02:58:35 miguel@hegel.local +3 -3
    VC++ compiler compability fix

  sql/item_geofunc.cc
    1.12 04/05/05 02:58:34 miguel@hegel.local +1 -2
    Removed non-used variable

  sql/handler.cc
    1.103.1.21 04/05/05 02:58:34 miguel@hegel.local +1 -1
    VC++ compiler compability fix

  mysys/my_getsystime.c
    1.3 04/05/05 02:58:34 miguel@hegel.local +20 -5
    Applied Sergei's code for Windows (still subject to changes by him)

  myisam/myisam_ftdump.c
    1.30 04/05/05 02:58:34 miguel@hegel.local +1 -1
    VC++ compiler compability fix

ChangeSet
  1.1346.605.5 04/05/04 21:47:39 greg@mysql.com +2 -0
  Fixes to Windows project files for 4.0.19

  VC++Files/mysql.dsw
    1.5.1.5 04/05/04 21:47:38 greg@mysql.com +3 -0
    Add dependency to prevent compile error

  VC++Files/client/mysqlclient.dsp
    1.6.1.3 04/05/04 21:47:38 greg@mysql.com +15 -11
    Add strxnmov to project files

ChangeSet
  1.1616.347.4 04/05/04 23:04:05 Sinisa@sinisa.nasamreza.org +3 -0
  Fix for a multi table updates when one of the tables is not updated
  but used in a nested query.

  sql/sql_update.cc
    1.83.15.1 04/05/04 23:03:59 Sinisa@sinisa.nasamreza.org +6 -5
    Fix for a multi table updates when one of the tables is not updated
    but used in a nested query.

  mysql-test/t/multi_update.test
    1.26.1.10 04/05/04 23:03:59 Sinisa@sinisa.nasamreza.org +4 -0
    Fix for a multi table updates when one of the tables is not updated
    but used in a nested query.

  mysql-test/r/multi_update.result
    1.25.1.10 04/05/04 23:03:59 Sinisa@sinisa.nasamreza.org +1 -0
    Fix for a multi table updates when one of the tables is not updated
    but used in a nested query.

ChangeSet
  1.1616.1.191 04/05/04 20:02:55 dlenev@brandersnatch.localdomain +1 -0
  After merge fix. 
  Now test_bug1664() uses new statement checking macros.

  tests/client_test.c
    1.51.1.28 04/05/04 20:02:50 dlenev@brandersnatch.localdomain +16 -21
    Now test_bug1664() uses new statement checking macros.

ChangeSet
  1.1665.1.12 04/05/04 17:18:47 pem@mysql.comhem.se +4 -0
  Correction of WL#1567: row_count() is -1 following non-insert/update/delete
  statements.

  sql/sql_parse.cc
    1.334 04/05/04 17:18:42 pem@mysql.com +20 -0
    Reset thd->row_count_func to -1 for non-insert/update/delete statements.

  sql/sql_class.h
    1.183 04/05/04 17:18:42 pem@mysql.com +1 -1
    thd->row_count_func must be signed for JDBC/ODBC (can be -1).

  mysql-test/t/sp.test
    1.60 04/05/04 17:18:42 pem@mysql.com +2 -0
    Added row_count() test for non-insert/update/delete statement.

  mysql-test/r/sp.result
    1.62 04/05/04 17:18:42 pem@mysql.com +5 -0
    Added row_count() test for non-insert/update/delete statement.

ChangeSet
  1.1616.350.1 04/05/04 19:08:19 dlenev@brandersnatch.localdomain +4 -0
  Fix for remaining issues described in Bug #1664 
  "mysql_send_long_data() API call is completely broken".
  
  Now we are resetting some members (long_data_supplied/null_value...) of Item_param to its 
  initial state after each execution of prepared statement. We also manipulating 
  Item_param::maybe_null/null_value only via Item_param::set_* setters which makes code a bit 
  more robust.

  tests/client_test.c
    1.51.11.1 04/05/04 19:07:58 dlenev@brandersnatch.localdomain +147 -0
    Added test for Bug#1664 "mysql_send_long_data() API call is broken".

  sql/sql_prepare.cc
    1.34.17.1 04/05/04 19:07:57 dlenev@brandersnatch.localdomain +30 -20
    Now we are calling Item_param::reset() for each parameter after execution for resetting Item_param
    to initial state. So we no longer don't need Prepared_statement::long_data_flag. We also 
    set Item_param::null_value/maybe_null value in Item_param::set_* and reset() methods 
    instead of doing it explicitly in insert_params_* functions (this by the way lowers 
    probability that we will forget to update one of such functions).

  sql/item.h
    1.56.29.2 04/05/04 19:07:57 dlenev@brandersnatch.localdomain +1 -1
    Now Item_param::reset() method really does something.

  sql/item.cc
    1.58.50.1 04/05/04 19:07:53 dlenev@brandersnatch.localdomain +33 -1
    Now we are assuming that Item_param may be NULL until we know this fact exactly.
    Added non-empty implementation of Item_param::reset() method which should be used
    for restoring Item_param state after each statment execution. (We need to clear 
    long_data_supplied flag, we also clear some other Item_param members here since it
    makes code simpler.)

ChangeSet
  1.1346.605.4 04/05/04 16:35:31 guilhem@mysql.com +2 -0
  useless fixes for --report-password and --show-slave-auth-info (almost undocumented options),
  just for beauty of truth.

  sql/slave.cc
    1.164.1.111 04/05/04 16:35:29 guilhem@mysql.com +1 -1
    report password when you must report password.

  sql/mysqld.cc
    1.297.1.196 04/05/04 16:35:28 guilhem@mysql.com +1 -1
    correcting sentence (even if option is not really usable,
    as it depends on report-user and report-password which are undocumented
    (and will stay like this)).

ChangeSet
  1.1346.606.1 04/05/04 15:48:40 guilhem@mysql.com +1 -0
  Fix for Bug#3357 "If the statement is long, the error message is trunc and important info is lost";
  in hard-coded replication messages, always put small-length info (error codes, explanation of the error) at the beginning,
  so that it is not cut by truncation if the query is very long (which happens if the query goes first).

  sql/log_event.cc
    1.77.1.77 04/05/04 15:48:35 guilhem@mysql.com +7 -10
    in hard-coded replication messages, always put small-length info (error codes, explanation of the error) at the beginning,
    so that it is not cut by truncation if the query is very long (which happens if the query goes first).

ChangeSet
  1.1616.347.3 04/05/04 16:48:34 Sinisa@sinisa.nasamreza.org +2 -0
  union.result:
    fixing typo
  union.test:
    fixing type

  mysql-test/r/union.result
    1.46.1.22 04/05/04 16:48:11 Sinisa@sinisa.nasamreza.org +1 -1
    fixing typo

  mysql-test/t/union.test
    1.65 04/05/04 16:48:05 Sinisa@sinisa.nasamreza.org +1 -1
    fixing type

ChangeSet
  1.1616.1.188 04/05/04 16:37:04 bell@sanja.is.com.ua +2 -0
  repetable test replaced with inline function

  sql/sql_select.h
    1.60.1.8 04/05/04 16:37:00 bell@sanja.is.com.ua +5 -0
    repetable test replaced with inline function

  sql/sql_select.cc
    1.216.1.105 04/05/04 16:37:00 bell@sanja.is.com.ua +2 -5
    repetable test replaced with inline function

ChangeSet
  1.1346.605.2 04/05/04 14:36:23 serg@serg.mylan +2 -0
  don't rely on readdir() returning . and .. first

  sql/sql_db.cc
    1.39.1.31 04/05/04 14:36:20 serg@serg.mylan +6 -1
    don't rely on readdir() returning . and .. first

  sql/sql_base.cc
    1.117.1.61 04/05/04 14:36:20 serg@serg.mylan +7 -1
    don't rely on readdir() returning . and .. first

ChangeSet
  1.1616.349.1 04/05/04 15:02:38 monty@mysql.com +15 -0
  Fix to handle unsigned data in prepared statements (Bug #3447)
  Fixed security problem that password was temporarly reset when someone changed GRANT for a user. (Bug #3404)
  Fixed problem with PROCEDURE analyse() and impossible WHERE (Bug #2238)
  Don't auto-repair tables in mysqlcheck if table type doesn't support 'check' command.

  tests/client_test.c
    1.51.10.1 04/05/04 15:02:35 monty@mysql.com +28 -5
    Added test for handling unsigned/signed strings with prepared statements

  sql/sql_update.cc
    1.83.2.39 04/05/04 15:02:35 monty@mysql.com +1 -3
    Indentaion cleanup

  sql/sql_table.cc
    1.157.30.1 04/05/04 15:02:35 monty@mysql.com +1 -1
    Changed 'error' to 'note' when table doesn't support admin command.

  sql/sql_select.cc
    1.216.65.1 04/05/04 15:02:35 monty@mysql.com +0 -5
    Fixed problem with PROCEDURE analyse() and impossible WHERE (Bug #2238)
    

  sql/sql_acl.cc
    1.74.1.44 04/05/04 15:02:35 monty@mysql.com +2 -1
    Fixed security problem that password was temporarly reset when someone changed GRANT for a user. (Bug #3404)

  mysql-test/t/ctype_ujis.test
    1.7 04/05/04 15:02:35 monty@mysql.com +12 -0
    Added test for LIKE (Bug #3438)

  mysql-test/t/analyse.test
    1.10 04/05/04 15:02:35 monty@mysql.com +23 -0
    Test of analyze + impossible where (Bug #2238)

  mysql-test/r/repair.result
    1.14 04/05/04 15:02:35 monty@mysql.com +1 -1
    Update results

  mysql-test/r/isam.result
    1.21 04/05/04 15:02:35 monty@mysql.com +3 -3
    Update results

  mysql-test/r/ctype_ujis.result
    1.6 04/05/04 15:02:35 monty@mysql.com +19 -0
    Update results

  mysql-test/r/bdb.result
    1.35 04/05/04 15:02:35 monty@mysql.com +1 -1
    Update results

  mysql-test/r/analyse.result
    1.14 04/05/04 15:02:35 monty@mysql.com +65 -0
    Test of analyze + impossible where (Bug #2238)

  libmysql/libmysql.c
    1.156.1.71 04/05/04 15:02:35 monty@mysql.com +15 -9
    Fix to handle unsigned data in prepared statements (Bug #3447)

  client/mysqlcheck.c
    1.35 04/05/04 15:02:35 monty@mysql.com +2 -1
    Don't cause auto-repair on 'note' (Tables that doesn't support 'check')
    

  Docs/mysqld_error.txt
    1.9 04/05/04 15:02:35 monty@mysql.com +83 -59
    Updated error values

ChangeSet
  1.1665.1.11 04/05/04 13:45:20 pem@mysql.comhem.se +11 -0
  WL#1567: Add ROW_COUNT() Function to retrieve count of rows updated/inserted/deleted

  sql/sql_yacc.yy
    1.285 04/05/04 13:44:54 pem@mysql.com +6 -0
    New function ROW_COUNT().

  sql/sql_update.cc
    1.106 04/05/04 13:44:54 pem@mysql.com +6 -4
    Set thd->row_count_func when updating.

  sql/sql_parse.cc
    1.333 04/05/04 13:44:54 pem@mysql.com +1 -1
    Stored procedure CALLs send the row count from the last insert, delete or update.

  sql/sql_insert.cc
    1.104 04/05/04 13:44:54 pem@mysql.com +8 -3
    Set thd->row_count_func when inserting.

  sql/sql_delete.cc
    1.118 04/05/04 13:44:54 pem@mysql.com +5 -0
    Set thd->row_count_func when deleting.

  sql/sql_class.h
    1.182 04/05/04 13:44:54 pem@mysql.com +1 -0
    New slot in THD for storing the row_count after insert, delete and update.

  sql/lex.h
    1.118 04/05/04 13:44:54 pem@mysql.com +1 -0
    New symbol for function ROW_COUNT().

  sql/item_func.h
    1.85 04/05/04 13:44:54 pem@mysql.com +10 -0
    New Item_func_row_count.

  sql/item_func.cc
    1.147 04/05/04 13:44:54 pem@mysql.com +9 -0
    New Item_func_row_count.

  mysql-test/t/sp.test
    1.59 04/05/04 13:44:54 pem@mysql.com +19 -0
    New test cases for function ROW_COUNT().

  mysql-test/r/sp.result
    1.61 04/05/04 13:44:54 pem@mysql.com +22 -0
    New test cases for function ROW_COUNT().

ChangeSet
  1.1616.347.2 04/05/04 14:11:23 Sinisa@sinisa.nasamreza.org +2 -0
  union.result, union.test:
    a small fix for the test case

ChangeSet
  1.1616.343.7 04/05/04 12:40:33 joreland@mysql.com +3 -0
  yangf - yet another ndb gcc/g++ fix
  Hopefully last one
  

  ndb/src/common/portlib/gcc.cpp
    1.1 04/05/04 12:40:31 joreland@mysql.com +7 -0

  ndb/src/common/util/new.cpp
    1.2 04/05/04 12:40:31 joreland@mysql.com +0 -7
    Remove __cxa_pure_virtual from here

  ndb/src/common/portlib/gcc.cpp
    1.0 04/05/04 12:40:31 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/mysql-4.1/ndb/src/common/portlib/gcc.cpp

  ndb/config/Defs.LINUX.x86.GCC.mk
    1.3 04/05/04 12:40:31 joreland@mysql.com +1 -1
    Only use __cxa_pure_virtual for binaries / so's

  mysql-test/r/union.result
    1.46.1.21 04/05/04 13:39:34 Sinisa@sinisa.nasamreza.org +1 -0
    a small fix for the test case

  mysql-test/t/union.test
    1.64 04/05/04 13:39:21 Sinisa@sinisa.nasamreza.org +1 -0
    a small fix for the test case

ChangeSet
  1.676.1.762 04/05/04 13:07:36 bell@sanja.is.com.ua +1 -0
  fixed db name and layout (can cause very rare race condition bug)

  sql/sql_acl.cc
    1.27.1.18 04/05/04 13:07:34 bell@sanja.is.com.ua +2 -2
    fixed db name and layout (can cause very rare race condition bug)

ChangeSet
  1.1616.348.1 04/05/04 11:19:19 joreland@mysql.com +55 -0
  Merge NDB patches into 4.1-clone, below is list of changesets
  
  # --------------------------------------------
  # 04/04/13      joreland@mysql.com      1.1858.1.1
  # Removal of NDBT_Table
  # --------------------------------------------
  # 04/04/13      joreland@mysql.com      1.1858.1.2
  # Removal of NDBT_Table
  # --------------------------------------------
  # 04/04/13      joreland@mysql.com      1.1858.1.3
  # Fix for crashing AT
  # --------------------------------------------
  # 04/04/13      joreland@mysql.com      1.1858.1.4
  # Bug fixes in testIndex
  # --------------------------------------------
  # 04/04/13      joreland@mysql.com      1.1866.1.5
  # Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
  # into mysql.com:/home/jonas/src/tmp
  # --------------------------------------------
  # 04/04/14      joreland@mysql.com      1.1858.1.5
  # Fix for takeover when accessing indexes.
  # --------------------------------------------
  # 04/04/14      joreland@mysql.com      1.1866.1.6
  # Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
  # into mysql.com:/home/jonas/src/tmp
  # --------------------------------------------
  # 04/04/14      joreland@mysql.com      1.1858.2.1
  # Fixed error handling of fire_trigger_ord + lqhkeyref w.r.t indexes
  # --------------------------------------------
  # 04/04/14      joreland@mysql.com      1.1858.2.2
  # Simple retry mechanism in UTIL
  # Helps testIndex -n BuildDuring _a lot_
  # --------------------------------------------
  # 04/04/14      joreland@mysql.com      1.1858.2.3
  # Misc fixes to test prg.
  # --------------------------------------------
  # 04/04/14      joreland@mysql.com      1.1858.2.4
  # Allow more retires on application errors
  # --------------------------------------------
  # 04/04/14      joreland@mysql.com      1.1858.2.5
  # Pass no of rows fetched in SUB_SYNC_CONTINUE_REQ
  # --------------------------------------------
  # 04/04/14      joreland@mysql.com      1.1869
  # wl1714
  # Improve parallellism
  # --------------------------------------------
  # 04/04/14      joreland@mysql.com      1.1870
  # Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
  # into mysql.com:/home/jonas/src/wl1714
  # --------------------------------------------
  # 04/04/14      joreland@mysql.com      1.1866.1.7
  # Merge
  # --------------------------------------------
  # 04/04/14      joreland@mysql.com      1.1871
  # Merge mysql.com:/home/jonas/src/wl1714
  # into mysql.com:/home/jonas/src/mysql-4.1-ndb
  # --------------------------------------------
  # 04/04/14      joreland@mysql.com      1.1872
  # Fix for testScan -n ScanReadError5030
  # --------------------------------------------
  # 04/04/14      joreland@mysql.com      1.1873
  # fix testDict -n FragmentType*
  # --------------------------------------------
  # 04/04/14      johan@stingray.(none)   1.1866.2.1
  # small fixes
  # --------------------------------------------
  # 04/04/14      johan@stingray.(none)   1.1874
  # Merge jandersson@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
  # into stingray.(none):/space/bk/rep/mysql-4.1-ndb
  # --------------------------------------------
  # 04/04/14      johan@stingray.(none)   1.1875
  # handle rep node as an api node
  # --------------------------------------------
  # 04/04/14      pekka@mysql.com 1.1873.1.1
  # Fix for NDBT_Table removal
  # --------------------------------------------
  # 04/04/15      joreland@mysql.com      1.1873.1.2
  # Uninitialized var.
  # --------------------------------------------
  # 04/04/15      johan@stingray.(none)   1.1876
  # Merge jandersson@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
  # into stingray.(none):/space/bk/rep/mysql-4.1-ndb
  # --------------------------------------------
  # 04/04/15      joreland@mysql.com      1.1873.1.3
  # Write pid before changing user
  # (as runas user probably doesn't have permissions on pid-dir)
  # --------------------------------------------
  # --------------------------------------------
  # 04/04/15      ndb@mc03.ndb.mysql.com  1.1862.1.3
  # Fix printout of varchars
  # --------------------------------------------
  # 04/04/15      ndb@mc03.ndb.mysql.com  1.1877
  # Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
  # into mc03.ndb.mysql.com:/space/ndb/tmp
  # --------------------------------------------
  # 04/04/15      ndb@mc03.ndb.mysql.com  1.1862.1.4
  # Hmm.. don't print attr as many times as length of array
  # --------------------------------------------
  # 04/04/15      ndb@mc03.ndb.mysql.com  1.1878
  # Merge mc03.ndb.mysql.com:/space/ndb/mysql-4.1-ndb
  # into mc03.ndb.mysql.com:/space/ndb/tmp
  # --------------------------------------------
  # 04/04/15      joreland@mysql.com      1.1876.1.1
  # Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
  # into mysql.com:/home/jonas/src/mysql-4.1-ndb
  # --------------------------------------------
  # 04/04/15      joreland@mysql.com      1.1877.1.1
  # Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
  # into mysql.com:/home/jonas/src/mysql-4.1-ndb
  # --------------------------------------------
  # 04/04/15      ndb@mc03.ndb.mysql.com  1.1879
  # Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
  # into mc03.ndb.mysql.com:/space/ndb/tmp
  # --------------------------------------------
  # 04/04/17      joreland@mysql.com      1.1880
  # LCP bug when restarting ops take's longer than DIH sending a new lcp ord
  # Solution:
  # Send LCP_FRAG_REP after restarting all ops
  # --------------------------------------------
  # 04/04/18      joreland@mysql.com      1.1881
  # Missspelled ERROR_INSERT
  # --------------------------------------------
  # 04/04/18      joreland@mysql.com      1.1882
  # Added possibility to log only distributed signals
  # --------------------------------------------
  # 04/04/22      joreland@mysql.com      1.1883
  # Removed dependancy to libstdc++
  # * pure virtual functions "__cxa_pure_virtual" is defined in libstd++ ->
  #   remove all pure virtual functions
  # --------------------------------------------
  # 04/04/23      joreland@mysql.com      1.1884
  # Various minor bug fixes for problems found while compiling
  # with icc
  # --------------------------------------------
  # --------------------------------------------
  # 04/04/25      joreland@mysql.com      1.1885
  # Removed debug code (joreland:1.1875)
  # --------------------------------------------
  # 04/04/26      ejonore@mc03.ndb.mysql.com      1.1862.1.5
  # Lock pages in memory _after_ daemon-mode (exec/fork)
  # --------------------------------------------
  # 04/04/27      ejonore@mc03.ndb.mysql.com      1.1862.1.6
  # 1) Trap abort()
  # 2) StopStart/StopAborted events
  # 3) warning if memlock fails
  # 4) use g_logger more often (instead of ndbout)
  # 
  # --------------------------------------------
  # 04/04/27      joreland@mysql.com      1.1886
  # bug fix for a bug in wl1714 + software upgrade
  # --------------------------------------------
  # 04/04/27      joreland@mysql.com      1.1887
  # Cset exclude: joreland@mysql.com|ChangeSet|20040422160720|05374
  # --------------------------------------------
  # 04/04/27      joreland@mysql.com      1.1888
  # removed libstc++ second try...
  # --------------------------------------------
  # 04/04/28      ejonore@mc03.ndb.mysql.com      1.1862.1.7
  # 1) Don't lock FUTURE pages but only current
  # 2) Do this when SIZEALT has completed
  # --------------------------------------------
  # 04/04/30      joreland@mysql.com      1.1889
  # Merge jonas@orca:/home/ndb/releases/mysql-4.1-ndb-3.4.x
  # into mysql.com:/home/jonas/src/mysql-4.1-ndb
  # --------------------------------------------
  # 04/05/03      ndb@mc03.ndb.mysql.com  1.1862.1.8
  # Version update
  # --------------------------------------------
  # 04/05/03      joreland@mysql.com      1.1862.3.1
  # Changed restart behavior.
  # Use "angel" process which monitor "real" process
  # --------------------------------------------
  # 04/05/03      joreland@mysql.com      1.1862.1.9
  # Merge jonas@orca:/home/ndb/releases/mysql-4.1-ndb-3.4.x
  # into mysql.com:/home/jonas/src/mysql-4.1-ndb-3.4.x
  # --------------------------------------------
  # 04/05/03      joreland@mysql.com      1.1890
  # Merge B2 fixes
  # --------------------------------------------
  # --------------------------------------------
  # 04/05/03      joreland@mysql.com      1.1862.1.10
  # Better handling of children terminations
  # --------------------------------------------
  # 04/05/03      joreland@mysql.com      1.1862.1.11
  # Fixes for angel-restarting
  # --------------------------------------------
  # 04/05/03      joreland@mysql.com      1.1891
  # Merge mysql.com:/home/jonas/src/mysql-4.1-ndb-3.4.x
  # into mysql.com:/home/jonas/src/mysql-4.1-ndb
  # --------------------------------------------
  #

  BitKeeper/etc/logging_ok
    1.233.1.60 04/05/04 11:19:19 joreland@mysql.com +1 -0
    Logging to logging@openlogging.org accepted

  ndb/src/common/util/new.cpp
    1.1 04/05/04 11:18:53 joreland@mysql.com +46 -0

  ndb/test/src/UtilTransactions.cpp
    1.2 04/05/04 11:18:53 joreland@mysql.com +15 -2
    Merge ndb fixes

  ndb/test/src/NDBT_Test.cpp
    1.2 04/05/04 11:18:53 joreland@mysql.com +2 -0
    Merge ndb fixes

  ndb/test/src/NDBT_Tables.cpp
    1.2 04/05/04 11:18:53 joreland@mysql.com +2 -1
    Merge ndb fixes

  ndb/test/src/HugoTransactions.cpp
    1.2 04/05/04 11:18:53 joreland@mysql.com +12 -0
    Merge ndb fixes

  ndb/test/ndbapi/testScan/testScan.cpp
    1.2 04/05/04 11:18:53 joreland@mysql.com +32 -14
    Merge ndb fixes

  ndb/test/ndbapi/testMgm/testMgm.cpp
    1.2 04/05/04 11:18:53 joreland@mysql.com +0 -1
    Merge ndb fixes

  ndb/test/ndbapi/testIndex/testIndex.cpp
    1.2 04/05/04 11:18:53 joreland@mysql.com +9 -8
    Merge ndb fixes

  ndb/test/ndbapi/testDict/testDict.cpp
    1.2 04/05/04 11:18:53 joreland@mysql.com +1 -1
    Merge ndb fixes

  ndb/src/common/util/new.cpp
    1.0 04/05/04 11:18:53 joreland@mysql.com +0 -0
    BitKeeper file /home/jonas/src/mysql-4.1/ndb/src/common/util/new.cpp

  ndb/src/rep/rep_version.hpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +3 -1
    Merge ndb fixes

  ndb/src/ndbapi/Ndberror.cpp
    1.1.1.1 04/05/04 11:18:52 joreland@mysql.com +1 -1
    Merge ndb fixes

  ndb/src/ndbapi/ClusterMgr.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +3 -2
    Merge ndb fixes

  ndb/src/mgmsrv/NodeLogLevel.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +2 -0
    Merge ndb fixes

  ndb/src/mgmsrv/MgmtSrvr.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +2 -0
    Merge ndb fixes

  ndb/src/kernel/vm/SimulatedBlock.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +0 -1
    Merge ndb fixes

  ndb/src/kernel/vm/SignalCounter.hpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +1 -1
    Merge ndb fixes

  ndb/src/kernel/vm/Emulator.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +26 -116
    Merge ndb fixes

  ndb/src/kernel/vm/DLFifoList.hpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +17 -5
    Merge ndb fixes

  ndb/src/kernel/vm/Configuration.hpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +1 -0
    Merge ndb fixes

  ndb/src/kernel/vm/Configuration.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +8 -4
    Merge ndb fixes

  ndb/src/kernel/ndb-main/Main.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +81 -126
    Merge ndb fixes

  ndb/src/kernel/error/Error.hpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +1 -1
    Merge ndb fixes

  ndb/src/kernel/blocks/suma/Suma.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +5 -2
    Merge ndb fixes

  ndb/src/kernel/blocks/ndbfs/Filename.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +1 -1
    Merge ndb fixes

  ndb/src/kernel/blocks/ndbcntr/NdbcntrMain.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +9 -0
    Merge ndb fixes

  ndb/src/kernel/blocks/dbutil/DbUtil.hpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +2 -1
    Merge ndb fixes

  ndb/src/kernel/blocks/dbutil/DbUtil.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +16 -0
    Merge ndb fixes

  ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +234 -323
    Merge ndb fixes

  ndb/src/kernel/blocks/dbtc/DbtcInit.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +3 -1
    Merge ndb fixes

  ndb/src/kernel/blocks/dbtc/Dbtc.hpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +25 -11
    Merge ndb fixes

  ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +237 -135
    Merge ndb fixes

  ndb/src/kernel/blocks/dblqh/DblqhInit.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +5 -9
    Merge ndb fixes

  ndb/src/kernel/blocks/dblqh/Dblqh.hpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +84 -69
    Merge ndb fixes

  ndb/src/kernel/blocks/dbdict/Dbdict.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +1 -1
    Merge ndb fixes

  ndb/src/kernel/blocks/cmvmi/Cmvmi.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +47 -9
    Merge ndb fixes

  ndb/src/kernel/blocks/backup/restore/main.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +10 -6
    Merge ndb fixes

  ndb/src/kernel/blocks/backup/restore/Restore.hpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +2 -1
    Merge ndb fixes

  ndb/src/kernel/blocks/backup/restore/Restore.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +1 -0
    Merge ndb fixes

  ndb/src/kernel/blocks/ERROR_codes.txt
    1.2 04/05/04 11:18:52 joreland@mysql.com +6 -1
    Merge ndb fixes

  ndb/src/cw/cpcd/Process.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +4 -5
    Merge ndb fixes

  ndb/src/common/util/version.c
    1.2 04/05/04 11:18:52 joreland@mysql.com +0 -1
    Merge ndb fixes

  ndb/src/common/util/Makefile
    1.2 04/05/04 11:18:52 joreland@mysql.com +1 -1
    Merge ndb fixes

  ndb/src/common/portlib/unix/NdbMem.c
    1.2 04/05/04 11:18:52 joreland@mysql.com +2 -1
    Merge ndb fixes

  ndb/src/common/logger/ConsoleLogHandler.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +1 -1
    Merge ndb fixes

  ndb/src/common/debugger/SignalLoggerManager.cpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +22 -4
    Merge ndb fixes

  ndb/include/util/SocketServer.hpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +1 -2
    Merge ndb fixes

  ndb/include/ndbapi/NdbScanOperation.hpp
    1.2 04/05/04 11:18:52 joreland@mysql.com +1 -1
    Merge ndb fixes

  ndb/include/ndb_version.h
    1.2 04/05/04 11:18:51 joreland@mysql.com +2 -2
    Merge ndb fixes

  ndb/include/kernel/signaldata/ScanFrag.hpp
    1.2 04/05/04 11:18:51 joreland@mysql.com +24 -5
    Merge ndb fixes

  ndb/include/debugger/SignalLoggerManager.hpp
    1.2 04/05/04 11:18:51 joreland@mysql.com +6 -0
    Merge ndb fixes

  ndb/examples/ndbapi_scan_example/Makefile
    1.2 04/05/04 11:18:51 joreland@mysql.com +1 -1
    Merge ndb fixes

  ndb/examples/ndbapi_async_example/ndbapi_async.cpp
    1.2 04/05/04 11:18:51 joreland@mysql.com +1 -1
    Merge ndb fixes

  ndb/examples/ndbapi_async_example/Makefile
    1.2 04/05/04 11:18:51 joreland@mysql.com +1 -1
    Merge ndb fixes

  ndb/config/Defs.LINUX.x86.GCC.mk
    1.2 04/05/04 11:18:51 joreland@mysql.com +3 -3
    Merge ndb fixes

  BitKeeper/etc/logging_ok
    1.233.1.59 04/05/04 11:18:51 joreland@mysql.com +1 -0
    Merge ndb fixes

ChangeSet
  1.1616.343.5 04/05/03 23:35:11 guilhem@mysql.com +2 -0
  trying to remove Windows compiler warnings (Miguel, could you please check if it's better now?)

  sql/ha_innodb.cc
    1.90.1.34 04/05/03 23:34:33 guilhem@mysql.com +0 -1
    removed unused variable

  innobase/eval/eval0eval.c
    1.5 04/05/03 23:34:32 guilhem@mysql.com +1 -1
    explicit cast

ChangeSet
  1.1346.605.1 04/05/03 18:26:50 serg@serg.mylan +1 -0
  compatibility fix. warning removed

  sql/item_timefunc.cc
    1.17.1.9 04/05/03 18:26:47 serg@serg.mylan +4 -4
    compatibility fix. warning removed

ChangeSet
  1.1616.347.1 04/05/03 19:15:26 Sinisa@sinisa.nasamreza.org +3 -0
  Fix for a bug involving UNION's and SET SQL_SELECT_LIMIT 

  sql/sql_union.cc
    1.74.18.1 04/05/03 19:15:19 Sinisa@sinisa.nasamreza.org +12 -3
    Patch  for a bug involving UNION's and SET SQL_SELECT_LIMIT 

  mysql-test/t/union.test
    1.63 04/05/03 19:15:19 Sinisa@sinisa.nasamreza.org +4 -0
    Test case for bug involving UNION's and 
    SET SQL_SELECT_LIMIT 

  mysql-test/r/union.result
    1.46.1.20 04/05/03 19:15:19 Sinisa@sinisa.nasamreza.org +11 -0
    Results for a test case for bug involving UNION's and 
    SET SQL_SELECT_LIMIT 

ChangeSet
  1.1616.346.1 04/05/03 17:17:50 serg@serg.mylan +1 -0
  per special request from Ingo :)

  mysql-test/mysql-test-run.sh
    1.182.1.2 04/05/03 17:17:46 serg@serg.mylan +1 -0
    per special request from Ingo :)

ChangeSet
  1.1616.345.1 04/05/03 15:55:21 ingo@mysql.com +8 -0
  WL#1700 - Properly count key_blocks_used and key_blocks_current.
  Introduced a new free blocks list. Free blocks are now re-used before
  new blocks are allocated from the pool. There is a new status variable 
  which can be queried by "show status like key_blocks_unused".

  sql/structs.h
    1.35 04/05/03 15:55:19 ingo@mysql.com +2 -1
    WL#1700 - Properly count key_blocks_used and key_blocks_current.
    Introduced SHOW_KEY_CACHE_CONST_LONG for status variables that
    must not be modified (i.e. flushed to zero).

  sql/sql_test.cc
    1.30.1.2 04/05/03 15:55:19 ingo@mysql.com +1 -1
    WL#1700 - Properly count key_blocks_used and key_blocks_current.
    Removed the variable global_blocks_used, as it was always the same as blocks_used.

  sql/sql_show.cc
    1.122.1.41 04/05/03 15:55:19 ingo@mysql.com +1 -0
    WL#1700 - Properly count key_blocks_used and key_blocks_current.
    Introduced SHOW_KEY_CACHE_CONST_LONG for status variables that
    must not be modified (i.e. flushed to zero).

  sql/mysqld.cc
    1.356.55.1 04/05/03 15:55:19 ingo@mysql.com +4 -2
    WL#1700 - Properly count key_blocks_used and key_blocks_current.
    The blocks_unused count can be queried by "show status like key_blocks_unused".
    Removed the variable global_blocks_used, as it was always the same as blocks_used.
    Introduced SHOW_KEY_CACHE_CONST_LONG for status variables that
    must not be modified (i.e. flushed to zero).

  mysys/mf_keycache.c
    1.42 04/05/03 15:55:19 ingo@mysql.com +68 -16
    WL#1700 - Properly count key_blocks_used and key_blocks_current.
    Introduced a new free blocks list. The introductory comment says it all (I hope).
    Removed the variable global_blocks_used, as it was always the same as blocks_used.

  mysql-test/t/key_cache.test
    1.11 04/05/03 15:55:19 ingo@mysql.com +12 -0
    WL#1700 - Properly count key_blocks_used and key_blocks_current.
    Inserted some commands which show how key_blocks_used and key_blocks_unused work.

  mysql-test/r/key_cache.result
    1.10 04/05/03 15:55:19 ingo@mysql.com +24 -0
    WL#1700 - Properly count key_blocks_used and key_blocks_current.
    Inserted some commands which show how key_blocks_used and key_blocks_unused work.

  include/keycache.h
    1.4 04/05/03 15:55:18 ingo@mysql.com +3 -2
    WL#1700 - Properly count key_blocks_used and key_blocks_current.
    free_block_list is the new free blocks list. It is implemented like a stack (LIFO).
    blocks_unused holds the number of never used blocks plus the number of blocks in the free list.
    Removed the variable global_blocks_used, as it was always the same as blocks_used.

ChangeSet
  1.1616.344.1 04/05/03 13:58:01 bell@sanja.is.com.ua +2 -0
  return table list of fake_select in empty state to prevent using TABLE_LIST allocated on stack in next execution of PS (Bug #3577)

  tests/client_test.c
    1.51.1.26 04/05/03 13:57:38 bell@sanja.is.com.ua +36 -0
    test of UNIONS with PS

  sql/sql_union.cc
    1.74.1.39 04/05/03 13:57:38 bell@sanja.is.com.ua +5 -0
    return table list of fake_select in empty state to prevent using TABLE_LIST allocated on stack in next execution of PS

ChangeSet
  1.1616.343.2 04/05/03 12:56:51 lenz@mysql.com +1 -0
   - enabled compiling with NDB cluster in compile-pentium-debug-max

  BUILD/compile-pentium-debug-max
    1.14 04/05/03 12:56:46 lenz@mysql.com +1 -1
     - enable compiling with NDB cluster

ChangeSet
  1.1616.343.1 04/05/03 12:10:06 serg@serg.mylan +1 -0
  mysql-test-run: -start-from added, cleanup

  mysql-test/mysql-test-run.sh
    1.182.1.1 04/05/03 12:10:01 serg@serg.mylan +19 -19
    -start-from added
    cleanup

ChangeSet
  1.1616.1.186 04/05/02 13:03:49 bell@sanja.is.com.ua +3 -0
  fixed zero result case for group functions in subquery (Bug #3505)
  fixed LIMIT 0 for zero rows optimisation

  sql/sql_select.cc
    1.216.1.104 04/05/02 13:03:30 bell@sanja.is.com.ua +11 -0
    cleanup sum function on reinit
    take in account LIMIT if zero result optimisation case
    do not forgot sum function in zero result case for subqueries

  mysql-test/t/subselect.test
    1.58.1.46 04/05/02 13:03:29 bell@sanja.is.com.ua +11 -0
    test case for bugreport

  mysql-test/r/subselect.result
    1.67.1.50 04/05/02 13:02:12 bell@sanja.is.com.ua +12 -0
    test case for bugreport

ChangeSet
  1.1616.1.184 04/05/01 15:41:59 serg@serg.mylan +7 -0
  myisam_data_pointer_size

  sql/set_var.cc
    1.34.1.81 04/05/01 15:41:54 serg@serg.mylan +4 -0
    myisam_data_pointer_size

  sql/mysqld.cc
    1.356.51.9 04/05/01 15:41:54 serg@serg.mylan +6 -1
    myisam_data_pointer_size

  myisam/mi_static.c
    1.15 04/05/01 15:41:54 serg@serg.mylan +1 -0
    myisam_data_pointer_size

  myisam/mi_info.c
    1.14 04/05/01 15:41:54 serg@serg.mylan +2 -1
    myisam_data_pointer_size

  myisam/mi_create.c
    1.33.1.2 04/05/01 15:41:54 serg@serg.mylan +2 -2
    myisam_data_pointer_size

  include/mysql.h
    1.121 04/05/01 15:41:54 serg@serg.mylan +1 -1
    compatibility fix

  include/myisam.h
    1.60 04/05/01 15:41:54 serg@serg.mylan +1 -1
    myisam_data_pointer_size

ChangeSet
  1.1616.1.183 04/05/01 11:07:42 serg@serg.mylan +1 -0
  note that --[skip-]opt include --set-charset
  make --set-charset affect only what's going into *dump* not client-server communication

  client/mysqldump.c
    1.125 04/05/01 11:07:38 serg@serg.mylan +3 -4
    note that --[skip-]opt include --set-charset
    make --set-charset affect only what's going into *dump* not client-server communication

ChangeSet
  1.1346.1.454 04/04/30 23:12:37 serg@serg.mylan +1 -0
  better followup fix for my_getopt (Argh!)

  mysys/my_getopt.c
    1.35.1.7 04/04/30 23:12:34 serg@serg.mylan +7 -7
    better followup fix for my_getopt (Argh!)

ChangeSet
  1.1346.1.453 04/04/30 22:52:08 serg@serg.mylan +1 -0
  followup - error fixed

  mysys/my_getopt.c
    1.35.1.6 04/04/30 22:52:06 serg@serg.mylan +3 -2
    followup - error fixed

ChangeSet
  1.1616.1.182 04/04/30 21:11:36 serg@serg.mylan +1 -0
  removed duplicated check for thd->killed

  sql/sql_select.cc
    1.216.1.103 04/04/30 21:11:31 serg@serg.mylan +0 -2
    removed duplicated check for thd->killed

ChangeSet
  1.1346.1.451 04/04/30 19:17:55 serg@serg.mylan +1 -0
  --ft-stopword-file option for myisamchk

  myisam/myisamchk.c
    1.80.1.32 04/04/30 19:17:52 serg@serg.mylan +5 -1
    --ft-stopword-file option for myisamchk

ChangeSet
  1.1616.338.8 04/04/30 20:44:46 sergefp@mysql.com +1 -0
  More small WL#1622 fixes: Allocate name of Prepared Statement on PS's mem_root.

  sql/sql_prepare.cc
    1.34.1.61 04/04/30 20:44:43 sergefp@mysql.com +2 -4
    Allocate name of Prepared Statement on PS's mem_root.

ChangeSet
  1.1616.338.7 04/04/30 20:08:38 sergefp@mysql.com +4 -0
  WL#1622 "SQL Syntax for Prepared Statements" - cosmetic code review fixes

  sql/sql_yacc.yy
    1.203.1.115 04/04/30 20:08:35 sergefp@mysql.com +9 -10
    WL#1622 "SQL Syntax for Prepared Statements" - cosmetic code review fixes

  sql/sql_class.cc
    1.105.1.57 04/04/30 20:08:35 sergefp@mysql.com +4 -4
    WL#1622 "SQL Syntax for Prepared Statements" - cosmetic code review fixes

  mysql-test/t/ps.test
    1.3 04/04/30 20:08:35 sergefp@mysql.com +11 -0
    Added check if multiple SQL statements inside a PS are disabled

  mysql-test/r/ps.result
    1.3 04/04/30 20:08:35 sergefp@mysql.com +6 -0
    Added check if multiple SQL statements inside a PS are disabled

ChangeSet
  1.1616.338.5 04/04/30 17:21:06 sergefp@mysql.com +1 -0
  Fix client_test to use new statement assertion macros

  tests/client_test.c
    1.51.1.25 04/04/30 17:21:03 sergefp@mysql.com +3 -3
    Fix client_test to use new statement assertion macros

ChangeSet
  1.1616.340.1 04/04/30 14:31:52 lenz@mysql.com +1 -0
   - reverted change to fill_help_tables.sh ("Added checking of maximum
     length of line in output (Bug #2874)" from last ChangeSet (should not
     have been applied)

  scripts/fill_help_tables.sh
    1.11 04/04/30 14:31:49 lenz@mysql.com +7 -40
     - reverted change "Added checking of maximum length of line in output 
       (Bug #2874)" from last ChangeSet (should not have been applied)

ChangeSet
  1.1616.336.2 04/04/30 13:38:41 magnus@neptunus.(none) +2 -0
  WL#1727 Implement read_range_first and read_range_next

  sql/ha_ndbcluster.h
    1.2.2.1 04/04/30 13:38:39 magnus@neptunus.(none) +10 -3
    Added functions set_bounds, read_range_first and read_range_next
    Changed declaration of ordered_index_scan

  sql/ha_ndbcluster.cc
    1.3.2.1 04/04/30 13:38:39 magnus@neptunus.(none) +127 -80
    Added new function set_bounds, used to set bounds in NDB from a key_range
    Updated ordered_index_scan to take start_key and end_key as parameters
    Override of functions read_range_first and read_range_next, to call appropriate access function in NDB
    

ChangeSet
  1.1616.338.2 04/04/30 14:24:06 monty@mysql.com +2 -0
  Only calculate MYSQL_FIELD->max_length if mysql_stmt_attr_set(..., STMT_ATTR_UPDATE_MAX_LENGTH) is done.

  tests/client_test.c
    1.51.1.23 04/04/30 14:24:04 monty@mysql.com +42 -26
    Test mysql_stmt_attr_set(...STMT_ATTR_UPDATE_MAX_LENGTH)

  libmysql/libmysql.c
    1.156.1.70 04/04/30 14:24:04 monty@mysql.com +4 -7
    Only calculate MYSQL_FIELD->max_length if mysql_stmt_attr_set(..., STMT_ATTR_UPDATE_MAX_LENGTH) is done.

ChangeSet
  1.1616.337.1 04/04/30 14:02:17 monty@mysql.com +6 -0
  Update 'MYSQL_FIELD->max_length' on mysql_stmt_store_result() (Bug #1647)
  Added checking of cut read lines in bootstrap thread (Bug #2874)

  tests/client_test.c
    1.51.8.1 04/04/30 14:02:15 monty@mysql.com +569 -503
    Added --debug
    Changed some strange define names
    Less output
    Added testing of max_length for prepared statements

  sql/sql_parse.cc
    1.271.71.2 04/04/30 14:02:15 monty@mysql.com +6 -0
    Added checking of cut read lines in bootstrap thread (Bug #2874)

  scripts/mysql_install_db.sh
    1.37.1.22 04/04/30 14:02:15 monty@mysql.com +22 -9
    Added error message if help tables couldn't be done (Bug #2874)

  scripts/fill_help_tables.sh
    1.10 04/04/30 14:02:15 monty@mysql.com +40 -7
    Added checking of maximum length of line in output (Bug #2874)

  libmysql/libmysql.c
    1.156.15.1 04/04/30 14:02:15 monty@mysql.com +173 -8
    Update 'MYSQL_FIELD->max_length' on mysql_stmt_store_result() (Bug #1647)

  include/mysql.h
    1.117.2.1 04/04/30 14:02:15 monty@mysql.com +6 -2
    Added length to MYSQL_ROWS to enable sanity checking of packets
    Update 'MYSQL_FIELD->max_length' on mysql_stmt_store_result()

ChangeSet
  1.1616.336.1 04/04/30 12:49:34 magnus@neptunus.(none) +5 -0
  Addded test files for NDB
  Updated stop_ndbcluster script

  mysql-test/t/ndb_index_ordered.test
    1.2 04/04/30 12:49:33 magnus@neptunus.(none) +12 -7
    Add table with two index columns to test

  mysql-test/r/ndb_index_ordered.result
    1.2 04/04/30 12:49:33 magnus@neptunus.(none) +69 -0
    Add table with two index columns to test

  mysql-test/ndb/stop_ndbcluster
    1.2 04/04/30 12:49:32 magnus@neptunus.(none) +8 -5
    Allow script to run even if pidfile does not exist
    This is done so that it will try to connect to mgmtsrvr an stop all running ndb nodes.
    NOTE! It would be good if also the mgmtsrv could "stop itself"

ChangeSet
  1.1616.330.4 04/04/30 12:25:31 magnus@neptunus.(none) +2 -0
  Add extra ordered index in when UNIGQUE and PRIMARY KEY are specified.
  Extra ordered indexes are created primarily 
  to support partial key scan/read and range scans of hash indexes.
  I.e. the ordered index are used instead of the hash indexes for 
  these queries.

  sql/ha_ndbcluster.h
    1.2.1.1 04/04/30 12:25:29 magnus@neptunus.(none) +5 -1
    Added new functions for creating extra ordered indexes

  sql/ha_ndbcluster.cc
    1.3.1.1 04/04/30 12:25:29 magnus@neptunus.(none) +154 -37
    Add creation and use of extra ordered indexes on pk and unique indexes. 

ChangeSet
  1.1616.334.1 04/04/30 10:42:12 serg@serg.mylan +1 -0
  compatibility fix (bug#3606)

  sql/slave.cc
    1.188.1.50 04/04/30 10:42:07 serg@serg.mylan +1 -1
    compatibility fix (bug#3606)

ChangeSet
  1.1616.330.3 04/04/30 10:12:24 magnus@neptunus.(none) +1 -0
  Removed define NDB_MAX_CONNECTIONS

  ndb/include/ndbapi/ndbapi_limits.h
    1.2 04/04/30 10:12:20 magnus@neptunus.(none) +0 -1
    Removed define for NDB_MAX_CONNECTIONS, wrong value+it's not needed to be defined here. User will get error if creating too many Ndb objects.

ChangeSet
  1.1616.330.2 04/04/30 10:08:44 magnus@neptunus.(none) +3 -0
  Updated default NDB config to work better with sql-bench
  Updated sql-bench configs to take NDB's limitations into account

  sql-bench/server-cfg.sh
    1.48 04/04/30 10:08:11 magnus@neptunus.(none) +7 -0
    Add settings and limitations for NDB 

  mysql-test/ndb/ndb_config_2_node.ini
    1.2 04/04/30 10:08:11 magnus@neptunus.(none) +1 -0
    Increase MaxNumberOfOperations to 100000 to support large deletes and inserts.

  mysql-test/mysql-test-run.sh
    1.183 04/04/30 10:08:11 magnus@neptunus.(none) +9 -2
    Instruct run-all-tests to create tables in NDB if USE_NDBCLUSTER is set

  mysql-test/r/ndb_insert.result
    1.1 04/04/30 09:06:06 magnus@neptunus.(none) +419 -0

  mysql-test/r/ndb_insert.result
    1.0 04/04/30 09:06:06 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/r/ndb_insert.result

  mysql-test/t/ndb_insert.test
    1.1 04/04/30 09:05:58 magnus@neptunus.(none) +433 -0

  mysql-test/t/ndb_insert.test
    1.0 04/04/30 09:05:58 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/t/ndb_insert.test

ChangeSet
  1.1616.333.1 04/04/30 03:00:19 konstantin@mysql.com +7 -0
  Fix for Bug#3035 "Prepared statement integer inserts": now unsigned
  flag is sent to server with placeholder types.
  There were no need to extend the protocol as one additional byte
  was reserved for placeholder code, when placeholder code is in range 0-255.
  So this byte is now used for flags. Post-review fixes added.

  tests/client_test.c
    1.51.7.3 04/04/30 03:00:16 konstantin@mysql.com +163 -0
    Test for BUG#3035 added: insert and retrieve minimum and maximum of all
    integer types.

  sql/sql_prepare.cc
    1.34.16.1 04/04/30 03:00:16 konstantin@mysql.com +16 -4
    Placeholder sign is taken into account when reading data from network.

  libmysql/libmysql.c
    1.156.14.1 04/04/30 03:00:16 konstantin@mysql.com +30 -29
    Function store_param_type was removed - too much for a function, especially
    with bug in it.
    New implementation is inline and takes into account signedness of 
    placeholder.
    Fixed store functions to not perform double network-host order conversion
    on high-byte-first systems (should also fix Bug#3578 "Prepared statement 
    integer conversions work wrong in 64-bit Power Mac G5 CPUs").
    null_field removed.

  include/mysql_com.h
    1.67.1.25 04/04/30 03:00:16 konstantin@mysql.com +0 -11
    Unused defines were removed.

  include/mysql.h
    1.117.1.1 04/04/30 03:00:16 konstantin@mysql.com +1 -2
    Bug#3035:
    added 'is_unsigned' member
    binary_data wasn't used, removed
    null_field wasn't necessary, removed

  include/my_global.h
    1.47.6.4 04/04/30 03:00:16 konstantin@mysql.com +9 -0
    added floatstore implementation

  include/config-win.h
    1.43 04/04/30 03:00:16 konstantin@mysql.com +1 -0
    added floaststore implementation

ChangeSet
  1.1346.603.1 04/04/30 00:14:56 monty@mysql.com +3 -0
  Portability fixes

  scripts/mysql_fix_privilege_tables.sh
    1.9.1.7 04/04/30 00:14:54 monty@mysql.com +1 -1
    Portability fix

  mysql-test/t/system_mysql_db_fix-master.opt
    1.1.1.1 04/04/30 00:14:54 monty@mysql.com +1 -1
    Add missing newline

  mysql-test/mysql-test-run.sh
    1.146.1.48 04/04/30 00:14:54 monty@mysql.com +1 -1
    Avoid 'too many arguments' error

ChangeSet
  1.1616.332.1 04/04/30 01:02:29 konstantin@mysql.com +3 -0
  Implementation of mysql_stmt_attr_get and mysql_stmt_attr_set 
  requested by Monty for Bug#1647 (No way to determine what size 
  blob/clob is being returned into bound buffer)

  libmysql/libmysql.def
    1.24 04/04/30 01:02:27 konstantin@mysql.com +2 -0
    Windows .defs added for new API calls

  libmysql/libmysql.c
    1.156.1.67 04/04/30 01:02:27 konstantin@mysql.com +50 -0
    Implementation of mysql_stmt_attr_get and mysql_stmt_attr_set 
    requested by Monty for Bug#1647.

  include/mysql.h
    1.118 04/04/30 01:02:26 konstantin@mysql.com +23 -0
    Implementation of mysql_stmt_attr_get and mysql_stmt_attr_set 
    requested by Monty for Bug#1647.

ChangeSet
  1.1616.329.6 04/04/29 21:22:03 tomas@mc05.(none) +2 -0
  SrcDist.sh, Epilogue.mk:
    improved distdir

  ndb/SrcDist.sh
    1.2 04/04/29 21:21:33 tomas@mc05.(none) +9 -9
    improved distdir

  ndb/Epilogue.mk
    1.3 04/04/29 21:21:18 tomas@mc05.(none) +3 -7
    improved distdir

ChangeSet
  1.1616.329.5 04/04/29 20:25:00 tomas@mc05.(none) +3 -0
  configure.in:
    added configure options PACKAGE and VERSION for ndb
  GuessConfig.sh:
    added options for PACKAGE and VERSION
  Epilogue.mk:
    Added target distdir

  configure.in
    1.201.8.8 04/04/29 20:23:44 tomas@mc05.(none) +1 -0
    added configure options PACKAGE and VERSION for ndb

  ndb/config/GuessConfig.sh
    1.3 04/04/29 20:23:13 tomas@mc05.(none) +25 -13
    added options for PACKAGE and VERSION

  ndb/Epilogue.mk
    1.2 04/04/29 20:22:43 tomas@mc05.(none) +27 -0
    Added target distdir

ChangeSet
  1.1616.329.4 04/04/29 19:48:46 tomas@mc05.(none) +1 -0
  SrcDist.sh:
    new file

  ndb/SrcDist.sh
    1.1 04/04/29 19:46:02 tomas@mc05.(none) +87 -0

  ndb/SrcDist.sh
    1.0 04/04/29 19:46:02 tomas@mc05.(none) +0 -0
    BitKeeper file /space/tomas/mysql-4.1-make/ndb/SrcDist.sh

ChangeSet
  1.1616.329.3 04/04/29 19:12:27 lenz@mysql.com +1 -0
   - added option for building/packaging the NDB cluster to Do-compile

  Build-tools/Do-compile
    1.82 04/04/29 19:11:02 lenz@mysql.com +8 -2
     - added option for building/packaging the NDB cluster

ChangeSet
  1.1346.602.1 04/04/29 16:42:33 marko@hundin.mysql.fi +10 -0
  InnoDB: implement LOCK TABLE (Bug #3299)

  mysql-test/t/innodb-lock.test
    1.1 04/04/29 16:42:30 marko@hundin.mysql.fi +40 -0

  mysql-test/r/innodb-lock.result
    1.1 04/04/29 16:42:30 marko@hundin.mysql.fi +22 -0

  sql/ha_innodb.cc
    1.73.1.127 04/04/29 16:42:30 marko@hundin.mysql.fi +16 -4
    Call row_lock_table_for_mysql() and row_unlock_table_for_mysql()

  mysql-test/t/innodb-lock.test
    1.0 04/04/29 16:42:30 marko@hundin.mysql.fi +0 -0
    BitKeeper file /home/marko/l/mysql-4.0/mysql-test/t/innodb-lock.test

  mysql-test/r/innodb.result
    1.40.1.37 04/04/29 16:42:30 marko@hundin.mysql.fi +1 -1
    Updated handling of auto_inc columns

  mysql-test/r/innodb-lock.result
    1.0 04/04/29 16:42:30 marko@hundin.mysql.fi +0 -0
    BitKeeper file /home/marko/l/mysql-4.0/mysql-test/r/innodb-lock.result

  innobase/trx/trx0trx.c
    1.20.1.17 04/04/29 16:42:30 marko@hundin.mysql.fi +2 -0
    Add n_tables_locked

  innobase/row/row0mysql.c
    1.39.1.24 04/04/29 16:42:29 marko@hundin.mysql.fi +86 -2
    Add row_unlock_table_for_mysql() and row_lock_table_for_mysql()

  innobase/lock/lock0lock.c
    1.20.1.13 04/04/29 16:42:29 marko@hundin.mysql.fi +118 -12
    Add LOCK_TABLE_EXP for explicit LOCK TABLE commands
    Add lock_table_unlock()
    Add lock_release_tables_off_kernel()

  innobase/include/trx0trx.h
    1.29 04/04/29 16:42:29 marko@hundin.mysql.fi +2 -0
    Add n_tables_locked

  innobase/include/row0mysql.h
    1.15.1.3 04/04/29 16:42:29 marko@hundin.mysql.fi +16 -0
    Add row_unlock_table_for_mysql() and row_lock_table_for_mysql()

  innobase/include/lock0lock.h
    1.7.1.5 04/04/29 16:42:29 marko@hundin.mysql.fi +20 -1
    Add lock_table_unlock() and lock_release_tables_off_kernel()
    Add LOCK_TABLE_EXP

ChangeSet
  1.1346.1.449 04/04/29 14:48:49 lenz@mysql.com +1 -0
   - added AC_PROG_LIBTOOL to innobase/configure.in to be able to compile
     MySQL with InnoDB on IBM AIX 5.2 in 64bit mode (which requires a special
     AR flag)

  innobase/configure.in
    1.22.1.3 04/04/29 14:48:46 lenz@mysql.com +1 -0
     - added AC_PROG_LIBTOOL to innobase/configure.in to be able to compile
       MySQL with InnoDB on IBM AIX 5.2 in 64bit mode (which requires a special
       AR flag)

ChangeSet
  1.1616.331.1 04/04/29 14:38:35 magnus@neptunus.(none) +2 -0
  WL#1737 Removed superfluous "NoCommit" from insert

  sql/ha_ndbcluster.h
    1.3 04/04/29 14:38:11 magnus@neptunus.(none) +5 -0
    Send more inserts per roundtrip to NDB
    Regulate how many inserts are sent by calculating number of bytes in each row.

  sql/ha_ndbcluster.cc
    1.4 04/04/29 14:38:11 magnus@neptunus.(none) +65 -7
    Added 3 new variables for keeping track of insert batching

ChangeSet
  1.1616.328.4 04/04/29 12:25:56 serg@serg.mylan +1 -0
  postreview fixes

  myisam/ft_boolean_search.c
    1.77 04/04/29 12:25:51 serg@serg.mylan +13 -16
    postreview fixes

ChangeSet
  1.1346.1.448 04/04/29 13:18:20 monty@mysql.com +1 -0
  Portability fix (for AIX)

  innobase/pars/lexyy.c
    1.10.1.3 04/04/29 13:18:19 monty@mysql.com +3 -0
    Add missing include file (Needed for AIX)

ChangeSet
  1.1616.330.1 04/04/29 09:58:38 magnus@neptunus.(none) +6 -0
  Added new mysql-test files for NDB

  mysql-test/r/ndb_index_ordered.result
    1.1 04/04/29 09:51:30 magnus@neptunus.(none) +121 -0

  mysql-test/r/ndb_index_ordered.result
    1.0 04/04/29 09:51:30 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/r/ndb_index_ordered.result

  mysql-test/r/ndb_index_unique.result
    1.1 04/04/29 09:51:27 magnus@neptunus.(none) +371 -0

  mysql-test/r/ndb_index_unique.result
    1.0 04/04/29 09:51:27 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/r/ndb_index_unique.result

  mysql-test/r/ndb_index.result
    1.1 04/04/29 09:51:23 magnus@neptunus.(none) +160 -0

  mysql-test/r/ndb_index.result
    1.0 04/04/29 09:51:23 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/r/ndb_index.result

  mysql-test/t/ndb_index_ordered.test
    1.1 04/04/29 09:51:12 magnus@neptunus.(none) +107 -0

  mysql-test/t/ndb_index_ordered.test
    1.0 04/04/29 09:51:12 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/t/ndb_index_ordered.test

  mysql-test/t/ndb_index_unique.test
    1.1 04/04/29 09:51:05 magnus@neptunus.(none) +134 -0

  mysql-test/t/ndb_index_unique.test
    1.0 04/04/29 09:51:05 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/t/ndb_index_unique.test

  mysql-test/t/ndb_index.test
    1.1 04/04/29 09:50:58 magnus@neptunus.(none) +126 -0

  mysql-test/t/ndb_index.test
    1.0 04/04/29 09:50:58 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/t/ndb_index.test

ChangeSet
  1.1346.601.1 04/04/28 23:43:46 guilhem@mysql.com +5 -0
  Very small fixes for testsuite (a real_sleep instead of sleep, plus TCP port independency of the result file).

  mysql-test/t/rpl_server_id2.test
    1.2 04/04/28 23:43:44 guilhem@mysql.com +1 -0
    be port-independent

  mysql-test/t/rpl_server_id1.test
    1.2 04/04/28 23:43:44 guilhem@mysql.com +1 -0
    be port-independent

  mysql-test/t/rpl_error_ignored_table.test
    1.2.1.3 04/04/28 23:43:44 guilhem@mysql.com +1 -1
    we want to sleep 2 secs, not more; if we allow ourselves to sleep >=10 seconds, then
    the get_lock() will be aborted and we will arrive to late for the KILL to have
    the desired effect of generating an error code in the binlog.

  mysql-test/r/rpl_server_id2.result
    1.2 04/04/28 23:43:44 guilhem@mysql.com +1 -1
    be port-independent

  mysql-test/r/rpl_server_id1.result
    1.2 04/04/28 23:43:44 guilhem@mysql.com +1 -1
    be port-independent

ChangeSet
  1.1616.329.1 04/04/28 20:19:50 monty@mysql.com +3 -0
  Allow one to send empty strings with mysql_stmt_send_long_data()
  mysql_stmt_reset() now resets param->long_data_used
  Abort if --defaults-file=path-name uses a non-existing file (Bug #3413)
  Fixed problem with symlink test (bug in 4.1.2)

  sql/unireg.cc
    1.40 04/04/28 20:19:49 monty@mysql.com +6 -2
    Fixed problem with symlink test:  .frm table was not properly deleted if handler create failed

  mysys/default.c
    1.41 04/04/28 20:19:49 monty@mysql.com +6 -0
    Abort if --defaults-file=path-name uses a non-existing file (Bug #3413)
    

  libmysql/libmysql.c
    1.156.1.66 04/04/28 20:19:48 monty@mysql.com +11 -2
    Allow one to send empty strings with mysql_stmt_send_long_data()
    mysql_stmt_reset() now resets param->long_data_used

ChangeSet
  1.1346.1.446 04/04/28 11:50:32 paul@kite-hub.kitebird.com +2 -0
  my-medium.cnf.sh:
    Correct typo, and fix up rest of sentence as well.

  BitKeeper/etc/logging_ok
    1.206.1.105 04/04/28 11:50:32 paul@kite-hub.kitebird.com +1 -0
    Logging to logging@openlogging.org accepted

  support-files/my-medium.cnf.sh
    1.17.1.1 04/04/28 11:49:56 paul@kite-hub.kitebird.com +2 -2
    Correct typo, and fix up rest of sentence as well.

ChangeSet
  1.1346.600.1 04/04/28 18:24:46 guilhem@mysql.com +8 -0
  A new option --replicate-same-server-id to force a slave to execute queries originating from itself
  (WL#794). This can be of interest in some recovery-from-backup scenarios, and also when you have
  two databases in one mysqld, having a certain similarity and you want one db to be updated when the other is
  (some sort of trigger).
  Plus small fix for BUG#3568 "MySQL server crashes when built --with-debug and CHANGE MASTER +MASTER_POS_WAIT"

  mysql-test/t/rpl_server_id2.test
    1.1 04/04/28 18:24:43 guilhem@mysql.com +20 -0

  mysql-test/t/rpl_server_id2-slave.opt
    1.1 04/04/28 18:24:43 guilhem@mysql.com +1 -0

  mysql-test/t/rpl_server_id1.test
    1.1 04/04/28 18:24:43 guilhem@mysql.com +22 -0

  mysql-test/r/rpl_server_id2.result
    1.1 04/04/28 18:24:43 guilhem@mysql.com +21 -0

  mysql-test/t/rpl_server_id2.test
    1.0 04/04/28 18:24:43 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.0/mysql-test/t/rpl_server_id2.test

  mysql-test/t/rpl_server_id2-slave.opt
    1.0 04/04/28 18:24:43 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.0/mysql-test/t/rpl_server_id2-slave.opt

  mysql-test/t/rpl_server_id1.test
    1.0 04/04/28 18:24:43 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.0/mysql-test/t/rpl_server_id1.test

  mysql-test/r/rpl_server_id2.result
    1.0 04/04/28 18:24:43 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.0/mysql-test/r/rpl_server_id2.result

  mysql-test/r/rpl_server_id1.result
    1.1 04/04/28 18:24:42 guilhem@mysql.com +23 -0

  sql/slave.h
    1.50.1.26 04/04/28 18:24:42 guilhem@mysql.com +1 -1
    new option --replicate-same-server-id

  sql/slave.cc
    1.164.1.110 04/04/28 18:24:42 guilhem@mysql.com +27 -8
    new option replicate_same_server_id, to force a slave to execute its own queries.
    Small fix for BUG#3568 "MySQL server crashes when built --with-debug and CHANGE MASTER +MASTER_POS_WAIT"

  sql/mysqld.cc
    1.297.1.195 04/04/28 18:24:42 guilhem@mysql.com +17 -1
    new option --replicate-same-server-id

  mysql-test/r/rpl_server_id1.result
    1.0 04/04/28 18:24:42 guilhem@mysql.com +0 -0
    BitKeeper file /home/mysql_src/mysql-4.0/mysql-test/r/rpl_server_id1.result

ChangeSet
  1.1346.599.1 04/04/28 16:14:53 antony@ltantony.dsl-verizon.net +10 -0
  Fix for Bug 3481
    CREATE statement allowed extra unnecessary commas

  BitKeeper/etc/logging_ok
    1.206.1.104 04/04/28 16:14:52 antony@ltantony.dsl-verizon.net +1 -0
    Logging to logging@openlogging.org accepted

ChangeSet
  1.1346.596.2 04/04/28 17:45:08 monty@mysql.com +9 -0
  Fixed http address in some scripts (Bug #3460)
  Output TIMESTAMP in 4.1 format for 4.1 tables (or for TIMESTAMP(19)) (portability fix)
  Fixed that INTERVAL can handle big integers. (Bug #3498)
  Fixed that hostname="" works identical as hostname="%" for table/column grants (Bug #3473)

  sql/structs.h
    1.17.1.10 04/04/28 17:45:07 monty@mysql.com +2 -1
    Fix for long values to INTERVAL

  sql/sql_acl.cc
    1.51.1.72 04/04/28 17:45:07 monty@mysql.com +119 -106
    Fixed that hostname="" works identical as hostname="%" for table/column grants (Bug #3473)
    Moved GRANT_TABLE::GRANT_TABLE functions ou from class definition to make it possible to debug them

  sql/mysql_priv.h
    1.150.1.68 04/04/28 17:45:07 monty@mysql.com +1 -2
    Removed not needed prototype

  sql/item_timefunc.cc
    1.17.1.8 04/04/28 17:45:07 monty@mysql.com +47 -44
    Fixed that INTERVAL can handle big integers. (Bug #3498)

  sql/field.cc
    1.51.1.35 04/04/28 17:45:07 monty@mysql.com +1 -1
    Output TIMESTAMP in 4.1 format for 4.1 tables (or for TIMESTAMP(19))

  scripts/mysqld_safe.sh
    1.56.1.12 04/04/28 17:45:07 monty@mysql.com +2 -0
    Added html address to manual in case of error

  mysql-test/t/func_time.test
    1.14.1.5 04/04/28 17:45:06 monty@mysql.com +18 -1
    Added test of INTERVAL with big integers

  mysql-test/r/func_time.result
    1.17.1.5 04/04/28 17:45:06 monty@mysql.com +30 -0
    Results for new test cases

  mysql-test/mysql-test-run.sh
    1.146.1.47 04/04/28 17:45:06 monty@mysql.com +1 -1
    Fixed wrong http address (Bug #3460)

ChangeSet
  1.1346.598.1 04/04/28 16:40:21 serg@serg.mylan +1 -0
  typo fixed

  extra/replace.c
    1.11.1.4 04/04/28 16:40:19 serg@serg.mylan +1 -1
    typo fixed

  sql/sql_yacc.yy
    1.145.1.83 04/04/28 15:29:49 antony@ltantony.dsl-verizon.net +15 -4
    Fix for bug 3481
      No path through the grammar which has no clauses

  mysql-test/t/rpl_multi_update.test
    1.1.1.1 04/04/28 15:29:49 antony@ltantony.dsl-verizon.net +1 -1
    Extra comma removed in CREATE statement

  mysql-test/t/func_str.test
    1.15.3.1 04/04/28 15:29:49 antony@ltantony.dsl-verizon.net +1 -1
    Extra comma removed in CREATE statement

  mysql-test/t/create.test
    1.11.1.10 04/04/28 15:29:49 antony@ltantony.dsl-verizon.net +12 -0
    New test for bug 3481

  mysql-test/t/alias.test
    1.2.1.3 04/04/28 15:29:49 antony@ltantony.dsl-verizon.net +1 -2
    Extra comma removed in CREATE statement

  mysql-test/r/rpl_multi_update.result
    1.1.1.1 04/04/28 15:29:49 antony@ltantony.dsl-verizon.net +1 -1
    Extra comma removed in CREATE statement

  mysql-test/r/func_str.result
    1.16.3.1 04/04/28 15:29:49 antony@ltantony.dsl-verizon.net +1 -1
    Extra comma removed in CREATE statement

  mysql-test/r/create.result
    1.12.1.12 04/04/28 15:29:48 antony@ltantony.dsl-verizon.net +6 -0
    New test for Bug 3481

  mysql-test/r/alias.result
    1.5.1.1 04/04/28 15:29:48 antony@ltantony.dsl-verizon.net +1 -1
    Extra comma removed in CREATE statement

ChangeSet
  1.1346.597.1 04/04/28 17:03:26 marko@hundin.mysql.fi +4 -0
  InnoDB: make UNIV_SYNC_DEBUG useable again

  innobase/sync/sync0sync.c
    1.16.1.12 04/04/28 16:59:40 marko@hundin.mysql.fi +3 -3
    mutex_get_debug_info(): add const qualifier

  innobase/sync/sync0arr.c
    1.11.1.5 04/04/28 16:59:02 marko@hundin.mysql.fi +0 -1
    sync_array_detect_deadlock(): Remove extraneous declaration of "lock"

  innobase/srv/srv0start.c
    1.37.1.20 04/04/28 16:58:12 marko@hundin.mysql.fi +1 -0
    Set srv_monitor_file_mutex at level SYNC_NO_ORDER_CHECK

  innobase/include/sync0sync.h
    1.9.1.7 04/04/28 16:56:48 marko@hundin.mysql.fi +1 -1
    mutex_get_debug_info(): add const qualifier

ChangeSet
  1.1346.1.441 04/04/28 15:46:08 serg@serg.mylan +1 -0
  memory overflow in replace.c fixed

  extra/replace.c
    1.11.1.3 04/04/28 15:46:05 serg@serg.mylan +2 -1
    memory overflow in replace.c fixed

ChangeSet
  1.1346.1.440 04/04/28 15:33:03 serg@serg.mylan +1 -0
  bug#3529 - my_getopt doesn't process short OPT_ARG options correctly
  cleanup

  mysys/my_getopt.c
    1.35.1.5 04/04/28 15:33:00 serg@serg.mylan +20 -11
    bug#3529 - my_getopt doesn't process short OPT_ARG options correctly
    cleanup

ChangeSet
  1.1346.1.439 04/04/28 14:19:02 serg@serg.mylan +4 -0
  bug#3556 - soundex

  sql/item_strfunc.cc
    1.36.1.41 04/04/28 14:18:58 serg@serg.mylan +1 -1
    bug#3556 - soundex

  mysys/mf_soundex.c
    1.4.1.2 04/04/28 14:18:58 serg@serg.mylan +2 -2
    bug#3556 - soundex

  mysql-test/t/func_str.test
    1.15.2.9 04/04/28 14:18:58 serg@serg.mylan +1 -1
    bug#3556 - soundex

  mysql-test/r/func_str.result
    1.16.2.9 04/04/28 14:18:58 serg@serg.mylan +3 -3
    bug#3556 - soundex

ChangeSet
  1.1665.1.10 04/04/28 12:08:54 pem@mysql.comhem.se +25 -0
  Post-merge fixes, some quite complex. client/mysqlbinlog.cc and sql/log_event.cc
  merged manually by guilhem.

  sql/sql_table.cc
    1.179 04/04/28 12:08:51 pem@mysql.com +0 -1
    Post-merge fixes.

  sql/sql_insert.cc
    1.103 04/04/28 12:08:51 pem@mysql.com +1 -1
    Post-merge fixes.

  sql/sp.cc
    1.48.1.1 04/04/28 12:08:51 pem@mysql.com +1 -1
    Post-merge fixes.

  sql/share/estonian/errmsg.txt
    1.99 04/04/28 12:08:51 pem@mysql.com +0 -29
    Post-merge fixes.

  sql/share/english/errmsg.txt
    1.106 04/04/28 12:08:51 pem@mysql.com +0 -34
    Post-merge fixes.

  sql/share/dutch/errmsg.txt
    1.101 04/04/28 12:08:51 pem@mysql.com +0 -29
    Post-merge fixes.

  sql/share/danish/errmsg.txt
    1.97 04/04/28 12:08:51 pem@mysql.com +0 -29
    Post-merge fixes.

  sql/set_var.cc
    1.51 04/04/28 12:08:51 pem@mysql.com +240 -126
    Post-merge fixes.

  sql/log_event.cc
    1.131 04/04/28 12:08:51 pem@mysql.com +201 -173
    Post-merge fixes; manually merged by guilhem.

  sql/ha_innodb.cc
    1.103 04/04/28 12:08:51 pem@mysql.com +4 -4
    Post-merge fixes.

  mysql-test/t/sp-error.test
    1.37 04/04/28 12:08:50 pem@mysql.com +49 -49
    Post-merge fixes.

  mysql-test/t/rpl_error_ignored_table.test
    1.8 04/04/28 12:08:50 pem@mysql.com +1 -1
    Post-merge fixes.

  mysql-test/r/variables.result
    1.44 04/04/28 12:08:50 pem@mysql.com +1 -1
    Post-merge fixes.

  mysql-test/r/system_mysql_db.result
    1.7 04/04/28 12:08:50 pem@mysql.com +1 -0
    Post-merge fixes.

  mysql-test/r/sp.result
    1.60 04/04/28 12:08:50 pem@mysql.com +1 -1
    Post-merge fixes.

  mysql-test/r/sp-error.result
    1.37 04/04/28 12:08:50 pem@mysql.com +2 -2
    Post-merge fixes.

  mysql-test/r/rpl_trunc_binlog.result
    1.13 04/04/28 12:08:50 pem@mysql.com +1 -1
    Post-merge fixes.

  mysql-test/r/rpl_relayrotate.result
    1.9 04/04/28 12:08:50 pem@mysql.com +3 -3
    Post-merge fixes.

  mysql-test/r/rpl_error_ignored_table.result
    1.12 04/04/28 12:08:50 pem@mysql.com +12 -12
    Post-merge fixes.

  mysql-test/r/query_cache.result
    1.42 04/04/28 12:08:50 pem@mysql.com +2 -2
    Post-merge fixes.

  mysql-test/r/mysqlbinlog.result
    1.7 04/04/28 12:08:50 pem@mysql.com +18 -20
    Post-merge fixes.

  mysql-test/r/insert.result
    1.18 04/04/28 12:08:50 pem@mysql.com +1 -0
    Post-merge fixes.

  mysql-test/r/drop_temp_table.result
    1.8 04/04/28 12:08:50 pem@mysql.com +6 -2
    Post-merge fixes.

  include/mysqld_error.h
    1.96 04/04/28 12:08:50 pem@mysql.com +38 -38
    Post-merge fixes.

  client/mysqlbinlog.cc
    1.89 04/04/28 12:08:50 pem@mysql.com +458 -275
    Post-merge fixes; manually merged by guilhem.

ChangeSet
  1.1616.324.10 04/04/28 10:49:51 tomas@mc05.(none) +3 -0
  Split Ndberror.cpp so it can be used by perror

  ndb/src/ndbapi/Ndberror.cpp
    1.2 04/04/28 10:49:49 tomas@mc05.(none) +78 -126
    Split Ndberror.cpp so it can be used by perror

  ndb/src/ndbapi/Makefile
    1.2 04/04/28 10:49:49 tomas@mc05.(none) +1 -0
    Split Ndberror.cpp so it can be used by perror

  ndb/src/ndbapi/NdbErrorOut.cpp
    1.1 04/04/28 10:42:25 tomas@mc05.(none) +107 -0

  ndb/src/ndbapi/NdbErrorOut.cpp
    1.0 04/04/28 10:42:25 tomas@mc05.(none) +0 -0
    BitKeeper file /space2/tomas/mysql-4.1/ndb/src/ndbapi/NdbErrorOut.cpp

ChangeSet
  1.1616.324.9 04/04/28 06:44:58 tomas@mc05.(none) +2 -0
  removed ndb odbc from compile and release

  ndb/config/GuessConfig.sh
    1.2 04/04/28 06:44:33 tomas@mc05.(none) +1 -16
    removed ndb odbc from compile and release

  ndb/BinDist.sh
    1.2 04/04/28 06:44:33 tomas@mc05.(none) +2 -2
    removed ndb odbc from compile and release

ChangeSet
  1.1346.596.1 04/04/28 03:37:45 monty@mysql.com +6 -0
  Fixed stack overrun with some INSERT ... SELECT ... GROUP BY queries (Bug #3265)
  Ensure that raid_chunks is not set to higher than 255 as this could cause problems with DROP DATABASE. (Bug #3182)

  sql/table.cc
    1.46.1.28 04/04/28 03:37:44 monty@mysql.com +5 -0
    Ensure that raid_chunks is not set to higher than 255 as this could cause problems with DROP DATABASE.
    Another problem with values > 255 is that in the .frm file we store the chunks value in one byte.
    (Bug #3182)

  sql/sql_insert.cc
    1.63.1.51 04/04/28 03:37:44 monty@mysql.com +7 -5
    More debug information

  sql/item.h
    1.20.1.24 04/04/28 03:37:44 monty@mysql.com +1 -0
    Fixed wrong usage of str_value in Item_copy_string::save_in_field

  sql/item.cc
    1.19.1.17 04/04/28 03:37:44 monty@mysql.com +12 -0
    Fixed wrong usage of str_value in Item::save_in_field
    This could caused a stack overrun with some very special INSERT ... SELECT ... GROUP BY queries where the GROUP BY value was an expression that generated a NULL value. (Bug #3265)
    The Item_copy_string::save_in_field() function is from 4.1 and helps optimized this case a bit
    

  mysql-test/t/raid.test
    1.3.1.4 04/04/28 03:37:44 monty@mysql.com +9 -0
    Test of raid_chunks > 255

  mysql-test/r/raid.result
    1.5.1.2 04/04/28 03:37:44 monty@mysql.com +8 -0
    Test of raid_chunks > 255

ChangeSet
  1.1616.324.8 04/04/28 01:49:05 sergefp@mysql.com +3 -0
  Renamed MY_LEX_COLON to MY_LEX_SEMICOLON (at Serg's request)

  sql/sql_lex.cc
    1.97.1.21 04/04/28 01:49:01 sergefp@mysql.com +1 -1
    Renamed MY_LEX_COLON to MY_LEX_SEMICOLON (at Serg's request)

  mysys/charset.c
    1.117 04/04/28 01:49:00 sergefp@mysql.com +1 -1
    Renamed MY_LEX_COLON to MY_LEX_SEMICOLON (at Serg's request)

  include/m_ctype.h
    1.90 04/04/28 01:49:00 sergefp@mysql.com +1 -1
    Renamed MY_LEX_COLON to MY_LEX_SEMICOLON (at Serg's request)

ChangeSet
  1.1346.1.438 04/04/27 23:03:25 serg@serg.mylan +1 -0
  don't mention max row size, it's storage-engine dependent

  extra/perror.c
    1.20.1.2 04/04/27 23:03:22 serg@serg.mylan +1 -1
    don't mention max row size, it's storage-engine dependent

ChangeSet
  1.1616.328.3 04/04/27 21:17:10 serg@serg.mylan +3 -0
  after-merge fix: make concurrent-insert-skip code ft2-aware

  mysql-test/t/func_group.test
    1.22 04/04/27 21:17:01 serg@serg.mylan +2 -0
    no innodb is not an error

  myisam/ft_nlq_search.c
    1.35 04/04/27 21:17:01 serg@serg.mylan +5 -4
    after-merge fix: make concurrent-insert-skip code ft2-aware

  myisam/ft_boolean_search.c
    1.76 04/04/27 21:17:00 serg@serg.mylan +13 -3
    after-merge fix: make concurrent-insert-skip code ft2-aware

ChangeSet
  1.1616.328.2 04/04/27 17:32:40 monty@mishka.local +3 -0
  Fixed results for previous patch
  Ensure that mysqldump doesn't give an error about missing Index.xml when it's not needed

  mysys/charset.c
    1.116 04/04/27 17:32:36 monty@mishka.local +1 -1
    Don't give error if Index.xml doesn't exists
    (If we can't find the character set, the later error will include the used patch to the Index.xml file)

  mysql-test/r/show_check.result
    1.31.1.19 04/04/27 17:32:36 monty@mishka.local +8 -8
    Fixed result after Type->Engine conversion

  client/mysqldump.c
    1.124 04/04/27 17:32:36 monty@mishka.local +10 -4
    Added better default --debug option

ChangeSet
  1.1616.325.2 04/04/27 15:33:40 monty@mishka.local +26 -0
  After merge fixes
  Changed 'SHOW FIELD STATUS' to use 'Engine' instead of 'Type'

  sql/sql_show.cc
    1.122.1.40 04/04/27 15:33:27 monty@mishka.local +2 -2
    Type -> Engine

  sql/slave.h
    1.71.1.5 04/04/27 15:33:27 monty@mishka.local +1 -28
    After merge fixes

  sql/slave.cc
    1.188.1.49 04/04/27 15:33:27 monty@mishka.local +27 -24
    After merge fixes

  sql/set_var.cc
    1.34.40.1 04/04/27 15:33:27 monty@mishka.local +3 -2
    Removed compiler warning

  sql/ha_innodb.cc
    1.90.1.33 04/04/27 15:33:26 monty@mishka.local +3 -3
    After merge fixes

  mysql-test/t/mysqldump.test
    1.18 04/04/27 15:33:26 monty@mishka.local +13 -10
    Make result file smaller
    Some new tests

  mysql-test/r/mysqldump.result
    1.9.1.18 04/04/27 15:33:26 monty@mishka.local +40 -50
    After merge fixes

  myisam/ft_nlq_search.c
    1.34 04/04/27 15:33:26 monty@mishka.local +4 -4
    After merge fixes

  myisam/ft_boolean_search.c
    1.75 04/04/27 15:33:26 monty@mishka.local +3 -2
    After merge fixes

  innobase/sync/sync0sync.c
    1.25 04/04/27 15:33:26 monty@mishka.local +2 -0
    After merge fixes

  innobase/sync/sync0rw.c
    1.13 04/04/27 15:33:26 monty@mishka.local +2 -0
    After merge fixes

  innobase/srv/srv0start.c
    1.63 04/04/27 15:33:26 monty@mishka.local +4 -0
    After merge fixes

  innobase/row/row0sel.c
    1.48 04/04/27 15:33:26 monty@mishka.local +10 -15
    After merge fixes

  innobase/row/row0mysql.c
    1.56 04/04/27 15:33:26 monty@mishka.local +18 -76
    After merge fixes

  innobase/log/log0recv.c
    1.31 04/04/27 15:33:26 monty@mishka.local +1 -1
    After merge fixes

  innobase/include/ut0mem.h
    1.11 04/04/27 15:33:26 monty@mishka.local +2 -1
    After merge fixes

  innobase/include/row0mysql.h
    1.21 04/04/27 15:33:26 monty@mishka.local +2 -0
    After merge fixes

  innobase/include/fil0fil.h
    1.13 04/04/27 15:33:26 monty@mishka.local +1 -1
    After merge fixes

  innobase/ibuf/ibuf0ibuf.c
    1.26 04/04/27 15:33:26 monty@mishka.local +11 -7
    After merge fixes

  innobase/fil/fil0fil.c
    1.25 04/04/27 15:33:26 monty@mishka.local +4 -4
    After merge fixes

  innobase/dict/dict0load.c
    1.15 04/04/27 15:33:25 monty@mishka.local +0 -1
    After merge fixes

  innobase/buf/buf0rea.c
    1.11 04/04/27 15:33:25 monty@mishka.local +4 -1
    After merge fixes

  innobase/buf/buf0lru.c
    1.18 04/04/27 15:33:25 monty@mishka.local +8 -3
    After merge fixes

  innobase/buf/buf0buf.c
    1.33 04/04/27 15:33:25 monty@mishka.local +3 -2
    After merge fixes

  client/mysqldump.c
    1.123 04/04/27 15:33:25 monty@mishka.local +16 -10
    Changed '--all' to '--create-options' as the old name was meaningless

  client/client_priv.h
    1.26 04/04/27 15:33:25 monty@mishka.local +1 -1
    Added option 'create_options' for mysqldump

ChangeSet
  1.1616.324.6 04/04/27 03:44:41 sergefp@mysql.com +2 -0
  Fix for BUG#3567: Disallow several SQL statements inside a Prepared Statement.

  tests/client_test.c
    1.51.7.2 04/04/27 03:44:38 sergefp@mysql.com +30 -0
    Fix for BUG#3567: Disallow several SQL statements inside a Prepared Statement.

  sql/sql_lex.cc
    1.97.1.20 04/04/27 03:44:38 sergefp@mysql.com +4 -2
    Fix for BUG#3567: Disallow several SQL statements inside a Prepared Statement.

ChangeSet
  1.1616.327.1 04/04/27 02:57:00 sergefp@mysql.com +1 -0
  Fixed client_test to run with MAX_KEY=64. 

  tests/client_test.c
    1.51.7.1 04/04/27 02:56:29 sergefp@mysql.com +1 -1
    Fixed client_test to run with MAX_KEY=64. 

ChangeSet
  1.1616.326.1 04/04/26 22:37:42 lenz@mysql.com +3 -0
   - disabled the NDB Cluster from the embedded server
   - added compiling of the NDB Cluster to compile-pentium-max

  libmysqld/Makefile.am
    1.29.1.18 04/04/26 22:37:35 lenz@mysql.com +2 -2
     - remove ndbcluster_includes and ndbcluster_libs as NDB is not
       part of libmysqld anyway

  include/mysql_embed.h
    1.11 04/04/26 22:37:35 lenz@mysql.com +1 -0
     - disable NDB cluster for the embedded server by #undef'ing
       HAVE_NDBCLUSTER_DB

  BUILD/compile-pentium-max
    1.9 04/04/26 22:37:35 lenz@mysql.com +1 -1
     - added NDB Cluster

ChangeSet
  1.1616.324.3 04/04/26 21:07:14 serg@serg.mylan +2 -0
  MAX_KEY limit doubled (32->64)

  sql/unireg.h
    1.33 04/04/26 21:07:09 serg@serg.mylan +1 -1
    MAX_KEY limit doubled (32->64)

  include/myisam.h
    1.59 04/04/26 21:07:09 serg@serg.mylan +1 -1
    MAX_KEY limit doubled (32->64)

ChangeSet
  1.1616.324.2 04/04/26 13:27:23 serg@serg.mylan +4 -0
  symlink a whole dir, not individual files (symlinking individual files is one subdir below and results in broken links)

  BitKeeper/etc/ignore
    1.153.1.29 04/04/26 13:26:22 serg@serg.mylan +1 -0
    added include/readline

  include/Makefile.am
    1.45 04/04/26 13:26:08 serg@serg.mylan +4 -6
    symlink a whole dir, not individual files (symlinking individual files is one subdir below and results in broken links)

  configure.in
    1.201.8.7 04/04/26 13:26:08 serg@serg.mylan +2 -2
    symlink a whole dir, not individual files (symlinking individual files is one subdir below and results in broken links)

  cmd-line-utils/readline/Makefile.am
    1.12 04/04/26 13:26:08 serg@serg.mylan +1 -1
    revert

ChangeSet
  1.1616.324.1 04/04/24 20:40:47 heikki@hundin.mysql.fi +1 -0
  ha_innodb.h:
    Allow a key path length in InnoDB to be up to 3500 bytes; this is needed so that one can create an index on a column with 255 UTF-8 characters

  sql/ha_innodb.h
    1.57.1.5 04/04/24 20:40:35 heikki@hundin.mysql.fi +2 -0
    Allow a key path length in InnoDB to be up to 3500 bytes; this is needed so that one can create an index on a column with 255 UTF-8 characters

ChangeSet
  1.1346.595.1 04/04/24 04:04:44 serg@sergbook.mylan +1 -0
  backport libtool fix from 4.1

  ltmain.sh
    1.11.1.1 04/04/24 04:04:39 serg@sergbook.mylan +3 -0
    backport libtool fix from 4.1

ChangeSet
  1.1616.315.28 04/04/22 11:50:17 serg@sergbook.mylan +1 -0
  followup fix for the systems w/o installed readline

  cmd-line-utils/readline/Makefile.am
    1.11 04/04/22 11:49:18 serg@sergbook.mylan +1 -1
    followup fix for the systems w/o installed readline

ChangeSet
  1.1616.315.27 04/04/21 14:55:39 serg@sergbook.mylan +6 -0
  symlink, not hardlink
  mkdir in Makefile, not in configure
  chmod a-x

  mysql-test/std_data/init_file.dat
    1.3 04/04/21 14:54:21 serg@sergbook.mylan +1 -1
    add EOL
    make a test faster

  include/Makefile.am
    1.44 04/04/21 14:54:21 serg@sergbook.mylan +4 -2
    mkdir in Makefile, not in configure

  configure.in
    1.201.8.6 04/04/21 14:54:21 serg@sergbook.mylan +2 -3
    symlink, not hardlink
    mkdir in Makefile, not in configure

  BitKeeper/etc/ignore
    1.153.1.28 04/04/21 14:53:07 serg@sergbook.mylan +1 -0
    added libmysqld/discover.cc

  sql/ha_ndbcluster.h
    1.2 04/04/21 14:46:32 serg@sergbook.mylan +0 -0
    Change mode to -rw-rw-r--

  sql/ha_ndbcluster.cc
    1.3 04/04/21 14:46:32 serg@sergbook.mylan +0 -0
    Change mode to -rw-rw-r--

ChangeSet
  1.1346.1.436 04/04/21 10:04:38 greg@mysql.com +2 -0
  Fixed compiler error in slave.cc on some platforms.

  sql/slave.cc
    1.164.1.109 04/04/21 10:04:36 greg@mysql.com +1 -1
    Fix to modify tmp_buf instead of buf, which is a const char *

ChangeSet
  1.1616.323.3 04/04/21 13:15:43 marko@hundin.mysql.fi +9 -0
  Introduce keys in child tables corresponding to FOREIGN KEYs
  Remove redundant keys in CREATE TABLE and ALTER TABLE

  sql/sql_yacc.yy
    1.203.103.5 04/04/21 13:15:25 marko@hundin.mysql.fi +3 -1
    Introduce keys in child tables corresponding to FOREIGN KEYs

  sql/sql_table.cc
    1.157.2.60 04/04/21 13:15:25 marko@hundin.mysql.fi +29 -4
    Remove redundant keys

  sql/sql_class.h
    1.146.34.2 04/04/21 13:15:25 marko@hundin.mysql.fi +3 -0
    Equality comparison of keys (ignoring name)

  sql/sql_class.cc
    1.105.20.1 04/04/21 13:15:25 marko@hundin.mysql.fi +28 -0
    Equality comparison of keys (ignoring name)

  mysql-test/t/range.test
    1.17 04/04/21 13:15:24 marko@hundin.mysql.fi +1 -2
    Remove redundant keys

  mysql-test/r/range.result
    1.25 04/04/21 13:15:24 marko@hundin.mysql.fi +2 -6
    Remove redundant keys

  mysql-test/r/innodb.result
    1.85 04/04/21 13:15:24 marko@hundin.mysql.fi +0 -1
    Remove redundant keys

  mysql-test/r/create.result
    1.70 04/04/21 13:15:24 marko@hundin.mysql.fi +1 -31
    Remove redundant keys

  mysql-test/r/constraints.result
    1.5 04/04/21 13:15:24 marko@hundin.mysql.fi +1 -3
    Remove redundant keys

ChangeSet
  1.1616.323.2 04/04/19 14:34:07 tomas@mc05.(none) +1 -0
  mysqld.cc:
    changed default for nbdcluster to DISABLED

  sql/mysqld.cc
    1.356.51.8 04/04/19 14:32:10 tomas@mc05.(none) +1 -1
    changed default for nbdcluster to DISABLED

ChangeSet
  1.1616.323.1 04/04/18 22:02:12 tomas@mc05.(none) +1 -0
  install_ndbcluster:
    cosmetic

  mysql-test/ndb/install_ndbcluster
    1.2 04/04/18 22:01:16 tomas@mc05.(none) +6 -6
    cosmetic

ChangeSet
  1.1616.315.24 04/04/18 16:00:51 tomas@mc05.(none) +1 -0
  Makefile.am:
    fix for embedded server and ndbcluster make

  libmysqld/Makefile.am
    1.29.1.17 04/04/18 15:53:49 tomas@mc05.(none) +2 -2
    fix for embedded server and ndbcluster make

ChangeSet
  1.1665.3.1 04/04/16 13:21:08 timour@mysql.com +12 -0
  Implementation of WL#1469 (Greedy algorithm to search for an optimal execution plan).

  BitKeeper/etc/logging_ok
    1.257.1.1 04/04/16 13:21:07 timour@mysql.com +1 -0
    Logging to logging@openlogging.org accepted

  mysql-test/t/greedy_optimizer.test
    1.1 04/04/16 13:15:19 timour@mysql.com +319 -0

  mysql-test/r/greedy_optimizer.result
    1.1 04/04/16 13:15:19 timour@mysql.com +733 -0

  sql/structs.h
    1.32.1.1 04/04/16 13:15:19 timour@mysql.com +2 -2
    Added a new type of status variables SHOW_DOUBLE

  mysql-test/t/greedy_optimizer.test
    1.0 04/04/16 13:15:19 timour@mysql.com +0 -0
    BitKeeper file /home/timka/mysql/src/mysql-5.0-greedy/mysql-test/t/greedy_optimizer.test

  mysql-test/r/greedy_optimizer.result
    1.0 04/04/16 13:15:19 timour@mysql.com +0 -0
    BitKeeper file /home/timka/mysql/src/mysql-5.0-greedy/mysql-test/r/greedy_optimizer.result

  sql/sql_show.cc
    1.137.1.1 04/04/16 13:15:18 timour@mysql.com +5 -0
    Added a case to 'mysqld_show' to print double status variables.

  sql/sql_select.h
    1.65.1.1 04/04/16 13:15:18 timour@mysql.com +4 -2
    Added new field to st_position to support the greedy optimizer.
    Added a comment to class JOIN.

  sql/sql_select.cc
    1.238.1.1 04/04/16 13:15:18 timour@mysql.com +874 -3
    Added a combined greedy/exhaustive query optimization algorithm.
    * The greedy search algorithm is implemented in function 'greedy_search'.
    * The exhaustive search with controlled search depth is implemented in function 'find_best_limited_depth', a modification of 'find_best'.
    * The selection of the best access path and its cost computation is factored out from 'find_best' into function 'best_access_path'.
    * In addition:
      - added pre-sorting for the query tables before they get optimized
      - factored out the optimization of STRAIGHT_JOIN into a separate procedure

  sql/sql_class.h
    1.180.1.1 04/04/16 13:15:18 timour@mysql.com +2 -0
    * Added new system variable 'plan_search_depth' to control the exhaustiveness of the search for an optimal query plan.
    * Added new system variable 'heuristic' to control the use of query optimization heuristic.

  sql/set_var.cc
    1.49.1.1 04/04/16 13:15:18 timour@mysql.com +7 -0
    * Added new system variable 'plan_search_depth' to control the exhaustiveness of the search for an optimal query plan.
    * Added new system variable 'heuristic' to control the use of query optimization heuristic.

  sql/mysqld.cc
    1.378.1.1 04/04/16 13:15:18 timour@mysql.com +15 -1
    * Added new system variable 'plan_search_depth' to control the exhaustiveness of the search for an optimal query plan.
    * Added new system variable 'heuristic' to control the use of query optimization heuristic.
    * Added new status variable 'last_query_cost' that contains the cost of the last compiled query.

  sql/mysql_priv.h
    1.212.2.1 04/04/16 13:15:18 timour@mysql.com +1 -0
    Added new status variable last_query_cost that contains the cost of the last compiled query.

  mysql-test/r/subselect.result
    1.83.1.1 04/04/16 13:15:18 timour@mysql.com +2 -2
    Table pre-sorting before optimization makes the optimizer select a different plan, this change fixes the plan.

ChangeSet
  1.1616.315.23 04/04/16 11:31:02 magnus@neptunus.(none) +1 -0
  Add discover.cc to libmysqld Makefile

  libmysqld/Makefile.am
    1.29.1.16 04/04/16 11:30:48 magnus@neptunus.(none) +1 -1
    Add the new file discover.cc to Makefile.am in libmysqld/ dir to make it be symlinked and built for embebedded server.

ChangeSet
  1.1616.315.22 04/04/16 08:49:50 bell@sanja.is.com.ua +1 -0
  fixed option name

  mysql-test/mysql-test-run.sh
    1.182 04/04/16 08:49:42 bell@sanja.is.com.ua +1 -1
    fixed option name

ChangeSet
  1.1616.321.1 04/04/16 08:32:10 bell@sanja.is.com.ua +2 -0
  allow --skip-ndbcluster if server is not compiled
  fixed syntax errro

  sql/mysqld.cc
    1.356.54.1 04/04/16 08:31:08 bell@sanja.is.com.ua +1 -5
    fixed syntax error
    allow --skip-ndbcluster if server is not compiled

  mysql-test/install_test_db.sh
    1.24.1.8 04/04/16 08:31:08 bell@sanja.is.com.ua +1 -1
    fixed option name

ChangeSet
  1.1616.315.20 04/04/15 11:21:08 paul@ice.snake.net +1 -0
  Attempt to decrease non-English coefficient,
  at least slightly.

  Docs/net_doc.txt
    1.4 04/04/15 11:20:58 paul@ice.snake.net +687 -689
    Attempt to decrease non-English coefficient,
    at least slightly.

ChangeSet
  1.1616.320.1 04/04/15 17:30:50 magnus@neptunus.(none) +2 -0
  Fix mysql-test-run to work better with NDB
  Fix broken string constant in mysqld.cc

  sql/mysqld.cc
    1.356.51.6 04/04/15 17:30:48 magnus@neptunus.(none) +1 -4
    The string was broken in two lines and failed to compile on some compiler.
    Remove ifdefs around OPT_NDBCLUSTER, it should always be available even when not supported.

  mysql-test/mysql-test-run.sh
    1.181 04/04/15 17:30:48 magnus@neptunus.(none) +3 -2
    Don't enable NDB when the slave mysqld is started
    Remove the ndbcluster dir from var/ when restarting test
    Set datadir for NDB to @MYSQL_TEST_DIR/var so that ndbcluster dir is created there. Otherwise it will appear as a database in mysqld.

ChangeSet
  1.1616.315.18 04/04/15 15:43:10 tomas@mc05.(none) +1 -0
  make_binary_distribution.sh:
    added --with-ndbcluster switch

  scripts/make_binary_distribution.sh
    1.55.1.5 04/04/15 15:42:39 tomas@mc05.(none) +14 -0
    added --with-ndbcluster switch

ChangeSet
  1.1616.315.17 04/04/15 12:03:13 magnus@neptunus.(none) +6 -0
  Updated mysql-test-run to work with the started NDB Cluster
  Added one test case for ndb to mysql-test-run, ndb_basic. It will show that
  NDB Cluster is supported.

  mysql-test/t/ndb_basic.test
    1.2 04/04/15 12:03:11 magnus@neptunus.(none) +54 -52
    Updated testcase to use all uppercase

  mysql-test/r/ndb_basic.result
    1.2 04/04/15 12:03:11 magnus@neptunus.(none) +45 -45
    Updated testcase to use all uppercase

  mysql-test/mysql-test-run.sh
    1.180 04/04/15 12:03:11 magnus@neptunus.(none) +2 -2
    To enable NDB use --ndbcluster and to disable it --skip-ndbcluster or --skip-ndb

  mysql-test/install_test_db.sh
    1.24.1.7 04/04/15 12:03:11 magnus@neptunus.(none) +2 -1
    Added --skip-ndb wile installing test db

  mysql-test/r/have_ndb.require
    1.1 04/04/15 11:15:09 magnus@neptunus.(none) +2 -0

  mysql-test/r/have_ndb.require
    1.0 04/04/15 11:15:09 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/r/have_ndb.require

  mysql-test/include/have_ndb.inc
    1.1 04/04/15 11:14:59 magnus@neptunus.(none) +4 -0

  mysql-test/include/have_ndb.inc
    1.0 04/04/15 11:14:59 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/include/have_ndb.inc

  mysql-test/t/ndb_basic.test
    1.1 04/04/15 11:14:03 magnus@neptunus.(none) +96 -0

  mysql-test/t/ndb_basic.test
    1.0 04/04/15 11:14:03 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/t/ndb_basic.test

  mysql-test/r/ndb_basic.result
    1.1 04/04/15 11:13:26 magnus@neptunus.(none) +82 -0

  mysql-test/r/ndb_basic.result
    1.0 04/04/15 11:13:26 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/mysql-test/r/ndb_basic.result

ChangeSet
  1.1616.317.3 04/04/15 09:17:55 magnus@neptunus.(none) +4 -0
  Formatting changes requested by Monty

  sql/sql_string.cc
    1.77.1.1 04/04/15 09:17:54 magnus@neptunus.(none) +1 -1
    Minor changes 
     - fix space between for and (

  sql/sql_lex.cc
    1.97.1.19 04/04/15 09:17:53 magnus@neptunus.(none) +1 -1
    Minor changes 
     - fix space between for and (

  sql/item_subselect.cc
    1.60.1.39 04/04/15 09:17:53 magnus@neptunus.(none) +1 -1
    Minor changes 
     - fix space between for and (

  sql/gen_lex_hash.cc
    1.61 04/04/15 09:17:53 magnus@neptunus.(none) +2 -2
    Minor changes 
     - fix space between for and (

ChangeSet
  1.1616.317.2 04/04/15 09:14:14 magnus@neptunus.(none) +16 -0
  Added NDB storage engine

  sql/table.cc
    1.104 04/04/15 09:14:11 magnus@neptunus.(none) +2 -1
    Fixe for probelm when NullS is returned from bas_ext of a handler. 

  sql/sql_yacc.yy
    1.203.103.4 04/04/15 09:14:11 magnus@neptunus.(none) +21 -19
    Add NDBCLUSTER_SYM
    Change AND to AND_SYM
    Change OR to OR_SYM

  sql/sql_table.cc
    1.157.2.59 04/04/15 09:14:11 magnus@neptunus.(none) +29 -0
    Before trying to create a table, ask handler if a table with that name already exists.
    If user said CREATE TABLE IF NOT EXISTS, disocver the table from handler

  sql/sql_class.h
    1.146.34.1 04/04/15 09:14:11 magnus@neptunus.(none) +6 -2
    Added variable for keeping a NDB connection handle

  sql/sql_base.cc
    1.145.1.59 04/04/15 09:14:11 magnus@neptunus.(none) +19 -2
    If frm file is not found on disk, ask handler if it knows about the table. Then retry the open.
    This new functionality is called "discover" and can be used by any handler.

  sql/ha_ndbcluster.cc
    1.2 04/04/15 09:14:11 magnus@neptunus.(none) +7 -4
    Add ifdef for whole file for not compiling anything if NDB sholdn't be included
    Updated timestamp handling to use new vars timestamp_default_now and timestamp_on_update_now

  sql/set_var.cc
    1.34.1.79 04/04/15 09:14:10 magnus@neptunus.(none) +4 -0
    Add posibilty to show if NDB handler is supported

  sql/mysqld.cc
    1.356.53.1 04/04/15 09:14:10 magnus@neptunus.(none) +27 -3
    Added NDB support
    Disable NDB with --skip-ndbcluster

  sql/mysql_priv.h
    1.186.72.1 04/04/15 09:14:10 magnus@neptunus.(none) +6 -1
    Added prototypes for new functions readfrm, writefrm and create_table_from_handler

  sql/lex.h
    1.82.22.1 04/04/15 09:14:10 magnus@neptunus.(none) +5 -3
    Changed AND to AND_SYM and OR to OR_SYM to avoid nameclash

  sql/handler.h
    1.89.6.1 04/04/15 09:14:10 magnus@neptunus.(none) +16 -8
    Added NDB to list of storage engines
    Added vbariable in transaction for keeping a ndb transaction handle

  sql/handler.cc
    1.103.3.1 04/04/15 09:14:10 magnus@neptunus.(none) +88 -4
    Added variable for keeping track of number of "discovers"
    Added NDB to list of storage engines
    Added calls to NDB for commit, rollback etc.
    Added function ha_discover for discovering a table from handler
     

  sql/Makefile.am
    1.77.4.1 04/04/15 09:14:10 magnus@neptunus.(none) +5 -5
    Add new files discover.cc, ha_ndbcluster.cc and ha_ndbcluster.h
    Add include path of NDB files

  include/my_base.h
    1.53.1.2 04/04/15 09:14:10 magnus@neptunus.(none) +3 -0
    Added three new errorcodes to be returned by the handler

ChangeSet
  1.1616.319.1 04/04/15 00:42:30 serg@sergbook.mylan +1 -0
  make the code to build with libtool 1.4.2

  ltmain.sh
    1.13 04/04/15 00:41:47 serg@sergbook.mylan +3 -0
    make the code to build with libtool 1.4.2

ChangeSet
  1.1616.315.15 04/04/15 04:55:49 lenz@mysql.com +1 -0
   - Fixed compile error in sql_parse.cc

  sql/sql_parse.cc
    1.271.71.1 04/04/15 04:54:56 lenz@mysql.com +1 -1
     - Fixed compile error

ChangeSet
  1.1616.318.2 04/04/14 14:25:15 brian@brian-akers-computer.local +1 -0
  Extra paren removed (since well, they were a typo...). 

  acinclude.m4
    1.94 04/04/14 14:21:51 brian@brian-akers-computer.local +2 -2
    Typo fix (extra paren). 
    D'oh!

ChangeSet
  1.1616.313.2 04/04/14 22:20:19 sergefp@mysql.com +1 -0
  Post-merge fixes

  sql/sql_prepare.cc
    1.34.15.2 04/04/14 22:20:16 sergefp@mysql.com +1 -2
    Post-merge fixes

  sql/discover.cc
    1.1 04/04/14 19:58:50 magnus@neptunus.(none) +172 -0

  sql/discover.cc
    1.0 04/04/14 19:58:50 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/sql/discover.cc

  sql/ha_ndbcluster.h
    1.1 04/04/14 19:58:38 magnus@neptunus.(none) +218 -0

  sql/ha_ndbcluster.h
    1.0 04/04/14 19:58:38 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/sql/ha_ndbcluster.h

  sql/ha_ndbcluster.cc
    1.1 04/04/14 19:58:36 magnus@neptunus.(none) +2940 -0

  sql/ha_ndbcluster.cc
    1.0 04/04/14 19:58:36 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1/sql/ha_ndbcluster.cc

ChangeSet
  1.1616.316.1 04/04/14 17:17:51 magnus@neptunus.(none) +3 -0
  Check if NDB should be built to to support MySQL Cluster

  configure.in
    1.201.9.1 04/04/14 17:17:49 magnus@neptunus.(none) +18 -0
    Check if NDB Cluster should be supported

  acinclude.m4
    1.92.1.1 04/04/14 17:17:49 magnus@neptunus.(none) +41 -0
    Check for NDB Cluster included in the build

  acconfig.h
    1.35.1.1 04/04/14 17:17:49 magnus@neptunus.(none) +3 -0
    Clear variable that defines if NDB Cluster should be supported 

ChangeSet
  1.1616.315.12 04/04/14 17:16:31 tomas@mc05.(none) +1 -0
  mysql-test-run.sh:
    added options for ndbcluster

  mysql-test/mysql-test-run.sh
    1.179 04/04/14 17:15:58 tomas@mc05.(none) +41 -0
    added options for ndbcluster

ChangeSet
  1.1616.315.11 04/04/14 15:46:39 tomas@mc05.(none) +4 -0
  logging_ok:
    Logging to logging@openlogging.org accepted
  stop_ndbcluster, ndb_config_2_node.ini, install_ndbcluster:
    new file

  BitKeeper/etc/logging_ok
    1.233.19.4 04/04/14 15:46:10 tomas@mc05.(none) +1 -0
    Logging to logging@openlogging.org accepted

  mysql-test/ndb/stop_ndbcluster
    1.1 04/04/14 15:44:25 tomas@mc05.(none) +52 -0

  mysql-test/ndb/ndb_config_2_node.ini
    1.1 04/04/14 15:44:25 tomas@mc05.(none) +133 -0

  mysql-test/ndb/install_ndbcluster
    1.1 04/04/14 15:44:25 tomas@mc05.(none) +148 -0

  mysql-test/ndb/stop_ndbcluster
    1.0 04/04/14 15:44:25 tomas@mc05.(none) +0 -0
    BitKeeper file /space/tomas/mysql-4.1/mysql-test/ndb/stop_ndbcluster

  mysql-test/ndb/ndb_config_2_node.ini
    1.0 04/04/14 15:44:25 tomas@mc05.(none) +0 -0
    BitKeeper file /space/tomas/mysql-4.1/mysql-test/ndb/ndb_config_2_node.ini

  mysql-test/ndb/install_ndbcluster
    1.0 04/04/14 15:44:25 tomas@mc05.(none) +0 -0
    BitKeeper file /space/tomas/mysql-4.1/mysql-test/ndb/install_ndbcluster

ChangeSet
  1.1616.315.10 04/04/14 15:42:56 magnus@neptunus.(none) +5 -0
  Removed unnecessary README files

  BitKeeper/deleted/.del-README~7db9e56a65fe654d
    1.2 04/04/14 15:40:40 magnus@neptunus.(none) +0 -2
    Delete: ndb/demos/2-node/2-db-3/filesystem/README

  BitKeeper/deleted/.del-README~3ef0e23d164673dc
    1.2 04/04/14 15:40:24 magnus@neptunus.(none) +0 -2
    Delete: ndb/demos/2-node/2-db-2/filesystem/README

  BitKeeper/deleted/.del-README~b52220261b39f13e
    1.2 04/04/14 15:40:02 magnus@neptunus.(none) +0 -3
    Delete: ndb/demos/1-node/1-db-2/filesystem/README

  BitKeeper/deleted/.del-README~632b4134464fe1b1
    1.2 04/04/14 15:39:47 magnus@neptunus.(none) +0 -2
    Delete: ndb/demos/1-node-SS/filesystem/README

  BitKeeper/deleted/.del-README~77a28de1261a882e
    1.2 04/04/14 15:39:34 magnus@neptunus.(none) +0 -2
    Delete: ndb/demos/1-node-PS/filesystem/README

ChangeSet
  1.1616.315.9 04/04/14 14:47:34 magnus@neptunus.(none) +1 -0
  Adding Makefile for ronja dir

  ndb/test/ndbapi/ronja/Makefile
    1.1 04/04/14 14:47:02 magnus@neptunus.(none) +6 -0

  ndb/test/ndbapi/ronja/Makefile
    1.0 04/04/14 14:47:02 magnus@neptunus.(none) +0 -0
    BitKeeper file /home/magnus/mysql-4.1_2/ndb/test/ndbapi/ronja/Makefile

ChangeSet
  1.1616.315.8 04/04/14 13:15:18 magnus@neptunus.(none) +1 -0
  More files to ignore

  BitKeeper/etc/ignore
    1.153.1.27 04/04/14 13:14:42 magnus@neptunus.(none) +120 -0
