ChangeSet@1.2422.1.4, 2007-02-08 01:05:19-06:00, csun@csun-rh.mysql.com +1 -0
  bug#26161 - Falcon assertion on startup with tc.log
  
  To avoid the assertion, it is needed to make the "prepare" conditional. The previous cset was not correct.

  storage/falcon/ha_falcon.cpp@1.113, 2007-02-08 01:05:17-06:00, csun@csun-rh.mysql.com +3 -2
    Previous Cset was not the right one - make "prepare" conditional.

ChangeSet@1.2422.1.3, 2007-02-07 16:15:08-06:00, klewis@klewis-mysql. +2 -0
  Restructured XA support conditional so only the "prepare" call in the handlerton is conditional.

  storage/falcon/ha_falcon.cpp@1.112, 2007-02-07 16:14:54-06:00, klewis@klewis-mysql. +1 -3
    Restructured XA support conditional so only the "prepare" call in the handlerton is conditional.

  storage/falcon/ha_falcon.h@1.23, 2007-02-07 16:15:02-06:00, klewis@klewis-mysql. +0 -2
    Restructured XA support conditional so only the "prepare" call in the handlerton is conditional.

ChangeSet@1.2422.1.2, 2007-02-05 18:16:49-06:00, klewis@klewis-mysql. +13 -0
  1) Set Transaction::hasUpdates only when the transaction really receives 
  changes that may need to be committed.
    A. When a record object is added to the transaction.
    B. When an index is created.
    C. When Database::deleteSection is called for a transaction.
  This flag lets Transaction::commit call SRLCommit::append() to add a 
  commit record to the serial log.  The gopher thread will see this and call 
  Transaction::writeComplete(void) when it is done with the transaction.
  hasUpdates in NOT set when a single node is added to a DeferredIndex.  
  We wait until the associated record is added to the transaction.
  2) To make sure that writeComplete can find the transaction pointer, 
  it is sent into SRLCommit::append() to be stored in the associated 
  SerialLogTransaction.
  3) Back in Transaction::commit(), if hasUpdates is false, instead of 
  just setting WritePending to false, call writeComplete() to do that, 
  which has the added benefit of droppong all deferredIndexes.  
  The index might contain an index entry after an update conflict 
  since the indexes are updated first.

  storage/falcon/Database.cpp@1.45, 2007-02-05 18:15:51-06:00, klewis@klewis-mysql. +7 -4
    Send the transaction pointer into SRLcommit::append() so that the
    SerialLogTransaction can be always linked to the transaction.  

  storage/falcon/Database.h@1.20, 2007-02-05 18:16:01-06:00, klewis@klewis-mysql. +1 -1
    Send the transaction pointer into SRLcommit::append() so that the
    SerialLogTransaction can be always linked to the transaction.

  storage/falcon/Dbb.cpp@1.48, 2007-02-05 18:16:13-06:00, klewis@klewis-mysql. +3 -3
    Send the transaction pointer into SRLcommit::append() so that the
    SerialLogTransaction can be always linked to the transaction.

  storage/falcon/Dbb.h@1.26, 2007-02-05 18:16:16-06:00, klewis@klewis-mysql. +1 -1
    Send the transaction pointer into SRLcommit::append() so that the
    SerialLogTransaction can be always linked to the transaction.

  storage/falcon/DeferredIndex.cpp@1.13, 2007-02-05 18:16:20-06:00, klewis@klewis-mysql. +2 -2
    Name change

  storage/falcon/DeferredIndex.h@1.10, 2007-02-05 18:16:22-06:00, klewis@klewis-mysql. +1 -1
    Name change

  storage/falcon/SRLCommit.cpp@1.10, 2007-02-05 18:16:25-06:00, klewis@klewis-mysql. +12 -11
    Send the transaction pointer into SRLcommit::append() so that the
    SerialLogTransaction can be always linked to the transaction.  
    The transactin object pointed to will not go away since 
    writePending is true.

  storage/falcon/SRLCommit.h@1.5, 2007-02-05 18:16:28-06:00, klewis@klewis-mysql. +2 -1
    Send the transaction pointer into SRLcommit::append() so that the
    SerialLogTransaction can be always linked to the transaction.

  storage/falcon/SRLRecordStub.cpp@1.8, 2007-02-05 18:16:30-06:00, klewis@klewis-mysql. +3 -3
    cleanup

  storage/falcon/Statement.cpp@1.12, 2007-02-05 18:16:33-06:00, klewis@klewis-mysql. +0 -1
    Do not set hasUpdates too soon.

  storage/falcon/StorageConnection.h@1.15, 2007-02-05 18:16:35-06:00, klewis@klewis-mysql. +3 -3
    Cleanup

  storage/falcon/Table.cpp@1.62, 2007-02-05 18:16:38-06:00, klewis@klewis-mysql. +2 -7
    Do not set hasUpdates too soon.  Set Transaction::hasUpdates only when the 
    transaction really receives changes that may need to be committed.
      A. When a record object is added to the transaction.
      B. When an index is created.
      C. When Database::deleteSection is called for a transaction.

  storage/falcon/Transaction.cpp@1.52, 2007-02-05 18:16:41-06:00, klewis@klewis-mysql. +10 -8
    1. Use isActive() to see if a transaction is active.
    2. In Transaction::commit(), if hasUpdates is false, instead of just setting 
    WritePending to false, call writeComplete() to do that, which has the added 
    benefit of droppong all deferredIndexes.  The index might contain an index 
    entry after an update conflict since the indexes are updated first.
    3. In getRelativeState(), if our isolation is read-committed, we should 
    always return CommittedButOlder if the other trans is committed. 

ChangeSet@1.2422.1.1, 2007-02-05 20:32:56+01:00, mleich@three.local.lan +2 -0
  Repair test myisam_select
  - add missing file with expected results
  - add comment

  mysql-test/r/myisam_select.result@1.1, 2007-02-05 20:32:51+01:00, mleich@three.local.lan +3309 -0
    Add missing file with expected results

  mysql-test/r/myisam_select.result@1.0, 2007-02-05 20:32:51+01:00, mleich@three.local.lan +0 -0

  mysql-test/t/myisam_select.test@1.2, 2007-02-05 20:32:51+01:00, mleich@three.local.lan +11 -0
    Add comment about history and future of this test

ChangeSet@1.2424, 2007-02-05 19:47:49+01:00, df@kahlann.erinye.com +1 -0
  fix changelog order in rpm spec file

  support-files/mysql.spec.sh@1.179, 2007-02-05 19:47:47+01:00, df@kahlann.erinye.com +5 -5
    fix changelog order in spec file

ChangeSet@1.2423, 2007-02-05 19:43:05+01:00, df@kahlann.erinye.com +1 -0
  raise version number after clone-off

  configure.in@1.425, 2007-02-05 19:43:03+01:00, df@kahlann.erinye.com +1 -1
     raise version number after clone-off

ChangeSet@1.2422, 2007-02-05 17:18:20+01:00, guilhem@gbichot3.local +2 -0
  Fix for BUG#25835 "Falcon: assertion on startup".
  Now that we have two XA-capable engines (Falcon and InnoDB) (precisely,
  two which have a non-zero "prepare" method), if the binlog is not enabled
  (which is not detectable in the mysql-test testsuite which always
  enables the binlog), then a mmap-based log is used for tracking
  which transactions committed or prepared.
  The crash was due to that log being created with a name derived from
  the argument of --log-bin (which is incorrect as --log-bin was not
  specified). In this case we use the mandatory argument of --log-tc,
  which has a default of "tc.log", as the name of this mmap-based log.
  Also, the access modes of that log were wrong and so mysqld
  failed to write to it.
  TAG: mysql-5.2.2-falcon-alpha
  TAG: mysql-5.2.2-falcon-alpha-build
  TAG: clone-mysql-5.2.2-falcon-alpha-build

  sql/log.cc@1.254, 2007-02-05 17:18:17+01:00, guilhem@gbichot3.local +1 -1
    fixing wrong order of arguments to my_create()
    (3rd param is the desired modes of the file; "0" lead to no rights
    for anybody on the file).

  sql/mysqld.cc@1.590, 2007-02-05 17:18:18+01:00, guilhem@gbichot3.local +1 -1
    When opening/creating the transaction coordinator's log, if binlog is
    used, the tc log is the binlog so we use the binlog's name; otherwise
    we use the mmap-based log, named after the mandatory argument of the
    --log-tc option (meant for that).

ChangeSet@1.2419.1.1, 2007-02-02 18:34:37-05:00, jas@rowvwade. +5 -0
  Sketched in push down conditions (doesn't do anything) and alter tablespace
  (ditto).  Also conditionalized XA support to avoid crashing the server.

  storage/falcon/StorageDatabase.cpp@1.41, 2007-02-02 18:34:28-05:00, jas@rowvwade. +0 -108
    Deleted some dead code.

  storage/falcon/StorageHandler.cpp@1.11, 2007-02-02 18:34:29-05:00, jas@rowvwade. +73 -0
    Starting fleshing in Falcon's data dictionary (necessary for tablespaces).

  storage/falcon/StorageHandler.h@1.8, 2007-02-02 18:34:29-05:00, jas@rowvwade. +12 -7
    Starting fleshing in Falcon's data dictionary (necessary for tablespaces).

  storage/falcon/ha_falcon.cpp@1.111, 2007-02-02 18:34:30-05:00, jas@rowvwade. +45 -2
    Sketched in push down conditions (doesn't do anything) and alter tablespace
    (ditto).  Also conditionalized XA support to avoid crashing the server.

  storage/falcon/ha_falcon.h@1.22, 2007-02-02 18:34:30-05:00, jas@rowvwade. +9 -1
    Sketched in push down conditions (doesn't do anything) and alter tablespace
    (ditto).  Also conditionalized XA support to avoid crashing the server.

ChangeSet@1.2417.1.1, 2007-02-01 18:19:26-05:00, jas@fluffy.netfrastructure.com +1 -0
  Replace "const UCHAR*" in Falcon interface modules with 
  "const unsigned char*" to Linux compilability.

  storage/falcon/StorageHandler.h@1.7, 2007-02-01 18:19:23-05:00, jas@fluffy.netfrastructure.com +3 -3
    Replace "const UCHAR*" in Falcon interface modules with 
    "const unsigned char*" to Linux compilability.

ChangeSet@1.2414.1.1, 2007-01-31 20:13:17-08:00, brian@zim.(none) +1 -0
  Reworked a section of code that caused valgrind errors (and that partitioning was not happy about). 

  storage/archive/ha_archive.cc@1.128, 2007-01-31 20:13:12-08:00, brian@zim.(none) +14 -7
    Put checks around the code

ChangeSet@1.2417, 2007-01-31 18:45:33-05:00, jas@fluffy.netfrastructure.com +2 -0
  Changed a few "const UCHAR*"s to "const unsigned char*" in
  the Falcon interface modules to compile on Linux.

  mysql-test/t/myisam_select.test@1.1, 2007-01-17 13:35:02-05:00, jas@fluffy.netfrastructure.com +2775 -0
    BitKeeper file /home/jas/mysql-falcon/mysql-test/t/myisam_select.test

  mysql-test/t/myisam_select.test@1.0, 2007-01-17 13:35:02-05:00, jas@fluffy.netfrastructure.com +0 -0

  storage/falcon/StorageConnection.h@1.14, 2007-01-31 18:45:31-05:00, jas@fluffy.netfrastructure.com +1 -1
    Changed a few "const UCHAR*"s to "const unsigned char*" in
    the Falcon interface modules to compile on Linux.

ChangeSet@1.2403.2.10, 2007-01-31 16:43:15-05:00, jas@rowvwade. +19 -0
  Added support for transaction xid (XA transaction ids) to Falcon.  This includes
  tracking xids through transaction prepare operations, logging and recovering xids,
  and commit / rollback by xid for post crash recovery.

  storage/falcon/Connection.cpp@1.6, 2007-01-31 16:43:00-05:00, jas@rowvwade. +14 -2
    Added support for transaction xid (XA transaction ids) to Falcon.  This includes
    tracking xids through transaction prepare operations, logging and recovering xids,
    and commit / rollback by xid for post crash recovery.

  storage/falcon/Connection.h@1.5, 2007-01-31 16:43:00-05:00, jas@rowvwade. +4 -1
    Added support for transaction xid (XA transaction ids) to Falcon.  This includes
    tracking xids through transaction prepare operations, logging and recovering xids,
    and commit / rollback by xid for post crash recovery.

  storage/falcon/Database.cpp@1.44, 2007-01-31 16:43:01-05:00, jas@rowvwade. +12 -0
    Added support for transaction xid (XA transaction ids) to Falcon.  This includes
    tracking xids through transaction prepare operations, logging and recovering xids,
    and commit / rollback by xid for post crash recovery.

  storage/falcon/Database.h@1.19, 2007-01-31 16:43:01-05:00, jas@rowvwade. +2 -0
    Added support for transaction xid (XA transaction ids) to Falcon.  This includes
    tracking xids through transaction prepare operations, logging and recovering xids,
    and commit / rollback by xid for post crash recovery.

  storage/falcon/IndexPage.cpp@1.33, 2007-01-31 16:43:01-05:00, jas@rowvwade. +4 -2
    Insignificant change for logical clarity.

  storage/falcon/SerialLog.cpp@1.57, 2007-01-31 16:43:02-05:00, jas@rowvwade. +48 -1
    Added log message for presence of limbo transactions from recovery.  More
    work must be done to handle this situation in a rational and sane manner.

  storage/falcon/SerialLog.h@1.26, 2007-01-31 16:43:02-05:00, jas@rowvwade. +3 -1
    Added support for transaction xid (XA transaction ids) to Falcon.  This includes
    tracking xids through transaction prepare operations, logging and recovering xids,
    and commit / rollback by xid for post crash recovery.

  storage/falcon/SerialLogTransaction.cpp@1.14, 2007-01-31 16:43:03-05:00, jas@rowvwade. +8 -0
    Added support for transaction xid (XA transaction ids) to Falcon.  This includes
    tracking xids through transaction prepare operations, logging and recovering xids,
    and commit / rollback by xid for post crash recovery.

  storage/falcon/SerialLogTransaction.h@1.8, 2007-01-31 16:43:04-05:00, jas@rowvwade. +1 -0
    Added support for transaction xid (XA transaction ids) to Falcon.  This includes
    tracking xids through transaction prepare operations, logging and recovering xids,
    and commit / rollback by xid for post crash recovery.

  storage/falcon/Server.cpp@1.4, 2007-01-31 16:43:04-05:00, jas@rowvwade. +1 -1
    Added support for transaction xid (XA transaction ids) to Falcon.  This includes
    tracking xids through transaction prepare operations, logging and recovering xids,
    and commit / rollback by xid for post crash recovery.

  storage/falcon/StorageConnection.cpp@1.20, 2007-01-31 16:43:04-05:00, jas@rowvwade. +2 -2
    Added support for transaction xid (XA transaction ids) to Falcon.  This includes
    tracking xids through transaction prepare operations, logging and recovering xids,
    and commit / rollback by xid for post crash recovery.

  storage/falcon/StorageConnection.h@1.13, 2007-01-31 16:43:05-05:00, jas@rowvwade. +1 -1
    Added support for transaction xid (XA transaction ids) to Falcon.  This includes
    tracking xids through transaction prepare operations, logging and recovering xids,
    and commit / rollback by xid for post crash recovery.

  storage/falcon/StorageHandler.cpp@1.10, 2007-01-31 16:43:05-05:00, jas@rowvwade. +4 -4
    Added support for transaction xid (XA transaction ids) to Falcon.  This includes
    tracking xids through transaction prepare operations, logging and recovering xids,
    and commit / rollback by xid for post crash recovery.

  storage/falcon/StorageHandler.h@1.6, 2007-01-31 16:43:05-05:00, jas@rowvwade. +3 -3
    Added support for transaction xid (XA transaction ids) to Falcon.  This includes
    tracking xids through transaction prepare operations, logging and recovering xids,
    and commit / rollback by xid for post crash recovery.

  storage/falcon/Transaction.cpp@1.51, 2007-01-31 16:43:06-05:00, jas@rowvwade. +15 -1
    Added support for transaction xid (XA transaction ids) to Falcon.  This includes
    tracking xids through transaction prepare operations, logging and recovering xids,
    and commit / rollback by xid for post crash recovery.

  storage/falcon/Transaction.h@1.25, 2007-01-31 16:43:06-05:00, jas@rowvwade. +4 -2
    Added support for transaction xid (XA transaction ids) to Falcon.  This includes
    tracking xids through transaction prepare operations, logging and recovering xids,
    and commit / rollback by xid for post crash recovery.

  storage/falcon/TransactionManager.cpp@1.3, 2007-01-31 16:43:07-05:00, jas@rowvwade. +42 -0
    Added support for transaction xid (XA transaction ids) to Falcon.  This includes
    tracking xids through transaction prepare operations, logging and recovering xids,
    and commit / rollback by xid for post crash recovery.

  storage/falcon/TransactionManager.h@1.3, 2007-01-31 16:43:07-05:00, jas@rowvwade. +2 -0
    Added support for transaction xid (XA transaction ids) to Falcon.  This includes
    tracking xids through transaction prepare operations, logging and recovering xids,
    and commit / rollback by xid for post crash recovery.

  storage/falcon/ha_falcon.cpp@1.110, 2007-01-31 16:43:07-05:00, jas@rowvwade. +3 -3
    Added support for transaction xid (XA transaction ids) to Falcon.  This includes
    tracking xids through transaction prepare operations, logging and recovering xids,
    and commit / rollback by xid for post crash recovery.

ChangeSet@1.2414, 2007-01-30 16:15:22-07:00, peterg@linux.site +1 -0
  Changed comments before functions to Doxygen style.

  sql/handler.cc@1.234.1.58, 2007-01-30 16:15:18-07:00, peterg@linux.site +75 -99
    Changed comments before functions to Doxygen style.

ChangeSet@1.2403.1.7, 2007-01-29 13:17:30-08:00, brian@zim.(none) +3 -0
  Extended mysqlslap.c for auto tests (see the comment on the mysqlslap.c file). I also fixed a bug where limit was not being reached. 

  client/client_priv.h@1.63, 2007-01-29 13:17:27-08:00, brian@zim.(none) +2 -0
    More options

  client/mysqlslap.c@1.41, 2007-01-29 13:17:27-08:00, brian@zim.(none) +65 -21
    Extended the auto-sql in the following ways:
    1) You can now specify a load type of either "mixed", "read", or "write". Not great, but a definite improvement.
    2) A new option allows you to specify how many rows are inserted for the "read" load. 
    
    I also fixed a bug where limit was not being reached by running threads. 

  mysql-test/r/mysqlslap.result@1.10, 2007-01-29 13:17:27-08:00, brian@zim.(none) +2 -0
    Updated results

ChangeSet@1.2403.2.9, 2007-01-29 14:07:03-05:00, jas@rowvwade. +1 -0
  Undo activation of on line add index due to server bug.

  storage/falcon/ha_falcon.cpp@1.109, 2007-01-29 14:06:56-05:00, jas@rowvwade. +1 -1
    Undo activation of on line add index due to server bug.

ChangeSet@1.2403.2.8, 2007-01-29 11:39:22-05:00, jas@rowvwade. +1 -0
  Activate support for online add index.

  storage/falcon/ha_falcon.cpp@1.108, 2007-01-29 11:39:16-05:00, jas@rowvwade. +4 -2
    Activate support for online add index.

ChangeSet@1.2409.1.3, 2007-01-29 10:17:47+01:00, df@kahlann.erinye.com +1 -0
  raise version number after clone-off

  configure.in@1.424, 2007-01-29 10:17:45+01:00, df@kahlann.erinye.com +1 -1
    raise version number after clone-off

ChangeSet@1.2409.1.2, 2007-01-27 00:52:56+01:00, hakank@lu0008.wdf.sap.corp +9 -0
  After merge fix.
  TAG: clone-5.2.1-falcon-alpha-build

  mysql-test/t/falcon_bug_201.test@1.2, 2007-01-27 00:52:49+01:00, hakank@lu0008.wdf.sap.corp +2 -2
    After merge fix.

  mysql-test/t/falcon_bug_205.test@1.2, 2007-01-27 00:52:49+01:00, hakank@lu0008.wdf.sap.corp +2 -3
    After merge fix.

  mysql-test/t/falcon_bug_218.test@1.2, 2007-01-27 00:52:49+01:00, hakank@lu0008.wdf.sap.corp +2 -3
    After merge fix.

  mysql-test/t/falcon_bug_226.test@1.5, 2007-01-27 00:52:49+01:00, hakank@lu0008.wdf.sap.corp +2 -2
    After merge fix.

  mysql-test/t/falcon_bug_233.test@1.4, 2007-01-27 00:52:49+01:00, hakank@lu0008.wdf.sap.corp +2 -2
    After merge fix.

  mysql-test/t/falcon_bug_23945.test@1.2, 2007-01-27 00:52:49+01:00, hakank@lu0008.wdf.sap.corp +2 -2
    After merge fix.

  mysql-test/t/falcon_bug_24079.test@1.3, 2007-01-27 00:52:49+01:00, hakank@lu0008.wdf.sap.corp +6 -6
    After merge fix.

  mysql-test/t/falcon_bugs.test@1.32, 2007-01-27 00:52:49+01:00, hakank@lu0008.wdf.sap.corp +6 -6
    After merge fix.

  mysql-test/t/falcon_bugs2.test@1.5, 2007-01-27 00:52:49+01:00, hakank@lu0008.wdf.sap.corp +1 -1
    After merge fix.

ChangeSet@1.2403.1.6, 2007-01-26 15:36:39-08:00, brian@zim.(none) +6 -0
  Two things:
  1) Two small windows cleanups for Archive.
  2) Patch from Calvin for Falcon to be able to have its own I_S loaded. One example added for this, does hello world. 

  include/mysql/plugin.h@1.26, 2007-01-26 15:36:36-08:00, brian@zim.(none) +19 -1
    Added new I_S type. 

  mysql-test/r/archive.result@1.29, 2007-01-26 15:36:36-08:00, brian@zim.(none) +1 -1
    Fixed not dropped table. 

  mysql-test/t/archive.test@1.30, 2007-01-26 15:36:36-08:00, brian@zim.(none) +1 -1
    Added additional drop table

  sql/sql_plugin.cc@1.43, 2007-01-26 15:36:36-08:00, brian@zim.(none) +16 -5
    Adding support in for the I_S. 

  sql/sql_show.cc@1.386.1.1, 2007-01-26 15:36:36-08:00, brian@zim.(none) +147 -4
    Added schema type for plugin I_S. Additional loops were added to pop these on to the end of requests. 

  storage/archive/ha_archive.cc@1.127, 2007-01-26 15:36:36-08:00, brian@zim.(none) +2 -2
    Windwos typo

ChangeSet@1.2403.1.5, 2007-01-26 14:17:45-08:00, brian@zim.(none) +3 -0
  For performance reasons we remove the ability in unique indexes on autoincrements to remove the ability to insert key lower then the current autoincrement value.

  mysql-test/r/archive.result@1.28, 2007-01-26 14:17:42-08:00, brian@zim.(none) +1 -1
    Modified error output

  mysql-test/t/archive.test@1.29, 2007-01-26 14:17:42-08:00, brian@zim.(none) +1 -0
    Fix for the change in behavior

  storage/archive/ha_archive.cc@1.126, 2007-01-26 14:17:42-08:00, brian@zim.(none) +5 -5
    ifdef of the search record code

ChangeSet@1.2403.2.7, 2007-01-26 17:05:04-05:00, jas@rowvwade. +8 -0
  Got general backwards compatibility / in-place upgrade working from Netfrastructure V2.7.

  storage/falcon/Dbb.cpp@1.47, 2007-01-26 17:04:55-05:00, jas@rowvwade. +35 -3
    Added in place upgrade for sequence section for V2.7 to V3.0 conversion.

  storage/falcon/Dbb.h@1.25, 2007-01-26 17:04:55-05:00, jas@rowvwade. +2 -1
    Added in place upgrade for sequence section for V2.7 to V3.0 conversion.

  storage/falcon/Engine.vcproj@1.10, 2007-01-26 17:04:55-05:00, jas@rowvwade. +67 -67
    Brought build up to snuff.

  storage/falcon/Index.cpp@1.30, 2007-01-26 17:04:56-05:00, jas@rowvwade. +2 -1
    Added index root caching to retro-indexes.

  storage/falcon/Index2RootPage.cpp@1.5, 2007-01-26 17:04:56-05:00, jas@rowvwade. +180 -38
    Re-cloned retro-index code from current index code.

  storage/falcon/Index2RootPage.h@1.3, 2007-01-26 17:04:57-05:00, jas@rowvwade. +8 -3
    Re-cloned retro-index code from current index code.

  storage/falcon/Record.cpp@1.21, 2007-01-26 17:04:57-05:00, jas@rowvwade. +9 -3
    Don't copy strings when extracting data from legacy format records.

  storage/falcon/RepositoryVolume.cpp@1.7, 2007-01-26 17:04:57-05:00, jas@rowvwade. +2 -2
    Re-cloned retro-index code from current index code.

ChangeSet@1.2403.8.2, 2007-01-26 11:15:16-08:00, brian@zim.(none) +3 -0
  This fixes a bug in show create table displaying auto_increment field when it should not.
  It also refactors the test case for Archive (removed two bad tests).

  mysql-test/r/archive.result@1.27, 2007-01-26 11:15:13-08:00, brian@zim.(none) +77 -48
    refactor archive test

  mysql-test/t/archive.test@1.28, 2007-01-26 11:15:13-08:00, brian@zim.(none) +44 -29
    Large  refactoring of Archive test

  storage/archive/ha_archive.cc@1.125, 2007-01-26 11:15:13-08:00, brian@zim.(none) +12 -35
    Updated comments.
    Added NULL packing hack
    Fixed bug in wrong display of auto increment in show create table

ChangeSet@1.2403.8.1, 2007-01-26 10:17:53-08:00, brian@zim.(none) +2 -0
  Fixed a warning. Added the -A option so that the autoincrement could be set outside of the file.

  storage/archive/archive_reader.c@1.7, 2007-01-26 10:17:50-08:00, brian@zim.(none) +41 -5
    Add option to autoincrement file.

  storage/archive/ha_archive.cc@1.124, 2007-01-26 10:17:50-08:00, brian@zim.(none) +2 -2
    Fixed warning

ChangeSet@1.2403.1.2, 2007-01-25 18:43:40-08:00, brian@zim.(none) +2 -0
  Made the example actually do something :)
  
  It now demonstrates creating its own thread and shows off how to clean up after itself (creates a really simple heartbeat file)

  plugin/daemon_example/Makefile.am@1.3, 2007-01-25 18:43:36-08:00, brian@zim.(none) +5 -3
    Added additional include

  plugin/daemon_example/daemon_example.cc@1.4, 2007-01-25 18:43:36-08:00, brian@zim.(none) +112 -5
    Created heart beat code. 

  plugin/daemon_example/daemon_example.cc@1.3, 2007-01-24 13:13:29-08:00, brian@zim.(none) +0 -0
    Rename: plugin/daemon_example/daemon_example.c -> plugin/daemon_example/daemon_example.cc

ChangeSet@1.2403.5.4, 2007-01-25 18:19:49+01:00, dfischer@mysql.com +1 -0
  Raise version number after cloning 5.1.15-beta

  configure.in@1.421.1.1, 2007-01-25 18:19:42+01:00, dfischer@mysql.com +1 -1
    Raise version number after cloning 5.1.15-beta

ChangeSet@1.2403.7.1, 2007-01-25 16:33:49+01:00, hakank@lu0008.wdf.sap.corp +1 -0
  Activated unicode related tests which are not failing anymore.

  mysql-test/t/disabled.def@1.264, 2007-01-25 16:33:40+01:00, hakank@lu0008.wdf.sap.corp +3 -11
    Activated unicode related tests which are not failing anymore.

ChangeSet@1.2403.5.3, 2007-01-25 13:12:02+01:00, jani@bk-internal.mysql.com +1 -0
  SETUP.sh:
    Don't use -Wshadow by default yet
  TAG: clone-5.1.15-build

  BUILD/SETUP.sh@1.68, 2007-01-25 13:11:47+01:00, jani@bk-internal.mysql.com +1 -1
    Don't use -Wshadow by default yet

ChangeSet@1.2403.2.4, 2007-01-25 12:34:12+01:00, hakank@lu0008.wdf.sap.corp +4 -0
  Post merge fix (revert).

  BitKeeper/deleted/.del-taocrypt.vcproj@1.2, 2007-01-25 12:08:52+01:00, hakank@lu0008.wdf.sap.corp +0 -0
    Delete: extra/yassl/taocrypt/taocrypt.vcproj

  extra/yassl/taocrypt/taocrypt.vcproj@1.1, 2007-01-25 12:07:58+01:00, hakank@lu0008.wdf.sap.corp +626 -0
    BitKeeper file /home/hakan/work/mysql/mysql-5.1-falcon-to-merge/extra/yassl/taocrypt/taocrypt.vcproj

  extra/yassl/taocrypt/taocrypt.vcproj@1.0, 2007-01-25 12:07:58+01:00, hakank@lu0008.wdf.sap.corp +0 -0

  BitKeeper/deleted/.del-yassl.vcproj@1.2, 2007-01-25 12:12:36+01:00, hakank@lu0008.wdf.sap.corp +0 -0
    Delete: extra/yassl/yassl.vcproj

  extra/yassl/Makefile.am@1.12, 2007-01-25 12:34:07+01:00, hakank@lu0008.wdf.sap.corp +1 -5
    Post merge fix (revert).

  extra/yassl/taocrypt/Makefile.am@1.11, 2007-01-25 12:34:07+01:00, hakank@lu0008.wdf.sap.corp +1 -4
    Post merge fix (revert).

ChangeSet@1.2403.3.4, 2007-01-25 11:24:35+01:00, hakank@lu0008.wdf.sap.corp +1 -0
  After merge fix.

  extra/yassl/yassl.vcproj@1.1, 2007-01-25 11:22:52+01:00, hakank@lu0008.wdf.sap.corp +425 -0
    BitKeeper file /home/hakan/work/mysql/mysql-5.1-falcon/extra/yassl/yassl.vcproj

  extra/yassl/yassl.vcproj@1.0, 2007-01-25 11:22:52+01:00, hakank@lu0008.wdf.sap.corp +0 -0

ChangeSet@1.2403.3.3, 2007-01-25 10:29:13+01:00, hakank@lu0008.wdf.sap.corp +1 -0
  After merge fix.

  mysql-test/r/index_merge_falcon.result@1.2, 2007-01-25 10:29:04+01:00, hakank@lu0008.wdf.sap.corp +11 -0
    After merge fix.

ChangeSet@1.2401.1.7, 2007-01-25 10:00:09+03:00, sergefp@mysql.com +3 -0
  BUG#24127: merge: update tests results

  mysql-test/r/ndb_subquery.result@1.7, 2007-01-25 10:00:05+03:00, sergefp@mysql.com +2 -2
    BUG#24127: merge: update tests results

  mysql-test/r/subselect.result@1.163, 2007-01-25 10:00:05+03:00, sergefp@mysql.com +15 -15
    BUG#24127: merge: update tests results

  mysql-test/r/subselect3.result@1.4, 2007-01-25 10:00:05+03:00, sergefp@mysql.com +27 -26
    BUG#24127: merge: update tests results

ChangeSet@1.2401.2.1, 2007-01-25 11:17:51+07:00, tomas@poseidon.mysql.com +2 -0
  ndb:
  - added extra cluster connect inicator bit for better handeling of delacation of event operations on cluster disconnect
  - added extra assert to try to track down valgrind issue

  storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp@1.77, 2007-01-25 11:17:41+07:00, tomas@poseidon.mysql.com +16 -1
    ndb:
    - added extra cluster connect inicator bit for better handeling of delacation of event operations on cluster disconnect
    - added extra assert to try to track down valgrind issue

  storage/ndb/src/ndbapi/NdbEventOperationImpl.hpp@1.34, 2007-01-25 11:17:41+07:00, tomas@poseidon.mysql.com +2 -0
    ndb:
    - added extra cluster connect inicator bit for better handeling of delacation of event operations on cluster disconnect
    - added extra assert to try to track down valgrind issue

ChangeSet@1.2403.3.2, 2007-01-25 01:28:22+01:00, hakank@lu0008.wdf.sap.corp +2 -0
  After merge fix.

  mysql-test/r/falcon_bugs.result@1.33, 2007-01-25 01:28:16+01:00, hakank@lu0008.wdf.sap.corp +1 -1
    After merge fix.

  mysql-test/r/view.result@1.197.2.2, 2007-01-25 01:28:16+01:00, hakank@lu0008.wdf.sap.corp +4 -4
    After merge fix.

ChangeSet@1.1810.2520.3, 2007-01-25 02:27:28+03:00, sergefp@mysql.com +1 -0
  BUG#24127: wrong result for (null,not-null) IN (SELECT a,b ...):
  Fixed typo problem that surfaced after the merge

  sql/sql_select.cc@1.312.1.173, 2007-01-25 02:27:26+03:00, sergefp@mysql.com +2 -2
    BUG#24127: wrong result for (null,not-null) IN (SELECT a,b ...):
    Fixed typo problem that surfaced after the merge

ChangeSet@1.2343.72.3, 2007-01-24 18:15:47-05:00, jas@rowvwade. +2 -0
  Minor re-organization for clarity.

  storage/falcon/ha_falcon.cpp@1.105.1.1, 2007-01-24 18:15:41-05:00, jas@rowvwade. +4 -0
    Essentially, a no-op.  Maybe someday it will do something.

  storage/falcon/ha_falcon.h@1.21, 2007-01-24 18:15:42-05:00, jas@rowvwade. +4 -3
    Reorganization for clarity.

ChangeSet@1.2343.72.2, 2007-01-24 18:07:23-05:00, jas@rowvwade. +1 -0
  Fixed a data page space allocation bug where the amount of free space on a page (none) was
  confused with an empty page.

  storage/falcon/DataPage.cpp@1.14, 2007-01-24 18:07:17-05:00, jas@rowvwade. +3 -0
    When deleting a zero length blob from a completely full data page, DataPage::deleteLine()
    was correctly returning the number of available byte -- zero -- without considering that
    zero means the page is empty and should be deleted.  In short, the code stupidly assumed
    that deleting a record on a page should result in free space.  Silly body.

ChangeSet@1.2343.33.68, 2007-01-24 23:50:48+01:00, hakank@lu0008.wdf.sap.corp +7 -0
  hand merge

  extra/yassl/Makefile.am@1.10, 2007-01-24 23:50:42+01:00, hakank@lu0008.wdf.sap.corp +5 -1
    hand merge

  extra/yassl/taocrypt/Makefile.am@1.9, 2007-01-24 23:50:42+01:00, hakank@lu0008.wdf.sap.corp +4 -1
    hand merge

  mysql-test/r/warnings.result@1.56, 2007-01-24 23:50:42+01:00, hakank@lu0008.wdf.sap.corp +1 -8
    hand merge

  mysql-test/t/disabled.def@1.262, 2007-01-24 23:50:43+01:00, hakank@lu0008.wdf.sap.corp +6 -4
    hand merge

  sql/CMakeLists.txt@1.30, 2007-01-24 23:50:43+01:00, hakank@lu0008.wdf.sap.corp +18 -7
    hand merge

  sql/log_event.cc@1.252.5.3, 2007-01-24 23:50:43+01:00, hakank@lu0008.wdf.sap.corp +133 -84
    hand merge

  sql/set_var.cc@1.198, 2007-01-24 23:50:43+01:00, hakank@lu0008.wdf.sap.corp +97 -19
    hand merge

ChangeSet@1.2372.4.7, 2007-01-24 14:40:39-07:00, malff@weblab.(none) +4 -0
  Bug#21029 (Dependencies between sql_yacc.cc and dependent headers not detected)
  
  The build scripts in general, using automake, autoconf, etc, contain several
  special commands and work around all related to the way the bison code in the
  parser is built, for sql/sql_yacc.yy. These work arounds, accumulated over
  time during development, ultimately cause the build scripts to be unstable
  and cause build defects by not enforcing dependencies.
  
  This fix simplifies the build process and aligns it with the automake tooling,
  which provides native support for bison and *.yy files.
  
  In particular, the following problem have been fixed:
  - dependencies with sql_yacc.cc were not honored (Bug 21029), leading to
    corrupted builds,
  - the work around introduced by Bug 24557, to cleanup the generated files
    sql_yacc.h and sql_yacc.cc, has been removed,
  - the generated makefile, in a source distribution, used to destroy the files
    sql_yacc.h and sql_yacc.cc on a 'make clean' target. This has been fixed:
    these files are now removed by make maintainer-clean.
  - The root cause of the problem found with gcc 4.1 (see Bug 24619) has been
    clearly documented, and the "sed" hack has been replaced by a cleaner
    work around, when building the code with bison 1.875.
  - Removed the file sql/sql_yacc.yy.bak, added by WL 3031 by accident.
  - Removed the unnecessary AM_YFLAG= --debug introduced by WL 3432, since
    the compiling option DBUG_OFF takes precedence when setting YYDEBUG.

  BitKeeper/deleted/.del-sql_yacc.yy.bak@1.3, 2007-01-24 14:39:20-07:00, malff@weblab.(none) +0 -0
    Rename: sql/sql_yacc.yy.bak -> BitKeeper/deleted/.del-sql_yacc.yy.bak

  Makefile.am@1.106.1.3, 2007-01-24 14:40:37-07:00, malff@weblab.(none) +0 -8
    General cleanup of the build process for sql_yacc.yy

  sql/Makefile.am@1.170.1.1, 2007-01-24 14:40:37-07:00, malff@weblab.(none) +6 -22
    General cleanup of the build process for sql_yacc.yy

  sql/sql_yacc.yy@1.529.1.1, 2007-01-24 14:40:37-07:00, malff@weblab.(none) +22 -0
    General cleanup of the build process for sql_yacc.yy

ChangeSet@1.1810.2520.2, 2007-01-24 22:23:50+03:00, sergefp@mysql.com +3 -0
  BUG#24127: merge fixes: If subselect is a union, dont allocate several 
  identical pushed_cond_guards arrays. Allocate only one always.

  mysql-test/r/subselect.result@1.134.1.37, 2007-01-24 22:23:47+03:00, sergefp@mysql.com +3 -3
    BUG#24127: merge

  mysql-test/t/subselect3.test@1.4, 2007-01-24 22:23:47+03:00, sergefp@mysql.com +0 -1
    BUG#24127: merge

  sql/item_subselect.cc@1.113.1.36, 2007-01-24 22:23:47+03:00, sergefp@mysql.com +2 -2
    BUG#24127: merge fixes: If subselect is a union, dont allocate several 
    identical pushed_cond_guards arrays. Allocate only one always.

ChangeSet@1.1810.2519.4, 2007-01-24 22:11:27+03:00, dlenev@mockturtle.local +1 -0
  Disabling back im_daemon_life_cycle.test, which was temporarily enabled in
  the team tree for additional investigation.

  mysql-test/t/disabled.def@1.2.4.21, 2007-01-24 22:11:25+03:00, dlenev@mockturtle.local +1 -0
    Disabling back im_daemon_life_cycle.test, which was temporarily enabled in
    the team tree for additional investigation.

ChangeSet@1.2395.2.1, 2007-01-24 10:30:06-08:00, brian@zim.(none) +5 -0
  This patch passes comment to be embedded in ARZ.
  Fixes autodiscovery of tables. 
  Allows the FRM to be extracted from the ARZ file via archive_reader. 

  storage/archive/archive_reader.c@1.6, 2007-01-24 10:30:03-08:00, brian@zim.(none) +50 -1
    Extract FRM command added.
    We now print the embedded comment

  storage/archive/archive_test.c@1.10, 2007-01-24 10:30:03-08:00, brian@zim.(none) +25 -3
    Additional tests for FRM annd comment

  storage/archive/azio.c@1.15, 2007-01-24 10:30:03-08:00, brian@zim.(none) +81 -4
    Filled in functionality for comment and frm.

  storage/archive/azlib.h@1.10, 2007-01-24 10:30:03-08:00, brian@zim.(none) +24 -10
    Refactored position.

  storage/archive/ha_archive.cc@1.123, 2007-01-24 10:30:04-08:00, brian@zim.(none) +98 -23
    Discovery mechanism filled in. 

ChangeSet@1.2401.1.3, 2007-01-24 20:11:36+04:00, gluh@mysql.com +1 -0
  after merge fix

  mysql-test/t/view.test@1.177.1.2, 2007-01-24 20:11:34+04:00, gluh@mysql.com +14 -17
    after merge fix

ChangeSet@1.2343.33.67, 2007-01-24 15:57:38+01:00, hakank@lu0008.wdf.sap.corp +1 -0
  falcon_bug_24511 passes now.

  mysql-test/t/disabled.def@1.261, 2007-01-24 15:57:30+01:00, hakank@lu0008.wdf.sap.corp +1 -1
    falcon_bug_24511 passes now.

ChangeSet@1.2372.29.2, 2007-01-24 15:45:41+01:00, istruewing@chilla.local +1 -0
  After merge fix

  mysql-test/r/myisam.result@1.102.1.2, 2007-01-24 15:45:11+01:00, istruewing@chilla.local +1 -0
    After merge fix

ChangeSet@1.2389.1.5, 2007-01-24 15:55:16+02:00, gkodinov@macbook.gmz +7 -0
  merge of 5.0-opt -> 5.1-opt

  mysql-test/r/func_in.result@1.32.1.2, 2007-01-24 15:54:58+02:00, gkodinov@macbook.gmz +3 -46
    merge of 5.0-opt -> 5.1-opt

  mysql-test/r/func_str.result@1.136, 2007-01-24 15:54:59+02:00, gkodinov@macbook.gmz +6 -6
    merge of 5.0-opt -> 5.1-opt

  mysql-test/r/range.result@1.51.1.2, 2007-01-24 15:55:00+02:00, gkodinov@macbook.gmz +1 -1
    merge of 5.0-opt -> 5.1-opt

  mysql-test/r/view.result@1.194.2.2, 2007-01-24 15:55:01+02:00, gkodinov@macbook.gmz +44 -10
    merge of 5.0-opt -> 5.1-opt

  mysql-test/t/func_in.test@1.24.1.2, 2007-01-24 15:55:01+02:00, gkodinov@macbook.gmz +36 -34
    merge of 5.0-opt -> 5.1-opt

  sql/item_strfunc.cc@1.308, 2007-01-24 15:55:02+02:00, gkodinov@macbook.gmz +0 -13
    merge of 5.0-opt -> 5.1-opt

  sql/item_strfunc.h@1.125, 2007-01-24 15:55:03+02:00, gkodinov@macbook.gmz +0 -4
    merge of 5.0-opt -> 5.1-opt

ChangeSet@1.1810.2518.3, 2007-01-24 13:29:46+01:00, istruewing@chilla.local +1 -0
  Bug#24607 - MyISAM pointer size determined incorrectly
  After merge fix

  mysql-test/r/myisam.result@1.71.12.2, 2007-01-24 13:29:44+01:00, istruewing@chilla.local +1 -1
    Bug#24607 - MyISAM pointer size determined incorrectly
    After merge fix

ChangeSet@1.1616.2941.1, 2007-01-24 13:17:01+01:00, istruewing@chilla.local +2 -0
  Bug#24607 - MyISAM pointer size determined incorrectly
  Fixed test. On 32-bit machines which compile without
  -DBIG_TABLES, MAX_ROWS is truncated to a 32-bit value.
  Using a value below 4G is portable.

  mysql-test/r/myisam.result@1.45.10.4, 2007-01-24 13:16:59+01:00, istruewing@chilla.local +2 -2
    Bug#24607 - MyISAM pointer size determined incorrectly
    Fixed test results.

  mysql-test/t/myisam.test@1.33.12.4, 2007-01-24 13:16:59+01:00, istruewing@chilla.local +1 -1
    Bug#24607 - MyISAM pointer size determined incorrectly
    Fixed test. On 32-bit machines which compile without
    -DBIG_TABLES, MAX_ROWS is truncated to a 32-bit value.
    Using a value below 4G is portable.

ChangeSet@1.2389.3.2, 2007-01-24 14:49:36+04:00, holyfoot@mysql.com +9 -0
  bug #22682 Test fails --without-geometry
  geometry dependent parts moved to proper .test files

  BitKeeper/etc/ignore@1.243.14.1, 2007-01-24 14:49:35+04:00, holyfoot@mysql.com +1 -0
    Added libmysqld/sql_servers.cc to the ignore list

  mysql-test/r/gis.result@1.41, 2007-01-24 14:49:34+04:00, holyfoot@mysql.com +11 -0
    result fixed

  mysql-test/r/innodb.result@1.184, 2007-01-24 14:49:34+04:00, holyfoot@mysql.com +0 -2
    result fixed

  mysql-test/r/innodb_gis.result@1.8, 2007-01-24 14:49:34+04:00, holyfoot@mysql.com +2 -0
    result fixed

  mysql-test/r/view.result@1.194.3.1, 2007-01-24 14:49:34+04:00, holyfoot@mysql.com +0 -11
    result fixed

  mysql-test/t/gis.test@1.33, 2007-01-24 14:49:34+04:00, holyfoot@mysql.com +10 -0
    HAVE_GEOMETRY dependent part moved here from view.test

  mysql-test/t/innodb.test@1.153.1.1, 2007-01-24 14:49:34+04:00, holyfoot@mysql.com +0 -6
    HAVE_GEOMETRY dependent part moved to innodb_gis.test

  mysql-test/t/innodb_gis.test@1.3, 2007-01-24 14:49:35+04:00, holyfoot@mysql.com +6 -0
    HAVE_GEOMETRY dependent part moved here from innodb.test

  mysql-test/t/view.test@1.175.4.1, 2007-01-24 14:49:35+04:00, holyfoot@mysql.com +0 -9
    HAVE_GEOMETRY dependent part moved to gis.test

ChangeSet@1.1810.2424.20, 2007-01-24 11:53:09+04:00, svoj@mysql.com +2 -0
  After merge fix.

  mysql-test/r/myisam.result@1.71.10.5, 2007-01-24 11:53:08+04:00, svoj@mysql.com +0 -13
    After merge fix.

  mysql-test/t/myisam.test@1.55.8.5, 2007-01-24 11:53:08+04:00, svoj@mysql.com +0 -34
    After merge fix.

ChangeSet@1.2390.7.10, 2007-01-24 10:46:25+03:00, dlenev@mockturtle.local +1 -0
  Fixed test case after merging fix for bug#24491 "using alias from source
  table in insert ... on duplicate key" in 5.1 tree.

  mysql-test/t/sp-error.test@1.115.1.2, 2007-01-24 10:46:23+03:00, dlenev@mockturtle.local +32 -31
    After merge fix.

ChangeSet@1.1810.2462.14, 2007-01-24 16:12:39+11:00, stewart@willster.(none) +1 -0
  fix hpux build problem and some ndb connect errors being missed

  ndb/src/common/util/SocketClient.cpp@1.6.6.1, 2007-01-24 16:12:37+11:00, stewart@willster.(none) +2 -2
    fix two problems recently introduced:
    - HPUX build problem
    - some connect errors not being detected properly

ChangeSet@1.1810.2456.40, 2007-01-23 10:11:53-08:00, igor@olga.mysql.com +1 -0
  Post-merge fix.

  mysql-test/t/fulltext_left_join.test@1.12.1.3, 2007-01-23 10:11:52-08:00, igor@olga.mysql.com +0 -13
    Post-merge fix.

ChangeSet@1.2343.72.1, 2007-01-23 12:55:24-05:00, jas@rowvwade. +1 -0
  Replace assertion in Table::validateAndInsert with a simple exception if an update
  encounters an extremely unprobable sequence of concurrent rolled back transactions.

  storage/falcon/Table.cpp@1.61, 2007-01-23 12:55:16-05:00, jas@rowvwade. +3 -2
    Try a few more times for validateAndInsert to allow multiple concurrent transactions
    to rollback.

ChangeSet@1.2389.2.1, 2007-01-23 19:45:58+02:00, gkodinov@macbook.gmz +4 -0
  Bug #6172: RAND(a) should only accept constant values as arguments
   RAND() must accept scalar expressions regardless of their kind.
   That includes both constant expressions and expressions that 
   depend on column values.
   When the expression is constant the random seed can be initialized
   at compile time.
   However when the expression is not constant the random seed must be
   initialized at each invocation (while it still can be allocated at
   compile time).
   Implemented the above rules by extending Item_func_rand::val_real()
   to initialize the random seed at the correct place.

  mysql-test/r/func_math.result@1.40, 2007-01-23 19:45:49+02:00, gkodinov@macbook.gmz +40 -5
    Bug #6172: RAND(a) should only accept constant values as arguments
     - extened the test case

  mysql-test/t/func_math.test@1.29, 2007-01-23 19:45:49+02:00, gkodinov@macbook.gmz +19 -5
    Bug #6172: RAND(a) should only accept constant values as arguments
     - extened the test case

  sql/item_func.cc@1.345.2.1, 2007-01-23 19:45:50+02:00, gkodinov@macbook.gmz +17 -19
    Bug #6172: RAND(a) should only accept constant values as arguments
     - allow specifying non-const expressions as RAND() arguments

  sql/item_func.h@1.161, 2007-01-23 19:45:50+02:00, gkodinov@macbook.gmz +2 -0
    Bug #6172: RAND(a) should only accept constant values as arguments
     - allow specifying non-const expressions as RAND() arguments

ChangeSet@1.2397.1.1, 2007-01-24 00:27:19+11:00, stewart@willster.(none) +3 -0
  Bug#25567 records() call performs scan in NDB, performance bug

  mysql-test/r/ndb_basic.result@1.49.1.1, 2007-01-24 00:27:13+11:00, stewart@willster.(none) +6 -6
    from spaces, to tabs. what fun!

  sql/ha_ndbcluster.h@1.165, 2007-01-24 00:27:13+11:00, stewart@willster.(none) +2 -0
    fix estimate_rows_upper_bound() to be correct for NDB

  sql/sql_select.cc@1.481, 2007-01-24 00:27:14+11:00, stewart@willster.(none) +1 -1
    use non-exact records information

ChangeSet@1.2372.28.1, 2007-01-23 05:09:14-08:00, acurtis@xiphis.org +3 -0
  Bug#25396
    "Valgrind leak in closecon_handlerton"
    plugin_shutdown() calls plugin_deinitialize() which calls ha_finalize_handlerton().
    ndbcluster_end() fails to wait for the ndb utility thread to exit which results in
    the handlerton struct being freed before the ndb utility thread has destroyed it's THD
    but before the plugin has been marked as UNINITIALIZED
  
  Bug is caused by misuse of abort_loops variable and not locking mutex during calls to
  pthread condition variable functions causing a race in valgrind's pthread_cond_wait
  implementation.

  BUILD/compile-amd64-valgrind-max@1.1, 2007-01-23 05:09:11-08:00, acurtis@xiphis.org +24 -0
    New BitKeeper file ``BUILD/compile-amd64-valgrind-max''

  BUILD/compile-amd64-valgrind-max@1.0, 2007-01-23 05:09:11-08:00, acurtis@xiphis.org +0 -0

  sql/ha_ndbcluster.cc@1.384.2.1, 2007-01-23 05:09:11-08:00, acurtis@xiphis.org +67 -46
    Bug25396
    Valgrind requires that mutex be held during call to pthread_cond_signal.
    Change pthread_cond_timedwait() to pthread_cond_wait() where the timeout is not needed.
    Ensure that appropiate variables are protected by mutex.
    Remove use of abort_loop global variable.
    Ensure that ndbcluster_end waits for util thread to exit.
    Add an extra cond_var as insurance against non-conforming pthreads implementations.

  sql/mysqld.cc@1.576.33.1, 2007-01-23 05:09:11-08:00, acurtis@xiphis.org +7 -4
    Bug25386
    Valgrind requires that mutex be held during call to pthread_cond_signal.

ChangeSet@1.1810.2471.2, 2007-01-23 15:03:48+03:00, dlenev@mockturtle.local +5 -0
  Proposed fix for bug#24491 "using alias from source table in insert ...
  on duplicate key".
  
  INSERT ... SELECT ... ON DUPLICATE KEY UPDATE which was used in
  stored routine or as prepared statement and which in its ON DUPLICATE
  KEY clause erroneously tried to assign value to a column mentioned only
  in its SELECT part was properly emitting error on the first execution
  but succeeded on the second and following executions.
  
  Code which is responsible for name resolution of fields mentioned in
  UPDATE clause (e.g. see select_insert::prepare()) modifies table list
  and Name_resolution_context used in this process. It uses
  Name_resolution_context_state::save_state/restore_state() to revert
  these modifications. Unfortunately those two methods failed to revert
  properly modifications to TABLE_LIST::next_name_resolution_table
  and this broke name resolution process for successive executions.
  
  This patch fixes Name_resolution_context_state::save_state/restore_state()
  in such way that it properly handles TABLE_LIST::next_name_resolution_table.

  mysql-test/r/ps.result@1.56.12.1, 2007-01-23 15:03:45+03:00, dlenev@mockturtle.local +16 -0
    Added test case for bug#24491 "using alias from source table in insert ...
    on duplicate key"

  mysql-test/r/sp-error.result@1.102.1.8, 2007-01-23 15:03:46+03:00, dlenev@mockturtle.local +19 -0
    Added test case for bug#24491 "using alias from source table in insert ...
    on duplicate key"

  mysql-test/t/ps.test@1.56.12.1, 2007-01-23 15:03:46+03:00, dlenev@mockturtle.local +30 -0
    Added test case for bug#24491 "using alias from source table in insert ...
    on duplicate key"

  mysql-test/t/sp-error.test@1.100.1.11, 2007-01-23 15:03:46+03:00, dlenev@mockturtle.local +32 -0
    Added test case for bug#24491 "using alias from source table in insert ...
    on duplicate key"

  sql/item.h@1.183.15.1, 2007-01-23 15:03:46+03:00, dlenev@mockturtle.local +2 -7
    Name_resolution_context::save_state/restore_state():
      At the moment these methods are used only by code implementing
      INSERT and INSERT ... SELECT statements. This code doesn't modify
     'next_name_resolution_table' member of table list element
      corresponding to the first table of SELECT clause (pointed by
      'first_name_resolution_table'). But it modifies table list element
      corresponding to the target table of INSERT (pointed by 'table_list')
      So these methods were changed to reflect this.

ChangeSet@1.1810.2462.12, 2007-01-23 12:58:10+01:00, pekka@clam.ndb.mysql.com +1 -0
  ndb - bug#25562 use byte-size max_data_length() when setting blob part size

  sql/ha_ndbcluster.cc@1.175.1.122, 2007-01-23 12:56:51+01:00, pekka@clam.ndb.mysql.com +21 -11
    bug#25562 use byte-size max_data_length() when setting blob part size

ChangeSet@1.2343.71.1, 2007-01-23 10:03:31+01:00, hakank@lu0008.wdf.sap.corp +3 -0
  Added handler test for Falcon as requested by Brian.

  mysql-test/r/handler_falcon.result@1.1, 2007-01-23 10:03:23+01:00, hakank@lu0008.wdf.sap.corp +517 -0
    New BitKeeper file ``mysql-test/r/handler_falcon.result''

  mysql-test/r/handler_falcon.result@1.0, 2007-01-23 10:03:23+01:00, hakank@lu0008.wdf.sap.corp +0 -0

  mysql-test/t/disabled.def@1.260, 2007-01-23 10:03:22+01:00, hakank@lu0008.wdf.sap.corp +1 -0
    handler test currently fails with Falcon.

  mysql-test/t/handler_falcon.test@1.1, 2007-01-23 10:03:22+01:00, hakank@lu0008.wdf.sap.corp +20 -0
    New BitKeeper file ``mysql-test/t/handler_falcon.test''

  mysql-test/t/handler_falcon.test@1.0, 2007-01-23 10:03:22+01:00, hakank@lu0008.wdf.sap.corp +0 -0

ChangeSet@1.1810.2515.2, 2007-01-23 17:19:27+11:00, stewart@willster.(none) +1 -0
  round up Transporter connect timeout

  ndb/src/common/transporter/Transporter.cpp@1.18.7.2, 2007-01-23 17:19:23+11:00, stewart@willster.(none) +1 -1
    change so timeout is rounded up to nearest second

ChangeSet@1.1810.2515.1, 2007-01-23 17:07:09+11:00, stewart@willster.(none) +5 -0
  Bug #25487  	deleting ndb_cluster_connection object takes long time
    
    aim is to:
    a) if set_connect_timeout called, timeout connect attempt (for retry on
    next call) after timeout period
    b) preserve existing blocking behaviour otherwise (for, e.g. mgmapi)
    
    Related to customer issue with long time deleting ndb_cluster_connection
    object. believe we're hanging on the connect(2) call until timeout (when
    we then realise we should exit the thread).

  ndb/include/mgmapi/mgmapi.h@1.42.16.1, 2007-01-23 17:06:24+11:00, stewart@willster.(none) +10 -0
    add ndb_mgm_set_connect_timeout

  ndb/include/util/SocketClient.hpp@1.4.3.1, 2007-01-23 17:06:32+11:00, stewart@willster.(none) +4 -0
    add timeout (seconds) for max time to wait for connection

  ndb/src/common/transporter/Transporter.cpp@1.18.7.1, 2007-01-23 17:06:32+11:00, stewart@willster.(none) +6 -2
    set limit on amount of time we'll wait for tcp connect

  ndb/src/common/util/SocketClient.cpp@1.6.5.1, 2007-01-23 17:06:32+11:00, stewart@willster.(none) +56 -4
    only try to connect for a maximum of timeout time

  ndb/src/mgmapi/mgmapi.cpp@1.44.33.1, 2007-01-23 17:06:33+11:00, stewart@willster.(none) +13 -0
    add ndb_mgm_set_connect_timeout

ChangeSet@1.1810.2462.11, 2007-01-23 11:44:42+07:00, tomas@poseidon.mysql.com +4 -0
  ndb - bug#22013
      Fix bug in event handling wrt early node shutdown

  ndb/src/mgmsrv/MgmtSrvr.cpp@1.73.43.1, 2007-01-23 11:44:36+07:00, tomas@poseidon.mysql.com +35 -13
    Fix bug in event handling wrt early node shutdown

  ndb/src/ndbapi/ClusterMgr.cpp@1.17.10.1, 2007-01-23 11:44:36+07:00, tomas@poseidon.mysql.com +5 -4
    Fix reportNodeFailed if only connected wo/ having received any API_REGCONF

  ndb/src/ndbapi/ClusterMgr.hpp@1.4.7.1, 2007-01-23 11:44:36+07:00, tomas@poseidon.mysql.com +2 -2
    Fix reportNodeFailed if only connected wo/ having received any API_REGCONF

  ndb/src/ndbapi/SignalSender.cpp@1.3.5.1, 2007-01-23 11:44:36+07:00, tomas@poseidon.mysql.com +9 -0
    Fix memleak

ChangeSet@1.2343.33.64, 2007-01-22 22:39:43-06:00, klewis@klewis-mysql. +9 -0
  Temporary fix for Bug#24858 while waiting for WL#3664.
  This also contains some other fixes for handling varbinary
  and some code cleanup.

  storage/falcon/Cache.cpp@1.18, 2007-01-22 22:39:23-06:00, klewis@klewis-mysql. +3 -4
    Delete unnecessary line and use a shared lock when not 
    writing to the cache. 

  storage/falcon/MySQLCollation.cpp@1.12, 2007-01-22 22:39:26-06:00, klewis@klewis-mysql. +8 -5
    This is a preliminary fix to Bug#24858 while waiting for WL#3664.  
    Introduce new functions to count characters according to the current
    charset and truncate strings to some prefix number of characters.
    This should be replaced when the new version of strnxfrm() becomes
    available.

  storage/falcon/MySQLCollation.h@1.6, 2007-01-22 22:39:28-06:00, klewis@klewis-mysql. +5 -1
    This is a preliminary fix to Bug#24858 while waiting for WL#3664.  
    Introduce new functions to count characters according to the current
    charset and truncate strings to some prefix number of characters.
    This should be replaced when the new version of strnxfrm() becomes
    available.

  storage/falcon/StorageConnection.cpp@1.19, 2007-01-22 22:39:30-06:00, klewis@klewis-mysql. +20 -20
    Cleanup

  storage/falcon/StorageHandler.h@1.5, 2007-01-22 22:39:31-06:00, klewis@klewis-mysql. +1 -1
    Cleanup

  storage/falcon/StorageTable.cpp@1.32, 2007-01-22 22:39:33-06:00, klewis@klewis-mysql. +11 -0
    Truncate strings to prefix number of characters before comparing them.

  storage/falcon/StorageTableShare.h@1.22, 2007-01-22 22:39:35-06:00, klewis@klewis-mysql. +1 -1
    Cleanup

  storage/falcon/SynchronizationObject.h@1.3, 2007-01-22 22:39:36-06:00, klewis@klewis-mysql. +1 -1
    Cleanup

  storage/falcon/ha_falcon.cpp@1.106, 2007-01-22 22:39:38-06:00, klewis@klewis-mysql. +71 -4
    Use more information when finding the length of a string in 
    falcon_strnfrmlen().  Also, add falcon_strnchrlen() and 
    falcon_strntrunc().  
    The MySQL server uses a charset for varbinary fields.  We need to 
    reference this charset so that it is not padded with spaces since
    some places treat varbinary like varchar.

ChangeSet@1.2343.33.63, 2007-01-22 22:12:50-06:00, klewis@klewis-mysql. +1 -0
  Recent changes to Transaction::prepare() have made it more likely
  that a transaction is in Limbo state during a duplicate check.  
  This has caused falcon_bugs to start failing again if run multiple
  times. The failing section is Bug 188.
  A new function, Transaction::isActive(), needs to be used in
  Transaction::getRelativeState() to make the other transaction
  wait on a trans in limbo.

  storage/falcon/Transaction.cpp@1.50, 2007-01-22 22:12:42-06:00, klewis@klewis-mysql. +1 -1
    Recent changes to Transaction::prepare() have made it more likely
    that a transaction is in Limbo state during a duplicate check.  
    This has caused falcon_bugs to start failing again if run multiple
    times. The failing section is Bug 188.
    A new function, Transaction::isActive(), needs to be used in
    Transaction::getRelativeState() to make the other transaction
    wait on a trans in limbo.

ChangeSet@1.2398, 2007-01-23 09:52:13+07:00, tomas@poseidon.mysql.com +1 -0
  correct manual merge

  mysql-test/r/ndb_basic.result@1.50, 2007-01-23 09:52:02+07:00, tomas@poseidon.mysql.com +6 -6
    correct manual merge

ChangeSet@1.1810.2462.10, 2007-01-23 07:12:03+07:00, tomas@poseidon.mysql.com +1 -0
  bug#25746 ndb: 4209 error with 2 VARCHAR primary keys
  - post review changes

  sql/ha_ndbcluster.cc@1.175.1.121, 2007-01-23 07:11:53+07:00, tomas@poseidon.mysql.com +1 -1
    bug#25746 ndb: 4209 error with 2 VARCHAR primary keys
    - post review changes

ChangeSet@1.2390.10.1, 2007-01-23 01:58:07+02:00, monty@mysql.com +10 -0
  Change to new (after merge) error numbers

  mysql-test/extra/rpl_tests/rpl_trig004.test@1.4, 2007-01-23 01:58:05+02:00, monty@mysql.com +1 -1
    Fixed bug in last push

  mysql-test/r/create.result@1.130.1.1, 2007-01-23 01:58:05+02:00, monty@mysql.com +1 -1
    Fixed error number

  mysql-test/r/rpl_sp.result@1.33.1.1, 2007-01-23 01:58:05+02:00, monty@mysql.com +2 -2
    Fixed error number

  mysql-test/r/sp.result@1.246.1.1, 2007-01-23 01:58:05+02:00, monty@mysql.com +8 -8
    Fixed error number

  mysql-test/r/view.result@1.198.1.1, 2007-01-23 01:58:05+02:00, monty@mysql.com +3 -3
    Better fix for now() handling

  mysql-test/t/ndb_basic.test@1.47.1.1, 2007-01-23 01:58:05+02:00, monty@mysql.com +3 -3
    Use error names instead of numbers

  mysql-test/t/ndb_index_unique.test@1.26.1.1, 2007-01-23 01:58:05+02:00, monty@mysql.com +1 -1
    Use error names instead of numbers

  mysql-test/t/rpl_skip_error-slave.opt@1.4.1.1, 2007-01-23 01:58:05+02:00, monty@mysql.com +1 -1
    Change to new error number

  mysql-test/t/sp.test@1.214.1.1, 2007-01-23 01:58:06+02:00, monty@mysql.com +8 -8
    Change to new error number

  mysql-test/t/view.test@1.178.1.1, 2007-01-23 01:58:06+02:00, monty@mysql.com +3 -3
    Better fix for now() handling

ChangeSet@1.1616.2921.12, 2007-01-22 14:23:53-08:00, igor@olga.mysql.com +3 -0
  Fixed bug #25637: LEFT JOIN with BOOLEAN FULLTEXT loses left table matches.
  The bug is actually a duplicate of the bug 14708.
  Down-ported the fix for 14708 from 5.0.  
  Merged the test case for bug 14708 from 5.0.

  mysql-test/r/fulltext_left_join.result@1.12.2.1, 2007-01-22 14:23:52-08:00, igor@olga.mysql.com +40 -0
    Added a test case for bug #25637 (duplicate .of bug 14708).
    Merged the test case for bug 14708 from 5.0.

  mysql-test/t/fulltext_left_join.test@1.12.2.1, 2007-01-22 14:23:52-08:00, igor@olga.mysql.com +41 -0
    Added a test case for bug #25637 (duplicate of bug 14708).
    Merged the test case for bug 14708 from 5.0.

  sql/item_func.cc@1.124.53.1, 2007-01-22 14:23:52-08:00, igor@olga.mysql.com +1 -1
    Fixed bug #25637: LEFT JOIN with BOOLEAN FULLTEXT loses left table matches.
    The bug is actually a duplicate of the bug 14708.
    Down-ported the fix for 14708 from 5.0.  

ChangeSet@1.1810.2456.38, 2007-01-22 23:04:14+03:00, evgen@moonbone.local +1 -0
  sql_select.cc:
    Code cleanup after fix for bug#23417.

  sql/sql_select.cc@1.312.1.170, 2007-01-22 23:04:03+03:00, evgen@moonbone.local +2 -3
    Code cleanup after fix for bug#23417.

ChangeSet@1.2390.9.2, 2007-01-22 21:19:56+02:00, monty@mysql.com +9 -0
  Change to new (after merge) error numbers

  mysql-test/r/create.result@1.131, 2007-01-22 21:19:53+02:00, monty@mysql.com +1 -1
    Fixed error number

  mysql-test/r/rpl_sp.result@1.34, 2007-01-22 21:19:53+02:00, monty@mysql.com +2 -2
    Fixed error number

  mysql-test/r/sp.result@1.247, 2007-01-22 21:19:54+02:00, monty@mysql.com +8 -8
    Fixed error number

  mysql-test/r/view.result@1.199, 2007-01-22 21:19:54+02:00, monty@mysql.com +3 -3
    Better fix for now() handling

  mysql-test/t/ndb_basic.test@1.48, 2007-01-22 21:19:54+02:00, monty@mysql.com +3 -3
    Use error names instead of numbers

  mysql-test/t/ndb_index_unique.test@1.27, 2007-01-22 21:19:54+02:00, monty@mysql.com +1 -1
    Use error names instead of numbers

  mysql-test/t/rpl_skip_error-slave.opt@1.5, 2007-01-22 21:19:54+02:00, monty@mysql.com +1 -1
    Change to new error number

  mysql-test/t/sp.test@1.215, 2007-01-22 21:19:54+02:00, monty@mysql.com +8 -8
    Change to new error number

  mysql-test/t/view.test@1.179, 2007-01-22 21:19:54+02:00, monty@mysql.com +3 -3
    Better fix for now() handling

ChangeSet@1.1810.2456.37, 2007-01-22 22:08:51+03:00, evgen@moonbone.local +1 -0
  sql_prepare.cc:
    Post fix for bug#25123.

  sql/sql_prepare.cc@1.142.21.1, 2007-01-22 22:08:31+03:00, evgen@moonbone.local +1 -1
    Post fix for bug#25123.

ChangeSet@1.1810.2462.9, 2007-01-23 00:34:00+07:00, tomas@poseidon.mysql.com +3 -0
  bug#25746 ndb: 4209 error with 2 VARCHAR primary keys
  - make sure keys are copied correctly when varchar has 2 length bytes
  - test case

  mysql-test/r/ndb_basic.result@1.28.1.8, 2007-01-23 00:33:54+07:00, tomas@poseidon.mysql.com +16 -0
    bug#25746 ndb: 4209 error with 2 VARCHAR primary keys
    - test case

  mysql-test/t/ndb_basic.test@1.32.1.5, 2007-01-23 00:33:54+07:00, tomas@poseidon.mysql.com +19 -0
    bug#25746 ndb: 4209 error with 2 VARCHAR primary keys
    - test case

  sql/ha_ndbcluster.cc@1.175.1.120, 2007-01-23 00:33:54+07:00, tomas@poseidon.mysql.com +16 -10
    bug#25746 ndb: 4209 error with 2 VARCHAR primary keys
    - make sure keys are copied correctly when varchar has 2 length bytes

ChangeSet@1.1810.2503.5, 2007-01-22 20:00:27+03:00, anozdrin@alik. +1 -0
  Enabling im_daemon_life_cycle.imtest in team tree.
  
  Do not propagate this change into main trees.

  mysql-test/t/disabled.def@1.2.9.3, 2007-01-22 20:00:26+03:00, anozdrin@alik. +0 -1
    Enbled im_daemon_life_cycle.imtest

ChangeSet@1.2390.7.8, 2007-01-22 19:50:34+03:00, anozdrin@alik. +1 -0
  Enabling im_daemon_life_cycle.imtest in team tree in order to debug IM.
  Do not propagate this change into main trees!

  mysql-test/t/disabled.def@1.175.39.1, 2007-01-22 19:50:32+03:00, anozdrin@alik. +1 -1
    im_daemon_life_cycle enabled.

ChangeSet@1.2303.253.1, 2007-01-22 18:42:52+02:00, monty@mysql.com +60 -0
  Give warnings for unused objects
  Changed error message to be compatible with old error file
  Added new error message for new DUP_ENTRY syntax

  BUILD/SETUP.sh@1.65.1.1, 2007-01-22 18:42:48+02:00, monty@mysql.com +2 -2
    Give warnings for unused objects

  mysql-test/extra/binlog_tests/insert_select-binlog.test@1.6, 2007-01-22 18:42:48+02:00, monty@mysql.com +2 -2
    Changed to use new error message

  mysql-test/extra/binlog_tests/mix_innodb_myisam_binlog.test@1.31.3.1, 2007-01-22 18:42:48+02:00, monty@mysql.com +9 -9
    Changed to use new error message

  mysql-test/extra/rpl_tests/rpl_auto_increment.test@1.6, 2007-01-22 18:42:48+02:00, monty@mysql.com +2 -2
    Changed to use new error message

  mysql-test/extra/rpl_tests/rpl_foreign_key.test@1.6, 2007-01-22 18:42:48+02:00, monty@mysql.com +2 -2
    Changed to use new error message

  mysql-test/extra/rpl_tests/rpl_insert_id.test@1.15, 2007-01-22 18:42:48+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/extra/rpl_tests/rpl_insert_id_pk.test@1.3, 2007-01-22 18:42:48+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/extra/rpl_tests/rpl_loaddata.test@1.6, 2007-01-22 18:42:48+02:00, monty@mysql.com +2 -2
    Changed to use new error message

  mysql-test/extra/rpl_tests/rpl_row_basic.test@1.3.1.1, 2007-01-22 18:42:48+02:00, monty@mysql.com +3 -3
    Changed to use new error message

  mysql-test/extra/rpl_tests/rpl_stm_EE_err2.test@1.2, 2007-01-22 18:42:48+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/extra/rpl_tests/rpl_trig004.test@1.3, 2007-01-22 18:42:48+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/include/mix1.inc@1.22.1.1, 2007-01-22 18:42:48+02:00, monty@mysql.com +7 -7
    Changed to use new error message

  mysql-test/include/mix2.inc@1.5, 2007-01-22 18:42:48+02:00, monty@mysql.com +14 -14
    Changed to use new error message

  mysql-test/include/ps_modify.inc@1.7, 2007-01-22 18:42:48+02:00, monty@mysql.com +2 -2
    Changed to use new error message

  mysql-test/include/query_cache.inc@1.17, 2007-01-22 18:42:48+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/include/varchar.inc@1.9, 2007-01-22 18:42:48+02:00, monty@mysql.com +6 -6
    Changed to use new error message

  mysql-test/r/create.result@1.130, 2007-01-22 18:42:48+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/r/rpl_sp.result@1.21.2.1, 2007-01-22 18:42:48+02:00, monty@mysql.com +2 -2
    Changed to use new error message

  mysql-test/r/sp.result@1.232.3.1, 2007-01-22 18:42:48+02:00, monty@mysql.com +8 -8
    Changed to use new error message

  mysql-test/r/view.result@1.193.3.1, 2007-01-22 18:42:48+02:00, monty@mysql.com +2 -0
    Changed to use new error message

  mysql-test/t/auto_increment.test@1.30, 2007-01-22 18:42:48+02:00, monty@mysql.com +5 -5
    Changed to use new error message

  mysql-test/t/create.test@1.88, 2007-01-22 18:42:48+02:00, monty@mysql.com +8 -8
    Changed to use new error message

  mysql-test/t/create_select_tmp.test@1.15, 2007-01-22 18:42:49+02:00, monty@mysql.com +4 -4
    Changed to use new error message

  mysql-test/t/ctype_utf8.test@1.101.1.1, 2007-01-22 18:42:49+02:00, monty@mysql.com +45 -45
    Changed to use new error message

  mysql-test/t/delayed.test@1.15.1.1, 2007-01-22 18:42:49+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/t/heap.test@1.36, 2007-01-22 18:42:49+02:00, monty@mysql.com +14 -14
    Changed to use new error message

  mysql-test/t/heap_btree.test@1.23, 2007-01-22 18:42:49+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/t/heap_hash.test@1.12, 2007-01-22 18:42:49+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/t/innodb.test@1.149.1.2, 2007-01-22 18:42:49+02:00, monty@mysql.com +14 -14
    Changed to use new error message

  mysql-test/t/insert_select.test@1.33.1.1, 2007-01-22 18:42:49+02:00, monty@mysql.com +2 -2
    Changed to use new error message

  mysql-test/t/insert_update.test@1.21, 2007-01-22 18:42:49+02:00, monty@mysql.com +2 -2
    Changed to use new error message

  mysql-test/t/join_outer.test@1.40, 2007-01-22 18:42:49+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/t/key.test@1.32, 2007-01-22 18:42:49+02:00, monty@mysql.com +6 -6
    Changed to use new error message

  mysql-test/t/merge.test@1.48, 2007-01-22 18:42:49+02:00, monty@mysql.com +2 -2
    Changed to use new error message

  mysql-test/t/myisam.test@1.71.4.1, 2007-01-22 18:42:49+02:00, monty@mysql.com +2 -2
    Changed to use new error message

  mysql-test/t/ndb_charset.test@1.13, 2007-01-22 18:42:49+02:00, monty@mysql.com +9 -9
    Changed to use new error message

  mysql-test/t/ndb_index_unique.test@1.23.1.1, 2007-01-22 18:42:49+02:00, monty@mysql.com +6 -6
    Changed to use new error message

  mysql-test/t/ndb_insert.test@1.13, 2007-01-22 18:42:49+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/t/ndb_replace.test@1.8, 2007-01-22 18:42:49+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/t/ndb_update.test@1.7.1.1, 2007-01-22 18:42:49+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/t/replace.test@1.14, 2007-01-22 18:42:49+02:00, monty@mysql.com +2 -2
    Changed to use new error message

  mysql-test/t/rpl_err_ignoredtable.test@1.28, 2007-01-22 18:42:49+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/t/rpl_row_create_table.test@1.7.1.1, 2007-01-22 18:42:49+02:00, monty@mysql.com +2 -2
    Changed to use new error message

  mysql-test/t/rpl_skip_error-slave.opt@1.4, 2007-01-22 18:42:49+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/t/rpl_sp.test@1.19.2.1, 2007-01-22 18:42:49+02:00, monty@mysql.com +2 -2
    Changed to use new error message

  mysql-test/t/show_check.test@1.73, 2007-01-22 18:42:49+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/t/sp-error.test@1.116, 2007-01-22 18:42:49+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/t/sp.test@1.204.1.3, 2007-01-22 18:42:49+02:00, monty@mysql.com +11 -11
    Changed to use new error message

  mysql-test/t/sp_trans.test@1.11, 2007-01-22 18:42:49+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/t/temp_table.test@1.17, 2007-01-22 18:42:49+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/t/type_binary.test@1.3.1.1, 2007-01-22 18:42:49+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/t/type_bit.test@1.19, 2007-01-22 18:42:49+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/t/type_bit_innodb.test@1.6, 2007-01-22 18:42:49+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/t/type_blob.test@1.34, 2007-01-22 18:42:49+02:00, monty@mysql.com +2 -2
    Changed to use new error message

  mysql-test/t/type_varchar.test@1.10.1.1, 2007-01-22 18:42:49+02:00, monty@mysql.com +1 -1
    Changed to use new error message

  mysql-test/t/view.test@1.175.2.1, 2007-01-22 18:42:49+02:00, monty@mysql.com +2 -0
    Changed to use new error message

  sql-bench/example@1.1, 2007-01-22 18:42:50+02:00, monty@mysql.com +3 -0
    Example file for how to run tests

  sql-bench/example@1.0, 2007-01-22 18:42:50+02:00, monty@mysql.com +0 -0

  sql/handler.cc@1.234.36.1, 2007-01-22 18:42:49+02:00, monty@mysql.com +3 -3
    ER_DUP_ENTRY -> ER_DUP_ENTRY_WITH_KEY_NAME

  sql/share/errmsg.txt@1.134.2.1, 2007-01-22 18:42:49+02:00, monty@mysql.com +49 -25
    Changed error message to be compatible with old error file
    Added new error message for new DUP_ENTRY syntax

  sql/sql_table.cc@1.372.5.2, 2007-01-22 18:42:49+02:00, monty@mysql.com +1 -1
    ER_DUP_ENTRY -> ER_DUP_ENTRY_WITH_KEY_NAME

ChangeSet@1.2343.10.29, 2007-01-22 17:29:11+01:00, jonas@eel.(none) +1 -0
  ndb - bug#25755
    remove accidently left debug prinouts

  storage/ndb/src/kernel/blocks/suma/Suma.cpp@1.49.1.4, 2007-01-22 17:29:07+01:00, jonas@eel.(none) +0 -2
    ndb - bug#25755
      remove accidently left debug prinouts

ChangeSet@1.2343.10.28, 2007-01-22 17:25:49+01:00, jonas@eel.(none) +2 -0
  ndb - bug#25755
    Make sure subscriber is removed from list when n_subscribers is decreased

  storage/ndb/src/kernel/blocks/suma/Suma.cpp@1.49.1.3, 2007-01-22 17:25:45+01:00, jonas@eel.(none) +41 -7
    Make sure subscriber is removed from list when n_subscribers is decreased

  storage/ndb/src/kernel/blocks/suma/Suma.hpp@1.17.1.1, 2007-01-22 17:25:45+01:00, jonas@eel.(none) +1 -1
    Make sure subscriber is removed from list when n_subscribers is decreased

ChangeSet@1.2343.10.27, 2007-01-22 17:06:27+01:00, jonas@eel.(none) +1 -0
  ndb - fix bug is NODE_VERSION_REP
    Fix assertion in corner-case where signal isnt sent to any node

  storage/ndb/src/kernel/blocks/qmgr/QmgrMain.cpp@1.42.1.6, 2007-01-22 17:06:20+01:00, jonas@eel.(none) +2 -1
    Fix corner-case where signal isnt sent to any node

ChangeSet@1.1616.2934.14, 2007-01-22 16:32:57+01:00, df@kahlann.erinye.com +1 -0
  after-merge fix

  mysql-test/mysql-test-run.pl@1.8.20.2, 2007-01-22 16:32:56+01:00, df@kahlann.erinye.com +1 -1
    after-merge fix

ChangeSet@1.1616.2936.5, 2007-01-22 16:34:58+04:00, svoj@mysql.com +1 -0
  BUG#24401 - MySQL server crashes if you try to retrieve data from
              corrupted table
  
  Accessing a table with corrupted column definition results in server
  crash.
  
  This is fixed by refusing to open such tables. Affects MyISAM only.
  No test case, since it requires crashed table.

  myisam/mi_open.c@1.80.2.10, 2007-01-22 16:34:57+04:00, svoj@mysql.com +7 -0
    Refuse to open MyISAM table with summary columns length bigger than
    length of the record.

ChangeSet@1.1810.2456.36, 2007-01-22 15:14:38+03:00, evgen@moonbone.local +3 -0
  Bug#25123: ON DUPLICATE KEY clause allows fields not from the insert table.
  
  When inserting into a join-based view the update fields from the ON DUPLICATE
  KEY UPDATE wasn't checked to be from the table being inserted into and were
  silently ignored.
  
  The new check_view_single_update() function is added to check that
  insert/update fields are being from the same single table of the view.

  mysql-test/r/insert.result@1.22.1.5, 2007-01-22 15:13:57+03:00, evgen@moonbone.local +21 -0
    Added a test case for bug#25123: ON DUPLICATE KEY clause allows fields not from the insert table.

  mysql-test/t/insert.test@1.22.1.3, 2007-01-22 15:14:18+03:00, evgen@moonbone.local +18 -0
    Added a test case for bug#25123: ON DUPLICATE KEY clause allows fields not from the insert table.

  sql/sql_insert.cc@1.146.42.1, 2007-01-22 15:13:24+03:00, evgen@moonbone.local +73 -20
    Bug#25123: ON DUPLICATE KEY clause allows fields not from the insert table.
    The new check_view_single_update() function is added to check that
    insert/update fields are being from the same single table of the view.

ChangeSet@1.2382.3.1, 2007-01-22 12:51:21+02:00, gkodinov@macbook.gmz +3 -0
  BUG#16590: Optimized does not do right "const" table pre-read
   st_table::const_key_parts member is used in determining if
   certain key has a prefix that is compared to constant(s) in
   the query predicates.
   If there's such prefix the index can be used to get the data
   from the remaining suffix columns in sorted order.
   However if a field is compared to another field from a "const"
   table the const_key_parts is not amended.
   This makes the optimizer unable to detect that the key can be 
   used for sorting and adds an extra filesort.
   Fixed by updating const_key_parts after reading in the "const"
   table.

  mysql-test/r/order_by.result@1.59.1.1, 2007-01-22 12:51:13+02:00, gkodinov@macbook.gmz +9 -0
    BUG#16590: Optimized does not do right "const" table pre-read
     - test case

  mysql-test/t/order_by.test@1.42.1.1, 2007-01-22 12:51:14+02:00, gkodinov@macbook.gmz +13 -0
    BUG#16590: Optimized does not do right "const" table pre-read
     - test case

  sql/sql_select.cc@1.477.1.1, 2007-01-22 12:51:14+02:00, gkodinov@macbook.gmz +16 -0
    BUG#16590: Optimized does not do right "const" table pre-read
     - fill up the const_key_parts structure

ChangeSet@1.2393.1.1, 2007-01-21 11:41:00-08:00, brian@zim.(none) +4 -0
  Just adding support for a "minor" version number. 

  storage/archive/archive_reader.c@1.5, 2007-01-21 11:40:56-08:00, brian@zim.(none) +2 -1
    Print minor information version. 

  storage/archive/archive_test.c@1.9, 2007-01-21 11:40:56-08:00, brian@zim.(none) +3 -3
    Fixed test

  storage/archive/azio.c@1.14, 2007-01-21 11:40:56-08:00, brian@zim.(none) +5 -1
    Added support for "minor" version.

  storage/archive/azlib.h@1.9, 2007-01-21 11:40:56-08:00, brian@zim.(none) +15 -13
    Added information for minor information. 

ChangeSet@1.2391.1.1, 2007-01-20 17:19:54-08:00, brian@zim.(none) +5 -0
  1) New dirty state for files (need this for longterm fast recovery)
  2) We now store shortest and longest row information.
  3) archive_reader can now check and backup files (even if they are hot)
  4) We now record longest and shortest row information for stats. 

  storage/archive/archive_reader.c@1.4, 2007-01-20 17:19:48-08:00, brian@zim.(none) +161 -11
    Added options for:
    1) Online backup for tables
    2) Check table option. 

  storage/archive/archive_test.c@1.8, 2007-01-20 17:19:48-08:00, brian@zim.(none) +47 -16
    Additional test, format is now the same as an actual table. 

  storage/archive/azio.c@1.13, 2007-01-20 17:19:48-08:00, brian@zim.(none) +33 -15
    Fixed issue closing files multiple times.
    Added option for recording longest and shortest rows. 
    Additional "dirty" state added. 

  storage/archive/azlib.h@1.8, 2007-01-20 17:19:48-08:00, brian@zim.(none) +15 -1
    Added additional space for longest and shortest row information.

  storage/archive/ha_archive.cc@1.122, 2007-01-20 17:19:48-08:00, brian@zim.(none) +1 -4
    Cleaned up warming and removed unneeded close. 

ChangeSet@1.2343.33.62, 2007-01-20 18:30:49-05:00, jas@rowvwade. +2 -0
  Change handler conditional to blow if server sees more than one
  engine with two phase commit.  Alose temporarily turn off online add index.

  sql/handler.cc@1.247, 2007-01-20 18:30:42-05:00, jas@rowvwade. +2 -1
    Avoid horrible death if the server sees two engines with two phase commit.

  storage/falcon/ha_falcon.cpp@1.105, 2007-01-20 18:30:43-05:00, jas@rowvwade. +6 -3
    Temporarily turn off online add index.

ChangeSet@1.2343.33.61, 2007-01-20 17:50:31-05:00, jas@rowvwade. +18 -0
  Added support for XA transactions (not complete yet, unfortunately).  Also
  get prototype online add index working for testing.

  storage/falcon/Database.cpp@1.43, 2007-01-20 17:50:15-05:00, jas@rowvwade. +2 -0
    Streamlined transaction prepare.

  storage/falcon/Database.h@1.18, 2007-01-20 17:50:15-05:00, jas@rowvwade. +1 -1
    Streamlined transaction prepare.

  storage/falcon/Dbb.cpp@1.46, 2007-01-20 17:50:16-05:00, jas@rowvwade. +2 -10
    Added XID information to prepare and serial log transactions to support XA transactions.

  storage/falcon/Dbb.h@1.24, 2007-01-20 17:50:16-05:00, jas@rowvwade. +1 -1
    Added XID information to prepare and serial log transactions to support XA transactions.

  storage/falcon/SRLDropTable.cpp@1.15, 2007-01-20 17:50:16-05:00, jas@rowvwade. +1 -5
    Eliminated obsolete SRL versions

  storage/falcon/SRLIndexPage.cpp@1.10, 2007-01-20 17:50:17-05:00, jas@rowvwade. +2 -11
    Eliminated obsolete SRL version.

  storage/falcon/SRLInversionPage.cpp@1.5, 2007-01-20 17:50:17-05:00, jas@rowvwade. +2 -11
    Eliminated obsolete SRL version.

  storage/falcon/SRLPrepare.cpp@1.10, 2007-01-20 17:50:18-05:00, jas@rowvwade. +15 -1
    Phased in logging of XID information on transaction prepare.

  storage/falcon/SRLPrepare.h@1.7, 2007-01-20 17:50:18-05:00, jas@rowvwade. +4 -1
    Phased in logging of XID information on transaction prepare.

  storage/falcon/SRLVersion.h@1.9, 2007-01-20 17:50:18-05:00, jas@rowvwade. +2 -1
    Phased in logging of XID information on transaction prepare.

  storage/falcon/SerialLogTransaction.cpp@1.13, 2007-01-20 17:50:19-05:00, jas@rowvwade. +15 -0
    Phased in logging of XID information on transaction prepare.

  storage/falcon/SerialLogTransaction.h@1.7, 2007-01-20 17:50:19-05:00, jas@rowvwade. +3 -0
    Phased in logging of XID information on transaction prepare.

  storage/falcon/StorageHandler.cpp@1.9, 2007-01-20 17:50:19-05:00, jas@rowvwade. +10 -0
    Added XID information to prepare and serial log transactions to support XA transactions.

  storage/falcon/StorageHandler.h@1.4, 2007-01-20 17:50:20-05:00, jas@rowvwade. +2 -0
    Added XID information to prepare and serial log transactions to support XA transactions.

  storage/falcon/Transaction.cpp@1.49, 2007-01-20 17:50:20-05:00, jas@rowvwade. +11 -3
    Added XID information to prepare and serial log transactions to support XA transactions.

  storage/falcon/Transaction.h@1.24, 2007-01-20 17:50:20-05:00, jas@rowvwade. +3 -3
    Added XID information to prepare and serial log transactions to support XA transactions.

  storage/falcon/ha_falcon.cpp@1.104, 2007-01-20 17:50:21-05:00, jas@rowvwade. +35 -2
    Added support for XA transactions (not complete yet, unfortunately).  Also
    get prototype online add index working for testing.

  storage/falcon/ha_falcon.h@1.20, 2007-01-20 17:50:21-05:00, jas@rowvwade. +5 -0
    Added support for XA transactions (not complete yet, unfortunately).  Also
    get prototype online add index working for testing.

ChangeSet@1.2390.7.7, 2007-01-20 14:08:53+03:00, dlenev@mockturtle.local +2 -0
  Fixed test case for bug #25044 "ALTER TABLE ... ENABLE KEYS acquires
  global 'opening tables' lock." after merging it into 5.1 tree.

  mysql-test/r/alter_table-big.result@1.2, 2007-01-20 14:08:50+03:00, dlenev@mockturtle.local +1 -1
    Fixed "show binlog events" usage as 5.1 and 5.0 sizes of binlog
    events differ.

  mysql-test/t/alter_table-big.test@1.2, 2007-01-20 14:08:50+03:00, dlenev@mockturtle.local +2 -2
    This test needs statement based binlogging.
    Also fixed "show binlog events" usage as 5.1 and 5.0 sizes
    of binlog events differ.

ChangeSet@1.2343.10.26, 2007-01-20 03:01:37+01:00, jonas@perch.ndb.mysql.com +2 -0
  ndb - Fix bug when sending NODE_VERSION_REP

  storage/ndb/src/kernel/blocks/qmgr/Qmgr.hpp@1.14.1.3, 2007-01-20 03:01:35+01:00, jonas@perch.ndb.mysql.com +6 -0
    Fix bug when sending NODE_VERSION_REP

  storage/ndb/src/kernel/blocks/qmgr/QmgrMain.cpp@1.42.1.5, 2007-01-20 03:01:35+01:00, jonas@perch.ndb.mysql.com +38 -24
    Fix bug when sending NODE_VERSION_REP

ChangeSet@1.2343.33.60, 2007-01-19 17:57:53-05:00, jas@rowvwade. +5 -0
  Rework index "new level" code to keep the root constant to the index root page
  could be cached in the Index object, obviating the need to look it up for for
  index operation.  The Optimization is current invoked only during the index
  scan operation, but extending it to other operations once it becomes stable
  will be very easy.

  storage/falcon/Index.cpp@1.29, 2007-01-19 17:57:45-05:00, jas@rowvwade. +18 -9
    Rework index "new level" code to keep the root constant to the index root page
    could be cached in the Index object, obviating the need to look it up for for
    index operation.  The Optimization is current invoked only during the index
    scan operation, but extending it to other operations once it becomes stable
    will be very easy.

  storage/falcon/Index.h@1.13, 2007-01-19 17:57:45-05:00, jas@rowvwade. +5 -2
    Rework index "new level" code to keep the root constant to the index root page
    could be cached in the Index object, obviating the need to look it up for for
    index operation.  The Optimization is current invoked only during the index
    scan operation, but extending it to other operations once it becomes stable
    will be very easy.

  storage/falcon/Index2RootPage.cpp@1.4, 2007-01-19 17:57:46-05:00, jas@rowvwade. +0 -2
    Eliminated dead code.

  storage/falcon/IndexRootPage.cpp@1.49, 2007-01-19 17:57:46-05:00, jas@rowvwade. +62 -18
    Eliminated dead code.

  storage/falcon/IndexRootPage.h@1.15, 2007-01-19 17:57:46-05:00, jas@rowvwade. +4 -3
    Rework index "new level" code to keep the root constant to the index root page
    could be cached in the Index object, obviating the need to look it up for for
    index operation.  The Optimization is current invoked only during the index
    scan operation, but extending it to other operations once it becomes stable
    will be very easy.

ChangeSet@1.2343.33.59, 2007-01-19 16:30:51-05:00, jas@rowvwade. +1 -0
  Mark records as inactive when deleting.

  storage/falcon/Table.cpp@1.60, 2007-01-19 16:30:45-05:00, jas@rowvwade. +10 -2
    Mark records as inactive when deleting.

ChangeSet@1.1810.2513.1, 2007-01-19 23:15:59+03:00, dlenev@mockturtle.local +5 -0
  Fix for bug #25044 "ALTER TABLE ... ENABLE KEYS acquires global 'opening
  tables' lock."
  
  Execution of ALTER TABLE ... ENABLE KEYS on a table (which can take rather
  long time) prevented concurrent execution of all statements using tables.
  
  The problem was caused by the fact that we were holding LOCK_open mutex
  during whole duration of this statement and particularly during call
  to handler::enable_indexes(). This behavior was introduced as part of the
  fix for bug 14262 "SP: DROP PROCEDURE|VIEW (maybe more) write to binlog
  too late (race cond)"
  
  The patch simply restores old behavior. Note that we can safely do this as
  this operation takes exclusive lock (similar to name-lock) which blocks both
  DML and DDL on the table being altered.
  
  It also introduces mysql-test/include/wait_show_pattern.inc helper script
  which is used to make test-case for this bug robust enough.

  mysql-test/include/wait_show_pattern.inc@1.1, 2007-01-19 23:15:58+03:00, dlenev@mockturtle.local +51 -0
    New BitKeeper file ``mysql-test/include/wait_show_pattern.inc''

  mysql-test/include/wait_show_pattern.inc@1.0, 2007-01-19 23:15:58+03:00, dlenev@mockturtle.local +0 -0

  mysql-test/include/wait_slave_status.inc@1.2, 2007-01-19 23:15:58+03:00, dlenev@mockturtle.local +7 -36
    Now wait_slave_status.inc reuses more generic wait_output_matches.inc script.

  mysql-test/r/alter_table-big.result@1.1, 2007-01-19 23:15:58+03:00, dlenev@mockturtle.local +18 -0
    New BitKeeper file ``mysql-test/r/alter_table-big.result''

  mysql-test/r/alter_table-big.result@1.0, 2007-01-19 23:15:58+03:00, dlenev@mockturtle.local +0 -0

  mysql-test/t/alter_table-big.test@1.1, 2007-01-19 23:15:58+03:00, dlenev@mockturtle.local +62 -0
    New BitKeeper file ``mysql-test/t/alter_table-big.test''

  mysql-test/t/alter_table-big.test@1.0, 2007-01-19 23:15:58+03:00, dlenev@mockturtle.local +0 -0

  sql/sql_table.cc@1.239.43.1, 2007-01-19 23:15:58+03:00, dlenev@mockturtle.local +23 -2
    mysql_alter_table():
      Changed ALTER TABLE ... ENABLE/DISABLE KEYS not to hold LOCK_open mutex
      during call to handler::enable_indexes() as the latter can take rather
      long time and therefore such ALTER would block execution of all other
      statements that use tables. We can safely do this as this operation takes 
      exclusive lock (similar to name-lock) on the table which is altered.

ChangeSet@1.2343.33.58, 2007-01-19 15:00:05-05:00, jas@rowvwade. +8 -0
  Tighten thread-safe careful-write record tree code.  Also streamlined
  code path to IndexRootPage::indexScan.

  storage/falcon/Database.cpp@1.42, 2007-01-19 14:59:55-05:00, jas@rowvwade. +2 -0
    Streamline index scan path.

  storage/falcon/Database.h@1.17, 2007-01-19 14:59:56-05:00, jas@rowvwade. +1 -1
    Streamline index scan path.

  storage/falcon/Dbb.cpp@1.45, 2007-01-19 14:59:56-05:00, jas@rowvwade. +2 -0
    Streamline index scan path.

  storage/falcon/Dbb.h@1.23, 2007-01-19 14:59:57-05:00, jas@rowvwade. +1 -1
    Streamline index scan path.

  storage/falcon/Index.cpp@1.28, 2007-01-19 14:59:57-05:00, jas@rowvwade. +17 -1
    Streamline index scan path.

  storage/falcon/RecordLeaf.cpp@1.16, 2007-01-19 14:59:57-05:00, jas@rowvwade. +2 -1
    Tighten thread-safe careful-write record tree code.

  storage/falcon/RepositoryVolume.cpp@1.6, 2007-01-19 14:59:58-05:00, jas@rowvwade. +6 -6
    Tighten thread-safe careful-write record tree code.

  storage/falcon/Table.cpp@1.59, 2007-01-19 14:59:58-05:00, jas@rowvwade. +74 -44
    Tighten thread-safe careful-write record tree code.

ChangeSet@1.1810.2490.4, 2007-01-19 13:09:48-05:00, iggy@recycle.(none) +1 -0
  Bug#22807 mysql_upgrade fails when called with a basedir-path containing spaces
  - Corrected compiler warnings and performance problems with new 
  dynstr_append_os_quoted function.

  mysys/string.c@1.8.2.2, 2007-01-19 13:09:46-05:00, iggy@recycle.(none) +13 -15
    Bug#22807 mysql_upgrade fails when called with a basedir-path containing spaces
    - Fix compiler warnings.
    - Used dynstr_append_mem where string length is known.

ChangeSet@1.2343.70.3, 2007-01-19 12:19:20-05:00, jas@rowvwade. +10 -0
  Fixed record tree to be completely thread safe careful write.

  storage/falcon/RecordGroup.cpp@1.6, 2007-01-19 12:19:10-05:00, jas@rowvwade. +23 -26
    Fixed record tree to be completely thread safe careful write.

  storage/falcon/RecordGroup.h@1.5, 2007-01-19 12:19:10-05:00, jas@rowvwade. +1 -1
    Fixed record tree to be completely thread safe careful write.

  storage/falcon/RecordLeaf.cpp@1.15, 2007-01-19 12:19:11-05:00, jas@rowvwade. +15 -18
    Fixed record tree to be completely thread safe careful write.

  storage/falcon/RecordLeaf.h@1.7, 2007-01-19 12:19:11-05:00, jas@rowvwade. +1 -5
    Fixed record tree to be completely thread safe careful write.

  storage/falcon/RecordSection.h@1.5, 2007-01-19 12:19:11-05:00, jas@rowvwade. +1 -1
    Fixed record tree to be completely thread safe careful write.

  storage/falcon/SRLUpdateRecords.cpp@1.17, 2007-01-19 12:19:12-05:00, jas@rowvwade. +1 -0
    Added insertion for bad record numbers.

  storage/falcon/SyncObject.cpp@1.18, 2007-01-19 12:19:12-05:00, jas@rowvwade. +1 -1
    Delete blank line.

  storage/falcon/Table.cpp@1.58, 2007-01-19 12:19:13-05:00, jas@rowvwade. +16 -51
    Fixed record tree to be completely thread safe careful write.

  storage/falcon/Table.h@1.13, 2007-01-19 12:19:13-05:00, jas@rowvwade. +1 -1
    Fixed record tree to be completely thread safe careful write.

  storage/falcon/Transaction.cpp@1.48, 2007-01-19 12:19:13-05:00, jas@rowvwade. +1 -0
    Added assertion for valid record number

ChangeSet@1.2390.1.30, 2007-01-19 11:30:40-05:00, cmiller@zippy.cornsilk.net +1 -0
  Add missing version delimiter.

  mysql-test/t/ps.test@1.103, 2007-01-19 11:30:38-05:00, cmiller@zippy.cornsilk.net +2 -0
    Add missing version delimiter.

ChangeSet@1.2343.10.25, 2007-01-19 17:01:52+01:00, jonas@perch.ndb.mysql.com +2 -0
  ndb - bug#19645
    fix some more sp100 hang cases

  storage/ndb/src/kernel/blocks/qmgr/QmgrMain.cpp@1.42.1.4, 2007-01-19 17:01:49+01:00, jonas@perch.ndb.mysql.com +5 -0
    let suma know of API_FAILREQ even if not connected, to handle startme/handover 
      problem

  storage/ndb/src/kernel/blocks/suma/Suma.cpp@1.49.1.2, 2007-01-19 17:01:49+01:00, jonas@perch.ndb.mysql.com +29 -0
    some error inserts
    + resend API_FAILREQ during handover

ChangeSet@1.1810.2512.1, 2007-01-19 18:34:09+03:00, evgen@moonbone.local +6 -0
  Bug#25172: Not checked buffer size leads to a server crash.
  
  After fix for bug#21798 JOIN stores the pointer to the buffer for sorting
  fields. It is used while sorting for grouping and for ordering. If ORDER BY
  clause has more elements then the GROUP BY clause then a memory overrun occurs.
  
  Now the length of the ORDER BY list is always passed to the 
  make_unireg_sortorder() function and it allocates buffer big enough to be
  used for bigger list.

  mysql-test/r/select.result@1.121.9.1, 2007-01-19 18:33:41+03:00, evgen@moonbone.local +8 -0
    Added a test case for bug#25172: Not checked buffer size leads to a server crash.

  mysql-test/t/select.test@1.102.7.1, 2007-01-19 18:33:44+03:00, evgen@moonbone.local +11 -0
    Added a test case for bug#25172: Not checked buffer size leads to a server crash.

  sql/sql_delete.cc@1.144.1.46, 2007-01-19 18:33:25+03:00, evgen@moonbone.local +1 -1
    Bug#25172: Not checked buffer size leads to a server crash.
    Length parameter is initialized to 0 for the make_unireg_sortorder() function.

  sql/sql_select.cc@1.312.1.169, 2007-01-19 18:33:29+03:00, evgen@moonbone.local +8 -4
    Bug#25172: Not checked buffer size leads to a server crash.
    Now the length of the ORDER BY list is always passed to the 
    make_unireg_sortorder() function and it allocates buffer big enough to be
    used for bigger list.

  sql/sql_table.cc@1.239.42.1, 2007-01-19 18:33:37+03:00, evgen@moonbone.local +1 -1
    Bug#25172: Not checked buffer size leads to a server crash.
    Length parameter is initialized to 0 for the make_unireg_sortorder() function.

  sql/sql_update.cc@1.154.26.3, 2007-01-19 18:33:40+03:00, evgen@moonbone.local +1 -1
    Bug#25172: Not checked buffer size leads to a server crash.
    Length parameter is initialized to 0 for the make_unireg_sortorder() function.

ChangeSet@1.2390.8.1, 2007-01-19 18:33:48+03:00, kroki@moonlight.home +4 -0
  BUG#25211: events_bugs.test fails on sapsrv1
  
  The problem was that the events_bugs test could randomly fail due to
  races in the test case.
  
  The solution is to replace fixed sleeps with reliable polling of a
  certain state to settle.  For that, a new auxiliary script
  include/wait_condition.inc is used, that allows waiting for a given
  query to return true.

  mysql-test/include/wait_condition.inc@1.1, 2007-01-19 18:33:45+03:00, kroki@moonlight.home +39 -0
    New BitKeeper file ``mysql-test/include/wait_condition.inc''

  mysql-test/include/wait_condition.inc@1.0, 2007-01-19 18:33:45+03:00, kroki@moonlight.home +0 -0

  mysql-test/include/wait_until_rows_count.inc@1.2, 2007-01-19 18:33:45+03:00, kroki@moonlight.home +9 -41
    Script is rewritten using new include/wait_condition.inc.

  mysql-test/r/events_bugs.result@1.24, 2007-01-19 18:33:45+03:00, kroki@moonlight.home +72 -15
    Update result: add missing quotation mark.

  mysql-test/t/events_bugs.test@1.23, 2007-01-19 18:33:45+03:00, kroki@moonlight.home +84 -13
    Replace --sleep with the reliable waiting for a certain state.

ChangeSet@1.1810.2371.58, 2007-01-19 10:33:07-05:00, cmiller@zippy.cornsilk.net +1 -0
  Rearrange disable_warnings to enclose the warning emitters properly.

  mysql-test/t/ps.test@1.56.1.31, 2007-01-19 10:33:05-05:00, cmiller@zippy.cornsilk.net +2 -2
    Rearrange disable_warnings to enclose the warning emitters properly.

ChangeSet@1.1810.2511.1, 2007-01-19 08:56:06-05:00, cmiller@zippy.cornsilk.net +1 -0
  The rpl tree added a test case, and another source added a warning,
  and combined, they add a platform-specific warning.  The warnings 
  are not the goal of the test, in any case.

  mysql-test/t/ps.test@1.56.1.30, 2007-01-19 08:56:03-05:00, cmiller@zippy.cornsilk.net +2 -0
    Quash platform-specific warnings.

ChangeSet@1.1810.2504.2, 2007-01-19 13:06:22+01:00, istruewing@chilla.local +1 -0
  After merge fix

  mysql-test/r/myisam.result@1.71.11.2, 2007-01-19 13:06:19+01:00, istruewing@chilla.local +1 -1
    After merge fix

ChangeSet@1.2372.6.5, 2007-01-19 12:18:18+01:00, msvensson@pilot.mysql.com +1 -0
  Update result file to 5.1 format

  mysql-test/r/symlink.result@1.28.1.2, 2007-01-19 12:18:17+01:00, msvensson@pilot.mysql.com +2 -2
    Update result file to 5.1 format

ChangeSet@1.2372.23.1, 2007-01-19 14:14:11+03:00, kaa@polly.local +1 -0
  Fix for the bug #23814 "mysqlimport crashes"
  
  mysqlimport.c declared the opt_use_threads variable as my_bool, but the corresponding option was defined as GET_UINT. The problem only occured on architectures with strict alignment rules.

  client/mysqlimport.c@1.80, 2007-01-19 14:14:09+03:00, kaa@polly.local +2 -2
    Changed the opt_use_threads variable type to uint.

ChangeSet@1.1810.2424.16, 2007-01-19 12:03:03+01:00, msvensson@pilot.mysql.com +2 -0
  Use $MYSQLTESTVARDIR

  mysql-test/r/symlink.result@1.21.5.2, 2007-01-19 12:03:02+01:00, msvensson@pilot.mysql.com +2 -2
    Use $MYSQLTESTVARDIR

  mysql-test/t/symlink.test@1.17.2.2, 2007-01-19 12:03:02+01:00, msvensson@pilot.mysql.com +4 -4
    Use $MYSQLTESTVARDIR

ChangeSet@1.1810.2489.13, 2007-01-19 11:58:29+01:00, joerg@trift2. +1 -0
  cmd-line-utils/readline/undo.c  :    Replace an "uint" cast by the expanded "unsigned int" (compile problem on QNX).

  cmd-line-utils/readline/undo.c@1.10.2.1, 2007-01-19 11:58:26+01:00, joerg@trift2. +1 -1
    Replace an "uint" cast by the expanded "unsigned int",
    because there are platforms (QNX) on which "uint" is not defined in the "readline" library
    (and so building it failed, version 5.0.34).

ChangeSet@1.2372.18.3, 2007-01-19 11:35:00+01:00, tomas@poseidon.mysql.com +1 -0
  Bug#25387 ndb: dbug assert in reference counting for event operations
  - on blob part execute failure, must leave in state executin, and await dropEventOperation

  storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp@1.76, 2007-01-19 11:34:52+01:00, tomas@poseidon.mysql.com +6 -1
    Bug#25387 ndb: dbug assert in reference counting for event operations
    - on blob part execute failure, must leave in state executin, and await dropEventOperation

ChangeSet@1.1810.2510.1, 2007-01-19 11:07:20+01:00, msvensson@pilot.mysql.com +1 -0
  Bug #15518 Reusing a stmt that has failed during prepare does not clear error
   - Additional patch removing check for mysql_errno on already closed
     mysql1

  tests/mysql_client_test.c@1.167.1.54, 2007-01-19 11:07:19+01:00, msvensson@pilot.mysql.com +0 -1
    No need to check mysql_errno of mysql1 which has already been closed.

ChangeSet@1.1810.2507.2, 2007-01-19 00:17:28-08:00, igor@olga.mysql.com +4 -0
  Fixed bug #25219: crash for a query that contains an EXIST subquery with
  UNION over correlated and uncorrelated SELECTS.
  In such subqueries each uncorrelated SELECT should be considered as
  uncacheable. Otherwise join_free is called for it and in many cases
  it causes some problems.

  mysql-test/r/subselect.result@1.134.13.1, 2007-01-19 00:17:26-08:00, igor@olga.mysql.com +33 -0
    Added a test case for bug #25219.

  mysql-test/t/subselect.test@1.129.1.9, 2007-01-19 00:17:26-08:00, igor@olga.mysql.com +34 -0
    Added a test case for bug #25219.

  sql/mysql_priv.h@1.290.81.4, 2007-01-19 00:17:26-08:00, igor@olga.mysql.com +4 -1
    Fixed bug #25219: crash for a query that contains an EXIST subquery with
    UNION over correlated and uncorrelated SELECTS.
    In such subqueries each uncorrelated SELECT should be considered as
    uncacheable. Otherwise join_free is called for it and in many cases
    it causes some problems. 
    Added a new flag UNCACHEABLE_UNITED for such SELECTs.

  sql/sql_lex.cc@1.142.31.5, 2007-01-19 00:17:26-08:00, igor@olga.mysql.com +10 -2
    Fixed bug #25219: crash for a query that contains an EXIST subquery with
    UNION over correlated and uncorrelated SELECTS.
    In such subqueries each uncorrelated SELECT should be considered as
    uncacheable. Otherwise join_free is called for it and in many cases
    it causes some problems.
    Added a new flag UNCACHEABLE_UNITED for such SELECTs.

ChangeSet@1.2390.1.24, 2007-01-19 12:15:44+04:00, ramil@mysql.com +1 -0
  after merge fix.

  mysql-test/r/select.result@1.142, 2007-01-19 12:15:34+04:00, ramil@mysql.com +5 -5
    after merge fix.

ChangeSet@1.2390.7.4, 2007-01-18 21:30:25-07:00, malff@weblab.(none) +1 -0
  Manual merge

  mysql-test/r/alter_table.result@1.73, 2007-01-18 21:30:21-07:00, malff@weblab.(none) +1 -1
    Manual merge

ChangeSet@1.1810.2124.40, 2007-01-19 04:36:33+01:00, jonas@perch.ndb.mysql.com +1 -0
  ndb - bug#25711
    fix cpu peak in big clusters during unpack of config

  ndb/src/common/util/ConfigValues.cpp@1.8.3.1, 2007-01-19 04:36:32+01:00, jonas@perch.ndb.mysql.com +121 -85
    use bin-search instead of hash (as keys collide too much)

ChangeSet@1.1810.2503.3, 2007-01-18 18:37:52-07:00, malff@weblab.(none) +3 -0
  Manual merge

  mysql-test/r/alter_table.result@1.49.1.13, 2007-01-18 18:37:49-07:00, malff@weblab.(none) +113 -0
    Manual merge

  mysql-test/t/alter_table.test@1.36.1.13, 2007-01-18 18:37:49-07:00, malff@weblab.(none) +5 -5
    Manual merge

  sql/sql_yacc.yy@1.371.1.132, 2007-01-18 18:37:49-07:00, malff@weblab.(none) +24 -1
    Manual merge

ChangeSet@1.1616.2940.1, 2007-01-18 16:53:49-07:00, malff@weblab.(none) +3 -0
  Bug#24562 (ALTER TABLE ... ORDER BY ... with complex expression asserts)
  WL#3681 (ALTER TABLE ORDER BY)
  
  Before this fix, the ALTER TABLE statement implemented an ORDER BY option
  with the following characteristics :
  
  1) The order by clause accepts a list of criteria, with optional ASC or
  DESC keywords
  
  2) Each criteria can be a general expression, involving operators,
  native functions, stored functions, user defined functions, subselects ...
  
  With this fix :
  
  1) has been left unchanged, since it's a de-facto existing feature,
  that was already present in the code base and partially covered in the test
  suite. Code coverage for ASC and DESC was missing and has been improved.
  
  2) has been changed to limit the kind of criteria that are permissible:
  now only a column name is valid.

  mysql-test/r/alter_table.result@1.40.1.13, 2007-01-18 16:53:47-07:00, malff@weblab.(none) +113 -0
    Prevent ALTER TABLE ORDER BY clauses to use general expressions.

  mysql-test/t/alter_table.test@1.29.1.14, 2007-01-18 16:53:47-07:00, malff@weblab.(none) +66 -0
    Prevent ALTER TABLE ORDER BY clauses to use general expressions.

  sql/sql_yacc.yy@1.203.1.200, 2007-01-18 16:53:47-07:00, malff@weblab.(none) +24 -1
    Prevent ALTER TABLE ORDER BY clauses to use general expressions.

ChangeSet@1.2390.1.22, 2007-01-18 18:02:58-05:00, cmiller@zippy.cornsilk.net +1 -0
  Fix merge problem.

  sql/sql_parse.cc@1.619, 2007-01-18 18:02:56-05:00, cmiller@zippy.cornsilk.net +2 -2
    Fix merge problem.

ChangeSet@1.1616.2934.12, 2007-01-18 13:26:26-07:00, tsmith@siva.hindu.god +2 -0
  ndb_types.test: sleep a bit longer, to ensure that timestamp > @now

  mysql-test/r/ndb_types.result@1.2.1.1, 2007-01-18 13:26:25-07:00, tsmith@siva.hindu.god +1 -0
    update results

  mysql-test/t/ndb_types.test@1.2.1.3, 2007-01-18 13:26:25-07:00, tsmith@siva.hindu.god +5 -5
    Sleep a bit longer, to ensure that timestamp changes between:
    set @now = now();
    and:
    insert into/update t1
    
    Test case failed (select timestamp>@now from t1 ==> 0, should be 1), and passed when run again.  This should(?) avoid that fluke.
    
    Clean up test file a bit while I'm here.

ChangeSet@1.1810.2371.53, 2007-01-18 13:15:16-07:00, tsmith@siva.hindu.god +1 -0
  Makefile.am: Fix previous bad merge.  Re-enable the test-ps target.

  Makefile.am@1.68.1.27, 2007-01-18 13:15:14-07:00, tsmith@siva.hindu.god +1 -0
    Fix previous bad merge.  Re-enable the test-ps target.

ChangeSet@1.1810.2490.3, 2007-01-18 11:38:05-05:00, iggy@recycle.(none) +3 -0
  Bug#22807 mysql_upgrade fails when called with a basedir-path containing spaces
  - Create space safe strings for system() calls in mysql_upgrade.exe

  client/mysql_upgrade.c@1.6.5.1, 2007-01-18 11:38:04-05:00, iggy@recycle.(none) +59 -22
    Bug#22807 mysql_upgrade fails when called with a basedir-path containing spaces
    - Make use of new dynstr_append_os_quoted function to produce a string safe for
    passing to the system() function.                                              
    - Refactor possible source of assertion.

  include/my_sys.h@1.178.9.1, 2007-01-18 11:38:04-05:00, iggy@recycle.(none) +2 -0
    Bug#22807 mysql_upgrade fails when called with a basedir-path containing spaces
    - Declare dynstr_append_os_quoted function.

  mysys/string.c@1.8.2.1, 2007-01-18 11:38:04-05:00, iggy@recycle.(none) +52 -0
    Bug#22807 mysql_upgrade fails when called with a basedir-path containing spaces
    - Define dynstr_append_os_quoted function.  This function will concatenate any 
    number of strings, escapes any OS quote in the result then surround the whole  
    affair in another set of quotes which is finally appended to specified         
    DYNAMIC_STRING.

ChangeSet@1.1346.1.859, 2007-01-18 16:41:32+01:00, joerg@mysql.com +1 -0
  Raise version number after cloning 4.0.29

  configure.in@1.191.1.149, 2007-01-18 16:41:18+01:00, joerg@mysql.com +1 -1
    Raise version number after cloning 4.0.29

ChangeSet@1.2372.21.1, 2007-01-18 10:34:50-05:00, iggy@alf. +1 -0
  Bug#25408 5.1 Can't compile on Windows
  - DBUG_ENTER must be called before assignment on Windows and Netware.

  storage/myisam/mi_packrec.c@1.42.3.1, 2007-01-18 10:34:45-05:00, iggy@alf. +1 -1
    Bug#25408 5.1 Can't compile on Windows
    - Call DBUG_ENTER before variable assignment.

ChangeSet@1.1810.2506.1, 2007-01-18 17:33:38+02:00, gkodinov@macbook.gmz +3 -0
  Bug #25382: Passing NULL to an UDF called from stored procedures 
   crashes server
   Check for null value is reliable only after calling some of the 
   val_xxx() methods. If the val_xxx() method is not called
   the null_value flag will be set only for certain types of NULL
   values (like SQL constant NULLs for example).
   This caused a crash while trying to dereference a NULL pointer
   that is returned by val_str() for NULL values.
   Fixed by swapping the order of val_xxx() and null_value check.

  mysql-test/r/udf.result@1.3.1.8, 2007-01-18 17:33:31+02:00, gkodinov@macbook.gmz +34 -0
    Bug #25382: Passing NULL to an UDF called from stored procedures 
     crashes server
     - test case

  mysql-test/t/udf.test@1.8.1.4, 2007-01-18 17:33:32+02:00, gkodinov@macbook.gmz +47 -0
    Bug #25382: Passing NULL to an UDF called from stored procedures 
     crashes server
     - test case

  sql/item_func.cc@1.270.37.1, 2007-01-18 17:33:33+02:00, gkodinov@macbook.gmz +6 -3
    Bug #25382: Passing NULL to an UDF called from stored procedures 
     crashes server
     - reliably check null_value

ChangeSet@1.2372.20.1, 2007-01-18 13:21:20+01:00, mskold@mysql.com +1 -0
  Crash in rpl_ndb_dd_advance: check for null transaction pointer

  sql/ha_ndbcluster.cc@1.393, 2007-01-18 13:20:30+01:00, mskold@mysql.com +1 -1
    Crash in rpl_ndb_dd_advance: check for null transaction pointer

ChangeSet@1.1810.2501.3, 2007-01-18 15:28:45+04:00, ramil@mysql.com +4 -0
  after merge fix.

  mysql-test/r/range.result@1.44.2.1, 2007-01-18 15:28:31+04:00, ramil@mysql.com +2 -2
    after merge fix.

  mysql-test/r/type_bit.result@1.14.2.1, 2007-01-18 15:28:32+04:00, ramil@mysql.com +1 -1
    after merge fix.

  mysql-test/r/type_bit_innodb.result@1.3.1.3, 2007-01-18 15:28:32+04:00, ramil@mysql.com +1 -1
    after merge fix.

  sql/field.cc@1.256.40.1, 2007-01-18 15:28:32+04:00, ramil@mysql.com +2 -0
    after merge fix.

ChangeSet@1.1810.2502.1, 2007-01-18 12:48:17+03:00, kroki@moonlight.home +3 -0
  Bug#24404: strange bug with view+permission+prepared statement.
  
  The problem was that if a prepared statement accessed a view, the
  access to the tables listed in the query after that view was done in
  the security context of the view.
  
  The bug was in the assigning of the security context to the tables
  belonging to a view: we traversed the list of all query tables
  instead.  It didn't show up in the normal (non-prepared) statements
  because of the different order of the steps of checking privileges
  and descending into a view for normal and prepared statements.
  
  The solution is to traverse the list and stop once the last table
  belonging to the view was processed.

  mysql-test/r/view_grant.result@1.8.7.1, 2007-01-18 12:48:15+03:00, kroki@moonlight.home +43 -0
    Add result for bug#24404: strange bug with view+permission+prepared
    statement.

  mysql-test/t/view_grant.test@1.8.7.1, 2007-01-18 12:48:15+03:00, kroki@moonlight.home +71 -1
    Add test case for bug#24404: strange bug with view+permission+prepared
    statement.

  sql/sql_view.cc@1.78.16.1, 2007-01-18 12:48:15+03:00, kroki@moonlight.home +7 -3
    Remove dead line.
    When setting security context, we should traverse the list of tables
    belonging to a given view, not all query tables.  We achieve that by
    stopping at the first table past view_tables_tail.

ChangeSet@1.1810.2501.2, 2007-01-18 10:51:29+04:00, ramil@mysql.com +2 -0
  after merge fix.

  mysql-test/r/select.result@1.121.8.2, 2007-01-18 10:51:25+04:00, ramil@mysql.com +17 -363
    after merge fix.

  sql/item.cc@1.113.58.3, 2007-01-18 10:51:25+04:00, ramil@mysql.com +2 -2
    after merge fix.

ChangeSet@1.1810.2456.32, 2007-01-17 20:13:45-08:00, igor@olga.mysql.com +6 -0
  Fixed bug #25580: incorrect stored representations of views in cases
  when they contain the '!' operator.
  Added an implementation for the method Item_func_not::print. 
  The method encloses any NOT expression into extra parentheses to avoid
  incorrect stored representations of views that use the '!' operators.
  Without this change when a view was created that contained
  the expression !0*5  its stored representation contained not this
  expression but rather the expression not(0)*5 . 
  The operator '!' is of a higher precedence than '*', while NOT is 
  of a lower precedence than '*'. That's why the expression !0*5 
  is interpreted as not(0)*5, while the expression not(0)*5 is interpreted
  as not((0)*5) unless sql_mode is set to HIGH_NOT_PRECEDENCE.
  Now we translate !0*5 into (not(0))*5. 

  mysql-test/r/sp-code.result@1.5.2.1, 2007-01-17 20:13:43-08:00, igor@olga.mysql.com +1 -1
    Adjusted results after the fix of bug 25580.

  mysql-test/r/subselect.result@1.134.12.1, 2007-01-17 20:13:43-08:00, igor@olga.mysql.com +5 -5
    Adjusted results after the fix of bug 25580.

  mysql-test/r/view.result@1.138.28.2, 2007-01-17 20:13:43-08:00, igor@olga.mysql.com +11 -0
    Added a test case for bug #25580.

  mysql-test/t/view.test@1.126.26.1, 2007-01-17 20:13:43-08:00, igor@olga.mysql.com +11 -0
    Added a test case for bug #25580.

  sql/item_cmpfunc.cc@1.187.16.1, 2007-01-17 20:13:43-08:00, igor@olga.mysql.com +16 -0
    Fixed bug #25580: incorrect stored representations of views in cases
    when they contain the '!' operator.
    Added an implementation for the method Item_func_not::print. 
    The method encloses the NOT expression into extra parenthesis to avoid
    incorrect stored representations of views that use the '!' operators.

  sql/item_cmpfunc.h@1.122.7.2, 2007-01-17 20:13:43-08:00, igor@olga.mysql.com +1 -0
    Fixed bug #25580: incorrect stored representations of views in cases
    when they contain the '!' operator.
    Added an implementation for the method Item_func_not::print. 
    The method encloses the NOT expression into extra parenthesis to avoid
    incorrect stored representations of views that use the '!' operators.

ChangeSet@1.2372.19.4, 2007-01-17 18:15:35-05:00, cmiller@zippy.cornsilk.net +3 -0
  errmsg change

  mysql-test/r/sp.result@1.243, 2007-01-17 18:15:33-05:00, cmiller@zippy.cornsilk.net +4 -4
    errmsg change

  mysql-test/r/sp_gis.result@1.7, 2007-01-17 18:15:33-05:00, cmiller@zippy.cornsilk.net +2 -2
    errmsg change

  mysql-test/r/udf.result@1.15.1.1, 2007-01-17 18:15:33-05:00, cmiller@zippy.cornsilk.net +1 -1
    errmsg change

ChangeSet@1.1810.2124.39, 2007-01-17 21:15:13+01:00, jonas@perch.ndb.mysql.com +6 -0
  ndb - bug#25686
    add support for doing mlockall before mallc instead of after
    (recommit in 5.0)

  ndb/include/portlib/NdbMem.h@1.3.2.1, 2007-01-17 21:15:11+01:00, jonas@perch.ndb.mysql.com +1 -1
    add support for doing mlockall before mallc instead of after

  ndb/src/common/portlib/NdbMem.c@1.12.2.1, 2007-01-17 21:15:11+01:00, jonas@perch.ndb.mysql.com +9 -1
    add support for doing mlockall before mallc instead of after

  ndb/src/kernel/blocks/cmvmi/Cmvmi.cpp@1.18.14.1, 2007-01-17 21:15:11+01:00, jonas@perch.ndb.mysql.com +17 -2
    add support for doing mlockall before mallc instead of after

  ndb/src/kernel/vm/Configuration.cpp@1.39.12.1, 2007-01-17 21:15:11+01:00, jonas@perch.ndb.mysql.com +1 -1
    add support for doing mlockall before mallc instead of after

  ndb/src/kernel/vm/Configuration.hpp@1.15.5.1, 2007-01-17 21:15:11+01:00, jonas@perch.ndb.mysql.com +1 -1
    add support for doing mlockall before mallc instead of after

  ndb/src/mgmsrv/ConfigInfo.cpp@1.60.23.1, 2007-01-17 21:15:12+01:00, jonas@perch.ndb.mysql.com +4 -4
    add support for doing mlockall before mallc instead of after

ChangeSet@1.2372.19.3, 2007-01-17 15:01:28-05:00, cmiller@zippy.cornsilk.net +1 -0
  errmsg update from Stefan.

  sql/share/errmsg.txt@1.138.1.1, 2007-01-17 15:01:26-05:00, cmiller@zippy.cornsilk.net +14 -7
    errmsg update from Stefan.

ChangeSet@1.2343.70.2, 2007-01-17 13:43:10-05:00, jas@rowvwade. +1 -0
  Disable show status until it actually works.

  storage/falcon/ha_falcon.cpp@1.103, 2007-01-17 13:43:04-05:00, jas@rowvwade. +1 -1
    Disable show status until it actually works.

ChangeSet@1.1616.2938.1, 2007-01-17 13:22:50-05:00, cmiller@zippy.cornsilk.net +2 -0
  Bug#23721: compile fails: check-cpu mishandles cpu flags with \
  	hyphen in it (like ds-cpl).
  
  convert illegal chars in cpu flags to '_' for variable assignment

  BUILD/check-cpu@1.12.3.1, 2007-01-17 13:22:49-05:00, cmiller@zippy.cornsilk.net +1 -1
    convert illegal chars in cpu flags to '_' for variable assignment

  BitKeeper/etc/collapsed@1.1.1.4, 2007-01-17 13:12:09-05:00, cmiller@zippy.cornsilk.net +1 -0

ChangeSet@1.1810.2489.9, 2007-01-17 20:46:09+03:00, kostja@bodhi.local +1 -0
  Disable symlinks under valgrind builds (again), with a comment.

  sql/mysqld.cc@1.439.87.3, 2007-01-17 20:46:06+03:00, kostja@bodhi.local +13 -2
    Once again, disable symlink.test under valgrind builds. symlink.test
    fails deep in mi_repair - the result of this having been disabled
    for almost 5 years. 

ChangeSet@1.2343.69.1, 2007-01-17 12:16:37-05:00, jas@rowvwade. +17 -0
  Added analysis function for file space and index analysis.  Restructured table analysis
  report structure.  Added transaction prepare mechanism to storage handler interface.

  storage/falcon/Connection.h@1.4, 2007-01-17 12:16:25-05:00, jas@rowvwade. +1 -0
    Added flag for disk space analysis.

  storage/falcon/Database.cpp@1.41, 2007-01-17 12:16:25-05:00, jas@rowvwade. +30 -4
    Added support for index and disk space analysis.

  storage/falcon/Dbb.cpp@1.44, 2007-01-17 12:16:26-05:00, jas@rowvwade. +69 -22
    Added support for index and disk space analysis.

  storage/falcon/Dbb.h@1.22, 2007-01-17 12:16:26-05:00, jas@rowvwade. +30 -9
    Added support for index and disk space analysis.

  storage/falcon/Engine.vcproj@1.9, 2007-01-17 12:16:27-05:00, jas@rowvwade. +8 -2
    Added TransactionManager to Netfrastructure build.

  storage/falcon/IndexRootPage.cpp@1.48, 2007-01-17 12:16:27-05:00, jas@rowvwade. +45 -0
    Added index analysis.

  storage/falcon/IndexRootPage.h@1.14, 2007-01-17 12:16:27-05:00, jas@rowvwade. +2 -0
    Added index analysis.

  storage/falcon/PageInventoryPage.cpp@1.11, 2007-01-17 12:16:28-05:00, jas@rowvwade. +43 -0
    Added space analysis.

  storage/falcon/PageInventoryPage.h@1.6, 2007-01-17 12:16:28-05:00, jas@rowvwade. +2 -0
    Added space analysis.

  storage/falcon/StorageConnection.cpp@1.18, 2007-01-17 12:16:28-05:00, jas@rowvwade. +12 -0
    Added transaction prepare call to storage handler interface.

  storage/falcon/StorageConnection.h@1.12, 2007-01-17 12:16:29-05:00, jas@rowvwade. +2 -1
    Added transaction prepare call to storage handler interface.

  storage/falcon/StorageHandler.cpp@1.8, 2007-01-17 12:16:29-05:00, jas@rowvwade. +36 -0
    Added transaction prepare call to storage handler interface.

  storage/falcon/StorageHandler.h@1.3, 2007-01-17 12:16:30-05:00, jas@rowvwade. +4 -1
    Added transaction prepare call to storage handler interface.

  storage/falcon/Stream.cpp@1.3, 2007-01-17 12:16:30-05:00, jas@rowvwade. +6 -0
    Added "indent" method to stream object.

  storage/falcon/Stream.h@1.3, 2007-01-17 12:16:30-05:00, jas@rowvwade. +1 -0
    Added "indent" method to stream object.

  storage/falcon/ha_falcon.cpp@1.102, 2007-01-17 12:16:31-05:00, jas@rowvwade. +21 -0
    Added transaction prepare mechanism to storage handle interface.  Also sketched in show_status (it
    will change again soon).

  storage/falcon/ha_falcon.h@1.19, 2007-01-17 12:16:31-05:00, jas@rowvwade. +5 -3
    Added transaction prepare mechanism to storage handle interface.  Also sketched in show_status (it
    will change again soon).

ChangeSet@1.1616.2934.6, 2007-01-17 15:46:30+03:00, kostja@bodhi.local +1 -0
  Fix a failure of lowercase_tables2 test on powermacg5, introduced
  by the patch for Bug#4968

  sql/sql_parse.cc@1.271.128.4, 2007-01-17 15:46:28+03:00, kostja@bodhi.local +1 -1
    Fix lowercase_tables2 test failure on powermacg5: table_case_name()
    function needed create_info.alias if lowercase_table_names=2, which
    was not set for the stack copy of HA_CREATE_INFO. Move the
    update of create_info.alias from create_table_precheck to 
    mysql_execute_command, so that it is done on the right object.

ChangeSet@1.1810.2371.46, 2007-01-17 13:43:03+01:00, msvensson@neptunus.(none) +1 -0
  Replace the --exec in a while loop that causes 3400 executions of cygwin/bash on 
  windows with a small perl script that does exactly the same. 

  mysql-test/t/mysql.test@1.4.1.21, 2007-01-17 13:43:00+01:00, msvensson@neptunus.(none) +13 -10
    Replace the --exec in a while loop that causes 3400 executions of cygwin/bash on 
    windows with a small perl script that does exactly the same. 

ChangeSet@1.1810.2489.7, 2007-01-17 14:24:54+03:00, kostja@bodhi.local +3 -0
  Fix a ps.test failure in 5.0-runtime tree.

  mysql-test/r/ps.result@1.56.1.31, 2007-01-17 14:24:47+03:00, kostja@bodhi.local +0 -8
    Update result files.

  mysql-test/t/ps.test@1.56.1.29, 2007-01-17 14:24:47+03:00, kostja@bodhi.local +11 -2
    Disable result ouptut of SHOW CREATE TABLE: DATA DIRECTORY option
    may be present or absent from the output depending on the build
    otpions and the operating system, so the output is not consistent
    across supported platforms.

  sql/mysqld.cc@1.439.87.2, 2007-01-17 14:24:47+03:00, kostja@bodhi.local +2 -8
    Remove a tricky #ifdef dependency of --use-symbolic-links on PURIFY
    added in 2002: DEBUG options should not influence server functionality.
    This backfired by producing different output of SHOW CREATE TABLE
    depending on the build options (see also Bug#25677 "With 
    --skip-symbolic-links option on, DATA DIRECTORY clause
    is silently ignored".

ChangeSet@1.1616.2936.4, 2007-01-17 12:22:00+01:00, msvensson@pilot.mysql.com +4 -0
  Bug#21122 SHOW CREATE TABLE: directory output only sometimes
  Bug #25000  	myisam.test fails on 'pb-valgrind-*' Valgrind
   - Move tests that need symlink to symlink.test

  mysql-test/r/myisam.result@1.45.11.3, 2007-01-17 12:21:59+01:00, msvensson@pilot.mysql.com +0 -21
    - Move tests that need symlink to symlink.test

  mysql-test/r/symlink.result@1.11.2.1, 2007-01-17 12:21:59+01:00, msvensson@pilot.mysql.com +21 -0
    - Move tests that need symlink to symlink.test

  mysql-test/t/myisam.test@1.33.13.3, 2007-01-17 12:21:59+01:00, msvensson@pilot.mysql.com +0 -35
    - Move tests that need symlink to symlink.test

  mysql-test/t/symlink.test@1.11.2.1, 2007-01-17 12:21:59+01:00, msvensson@pilot.mysql.com +37 -0
    - Move tests that need symlink to symlink.test

ChangeSet@1.1616.2936.3, 2007-01-17 12:12:24+01:00, msvensson@pilot.mysql.com +2 -0
  Cset exclude: msvensson@pilot.mysql.com|ChangeSet|20070117102733|42618

  mysql-test/r/myisam.result@1.45.11.2, 2007-01-17 12:12:20+01:00, msvensson@pilot.mysql.com +0 -0
    Exclude

  mysql-test/t/myisam.test@1.33.13.2, 2007-01-17 12:12:20+01:00, msvensson@pilot.mysql.com +0 -0
    Exclude

ChangeSet@1.1616.2937.2, 2007-01-17 11:51:52+01:00, msvensson@pilot.mysql.com +1 -0
  Bug#25505 Myisam library compiler error on Windows

  myisam/mi_packrec.c@1.25.1.8, 2007-01-17 11:51:51+01:00, msvensson@pilot.mysql.com +1 -2
    Combine the declaration of variable and assignment into one line
    since that is allowed befgore declaring another variable in C.

ChangeSet@1.2372.18.2, 2007-01-17 10:53:42+01:00, tomas@poseidon.mysql.com +2 -0
  Bug#25387 - added comments in code suggestion during review

  storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp@1.75, 2007-01-17 10:53:34+01:00, tomas@poseidon.mysql.com +28 -5
    Bug#25387 - added comments in code suggestion during review

  storage/ndb/src/ndbapi/NdbEventOperationImpl.hpp@1.33, 2007-01-17 10:53:35+01:00, tomas@poseidon.mysql.com +60 -2
    Bug#25387 - added comments in code suggestion during review

ChangeSet@1.1810.2495.4, 2007-01-17 10:41:52+01:00, tulin@mysql.com +1 -0
  ha_ndbcluster.cc:
    Bug #25668    - corrected patch after test failures
  TAG: mysql-5.0.34

  sql/ha_ndbcluster.cc@1.175.63.2, 2007-01-17 10:38:52+01:00, tulin@mysql.com +16 -9
    Bug #25668    - corrected patch after test failures

ChangeSet@1.1810.2495.3, 2007-01-17 10:06:50+01:00, tulin@mysql.com +1 -0
  ha_ndbcluster.cc:
      Bug #25668    ndb: mysqld may core if cluster disconnected
      -- pTrans may be NULL, remove not needed usage of handler::ndb_err

  sql/ha_ndbcluster.cc@1.175.63.1, 2007-01-17 10:06:00+01:00, tulin@mysql.com +9 -16
      Bug #25668    ndb: mysqld may core if cluster disconnected
      -- pTrans may be NULL, remove not needed usage of handler::ndb_err

ChangeSet@1.2372.19.1, 2007-01-16 19:17:17-05:00, cmiller@zippy.cornsilk.net +1 -0
  Disabled "plugin".  Very minor memory leak keeping tree red.

  mysql-test/t/disabled.def@1.175.38.1, 2007-01-16 19:17:15-05:00, cmiller@zippy.cornsilk.net +1 -0
    Disabled "plugin".  Very minor memory leak keeping tree red.

ChangeSet@1.1810.2495.2, 2007-01-16 20:01:17+01:00, joerg@trift2. +1 -0
  myisam/mi_packrec.c
      Fix a compile error:  Macro "DBUG_ENTER" must not follow an executable statement.

  myisam/mi_packrec.c@1.30.12.1, 2007-01-16 20:01:14+01:00, joerg@trift2. +1 -1
    Fix a compile error:  Macro "DBUG_ENTER" must not follow an executable statement.

ChangeSet@1.1616.2934.5, 2007-01-16 21:23:52+03:00, kostja@bodhi.local +2 -0
  A fix for the broken 4.1-runtime tree.

  mysql-test/t/backup.test@1.13.1.2, 2007-01-16 21:23:49+03:00, kostja@bodhi.local +1 -0
    Backport a patch for sporadically failing myisam.test (and now ps.test)
    from 5.0. The cause was in backup.test not cleaning up tables in
    mysqltest-vardir/tmp after itself.

  mysql-test/t/ps.test@1.27.1.30, 2007-01-16 21:23:49+03:00, kostja@bodhi.local +5 -0
    Add additional protection against possible failure in the middle of
    backup.test

ChangeSet@1.2372.18.1, 2007-01-16 19:22:10+01:00, tomas@poseidon.mysql.com +2 -0
  Bug#25387 - ndb: dbug assert in reference counting for event operations
  - blob event operation not reference counted correctly, missing TE_ACTIVE
  - add reference counting for blobs events
  - make sure also blob event operations get TE_ACTIVE
  - some minor cleanups + adjustment of dbug prints

  storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp@1.74, 2007-01-16 19:22:02+01:00, tomas@poseidon.mysql.com +81 -59
    Bug#25387 - ndb: dbug assert in reference counting for event operations
    - blob event operation not reference counted correctly, missing TE_ACTIVE
    - add reference counting for blobs events
    - make sure also blob event operations get TE_ACTIVE
    - some minor cleanups + adjustment of dbug prints

  storage/ndb/src/ndbapi/NdbEventOperationImpl.hpp@1.32, 2007-01-16 19:22:02+01:00, tomas@poseidon.mysql.com +7 -2
    Bug#25387 - ndb: dbug assert in reference counting for event operations
    - blob event operation not reference counted correctly, missing TE_ACTIVE
    - add reference counting for blobs events
    - make sure also blob event operations get TE_ACTIVE
    - some minor cleanups + adjustment of dbug prints

ChangeSet@1.2343.10.22, 2007-01-16 18:58:43+01:00, jonas@perch.ndb.mysql.com +1 -0
  ndb - bug#25636
    additional fix after autotest
    dont send start_fragreq to temporary tables such as ordered indexes...

  storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp@1.94.1.4, 2007-01-16 18:58:42+01:00, jonas@perch.ndb.mysql.com +3 -1
    dont send START_FRAGREQ to temporary tables (such as ordered indexes)

ChangeSet@1.1810.2496.3, 2007-01-16 17:52:17+01:00, msvensson@neptunus.(none) +1 -0
  Update xid's as an effect of not closing the prepared statements all the time

  mysql-test/t/mix_innodb_myisam_binlog.test@1.20.5.1, 2007-01-16 17:52:14+01:00, msvensson@neptunus.(none) +10 -10
    Update xid's as an effect of not closing the prepared statements all the time

ChangeSet@1.1810.2496.2, 2007-01-16 17:47:41+01:00, msvensson@neptunus.(none) +1 -0
  Don't reuse prepared statements if running with reconnect enabled

  client/mysqltest.c@1.155.30.2, 2007-01-16 17:47:33+01:00, msvensson@neptunus.(none) +10 -0
    Don't reuse prepared statements if running with reconnect enabled

ChangeSet@1.1616.2936.1, 2007-01-16 18:05:37+04:00, svoj@mysql.com +1 -0
  BUG#24855 - Crash mysqld 4.1.21 with corrupted tables
  
  Accessing fixed record format table with crashed key definition results
  in server/myisamchk segmentation fault.
  
  This is fixed by refusing to open such tables. Affects MyISAM only.
  No test case, since it requires crashed table.

  myisam/mi_open.c@1.80.2.9, 2007-01-16 18:05:36+04:00, svoj@mysql.com +7 -1
    Refuse to open fixed record format table with key segment that includes
    BLOB part (which is true only for tables with crashed key definition).

ChangeSet@1.1810.2496.1, 2007-01-16 13:39:42+01:00, msvensson@neptunus.(none) +3 -0
  Bug#15518 Reusing a stmt that has failed during prepare does not clear error
   - Always reset error when calling mysql_stmt_prepare a second time
   - Set stmt->state to MYSQL_STMT_INIT_DONE before closing prepared stmt in server.
   - Add test to mysql_client_test
   - Remove mysql_stmt_close in mysqltest after each query
   - Close all open statements in mysqltest if disable_ps_protocol is called. 

  client/mysqltest.c@1.155.30.1, 2007-01-16 13:39:38+01:00, msvensson@neptunus.(none) +21 -4
    Don't close the statement after each query - reprepare it in next query.
    When "disable_ps_protocol" is issued make sure to close all open
    statements. Otherwise the test for @@max_prepared_statements fails. But we
    also get a test that the statements that are open can be closed and reopened
    in the middle of the tests.

  libmysql/libmysql.c@1.233.11.1, 2007-01-16 13:39:39+01:00, msvensson@neptunus.(none) +11 -3
    Reset the last error every time mysql_stmt_prepare is called.
    Set state to MYSQL_STMT_INIT_DONE befoe closing it in the server. That way
    we will always have right status regardless of wheter close fails or not. 

  tests/mysql_client_test.c@1.167.24.2, 2007-01-16 13:39:39+01:00, msvensson@neptunus.(none) +85 -8
    Add testcase for bug15518, re-prepare a previously prepare statement that has failed
    to prepare. Test also when connection to server has been lost inbetween.
    Change all assert to DIE_UNLESS so we get printout of line and an error message
    if it fails.

ChangeSet@1.1810.2495.1, 2007-01-16 12:46:48+01:00, joerg@trift2. +1 -0
  configure.in  :  Fix a dependency problem for "extra/" which shows up only in RPM builds.

  configure.in@1.245.74.1, 2007-01-16 12:46:45+01:00, joerg@trift2. +2 -2
    Some files in "extra/", notably "comp_err", depend on "dbug/libdbug.a",
    so "dbug/" must be a target before "extra/" is attempted.  Fix this.

ChangeSet@1.2378.4.4, 2007-01-16 11:58:48+01:00, mats@romeo.(none) +1 -0
  Post-merge fixes.

  sql/sql_insert.cc@1.239.1.4, 2007-01-16 11:58:44+01:00, mats@romeo.(none) +0 -2
    Removing HAVE_ROW_BASED_REPLICATION conditional that is no longer used.

ChangeSet@1.2372.8.15, 2007-01-16 09:47:03+01:00, msvensson@neptunus.(none) +1 -0
  Always use two masters for ndb tests
  Abandon attempt to only use one for some tests that don't use the second master

  mysql-test/lib/mtr_cases.pl@1.53, 2007-01-16 09:47:01+01:00, msvensson@neptunus.(none) +3 -2
    Always use two masters for ndb tests

ChangeSet@1.2372.8.14, 2007-01-16 09:38:09+01:00, msvensson@neptunus.(none) +1 -0
  Remove wait until not readonly

  mysql-test/include/have_ndb.inc@1.16, 2007-01-16 09:38:07+01:00, msvensson@neptunus.(none) +0 -2
    Remove wait until not readonly

ChangeSet@1.1616.2935.1, 2007-01-16 09:35:14+01:00, msvensson@neptunus.(none) +1 -0
  Always use two masters for ndb tests

  mysql-test/lib/mtr_cases.pl@1.6.2.17, 2007-01-16 09:35:12+01:00, msvensson@neptunus.(none) +3 -2
    Always use two masters for ndb tests

ChangeSet@1.2372.16.1, 2007-01-16 09:19:41+01:00, mskold@mysql.com +7 -0
  Changed Dictionary::Table::setTablespace/getTablespace to setTablespaceName/getTablespaceName

  sql/ha_ndbcluster.cc@1.392, 2007-01-16 09:19:28+01:00, mskold@mysql.com +3 -3
    Changed Dictionary::Table::setTablespace/getTablespace to setTablespaceName/getTablespaceName

  storage/ndb/include/ndbapi/NdbDictionary.hpp@1.87, 2007-01-16 09:19:28+01:00, mskold@mysql.com +2 -2
    Changed Dictionary::Table::setTablespace/getTablespace to setTablespaceName/getTablespaceName

  storage/ndb/src/ndbapi/NdbDictionary.cpp@1.67, 2007-01-16 09:19:28+01:00, mskold@mysql.com +7 -1
    Changed Dictionary::Table::setTablespace/getTablespace to setTablespaceName/getTablespaceName

  storage/ndb/test/ndbapi/bank/BankLoad.cpp@1.15, 2007-01-16 09:19:28+01:00, mskold@mysql.com +1 -1
    Changed Dictionary::Table::setTablespace/getTablespace to setTablespaceName/getTablespaceName

  storage/ndb/test/ndbapi/create_tab.cpp@1.12, 2007-01-16 09:19:28+01:00, mskold@mysql.com +1 -1
    Changed Dictionary::Table::setTablespace/getTablespace to setTablespaceName/getTablespaceName

  storage/ndb/test/ndbapi/testDict.cpp@1.34, 2007-01-16 09:19:28+01:00, mskold@mysql.com +1 -1
    Changed Dictionary::Table::setTablespace/getTablespace to setTablespaceName/getTablespaceName

  storage/ndb/test/src/NDBT_Test.cpp@1.34, 2007-01-16 09:19:28+01:00, mskold@mysql.com +1 -1
    Changed Dictionary::Table::setTablespace/getTablespace to setTablespaceName/getTablespaceName

ChangeSet@1.1810.2456.31, 2007-01-15 14:01:36-08:00, igor@olga.mysql.com +1 -0
  Adjusted results after merge 4.1 -> 5.0 for the patch fixing bug 24776.

  mysql-test/r/range.result@1.44.1.9, 2007-01-15 14:01:35-08:00, igor@olga.mysql.com +1 -1
    Adjusted results after merge 4.1 -> 5.0 for the patch fixing bug 24776.

ChangeSet@1.2372.8.13, 2007-01-15 21:50:31+01:00, msvensson@neptunus.(none) +1 -0
  Cset exclude: cmiller@221.54.57.10.in-addr.arpa.cmiller/221.54.57.10.in-addr.arpa|ChangeSet|20070111195403|30218

  mysql-test/include/have_ndb.inc@1.15, 2007-01-15 21:50:29+01:00, msvensson@neptunus.(none) +0 -0
    Exclude

ChangeSet@1.1616.2934.4, 2007-01-15 23:25:16+03:00, kostja@bodhi.local +1 -0
  A post-merge fix.

  sql/sql_parse.cc@1.271.128.3, 2007-01-15 23:25:14+03:00, kostja@bodhi.local +1 -0
    A post-merge fix (broken alter_table.test): restore Svoj's fix
    for Bug#23404 lost during merge.

ChangeSet@1.2343.10.21, 2007-01-15 21:03:39+01:00, jonas@perch.ndb.mysql.com +5 -0
  ndb - bug#25636
    Fix DD problem during NR after 3 missed LCP's

  storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp@1.94.1.3, 2007-01-15 21:03:37+01:00, jonas@perch.ndb.mysql.com +11 -0
    Send START_FRAGREQ also for fragments wo/ LCP

  storage/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp@1.128.1.1, 2007-01-15 21:03:37+01:00, jonas@perch.ndb.mysql.com +13 -3
    inform TUP that no LCP is restored (if no lcp is restored :-)

  storage/ndb/src/kernel/blocks/dbtup/Dbtup.hpp@1.53.1.1, 2007-01-15 21:03:37+01:00, jonas@perch.ndb.mysql.com +2 -0
    inform TUP that no LCP is restored (if no lcp is restored :-)

  storage/ndb/src/kernel/blocks/dbtup/DbtupDiskAlloc.cpp@1.19.1.1, 2007-01-15 21:03:37+01:00, jonas@perch.ndb.mysql.com +7 -0
    inform TUP that no LCP is restored (if no lcp is restored :-)

  storage/ndb/src/kernel/blocks/pgman.cpp@1.18.1.1, 2007-01-15 21:03:37+01:00, jonas@perch.ndb.mysql.com +7 -0
    Add error insert using dump

ChangeSet@1.1810.2456.29, 2007-01-15 22:40:39+03:00, evgen@moonbone.local +1 -0
  sql_select.cc:
    Fix for crashes on 64bit platforms after fixing bug#23417.

  sql/sql_select.cc@1.312.1.168, 2007-01-15 22:40:19+03:00, evgen@moonbone.local +5 -3
    Fix for crashes on 64bit platforms after fixing bug#23417.

ChangeSet@1.1810.2491.1, 2007-01-15 19:15:52+02:00, gkodinov@macbook.gmz +3 -0
  BUG#20420: optimizer reports wrong keys on left join with IN
   The optimizer needs to evaluate whether predicates are better
   evaluated using an index. IN is one such predicate.
   To qualify an IN predicate must involve a field of the index
   on the left and constant arguments on the right.
   However whether an expression is a constant can be determined only
   by knowing the preceding tables in the join order. 
   Assuming that only IN predicates with expressions on the right that
   are constant for the whole query qualify limits the scope of 
   possible optimizations of the IN predicate (more specifically it
   doesn't allow the "Range checked for each record" optimization for
   such an IN predicate.
   Fixed by not pre-determining the optimizability of the IN predicate
   in the case when all right IN operands are not SQL constant expressions

  mysql-test/r/func_in.result@1.28.3.1, 2007-01-15 19:15:46+02:00, gkodinov@macbook.gmz +43 -0
    BUG#20420: optimizer reports wrong keys on left join with IN
     - test case

  mysql-test/t/func_in.test@1.22.3.1, 2007-01-15 19:15:47+02:00, gkodinov@macbook.gmz +36 -0
    BUG#20420: optimizer reports wrong keys on left join with IN
     - test case

  sql/item_cmpfunc.h@1.122.6.2, 2007-01-15 19:15:48+02:00, gkodinov@macbook.gmz +5 -1
    BUG#20420: optimizer reports wrong keys on left join with IN
     - cannot decide on the optimizability of a function without
       knowing the tables before it in the join order

ChangeSet@1.1810.2489.2, 2007-01-15 16:57:22+01:00, bteam@mysql.com +1 -0
  Raise version number after cloning 5.0.34

  configure.in@1.245.1.174, 2007-01-15 16:57:08+01:00, bteam@mysql.com +2 -2
    Raise version number after cloning 5.0.34

ChangeSet@1.1810.2490.1, 2007-01-15 10:00:29-05:00, iggy@recycle.(none) +1 -0
  Bug#19424 InnoDB: Possibly a memory overrun of the buffer being freed (Win64)
  - Re-enabling optimization on all except innodb/mem/*.

  innobase/CMakeLists.txt@1.1.3.1, 2007-01-15 10:00:26-05:00, iggy@recycle.(none) +2 -36
    Bug#19424 InnoDB: Possibly a memory overrun of the buffer being freed (Win64)
    - Re-enabling optimization on all except innodb/mem/*.

ChangeSet@1.2389.1.2, 2007-01-15 13:39:28+04:00, gluh@mysql.com +5 -0
  Bug#21713 incorrect value for the REFERENTIAL_CONSTRAINTS.UNIQUE_CONSTRAINT_NAME column
  added new field 'REFERENCED_TABLE_NAME' to 'referential_constraints' table
  field 'UNIQUE_CONSTRAINT_NAME' contains the name of the referenced index

  mysql-test/r/information_schema_inno.result@1.11, 2007-01-15 13:39:26+04:00, gluh@mysql.com +8 -8
    result fix

  mysql-test/t/information_schema_inno.test@1.8, 2007-01-15 13:39:26+04:00, gluh@mysql.com +3 -4
    test fix

  sql/sql_show.cc@1.381.1.2, 2007-01-15 13:39:27+04:00, gluh@mysql.com +4 -1
    added new field 'REFERENCED_TABLE_NAME' to 'referential_constraints' table
    field 'UNIQUE_CONSTRAINT_NAME' contains the name of the referenced index

  sql/table.h@1.158, 2007-01-15 13:39:27+04:00, gluh@mysql.com +1 -0
    added 'referenced_key_name' member to 'st_foreign_key_info' struct

  storage/innobase/handler/ha_innodb.cc@1.279.1.41, 2007-01-15 13:39:27+04:00, gluh@mysql.com +8 -2
    added the filling of referenced key name

ChangeSet@1.1810.2488.1, 2007-01-15 12:32:38+03:00, dlenev@mockturtle.local +3 -0
  Fix for bug#20390 "SELECT FOR UPDATE does not release locks
  of untouched rows in full table scans".
  
  SELECT ... FOR UPDATE/LOCK IN SHARE MODE statements as well as
  UPDATE/DELETE statements which were executed using full table
  scan were not releasing locks on rows which didn't satisfy
  WHERE condition.
  This bug surfaced in 5.0 and affected NDB tables. (InnoDB tables
  intentionally don't support such unlocking in default mode).
  
  This problem occured because code implementing join didn't call
  handler::unlock_row() for rows which didn't satisfy part of condition
  attached to this particular table/level of nested loop. So we solve
  the problem adding this call.
  Note that we already had this call in place in 4.1 but it was lost
  (actually not quite correctly placed) when we have introduced nested 
  joins.
  
  Also note that additional QA should be requested once this patch is
  pushed as interaction between handler::unlock_row() and many recent
  MySQL features such as subqueries, unions, views is not tested enough.

  mysql-test/r/ndb_lock.result@1.5.7.2, 2007-01-15 12:32:36+03:00, dlenev@mockturtle.local +35 -0
    Enabled back part of the test that covers bug #20390 "SELECT FOR
    UPDATE does not release locks of untouched rows in full table scans".
    Adjusted test in such way that it now covers both execution paths
    in which we unlock non-matching rows inspected during table scan.

  mysql-test/t/ndb_lock.test@1.7.7.2, 2007-01-15 12:32:36+03:00, dlenev@mockturtle.local +43 -6
    Enabled back part of the test that covers bug #20390 "SELECT FOR
    UPDATE does not release locks of untouched rows in full table scans".
    Adjusted test in such way that it now covers both execution paths
    in which we unlock non-matching rows inspected during table scan.

  sql/sql_select.cc@1.312.120.1, 2007-01-15 12:32:36+03:00, dlenev@mockturtle.local +1 -0
    evaluate_join_record() should call handler::unlock_row() for records
    which don't satisfy condition which was pushed-down to this table/level
    of nested loop.
    We just put back the thing that we already have in 4.1 and which was lost
    when we have introduced nested joins.

ChangeSet@1.2343.22.18, 2007-01-14 19:15:59+02:00, aelkin@dsl-hkibras-fe36f900-97.dhcp.inet.fi +1 -0
  Bug#24998 rpl_row_delayed_ins.test fails in pushbuild
  
  forgotten to push changed results

  mysql-test/r/rpl_row_delayed_ins.result@1.5, 2007-01-14 19:15:55+02:00, aelkin@dsl-hkibras-fe36f900-97.dhcp.inet.fi +7 -3
    changed

ChangeSet@1.2378.5.4, 2007-01-13 19:51:22-08:00, brian@zim.(none) +2 -0
  Updates to archive_reader. 

  storage/archive/archive_reader.c@1.3, 2007-01-13 19:51:20-08:00, brian@zim.(none) +139 -11
    Skeleton for future work. 

  storage/archive/ha_archive.cc@1.121, 2007-01-13 19:51:20-08:00, brian@zim.(none) +1 -1
    Set unpack for Windows

ChangeSet@1.2378.5.3, 2007-01-13 17:19:20-08:00, brian@zim.(none) +2 -0
  More windows warnings cleanup

  storage/archive/ha_archive.cc@1.120, 2007-01-13 17:19:18-08:00, brian@zim.(none) +6 -10
    More windows warnings clean up.

  storage/archive/ha_archive.h@1.61, 2007-01-13 17:19:18-08:00, brian@zim.(none) +1 -1
    Change in prototype to clear windows warning. 

ChangeSet@1.2378.5.2, 2007-01-13 16:16:56-08:00, brian@zim.(none) +2 -0
  REAL_PATH was rewritten for DATA DIRECTORY (doesn't get calculated for each table open, and won't be calculted more then once now).
  Windows warnings cleanup.
  
  I am still get a weird warning about file descriptors closed multiple times.

  storage/archive/ha_archive.cc@1.119, 2007-01-13 16:16:39-08:00, brian@zim.(none) +50 -28
    Cleanup from Windows warnings.
    REAL_PATH has been rewritten.

  storage/archive/ha_archive.h@1.60, 2007-01-13 16:16:39-08:00, brian@zim.(none) +1 -0
    real_path holds the full path of the non-symlinked version

ChangeSet@1.1616.2921.11, 2007-01-13 10:49:26-08:00, igor@olga.mysql.com +3 -0
  Fixed bug #24776: an assertion abort in handler::ha_index_init
  for queries using 'range checked for each record'.
  The problem was fixed in 5.0 by the patch for bug 12291.
  This patch down-ported the corresponding code from 5.0 into 
  QUICK_SELECT::init() and added a new test case. 

  mysql-test/r/range.result@1.19.3.9, 2007-01-13 10:49:24-08:00, igor@olga.mysql.com +43 -0
    Added a test case for bug #24776.

  mysql-test/t/range.test@1.12.6.1, 2007-01-13 10:49:24-08:00, igor@olga.mysql.com +43 -0
    Added a test case for bug #24776.

  sql/opt_range.h@1.28.1.16, 2007-01-13 10:49:24-08:00, igor@olga.mysql.com +2 -0
    Fixed bug #24776: an assertion abort in handler::ha_index_init
    for queries using 'range checked for each record'.
    The problem was fixed in 5.0 by the patch for bug 12291.
    The patch for 4.1 down-ported the corresponding code from 5.0 into 
    QUICK_SELECT::init(). 

ChangeSet@1.2372.14.2, 2007-01-12 20:05:55-08:00, brian@zim.(none) +4 -0
  Final cleanup for new archive internal format. All new headers work.

  storage/archive/archive_reader.c@1.2, 2007-01-12 20:05:51-08:00, brian@zim.(none) +9 -6
    Added version bit to solve the issue of hitting old archive files when reading them. 

  storage/archive/azio.c@1.12, 2007-01-12 20:05:51-08:00, brian@zim.(none) +1 -2
    Set the compression back on. 

  storage/archive/ha_archive.cc@1.118, 2007-01-12 20:05:51-08:00, brian@zim.(none) +56 -94
    Cleaned up memory allocation ( a bit more logical and less tricky ).
    Fixed bug in not setting autoincrement correctly and cleaned up memory usage for optimize

  storage/archive/ha_archive.h@1.59, 2007-01-12 20:05:51-08:00, brian@zim.(none) +5 -5
    Clean up.

ChangeSet@1.1810.2487.1, 2007-01-12 13:43:25-08:00, igor@olga.mysql.com +3 -0
  Fixed bug #25398: crash in a trigger when using trigger fields 
  in a select list.
  The objects of the Item_trigger_field class inherited the implementations
  of the methods copy_or_same, get_tmp_table_item and get_tmp_table_field
  from the class Item_field while they rather should have used the default
  implementations defined for the base class Item.
  It could cause catastrophic problems for triggers that used SELECTs
  with select list containing trigger fields such as NEW.<table column>
  under DISTINCT.

  mysql-test/r/trigger.result@1.29.11.4, 2007-01-12 13:43:23-08:00, igor@olga.mysql.com +32 -0
    Added a test case for bug #25398.

  mysql-test/t/trigger.test@1.34.14.1, 2007-01-12 13:43:23-08:00, igor@olga.mysql.com +46 -0
    Added a test case for bug #25398.

  sql/item.h@1.183.1.34, 2007-01-12 13:43:23-08:00, igor@olga.mysql.com +3 -0
    Fixed bug #25398: crash in a trigger when using trigger fields 
    in a select list.
    The objects of the Item_trigger_field class inherited the implementations
    of the methods copy_or_same, get_tmp_table_item and get_tmp_table_field
    from the class Item_field while they rather should have used the default
    implementations defined for the base class Item.
    It could cause catastrophic problems for triggers that used SELECTs
    with select list containing trigger fields such as NEW.<table column>
    under DISTINCT.

ChangeSet@1.1810.2486.2, 2007-01-12 23:22:41+03:00, sergefp@mysql.com +14 -0
  BUG#24127: (a,b) IN (SELECT c,d ...) can produce wrong results if a and/or b are NULLs:
  - Make the code produce correct result: use an array of triggers to turn on/off equalities for each
    compared column. Also turn on/off optimizations based on those equalities.
  - Make EXPLAIN output show "Full scan on NULL key" for tables for which we switch between
    ref/unique_subquery/index_subquery and ALL access.
  - index_subquery engine now has HAVING clause when it is needed, and it is
    displayed in EXPLAIN EXTENDED
  - Fix incorrect presense of "Using index" for index/unique-based subqueries (BUG#22930)
  // bk trigger note: this commit refers to BUG#24127

  mysql-test/r/ndb_subquery.result@1.3.1.1, 2007-01-12 23:22:36+03:00, sergefp@mysql.com +3 -3
    BUG#24127: wrong result for (null,not-null) IN (SELECT a,b ...)
    - Updated test results (checked)

  mysql-test/r/subselect.result@1.134.1.35, 2007-01-12 23:22:36+03:00, sergefp@mysql.com +14 -14
    BUG#24127: wrong result for (null,not-null) IN (SELECT a,b ...)
    - Updated test results (checked)

  mysql-test/r/subselect2.result@1.14, 2007-01-12 23:22:36+03:00, sergefp@mysql.com +5 -5
    BUG#24127: wrong result for (null,not-null) IN (SELECT a,b ...)
    - Updated test results (checked)

  mysql-test/r/subselect3.result@1.1.1.2, 2007-01-12 23:22:37+03:00, sergefp@mysql.com +404 -4
    BUG#24127: wrong result for (null,not-null) IN (SELECT a,b ...)
    - Testcases

  mysql-test/t/subselect3.test@1.3, 2007-01-12 23:22:37+03:00, sergefp@mysql.com +281 -10
    BUG#24127: wrong result for (null,not-null) IN (SELECT a,b ...)
    - Testcases

  sql/item_cmpfunc.cc@1.187.1.42, 2007-01-12 23:22:37+03:00, sergefp@mysql.com +29 -5
    BUG#24127: wrong result for (null,not-null) IN (SELECT a,b ...)
    - For row-based IN subqueries, use one flag per each column. Set the flags appropriately before
      running the subquery. 

  sql/item_cmpfunc.h@1.122.2.13, 2007-01-12 23:22:37+03:00, sergefp@mysql.com +1 -0
    BUG#24127: wrong result for (null,not-null) IN (SELECT a,b ...)
     - Added Item_func_trig_cond::get_triv_var()

  sql/item_subselect.cc@1.113.1.35, 2007-01-12 23:22:37+03:00, sergefp@mysql.com +156 -111
    BUG#24127: wrong result for (null,not-null) IN (SELECT a,b ...)
    - Item_subselect::exec() and subselect_*_engine::exec() don't have parameter
      anymore - now Item_subselect owns the pushed down predicates guard flags.
    - A correct set of conditional predicates is now pushed into row-based IN 
      subquery.
    - select_indexsubquery_engine now has "HAVING clause" (needed for correct query
      results), and it is shown in EXPLAIN EXTENDED

  sql/item_subselect.h@1.77.1.9, 2007-01-12 23:22:37+03:00, sergefp@mysql.com +75 -17
    BUG#24127: wrong result for (null,not-null) IN (SELECT a,b ...)
    - Item_subselect::exec() and subselect_*_engine::exec() don't have parameter
      anymore - now Item_subselect owns the pushed down predicates guard flags.
    - A correct set of conditional predicates is now pushed into row-based IN 
      subquery.
    - select_indexsubquery_engine now has "HAVING clause" (needed for correct query
      results), and it is shown in EXPLAIN EXTENDED

  sql/mysql_priv.h@1.290.82.1, 2007-01-12 23:22:37+03:00, sergefp@mysql.com +1 -1
    BUG#24127: wrong result for (null,not-null) IN (SELECT a,b ...)
    - Added "in_having_cond" special Item name

  sql/mysqld.cc@1.439.85.2, 2007-01-12 23:22:37+03:00, sergefp@mysql.com +3 -0
    BUG#24127: wrong result for (null,not-null) IN (SELECT a,b ...)
    - Added "in_having_cond" special Item name

  sql/sql_lex.h@1.175.32.1, 2007-01-12 23:22:37+03:00, sergefp@mysql.com +1 -1
    BUG#24127: wrong result for (null,not-null) IN (SELECT a,b ...)

  sql/sql_select.cc@1.312.119.1, 2007-01-12 23:22:37+03:00, sergefp@mysql.com +120 -76
    BUG#24127: wrong result for (null,not-null) IN (SELECT a,b ...)
    - Make "ref" analyzer be able to work with conditional equalities
    - Fix subquery optimization code to match the changes in what kinds of 
      conditions are pushed down into subqueries 
    - Fix wrong EXPLAIN output in some queries with subquery (BUG#22390)

  sql/sql_select.h@1.92.1.23, 2007-01-12 23:22:37+03:00, sergefp@mysql.com +39 -3
    BUG#24127: wrong result for (null,not-null) IN (SELECT a,b ...)
    - Make "ref" analyzer be able to work with conditional equalities
    - Fix wrong EXPLAIN output in some queries with subquery (BUG#22390)

ChangeSet@1.1810.2486.1, 2007-01-12 22:11:40+03:00, sergefp@mysql.com +4 -0
  BUG#24085: Wrong result for NULL IN (SELECT not_null_val FROM ...)
  When transforming "oe IN (SELECT ie ...)" wrap the pushed-down predicates
  iff "oe can be null", not "ie can be null".
  The fix doesn't cover row-based subqueries, those will be fixed in #24127.

  mysql-test/r/subselect.result@1.134.1.34, 2007-01-12 22:11:37+03:00, sergefp@mysql.com +2 -2
    BUG#24085: Wrong result for NULL IN (SELECT not_null_val FROM ...)
    Update the test results (checked)

  mysql-test/r/subselect3.result@1.1.1.1, 2007-01-12 22:11:37+03:00, sergefp@mysql.com +84 -6
    BUG#24085: Wrong result for NULL IN (SELECT not_null_val FROM ...)
    - Testcase

  mysql-test/t/subselect3.test@1.2, 2007-01-12 22:11:37+03:00, sergefp@mysql.com +69 -2
    BUG#24085: Wrong result for NULL IN (SELECT not_null_val FROM ...)
    - Testcase

  sql/item_subselect.cc@1.113.1.34, 2007-01-12 22:11:37+03:00, sergefp@mysql.com +25 -14
    BUG#24085: Wrong result for NULL IN (SELECT not_null_val FROM ...)
    When transforming "oe IN (SELECT ie ...)" we should make special 
    provisions (wrap the pushed predicates) if we can encounter 
    NULL IN (SELECT ...), i.e. when oe->maybe_null. The code was checking
    for ie->maybe_null instead, fixed it for single value based subqueries.
    
    Row-based subqueries (e.g. (a,b) IN (SELECT c,d ...)) are not fixed 
    because they won't produce correct results for several other reasons 
    (filed as #24085)

ChangeSet@1.2378.3.3, 2007-01-12 10:33:44-07:00, malff@weblab.(none) +1 -0
  Fixed windows build break

  sql/CMakeLists.txt@1.21.7.3, 2007-01-12 10:33:42-07:00, malff@weblab.(none) +1 -1
    Fixed windows build break, file item_uniq.cc has been removed.

ChangeSet@1.2343.10.20, 2007-01-12 15:48:47+01:00, jonas@perch.ndb.mysql.com +3 -0
  ndb - bug#25587
    fix not aligned or non 32-bit values in "smart" scan

  mysql-test/r/ndb_partition_key.result@1.5, 2007-01-12 15:48:45+01:00, jonas@perch.ndb.mysql.com +48 -0
    testcase

  mysql-test/t/ndb_partition_key.test@1.3, 2007-01-12 15:48:45+01:00, jonas@perch.ndb.mysql.com +28 -0
    ndb - bug

  storage/ndb/src/ndbapi/NdbScanOperation.cpp@1.103.1.1, 2007-01-12 15:48:45+01:00, jonas@perch.ndb.mysql.com +9 -3
    Fix unaligned or non-32-bit values in "smart scan"

ChangeSet@1.1810.2456.26, 2007-01-12 17:35:24+03:00, evgen@moonbone.local +1 -0
  func_str.result:
    After merge fix

  mysql-test/r/func_str.result@1.110.1.16, 2007-01-12 17:34:59+03:00, evgen@moonbone.local +3 -3
    After merge fix

ChangeSet@1.2382.2.1, 2007-01-12 15:46:20+04:00, holyfoot@mysql.com +3 -0
  bug #24186 (nested query across partitions returns fewer records)
  
  Subselect's engine checks table->status field to determine if the
  record was properly found when we use keyread upon the table.
  Partition engine checks all the partitions for given key
  before return. So if matching record was found in the first
  partition and no matching records were found in the second, 
  we have table->status == NOT_FOUND after the function, what
  makes subselects to skip matching records.
  The patch adds table->status= 0 if we actually found something.

  mysql-test/r/partition.result@1.58, 2007-01-12 15:46:14+04:00, holyfoot@mysql.com +81 -0
    result fixed

  mysql-test/t/partition.test@1.52, 2007-01-12 15:46:14+04:00, holyfoot@mysql.com +93 -0
    testcase

  sql/ha_partition.cc@1.78.1.4, 2007-01-12 15:46:14+04:00, holyfoot@mysql.com +3 -0
    table->status set to 0 if we found something in previous partitions

ChangeSet@1.2378.2.6, 2007-01-12 11:06:38+01:00, tnurnberg@mysql.com +4 -0
  Bug#24660: "enum" field type definition problem
  
  ENUMs weren't allowed to have character 0xff, a perfectly good
  character in some locales.  This was circumvented by mapping 0xff in
  ENUMs to ',', thereby prevent actual commas from being used. Now if
  0xff makes an appearance, we find a character not used in the enum and
  use that as a separator. If no such character exists, we throw an
  error.
  
  Any solution would have broken some sort of existing behaviour. This
  solution should serve both fractions (those with 0xff and those with
  ',' in their enums), but WILL REQUIRE A DUMP/RESTORE CYCLE FROM THOSE
  WITH 0xff IN THEIR ENUMS. :-/ That is, mysqldump with their current
  server, and restore when upgrading to one with this patch.

  mysql-test/r/type_enum.result@1.30.1.1, 2007-01-12 11:06:35+01:00, tnurnberg@mysql.com +26 -0
    Bug#24660: "enum" field type definition problem
    
    Show that enums can now contain NAMES_SEP_CHAR (0xff, which is a perfectly respectable
    char in some locales), or ',', or both.

  mysql-test/t/type_enum.test@1.16.1.1, 2007-01-12 11:06:35+01:00, tnurnberg@mysql.com +23 -1
    Bug#24660: "enum" field type definition problem
    
    Show that enums can now contain NAMES_SEP_CHAR (0xff, which is a perfectly respectable
    char in some locales), or ',', or both.

  sql/table.cc@1.264.3.1, 2007-01-12 11:06:35+01:00, tnurnberg@mysql.com +0 -11
    Bug#24660: "enum" field type definition problem
    
    Revert fix for Bug#20922.

  sql/unireg.cc@1.92.1.1, 2007-01-12 11:06:35+01:00, tnurnberg@mysql.com +40 -21
    Bug#24660: "enum" field type definition problem
    
    Use a field-separator for ENUM-values that is not part of those values. If impossible,
    throw error.

ChangeSet@1.2386, 2007-01-12 13:34:33+04:00, gluh@mysql.com +1 -0
  Function mysql_rm_tmp_tables():
  fixed valgrind error
  fixed indentation

  sql/sql_base.cc@1.368.1.5, 2007-01-12 13:34:31+04:00, gluh@mysql.com +26 -26
    Function mysql_rm_tmp_tables():
    fixed valgrind error
    fixed indentation

ChangeSet@1.1810.2474.6, 2007-01-12 01:04:39+01:00, mmj@tiger.mmj.dk +1 -0
  mysql_explain_log.sh:
    Patch from Paul DuBois for better help messages

  scripts/mysql_explain_log.sh@1.3.3.1, 2007-01-12 01:03:50+01:00, mmj@tiger.mmj.dk +56 -52
    Patch from Paul DuBois for better help messages

ChangeSet@1.2343.33.55, 2007-01-12 00:20:47+01:00, hakank@lu0008.wdf.sap.corp +3 -0
  Test case for BUG#25555.

  mysql-test/r/falcon_bug_25555.result@1.1, 2007-01-12 00:20:39+01:00, hakank@lu0008.wdf.sap.corp +7 -0
    New BitKeeper file ``mysql-test/r/falcon_bug_25555.result''

  mysql-test/r/falcon_bug_25555.result@1.0, 2007-01-12 00:20:39+01:00, hakank@lu0008.wdf.sap.corp +0 -0

  mysql-test/t/disabled.def@1.259, 2007-01-12 00:20:39+01:00, hakank@lu0008.wdf.sap.corp +1 -0
    Disabled currently failing falcon_bug_25555.test.

  mysql-test/t/falcon_bug_25555.test@1.1, 2007-01-12 00:20:39+01:00, hakank@lu0008.wdf.sap.corp +15 -0
    New BitKeeper file ``mysql-test/t/falcon_bug_25555.test''

  mysql-test/t/falcon_bug_25555.test@1.0, 2007-01-12 00:20:39+01:00, hakank@lu0008.wdf.sap.corp +0 -0

ChangeSet@1.2343.22.17, 2007-01-11 23:59:12+02:00, aelkin@dsl-hkibras-fe36f900-97.dhcp.inet.fi +1 -0
  Bug #24998  	rpl_row_delayed_ins.test fails in pushbuild
  
  The test uses show binlog event which is not deterministic due to the single insert delayed
  query can generate up to number of inserted rows row-events pair (table_map + Write_row)
  
  The solution is to leave the current binlogging behaviour as it is and change 
  the test as spliting arguments of insert delayed query. Note, that such fix was applied
  earlier for  binlog_insert_delayed.test :
  https://intranet.mysql.com/secure/apps/irclog.php?channel=22&start_time=2006-09-27 
  
  There are no tests with insert delayed and show binlog events combination requiring
  this fix.

  mysql-test/extra/rpl_tests/rpl_row_delayed_ins.test@1.4, 2007-01-11 23:59:09+02:00, aelkin@dsl-hkibras-fe36f900-97.dhcp.inet.fi +3 -1
    splitting insert delayed per rows

ChangeSet@1.2343.68.1, 2007-01-11 14:58:05-07:00, malff@weblab.(none) +11 -0
  Bug#22687 (Functions UNIQUE_USERS, GROUP_UNIQUE_USERS)
  
  According to some internal communication, these two functions are place
  holders for future enhancements. Because they use a variable number of
  parameters, the implementation defined a reserved keyword for them in the
  parser grammar.
  
  Unfortunately, doing so creates a bug similar to Bug 21114 reported for the
  function FORMAT.
  
  In the 5.1 code base, due to improvements in the code implemented with bug
  21114, having a reserved keyword for functions with a variable number of
  arguments is not needed any more by the implementation.
  
  As a result, this fix removes the place-holder implementation, and removes
  the unnecessary reserved keywords. Should the functions UNIQUE_USERS and
  GROUP_UNIQUE_USERS be finally implemented in a later release, the
  implementation should sub class Create_native_func in sql/item_create.cc.
  For example, see the class Create_func_concat.

  BitKeeper/deleted/.del-item_uniq.cc@1.11.1.1, 2007-01-11 14:53:11-07:00, malff@weblab.(none) +0 -0
    Rename: sql/item_uniq.cc -> BitKeeper/deleted/.del-item_uniq.cc

  BitKeeper/deleted/.del-item_uniq.h@1.27.1.1, 2007-01-11 14:53:11-07:00, malff@weblab.(none) +0 -0
    Rename: sql/item_uniq.h -> BitKeeper/deleted/.del-item_uniq.h

  libmysqld/Makefile.am@1.103.2.1, 2007-01-11 14:58:02-07:00, malff@weblab.(none) +1 -1
    Remove native functions UNIQUE_USERS() and GROUP_UNIQUE_USERS().

  mysql-test/r/parser.result@1.5, 2007-01-11 14:58:02-07:00, malff@weblab.(none) +6 -6
    Remove native functions UNIQUE_USERS() and GROUP_UNIQUE_USERS().

  mysql-test/t/parser.test@1.5, 2007-01-11 14:58:02-07:00, malff@weblab.(none) +10 -6
    Remove native functions UNIQUE_USERS() and GROUP_UNIQUE_USERS().

  sql/Makefile.am@1.167.1.1, 2007-01-11 14:58:02-07:00, malff@weblab.(none) +2 -2
    Remove native functions UNIQUE_USERS() and GROUP_UNIQUE_USERS().

  sql/item.h@1.216.1.1, 2007-01-11 14:58:02-07:00, malff@weblab.(none) +0 -1
    Remove native functions UNIQUE_USERS() and GROUP_UNIQUE_USERS().

  sql/item_sum.h@1.109.2.1, 2007-01-11 14:58:02-07:00, malff@weblab.(none) +1 -1
    Remove native functions UNIQUE_USERS() and GROUP_UNIQUE_USERS().

  sql/lex.h@1.166.1.1, 2007-01-11 14:58:02-07:00, malff@weblab.(none) +0 -2
    Remove native functions UNIQUE_USERS() and GROUP_UNIQUE_USERS().

  sql/mysql_priv.h@1.464.3.1, 2007-01-11 14:58:02-07:00, malff@weblab.(none) +1 -0
    Remove native functions UNIQUE_USERS() and GROUP_UNIQUE_USERS().

  sql/sql_yacc.yy@1.521.1.7, 2007-01-11 14:58:02-07:00, malff@weblab.(none) +0 -8
    Remove native functions UNIQUE_USERS() and GROUP_UNIQUE_USERS().

ChangeSet@1.2343.33.53, 2007-01-11 16:07:49-05:00, jas@rowvwade. +1 -0
  Turn off reporting of frequent stall points (a debugging / analysis feature).

  storage/falcon/SyncObject.cpp@1.17, 2007-01-11 16:07:43-05:00, jas@rowvwade. +1 -1
    Turn off reporting of frequent stall points (a debugging / analysis feature).

ChangeSet@1.1810.2482.1, 2007-01-11 23:18:01+03:00, evgen@moonbone.local +10 -0
  Bug#23417: Too strict checks against GROUP BY in the ONLY_FULL_GROUP_BY mode.
  
  Currently in the ONLY_FULL_GROUP_BY mode no hidden fields are allowed in the
  select list. To ensure this each expression in the select list is checked
  to be a constant, an aggregate function or to occur in the GROUP BY list.
  The last two requirements are wrong and doesn't allow valid expressions like
  "MAX(b) - MIN(b)" or "a + 1" in a query with grouping by a.
  
  The correct check implemented by the patch will ensure that:
  any field reference in the [sub]expressions of the select list 
    is under an aggregate function or
    is mentioned as member of the group list or
    is an outer reference or
    is part of the select list element that coincide with a grouping element.
  
  The Item_field objects now can contain the position of the select list
  expression which they belong to. The position is saved during the
  field's Item_field::fix_fields() call.
  
  The non_agg_fields list for non-aggregated fields is added to the SELECT_LEX
  class. The SELECT_LEX::cur_pos_in_select_list now contains the position in the
  select list of the expression being currently fixed.

  mysql-test/r/group_by.result@1.69.1.7, 2007-01-11 23:17:42+03:00, evgen@moonbone.local +102 -0
    Added a test case for the bug#23417: Too strict checks against GROUP BY in the ONLY_FULL_GROUP_BY mode.

  mysql-test/t/group_by.test@1.59.1.3, 2007-01-11 23:17:43+03:00, evgen@moonbone.local +51 -0
    Added a test case for the bug#23417: Too strict checks against GROUP BY in the ONLY_FULL_GROUP_BY mode.

  sql/item.cc@1.113.1.136, 2007-01-11 23:17:37+03:00, evgen@moonbone.local +21 -2
    Bug#23417: Too strict checks against GROUP BY in the ONLY_FULL_GROUP_BY mode.
    The Item_field objects now contain the position of the select list
    expression which they belong to. The position is saved at the field's
    Item_field::fix_fields() call.

  sql/item.h@1.183.1.33, 2007-01-11 23:17:39+03:00, evgen@moonbone.local +2 -1
    Bug#23417: Too strict checks against GROUP BY in the ONLY_FULL_GROUP_BY mode.
    The Item_field objects now can store the position in the select list of the
    expression to which they are belongs to.

  sql/mysql_priv.h@1.290.81.3, 2007-01-11 23:17:39+03:00, evgen@moonbone.local +2 -1
    Bug#23417: Too strict checks against GROUP BY in the ONLY_FULL_GROUP_BY mode.
    Added the UNDEF_POS constant.

  sql/sql_base.cc@1.235.80.1, 2007-01-11 23:17:39+03:00, evgen@moonbone.local +4 -0
    Bug#23417: Too strict checks against GROUP BY in the ONLY_FULL_GROUP_BY mode.
    Now the setup_fields() function maintains the cur_pos_in_select_list variable.

  sql/sql_lex.cc@1.142.31.4, 2007-01-11 23:17:40+03:00, evgen@moonbone.local +2 -0
    Bug#23417: Too strict checks against GROUP BY in the ONLY_FULL_GROUP_BY mode.
    Set the cur_pos_in_select_list variable and the non_agg_fields list to their initial state.

  sql/sql_lex.h@1.175.31.1, 2007-01-11 23:17:40+03:00, evgen@moonbone.local +4 -0
    Bug#23417: Too strict checks against GROUP BY in the ONLY_FULL_GROUP_BY mode.
    The non_agg_fields list for non-aggregated fields is added to the SELECT_LEX
    class. The SELECT_LEX::cur_pos_in_select_list now stores the position in the
    select list of the expression being currently fixed.

  sql/sql_select.cc@1.312.1.167, 2007-01-11 23:17:41+03:00, evgen@moonbone.local +56 -22
    Bug#23417: Too strict checks against GROUP BY in the ONLY_FULL_GROUP_BY mode.
    Each select now keeps the list of fields that aren't
    used under any aggregate function. If an expression from the select list
    isn't found in the GROUP BY list the setup_group() function additionally
    checks whether non-aggregated fields occur in that expression.
    If there at least one such field and it isn't found in the GROUP BY list
    then an error is thrown.

  sql/sql_union.cc@1.130.1.6, 2007-01-11 23:17:41+03:00, evgen@moonbone.local +1 -0
    Bug#23417: Too strict checks against GROUP BY in the ONLY_FULL_GROUP_BY mode.
    Clean up of the non_agg_fields list.

ChangeSet@1.2343.33.52, 2007-01-11 15:09:42-05:00, jas@rowvwade. +7 -0
  Added general mechanism to saving and restore lock state in thread object.

  storage/falcon/Bitmap.cpp@1.9, 2007-01-11 15:09:34-05:00, jas@rowvwade. +20 -16
    Made provision for 64 bit clumps in bitmap segment.

  storage/falcon/Bitmap.h@1.7, 2007-01-11 15:09:35-05:00, jas@rowvwade. +4 -1
    Made provision for 64 bit clumps in bitmap segment.

  storage/falcon/Log.cpp@1.5, 2007-01-11 15:09:35-05:00, jas@rowvwade. +7 -1
    Added general mechanism to saving and restore lock state in thread object.

  storage/falcon/SyncObject.cpp@1.16, 2007-01-11 15:09:35-05:00, jas@rowvwade. +4 -7
    Added general mechanism to saving and restore lock state in thread object.

  storage/falcon/Table.cpp@1.57, 2007-01-11 15:09:36-05:00, jas@rowvwade. +2 -1
    Factored stack local Bitmap to out block.

  storage/falcon/Thread.cpp@1.16, 2007-01-11 15:09:36-05:00, jas@rowvwade. +14 -0
    Added general mechanism to saving and restore lock state in thread object.

  storage/falcon/Thread.h@1.9, 2007-01-11 15:09:37-05:00, jas@rowvwade. +11 -0
    Added general mechanism to saving and restore lock state in thread object.

ChangeSet@1.2343.10.19, 2007-01-11 21:06:36+01:00, jonas@perch.ndb.mysql.com +1 -0
  fix merge error

  storage/ndb/test/ndbapi/testNodeRestart.cpp@1.35.1.4, 2007-01-11 21:06:34+01:00, jonas@perch.ndb.mysql.com +2 -40
    fix merge error

ChangeSet@1.1810.2124.38, 2007-01-11 20:51:16+01:00, jonas@perch.ndb.mysql.com +4 -0
  ndb - bug#25554
    fix bug when master failure during nr
    (recommit against 5.0)

  ndb/src/kernel/blocks/dbdih/DbdihMain.cpp@1.24.62.1, 2007-01-11 20:51:15+01:00, jonas@perch.ndb.mysql.com +2 -1
    recommit against 5.0

  ndb/src/kernel/blocks/qmgr/QmgrMain.cpp@1.13.25.1, 2007-01-11 20:51:15+01:00, jonas@perch.ndb.mysql.com +21 -0
    recommit against 5.0

  ndb/test/ndbapi/testNodeRestart.cpp@1.13.15.1, 2007-01-11 20:51:15+01:00, jonas@perch.ndb.mysql.com +53 -0
    recommit against 5.0

  ndb/test/run-test/daily-basic-tests.txt@1.27.26.1, 2007-01-11 20:51:15+01:00, jonas@perch.ndb.mysql.com +4 -0
    recommit against 5.0

ChangeSet@1.2343.33.51, 2007-01-11 13:35:49-05:00, jas@rowvwade. +9 -0
  Pass optional bitmap into Index::scanIndex to allow static Bitmaps and reused of dynamic bitmaps.

  storage/falcon/Index.cpp@1.27, 2007-01-11 13:35:40-05:00, jas@rowvwade. +8 -2
    Pass optional bitmap into Index::scanIndex to allow static Bitmaps and reused of dynamic bitmaps.

  storage/falcon/Index.h@1.12, 2007-01-11 13:35:40-05:00, jas@rowvwade. +1 -1
    Pass optional bitmap into Index::scanIndex to allow static Bitmaps and reused of dynamic bitmaps.

  storage/falcon/NBitmap.cpp@1.6, 2007-01-11 13:35:40-05:00, jas@rowvwade. +2 -2
    Pass optional bitmap into Index::scanIndex to allow static Bitmaps and reused of dynamic bitmaps.

  storage/falcon/NInSelectBitmap.cpp@1.4, 2007-01-11 13:35:41-05:00, jas@rowvwade. +1 -1
    Pass optional bitmap into Index::scanIndex to allow static Bitmaps and reused of dynamic bitmaps.

  storage/falcon/StorageDatabase.cpp@1.40, 2007-01-11 13:35:41-05:00, jas@rowvwade. +4 -6
    Pass optional bitmap into Index::scanIndex to allow static Bitmaps and reused of dynamic bitmaps.

  storage/falcon/StorageDatabase.h@1.16, 2007-01-11 13:35:41-05:00, jas@rowvwade. +1 -1
    Pass optional bitmap into Index::scanIndex to allow static Bitmaps and reused of dynamic bitmaps.

  storage/falcon/StorageTable.cpp@1.31, 2007-01-11 13:35:42-05:00, jas@rowvwade. +3 -9
    Pass optional bitmap into Index::scanIndex to allow static Bitmaps and reused of dynamic bitmaps.

  storage/falcon/Table.cpp@1.56, 2007-01-11 13:35:42-05:00, jas@rowvwade. +3 -5
    Switch over to local, on stack bitmap for Table::checkUniqueIndexes.

  storage/falcon/Transaction.cpp@1.47, 2007-01-11 13:35:43-05:00, jas@rowvwade. +0 -1
    Do clear state vector when re-initializing index.

ChangeSet@1.2343.33.50, 2007-01-11 12:23:29-05:00, jas@rowvwade. +6 -0
  Added mechanism where read only transactions stay in the active transaction
  list with state Available.  The TransactionManager recognizes these transactions
  and re-uses them without the need to a write lock on the active transaction
  list.

  storage/falcon/Database.cpp@1.40, 2007-01-11 12:23:21-05:00, jas@rowvwade. +5 -69
    Moving all transaction handling to the TransactionManager class.

  storage/falcon/Database.h@1.16, 2007-01-11 12:23:21-05:00, jas@rowvwade. +0 -4
    Moving all transaction handling to the TransactionManager class.

  storage/falcon/Transaction.cpp@1.46, 2007-01-11 12:23:22-05:00, jas@rowvwade. +73 -98
    Added mechanism where read only transactions stay in the active transaction
    list with state Available.  The TransactionManager recognizes these transactions
    and re-uses them without the need to a write lock on the active transaction
    list.

  storage/falcon/Transaction.h@1.23, 2007-01-11 12:23:22-05:00, jas@rowvwade. +18 -9
    Added mechanism where read only transactions stay in the active transaction
    list with state Available.  The TransactionManager recognizes these transactions
    and re-uses them without the need to a write lock on the active transaction
    list.

  storage/falcon/TransactionManager.cpp@1.2, 2007-01-11 12:23:23-05:00, jas@rowvwade. +82 -43
    Added mechanism where read only transactions stay in the active transaction
    list with state Available.  The TransactionManager recognizes these transactions
    and re-uses them without the need to a write lock on the active transaction
    list.

  storage/falcon/TransactionManager.h@1.2, 2007-01-11 12:23:23-05:00, jas@rowvwade. +12 -5
    Added mechanism where read only transactions stay in the active transaction
    list with state Available.  The TransactionManager recognizes these transactions
    and re-uses them without the need to a write lock on the active transaction
    list.

ChangeSet@1.1810.2480.1, 2007-01-11 19:10:01+02:00, gkodinov@macbook.gmz +3 -0
  BUG#25106: A USING clause in combination with a VIEW results in column
             aliases ignored
  When a column reference to a column in JOIN USING is resolved and a new 
  Item is created for this column the user defined name was lost.
  This fix preserves the alias by setting the name of the new Item to the
  original alias.

  mysql-test/r/join.result@1.38.1.2, 2007-01-11 19:09:55+02:00, gkodinov@macbook.gmz +16 -0
    BUG#25106: A USING clause in combination with a VIEW results in column
               aliases ignored
     - test case

  mysql-test/t/join.test@1.32.1.3, 2007-01-11 19:09:56+02:00, gkodinov@macbook.gmz +20 -0
    BUG#25106: A USING clause in combination with a VIEW results in column
               aliases ignored
     - test case

  sql/sql_base.cc@1.235.79.1, 2007-01-11 19:09:56+02:00, gkodinov@macbook.gmz +13 -0
    BUG#25106: A USING clause in combination with a VIEW results in column
               aliases ignored
     - take the alias of the Item to be replaced and set it into the newly
       allocated Item.

ChangeSet@1.1616.2921.10, 2007-01-11 16:45:38+03:00, evgen@moonbone.local +4 -0
  Bug#23409: Arguments of the ENCODE() and the DECODE() functions were not printed
  correctly.
  
  The Item_func::print method was used to print the Item_func_encode and the
  Item_func_decode objects. The last argument to ENCODE and DECODE functions
  is a plain C string and thus Item_func::print wasn't able to print it.
  
  The print() method is added to the Item_func_encode class. It correctly
  prints the Item_func_encode and the Item_func_decode objects.

  mysql-test/r/func_str.result@1.70.1.34, 2007-01-11 16:43:01+03:00, evgen@moonbone.local +13 -1
    Added a test case for bug#23409: Arguments of the ENCODE() and the DECODE() functions were not printed correctly.

  mysql-test/t/func_str.test@1.64.1.22, 2007-01-11 16:42:29+03:00, evgen@moonbone.local +8 -0
    Added a test case for bug#23409: Arguments of the ENCODE() and the
    > DECODE() functionswere not printed correctly.

  sql/item_strfunc.cc@1.196.6.20, 2007-01-11 16:44:59+03:00, evgen@moonbone.local +13 -0
    Bug#23409: Arguments of the ENCODE() and the DECODE() functions were not printed correctly.
    The print() method is added to the Item_func_encode class. It correctly
    prints the Item_func_encode and the Item_func_decode objects.

  sql/item_strfunc.h@1.73.2.20, 2007-01-11 16:44:43+03:00, evgen@moonbone.local +8 -3
    Bug#23409: Arguments of the ENCODE() and the DECODE() functions were not printed correctly.
    The print() method is added to the Item_func_encode class.

ChangeSet@1.1616.2904.3, 2007-01-11 16:05:03+03:00, evgen@moonbone.local +3 -0
  Bug#17711: DELETE doesn't use index when ORDER BY, LIMIT and non-restricting
  WHERE is present.
  
  If a DELETE statement with ORDER BY and LIMIT contains a WHERE clause
  with conditions that for sure cannot be used for index access (like in
  WHERE @var:= field) the execution always follows the filesort path.    
  It happens currently even when for the above case there is an index that
  can be used to speedup sorting by the order by list.
  
  Now if a DELETE statement with ORDER BY and LIMIT contains such WHERE
  clause conditions that cannot be used to build any quick select then
  the mysql_delete() tries to use an index like there is no WHERE clause at all.

  mysql-test/r/delete.result@1.21.1.3, 2007-01-11 16:04:02+03:00, evgen@moonbone.local +7 -0
    Added a test case for bug#17711: DELETE doesn't use index when ORDER BY, LIMIT and non-restricting WHERE is present.

  mysql-test/t/delete.test@1.19.1.4, 2007-01-11 16:03:54+03:00, evgen@moonbone.local +10 -0
    Added a test case for bug#17711: DELETE doesn't use index when ORDER BY, LIMIT and non-restricting
    WHERE is present.

  sql/sql_delete.cc@1.99.2.44, 2007-01-11 16:04:10+03:00, evgen@moonbone.local +1 -1
    Bug#17711: DELETE doesn't use index when ORDER BY, LIMIT and non-restricting WHERE is present.
    Now if a DELETE statement with ORDER BY and LIMIT contains such WHERE
    clause conditions that cannot be used to build any quick select then
    the mysql_delete() tries to use an index like there is no WHERE clause at all.

ChangeSet@1.2384, 2007-01-11 16:50:34+04:00, gluh@mysql.com +1 -0
  after merge fix

  sql/sql_base.cc@1.368.1.4, 2007-01-11 16:50:32+04:00, gluh@mysql.com +14 -11
    after merge fix

ChangeSet@1.1616.2924.6, 2007-01-11 12:31:52+01:00, kent@mysql.com +9 -0
  Many files:
    Reverted change for bug#13859, applied smaller patch from Marko

  innobase/buf/buf0buf.c@1.38.1.4, 2007-01-11 12:31:01+01:00, kent@mysql.com +1 -1
    Reverted change for bug#13859, applied smaller patch from Marko

  innobase/dict/dict0dict.c@1.52.1.17, 2007-01-11 12:31:01+01:00, kent@mysql.com +3 -3
    Reverted change for bug#13859, applied smaller patch from Marko

  innobase/fil/fil0fil.c@1.41.1.16, 2007-01-11 12:31:01+01:00, kent@mysql.com +2 -2
    Reverted change for bug#13859, applied smaller patch from Marko

  innobase/ha/ha0ha.c@1.13.1.2, 2007-01-11 12:31:01+01:00, kent@mysql.com +1 -1
    Reverted change for bug#13859, applied smaller patch from Marko

  innobase/ha/hash0hash.c@1.4.2.1, 2007-01-11 12:31:01+01:00, kent@mysql.com +1 -1
    Reverted change for bug#13859, applied smaller patch from Marko

  innobase/include/hash0hash.h@1.4.1.2, 2007-01-11 12:31:01+01:00, kent@mysql.com +4 -1
    Reverted change for bug#13859, applied smaller patch from Marko

  innobase/lock/lock0lock.c@1.43.1.7, 2007-01-11 12:31:01+01:00, kent@mysql.com +1 -1
    Reverted change for bug#13859, applied smaller patch from Marko

  innobase/log/log0recv.c@1.38.1.5, 2007-01-11 12:31:01+01:00, kent@mysql.com +2 -2
    Reverted change for bug#13859, applied smaller patch from Marko

  innobase/thr/thr0loc.c@1.7.2.1, 2007-01-11 12:31:01+01:00, kent@mysql.com +1 -1
    Reverted change for bug#13859, applied smaller patch from Marko

ChangeSet@1.1616.2929.1, 2007-01-11 09:40:17+01:00, Kristofer.Pettersson@naruto. +1 -0
  Bug#24751 - Possible infinit loop in init_io_cache() when insufficient memory
  - When cache memory can't be allocated size is recaclulated using 3/4 of
    the requested memory. This number is rounded up to the nearest 
    min_cache step. 
    However with the previous implementation the new cache size might
    become bigger than requested because of this rounding and thus we get
    an infinit loop.
  - This patch fixes this problem by ensuring that the new cache size
    always will be smaller on the second and subsequent iterations until
    we reach min_cache.

  mysys/mf_iocache.c@1.47.3.1, 2007-01-11 09:40:15+01:00, Kristofer.Pettersson@naruto. +4 -3
    - Added mask to cachesize to ensure that algorithm always produce a 
      smaller cache size than current, until we reach 'min_cache' size.

ChangeSet@1.2303.233.4, 2007-01-10 23:53:08-08:00, brian@zim.(none) +7 -0
  New azio which keeps meta data in its own header. 

  storage/archive/Makefile.am@1.8.1.1, 2007-01-10 23:53:05-08:00, brian@zim.(none) +9 -1
    Added archive reader

  storage/archive/archive_reader.c@1.1, 2007-01-10 23:53:06-08:00, brian@zim.(none) +39 -0
    New BitKeeper file ``storage/archive/archive_reader.c''

  storage/archive/archive_reader.c@1.0, 2007-01-10 23:53:06-08:00, brian@zim.(none) +0 -0

  storage/archive/archive_test.c@1.6, 2007-01-10 23:53:05-08:00, brian@zim.(none) +138 -50
    Extended archive test

  storage/archive/azio.c@1.9.1.3, 2007-01-10 23:53:05-08:00, brian@zim.(none) +149 -128
    Rewrite of azio to include support for more meta data in header

  storage/archive/azlib.h@1.7, 2007-01-10 23:53:05-08:00, brian@zim.(none) +31 -11
    Extended information.

  storage/archive/ha_archive.cc@1.111.1.4, 2007-01-10 23:53:05-08:00, brian@zim.(none) +121 -301
    Rewrite to handle new azio

  storage/archive/ha_archive.h@1.57, 2007-01-10 23:53:05-08:00, brian@zim.(none) +1 -16
    Rewrite to handle new azio. 

ChangeSet@1.2343.65.2, 2007-01-11 01:48:09+01:00, hakank@lu0008.wdf.sap.corp +3 -0
  New test case for BUG#25537.

  mysql-test/r/falcon_bug_25537.result@1.1, 2007-01-11 01:48:03+01:00, hakank@lu0008.wdf.sap.corp +28 -0
    New BitKeeper file ``mysql-test/r/falcon_bug_25537.result''

  mysql-test/r/falcon_bug_25537.result@1.0, 2007-01-11 01:48:03+01:00, hakank@lu0008.wdf.sap.corp +0 -0

  mysql-test/t/disabled.def@1.258, 2007-01-11 01:48:03+01:00, hakank@lu0008.wdf.sap.corp +1 -0
    Disabled new test for BUG#25537.

  mysql-test/t/falcon_bug_25537.test@1.1, 2007-01-11 01:48:03+01:00, hakank@lu0008.wdf.sap.corp +42 -0
    New BitKeeper file ``mysql-test/t/falcon_bug_25537.test''

  mysql-test/t/falcon_bug_25537.test@1.0, 2007-01-11 01:48:03+01:00, hakank@lu0008.wdf.sap.corp +0 -0

ChangeSet@1.2343.33.49, 2007-01-10 17:54:15-05:00, jas@rowvwade. +10 -0
  Added class TransactionManager to do non-blocking managment of degenerate
  (i.e. non-update) transactions using interlocked instructions.  When a 
  transaction performs its first update, it's removed from the transaction
  manager and inserted in the database active transaction list.

  storage/falcon/CMakeLists.txt@1.42, 2007-01-10 17:53:21-05:00, jas@rowvwade. +2 -0
    Added new class TransactionManager.

  storage/falcon/Database.cpp@1.39, 2007-01-10 17:53:22-05:00, jas@rowvwade. +7 -3
    Added class TransactionManager to do non-blocking managment of degenerate
    (i.e. non-update) transactions using interlocked instructions.  When a 
    transaction performs its first update, it's removed from the transaction
    manager and inserted in the database active transaction list.

  storage/falcon/Database.h@1.15, 2007-01-10 17:53:24-05:00, jas@rowvwade. +4 -2
    Added class TransactionManager to do non-blocking managment of degenerate
    (i.e. non-update) transactions using interlocked instructions.  When a 
    transaction performs its first update, it's removed from the transaction
    manager and inserted in the database active transaction list.

  storage/falcon/Makefile.am@1.47, 2007-01-10 17:53:25-05:00, jas@rowvwade. +2 -0
    Added new class TransactionManager.

  storage/falcon/RecordLeaf.h@1.6, 2007-01-10 17:53:27-05:00, jas@rowvwade. +1 -1
    Turn on record leaf level locking granularity.

  storage/falcon/Table.cpp@1.55, 2007-01-10 17:53:29-05:00, jas@rowvwade. +1 -0
    Minor stylist edit for clarity.

  storage/falcon/Transaction.cpp@1.45, 2007-01-10 17:53:30-05:00, jas@rowvwade. +50 -12
    Added class TransactionManager to do non-blocking managment of degenerate
    (i.e. non-update) transactions using interlocked instructions.  When a 
    transaction performs its first update, it's removed from the transaction
    manager and inserted in the database active transaction list.

  storage/falcon/Transaction.h@1.22, 2007-01-10 17:53:31-05:00, jas@rowvwade. +2 -0
    Added class TransactionManager to do non-blocking managment of degenerate
    (i.e. non-update) transactions using interlocked instructions.  When a 
    transaction performs its first update, it's removed from the transaction
    manager and inserted in the database active transaction list.

  storage/falcon/TransactionManager.cpp@1.1, 2007-01-10 17:53:32-05:00, jas@rowvwade. +100 -0
    New BitKeeper file ``storage/falcon/TransactionManager.cpp''

  storage/falcon/TransactionManager.cpp@1.0, 2007-01-10 17:53:32-05:00, jas@rowvwade. +0 -0

  storage/falcon/TransactionManager.h@1.1, 2007-01-10 17:53:32-05:00, jas@rowvwade. +40 -0
    New BitKeeper file ``storage/falcon/TransactionManager.h''

  storage/falcon/TransactionManager.h@1.0, 2007-01-10 17:53:32-05:00, jas@rowvwade. +0 -0

ChangeSet@1.2343.65.1, 2007-01-10 21:58:15+01:00, hakank@lu0008.wdf.sap.corp +1 -0
  Bumbed version.

  configure.in@1.404.2.4, 2007-01-10 21:58:09+01:00, hakank@lu0008.wdf.sap.corp +1 -1
    Bumbed version.

ChangeSet@1.2343.10.17, 2007-01-10 20:50:19+01:00, jonas@perch.ndb.mysql.com +4 -0
  ndb - bug#25468
    handle partially transfered LCP_FRAG_REP after node failure
    recommit to 51-work

  storage/ndb/src/kernel/blocks/dbdih/Dbdih.hpp@1.23.1.1, 2007-01-10 20:50:17+01:00, jonas@perch.ndb.mysql.com +1 -0
    handle partially transfered LCP_FRAG_REP after node failure

  storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp@1.94.1.1, 2007-01-10 20:50:17+01:00, jonas@perch.ndb.mysql.com +74 -5
    handle partially transfered LCP_FRAG_REP after node failure

  storage/ndb/test/ndbapi/testNodeRestart.cpp@1.35.1.2, 2007-01-10 20:50:17+01:00, jonas@perch.ndb.mysql.com +60 -0
    testcase

  storage/ndb/test/run-test/daily-basic-tests.txt@1.58.1.3, 2007-01-10 20:50:17+01:00, jonas@perch.ndb.mysql.com +4 -0
    testcase

ChangeSet@1.1810.2475.1, 2007-01-10 13:45:41-05:00, cbell@suse.vabb.com +2 -0
  BUG#22645 - LC_TIME_NAMES: Statement not replicated
  This patch is an additional code change to the get_str_len_and_pointer
  method in log_events.cc. This change is necessary to correct a problem
  encountered on 64-bit SUSE where the auto_increment_* variables were
  being overwritten. The change corrects a cast mismatch which caused
  the problem.

  sql/log_event.cc@1.174.1.48, 2007-01-10 13:44:35-05:00, Chuck@suse.vabb.com +36 -29
    BUG#22645 - LC_TIME_NAMES: Statement not replicated
    This patch is an additional code change to the get_str_len_and_pointer,
    copy_str_and_move methods and the Query_leg_event constructor to 
    correct a type mismatch encountered during testing on SUSE 64-bit. The patch changes
    the data type of the buffer variables was changed to a new typedef 
    defined in the Log_event class. The new type is:
    
    typedef unsigned char Byte; 
    
    The variables changed include:
    
    pos, start, end, and data_buf 

  sql/log_event.h@1.122.1.7, 2007-01-10 13:44:36-05:00, Chuck@suse.vabb.com +8 -1
    BUG#22645 - LC_TIME_NAMES: Statement not replicated
    This patch adds a new type definition to the Log_event class. The new
    type is typedef unsigned char Byte. It is used in place of the uchar
    and usigned char definitions in the Query_log_event constructor to 
    eliminate type conversion problems encountere on SUSE 64-bit.
    

ChangeSet@1.2343.33.48, 2007-01-10 13:44:37-05:00, jas@rowvwade. +9 -0
  Made record tree locking granuality condition for evaluation.

  storage/falcon/Bitmap.cpp@1.8, 2007-01-10 13:44:29-05:00, jas@rowvwade. +0 -1
    Fixed (expletive deleted) include file order problem induced by inclusion
    of Windows.h by SyncObject.

  storage/falcon/Bitmap.h@1.6, 2007-01-10 13:44:29-05:00, jas@rowvwade. +4 -2
    Fixed (expletive deleted) include file order problem induced by inclusion
    of Windows.h by SyncObject.

  storage/falcon/FsbInversion.cpp@1.3, 2007-01-10 13:44:30-05:00, jas@rowvwade. +1 -1
    Fixed (expletive deleted) include file order problem induced by inclusion
    of Windows.h by SyncObject.

  storage/falcon/NBitmap.cpp@1.5, 2007-01-10 13:44:30-05:00, jas@rowvwade. +1 -1
    Fixed (expletive deleted) include file order problem induced by inclusion
    of Windows.h by SyncObject.

  storage/falcon/NNode.cpp@1.6, 2007-01-10 13:44:30-05:00, jas@rowvwade. +1 -1
    Fixed (expletive deleted) include file order problem induced by inclusion
    of Windows.h by SyncObject.

  storage/falcon/RecordLeaf.cpp@1.14, 2007-01-10 13:44:31-05:00, jas@rowvwade. +7 -0
    Made record tree locking granuality condition for evaluation.

  storage/falcon/RecordLeaf.h@1.5, 2007-01-10 13:44:31-05:00, jas@rowvwade. +4 -0
    Made record tree locking granuality condition for evaluation.

  storage/falcon/Table.cpp@1.54, 2007-01-10 13:44:31-05:00, jas@rowvwade. +21 -1
    Made record tree locking granuality condition for evaluation.

  storage/falcon/Validation.h@1.4, 2007-01-10 13:44:32-05:00, jas@rowvwade. +1 -0
    Fixed (expletive deleted) include file order problem induced by inclusion
    of Windows.h by SyncObject.

ChangeSet@1.2343.64.1, 2007-01-10 12:20:13-05:00, cbell@suse.vabb.com +2 -0
  BUG#22645 - LC_TIME_NAMES: Statement not replicated
  This patch is an additional code change to the get_str_len_and_pointer 
  method in log_events.cc. This change is necessary to correct a problem
  encountered on 64-bit SUSE where the auto_increment_* variables were
  being overwritten. The change corrects a cast mismatch which caused
  the problem.

  sql/log_event.cc@1.260, 2007-01-10 12:20:08-05:00, cbell@suse.vabb.com +37 -28
    BUG#22645 - LC_TIME_NAMES: Statement not replicated
    This patch is an additional code change to the get_str_len_and_pointer,
    copy_str_and_move methods and the Query_leg_event constructor to 
    correct a type mismatch encountered during testing on SUSE 64-bit. The patch changes
    the data type of the buffer variables was changed to a new typedef 
    defined in the Log_event class. The new type is:
    
    typedef unsigned char Byte; 
    
    The variables changed include:
    
    pos, start, end, and data_buf 

  sql/log_event.h@1.143, 2007-01-10 12:20:08-05:00, cbell@suse.vabb.com +8 -1
    This patch adds a new type definition to the Log_event class. The new
    type is typedef unsigned char Byte. It is used in place of the uchar
    and usigned char definitions in the Query_log_event constructor to 
    eliminate type conversion problems encountere on SUSE 64-bit.

ChangeSet@1.1810.2442.12, 2007-01-10 18:19:51+01:00, kent@mysql.com +1 -0
  configure.in:
    Corrected default for --disable-grant-options

  configure.in@1.245.73.2, 2007-01-10 18:19:40+01:00, kent@mysql.com +5 -5
    Corrected default for --disable-grant-options

ChangeSet@1.2343.33.47, 2007-01-10 11:39:43-05:00, jas@rowvwade. +4 -0
  Added concurrent form of Bitmap::set that assumes a read lock on the bitmap
  but punts on hard cases.

  storage/falcon/Bitmap.cpp@1.7, 2007-01-10 11:39:35-05:00, jas@rowvwade. +71 -1
    Added concurrent form of Bitmap::set that assumes a read lock on the bitmap
    but punts on hard cases.

  storage/falcon/Bitmap.h@1.5, 2007-01-10 11:39:36-05:00, jas@rowvwade. +3 -2
    Added concurrent form of Bitmap::set that assumes a read lock on the bitmap
    but punts on hard cases.

  storage/falcon/SyncObject.cpp@1.15, 2007-01-10 11:39:36-05:00, jas@rowvwade. +0 -3
    Eliminate piece of dead, conditional code.

  storage/falcon/Table.cpp@1.53, 2007-01-10 11:39:36-05:00, jas@rowvwade. +24 -10
    Added concurrent form of Bitmap::set that assumes a read lock on the bitmap
    but punts on hard cases.

ChangeSet@1.1810.2467.7, 2007-01-10 14:50:09+01:00, kent@mysql.com +1 -0
  configure.in:
    Removed line accidently inserted when correcting bug#18526

  configure.in@1.245.1.172, 2007-01-10 14:50:03+01:00, kent@mysql.com +0 -1
    Removed line accidently inserted when correcting bug#18526

ChangeSet@1.1810.2456.20, 2007-01-10 14:03:36+04:00, gluh@mysql.com +1 -0
  after merge fix

  sql/sql_base.cc@1.235.1.127, 2007-01-10 14:03:35+04:00, gluh@mysql.com +2 -1
    after merge fix

ChangeSet@1.1616.2928.1, 2007-01-10 12:57:03+04:00, gluh@mysql.com +3 -0
  Fix for bug#20867 InnoDB Bug - create temporary table+crash => mysqld needs to clean up
  2nd version
  During tmp tables cleanup we get the handler for temporary table
  and delete table using handler method.

  sql/mysql_priv.h@1.186.109.1, 2007-01-10 12:57:02+04:00, gluh@mysql.com +1 -0
    added function prototype

  sql/mysqld.cc@1.356.98.34, 2007-01-10 12:57:02+04:00, gluh@mysql.com +1 -1
    added call of mysql_rm_tmp_tables() function

  sql/sql_base.cc@1.145.1.130, 2007-01-10 12:57:02+04:00, gluh@mysql.com +35 -7
    mysql_rm_tmp_tables()
    -removed from table_cache_init
    -During tmp tables cleanup we get the handler for temporary table
     and delete table using handler method. 
     it allows to remove orphan records from data dictionary(InnoDB)

ChangeSet@1.1616.2921.7, 2007-01-10 00:27:11-08:00, igor@olga.mysql.com +3 -0
  Fixed bug #25427.
  In the method Item_field::fix_fields we try to resolve the name of
  the field against the names of the aliases that occur in the select
  list. This is done by a call of the function find_item_in_list.
  When this function finds several occurrences of the field name
  it sends an error message to the error queue and returns 0.
  Yet the code did not take into account that find_item_in_list
  could return 0 and tried to dereference the returned value.

  mysql-test/r/order_by.result@1.40.1.9, 2007-01-10 00:27:09-08:00, igor@olga.mysql.com +8 -0
    Added a test case for bug #25427.

  mysql-test/t/order_by.test@1.29.1.7, 2007-01-10 00:27:09-08:00, igor@olga.mysql.com +15 -0
    Added a test case for bug #25427.

  sql/item.cc@1.58.1.177, 2007-01-10 00:27:09-08:00, igor@olga.mysql.com +2 -0
    Fixed bug #25427.
    In the method Item_field::fix_fields we try to resolve the name of
    the field against the names of the aliases that occur in the select
    list. This is done by a call of the function find_item_in_list.
    When this function finds several occurrences of the field name 
    it sends an error message to the error queue and returns 0.
    Yet the code did not take into account that find_item_in_list
    could return 0 and tried to dereference the returned value.
    
    

ChangeSet@1.1810.2442.11, 2007-01-09 19:22:01-07:00, tsmith@siva.hindu.god +9 -0
  WL #3670: Compile-time option to remove GRANT-related startup options
  
  - configure --disable-grant-options defines DISABLE_GRANT_OPTIONS
  - configure.js/cmake also updated
  - if DISABLE_GRANT_OPTIONS is defined, mysqld no longer recognizes:
    --bootstrap
    --init-file
    --skip-grant-tables
  
  Scripts which rely on those three options are modified to check the environment for MYSQLD_BOOTSTRAP; it should be set to the full path of a mysqld which does handle those options.
  
  For example:
  
  $ export MYSQLD_BOOTSTRAP
  $ MYSQLD_BOOTSTRAP=/path/to/full/MySQL/bin/mysqld
  $ mysql_install_db
  $ make test

  sql/CMakeLists.txt@1.1.3.1, 2007-01-09 19:21:58-07:00, tsmith@siva.hindu.god +4 -0
    Add DISABLE_GRANT_OPTIONS define

  win/README@1.1.1.1, 2007-01-09 19:21:58-07:00, tsmith@siva.hindu.god +3 -0
    Document the DISABLE_GRANT_OPTIONS define

  win/configure.js@1.1.2.1, 2007-01-09 19:21:58-07:00, tsmith@siva.hindu.god +1 -0
    Handle DISABLE_GRANT_OPTIONS

  mysql-test/mysql_test_run_new.c@1.15.1.1, 2007-01-09 19:21:58-07:00, tsmith@siva.hindu.god +8 -0
    Mention need for MYSQLD_BOOTSTRAP in a comment, in case this needs to be used with a mysqld which does not accept the --bootstrap option.

  configure.in@1.245.73.1, 2007-01-09 19:21:58-07:00, tsmith@siva.hindu.god +16 -0
    WL#3670
    
    Add --disable-grant-options

  mysql-test/install_test_db.sh@1.35.2.1, 2007-01-09 19:21:58-07:00, tsmith@siva.hindu.god +10 -4
    Add MYSQLD_BOOTSTRAP env variable, to enable test suite to work even if mysqld does not accept --bootstrap or --skip-grant-tables.

  mysql-test/mysql-test-run.pl@1.30.69.1, 2007-01-09 19:21:58-07:00, tsmith@siva.hindu.god +9 -2
    Add MYSQLD_BOOTSTRAP env variable, to enable test suite to work even if mysqld does not accept --bootstrap or --skip-grant-tables.

  scripts/mysql_install_db.sh@1.64.2.1, 2007-01-09 19:21:58-07:00, tsmith@siva.hindu.god +2 -1
    Add MYSQLD_BOOTSTRAP env variable, to enable mysqld_install_db to work even if mysqld does not accept --bootstrap or --skip-grant-tables.

  sql/mysqld.cc@1.439.84.1, 2007-01-09 19:21:58-07:00, tsmith@siva.hindu.god +6 -0
    Add DISABLE_GRANT_OPTIONS define, which removes the --bootstrap, --init-file, and --skip-grant-tables options

ChangeSet@1.1810.2467.6, 2007-01-10 00:36:41+01:00, joerg@trift2. +1 -0
  support-files/MySQL-shared-compat.spec.sh  :    Dummy, irrelevant change - just trigger a new build.

  support-files/MySQL-shared-compat.spec.sh@1.9, 2007-01-10 00:36:38+01:00, joerg@trift2. +1 -1
    Dummy, irrelevant change - just trigger a new build.

ChangeSet@1.2343.33.46, 2007-01-09 16:27:19-05:00, jas@rowvwade. +8 -0
  Experimental change to synchronization for table record trees.  Access control
  for RecordLeaf object is handled by a per-RecordLeaf SyncObject.  Table::insert
  normally gets only a Shared lock on the record tree.  If storing the record requires
  serious structure change in the record tree, the operation is abandoned, the record
  tree lock is released and reacquired as Exclusive, and the operation is restarted.

  storage/falcon/RecordGroup.cpp@1.5, 2007-01-09 16:27:11-05:00, jas@rowvwade. +13 -31
    Experimental change to synchronization for table record trees.  Access control
    for RecordLeaf object is handled by a per-RecordLeaf SyncObject.  Table::insert
    normally gets only a Shared lock on the record tree.  If storing the record requires
    serious structure change in the record tree, the operation is abandoned, the record
    tree lock is released and reacquired as Exclusive, and the operation is restarted.

  storage/falcon/RecordGroup.h@1.4, 2007-01-09 16:27:11-05:00, jas@rowvwade. +1 -1
    Experimental change to synchronization for table record trees.  Access control
    for RecordLeaf object is handled by a per-RecordLeaf SyncObject.  Table::insert
    normally gets only a Shared lock on the record tree.  If storing the record requires
    serious structure change in the record tree, the operation is abandoned, the record
    tree lock is released and reacquired as Exclusive, and the operation is restarted.

  storage/falcon/RecordLeaf.cpp@1.13, 2007-01-09 16:27:12-05:00, jas@rowvwade. +13 -3
    Experimental change to synchronization for table record trees.  Access control
    for RecordLeaf object is handled by a per-RecordLeaf SyncObject.  Table::insert
    normally gets only a Shared lock on the record tree.  If storing the record requires
    serious structure change in the record tree, the operation is abandoned, the record
    tree lock is released and reacquired as Exclusive, and the operation is restarted.

  storage/falcon/RecordLeaf.h@1.4, 2007-01-09 16:27:12-05:00, jas@rowvwade. +4 -2
    Experimental change to synchronization for table record trees.  Access control
    for RecordLeaf object is handled by a per-RecordLeaf SyncObject.  Table::insert
    normally gets only a Shared lock on the record tree.  If storing the record requires
    serious structure change in the record tree, the operation is abandoned, the record
    tree lock is released and reacquired as Exclusive, and the operation is restarted.

  storage/falcon/RecordSection.h@1.4, 2007-01-09 16:27:12-05:00, jas@rowvwade. +1 -1
    Experimental change to synchronization for table record trees.  Access control
    for RecordLeaf object is handled by a per-RecordLeaf SyncObject.  Table::insert
    normally gets only a Shared lock on the record tree.  If storing the record requires
    serious structure change in the record tree, the operation is abandoned, the record
    tree lock is released and reacquired as Exclusive, and the operation is restarted.

  storage/falcon/SyncObject.cpp@1.14, 2007-01-09 16:27:13-05:00, jas@rowvwade. +2 -5
    Fixed reporting of frequently stalled synchronization objects.

  storage/falcon/SyncObject.h@1.5, 2007-01-09 16:27:13-05:00, jas@rowvwade. +0 -1
    Fixed reporting of frequently stalled synchronization objects.

  storage/falcon/Table.cpp@1.52, 2007-01-09 16:27:13-05:00, jas@rowvwade. +27 -12
    Experimental change to synchronization for table record trees.  Access control
    for RecordLeaf object is handled by a per-RecordLeaf SyncObject.  Table::insert
    normally gets only a Shared lock on the record tree.  If storing the record requires
    serious structure change in the record tree, the operation is abandoned, the record
    tree lock is released and reacquired as Exclusive, and the operation is restarted.

ChangeSet@1.1810.2473.3, 2007-01-09 23:24:56+03:00, evgen@moonbone.local +4 -0
  Fixed bug#16861: User defined variable can have a wrong value if a tmp table was
  used.
  
  The Item::save_in_field() function is called from fill_record() to fill the 
  new row with data while execution of the CREATE TABLE ... SELECT statement.
  Item::save_in_field() calls val_xxx() methods in order to get values.
  val_xxx() methods do not take into account the result field. Due to this
  Item_func_set_user_var::val_xxx() methods returns values from the original
  table, not from the temporary one.
  
  The save_in_field() member function is added to the Item_func_set_user_var
  class. It detects whether the result field should be used and properly updates
  the value of the user variable.

  mysql-test/r/user_var.result@1.37.1.7, 2007-01-09 23:23:57+03:00, evgen@moonbone.local +8 -1
    Extended the test case for bug#18681: User defined variable can have a wrong value if
    a tmp table was used.

  mysql-test/t/user_var.test@1.35.1.4, 2007-01-09 23:24:10+03:00, evgen@moonbone.local +4 -1
    Extended the test case for bug#18681: User defined variable can have a wrong value if
    a tmp table was used.

  sql/item_func.cc@1.270.1.51, 2007-01-09 23:23:11+03:00, evgen@moonbone.local +99 -0
    Bug#16861: User defined variable can have a wrong value if a tmp table was used.
    Added the save_in_field() member function to the Item_func_set_user_var class.

  sql/item_func.h@1.136.2.23, 2007-01-09 23:23:37+03:00, evgen@moonbone.local +1 -0
    Bug#16861: User defined variable can have a wrong value if a tmp table was used.
    Added the save_in_field() member function to the Item_func_set_user_var class.

ChangeSet@1.1810.2473.2, 2007-01-09 22:35:30+03:00, evgen@moonbone.local +3 -0
  Bug#14171: Wrong internal default value for a BINARY field.
  
  A BINARY field is represented by the Field_string class. The space character
  is used as the filler for unused characters in such a field. But a BINARY field 
  should use \x00 instead.
  
  Field_string:reset() now detects whether the current field is a BINARY one
  and if so uses the \x00 character as a default value filler.

  mysql-test/r/type_binary.result@1.3.1.1, 2007-01-09 22:33:54+03:00, evgen@moonbone.local +9 -0
    Added a test case for the bug#14171: Wrong internal default value for a BINARY field.

  mysql-test/t/type_binary.test@1.4, 2007-01-09 22:34:11+03:00, evgen@moonbone.local +8 -0
    Added a test case for the bug#14171: Wrong internal default value for a BINARY field.

  sql/field.h@1.153.17.3, 2007-01-09 22:32:38+03:00, evgen@moonbone.local +2 -1
    Bug#14171: Wrong internal default value for a BINARY field.
    Field_string:reset() now detects whether the current field is a BINARY one
    and if so uses the \x00 character as a default value filler.

ChangeSet@1.2372.13.1, 2007-01-09 20:23:12+01:00, tnurnberg@mysql.com +4 -0
  Bug#24660: "enum" field type definition problem
  
  ENUMs weren't allowed to have character 0xff, a perfectly good character in many locales.
  This was circumvented by mapping 0xff in ENUMs to ',', thereby prevent actual commas from
  being used (because they too would get converted to 0xff on load). Now if 0xff makes an
  appearance, we find a character not used in the enum and use that as a separator. If no
  such character exists, we throw an error.
  
  Any solution would have broken some sort of existing behaviour. This solution should
  serve both fractions (those with 0xff and those with ',' in their enums), but
  WILL REQUIRE A DUMP/RESTORE CYCLE FROM THOSE WITH 0xff IN THEIR ENUMS. :-/
  That is, mysqldump with their current server, and restore when upgrading to one with
  this patch.
  
  (port of the original 4.1 patch. incorporates some suggestions by kaamos.)

  mysql-test/r/type_enum.result@1.31, 2007-01-09 20:23:10+01:00, tnurnberg@mysql.com +26 -0
    Bug#24660: "enum" field type definition problem
    
    Show that enums can now contain NAMES_SEP_CHAR (0xff, which is a perfectly respectable
    char in some locales), or ',', or both.

  mysql-test/t/type_enum.test@1.17, 2007-01-09 20:23:10+01:00, tnurnberg@mysql.com +23 -1
    Bug#24660: "enum" field type definition problem
    
    Show that enums can now contain NAMES_SEP_CHAR (0xff, which is a perfectly respectable
    char in some locales), or ',', or both.

  sql/table.cc@1.264.1.2, 2007-01-09 20:23:10+01:00, tnurnberg@mysql.com +0 -11
    Bug#24660: "enum" field type definition problem
    
    Revert fix for Bug#20922.

  sql/unireg.cc@1.93, 2007-01-09 20:23:10+01:00, tnurnberg@mysql.com +40 -21
    Bug#24660: "enum" field type definition problem
    
    Use a field-separator for ENUM-values that is not part of those values. If impossible,
    throw error.

ChangeSet@1.2343.33.45, 2007-01-09 12:08:14-05:00, jas@rowvwade. +2 -0
  Work in progress on finding and fixing thread bottlenecks.

  storage/falcon/SyncObject.cpp@1.13, 2007-01-09 12:08:08-05:00, jas@rowvwade. +23 -3
    Work in progress on finding and fixing thread bottlenecks.

  storage/falcon/SyncObject.h@1.4, 2007-01-09 12:08:09-05:00, jas@rowvwade. +3 -2
    Work in progress on finding and fixing thread bottlenecks.

ChangeSet@1.2343.33.44, 2007-01-09 11:24:53-05:00, jas@rowvwade. +7 -0
  Track number of stalls per SyncObject to identify thread bottlenecks.  Also
  eliminated the configurable page cache hash table size in favor of a function
  of the cache size.

  storage/falcon/Database.cpp@1.38, 2007-01-09 11:24:44-05:00, jas@rowvwade. +2 -2
    Eliminate page cache hash table size as a configurable parameter.

  storage/falcon/Dbb.cpp@1.43, 2007-01-09 11:24:44-05:00, jas@rowvwade. +14 -13
    Eliminate page cache hash table size as a configurable parameter.

  storage/falcon/Dbb.h@1.21, 2007-01-09 11:24:44-05:00, jas@rowvwade. +4 -5
    Eliminate page cache hash table size as a configurable parameter.

  storage/falcon/Engine.dsp@1.1, 2007-01-09 11:24:46-05:00, jas@rowvwade. +3632 -0
    Track number of stalls per SyncObject to identify thread bottlenecks

  storage/falcon/Engine.dsp@1.0, 2007-01-09 11:24:46-05:00, jas@rowvwade. +0 -0

  storage/falcon/RepositoryVolume.cpp@1.5, 2007-01-09 11:24:45-05:00, jas@rowvwade. +1 -1
    Eliminate page cache hash table size as a configurable parameter.

  storage/falcon/SyncObject.cpp@1.12, 2007-01-09 11:24:45-05:00, jas@rowvwade. +14 -0
    Track number of stalls per SyncObject to identify thread bottlenecks

  storage/falcon/SyncObject.h@1.3, 2007-01-09 11:24:46-05:00, jas@rowvwade. +2 -0
    Track number of stalls per SyncObject to identify thread bottlenecks

ChangeSet@1.1346.889.2, 2007-01-09 17:21:54+01:00, joerg@trift2. +6 -0
  Version 4.0 is in "extended maintenance" by now, and so
  no future build of it will include Berkeley DB:
  Remove it from the Windows VC++ project files.
  TAG: mysql-4.0.28

  VC++Files/libmysqld/libmysqld.dsp@1.2.1.9, 2007-01-09 17:21:52+01:00, joerg@trift2. +3 -3
    Version 4.0 is in "extended maintenance" by now, and so
    no future build of it will include Berkeley DB:
    Remove it from the Windows VC++ project files.

  VC++Files/mysql.dsw@1.5.1.8, 2007-01-09 17:21:52+01:00, joerg@trift2. +0 -18
    Version 4.0 is in "extended maintenance" by now, and so
    no future build of it will include Berkeley DB:
    Remove it from the Windows VC++ project files.

  VC++Files/sql/mysqld.dsp@1.6.1.14, 2007-01-09 17:21:52+01:00, joerg@trift2. +6 -6
    Version 4.0 is in "extended maintenance" by now, and so
    no future build of it will include Berkeley DB:
    Remove it from the Windows VC++ project files.

  VC++Files/mysqldemb/mysqldemb.dsp@1.3.1.6, 2007-01-09 17:21:52+01:00, joerg@trift2. +5 -5
    Version 4.0 is in "extended maintenance" by now, and so
    no future build of it will include Berkeley DB:
    Remove it from the Windows VC++ project files.

  VC++Files/sql/mysqldmax.dsp@1.2.1.2, 2007-01-09 17:21:52+01:00, joerg@trift2. +3 -3
    Version 4.0 is in "extended maintenance" by now, and so
    no future build of it will include Berkeley DB:
    Remove it from the Windows VC++ project files.

  VC++Files/mysqlserver/mysqlserver.dsp@1.3.1.4, 2007-01-09 17:21:52+01:00, joerg@trift2. +2 -2
    Version 4.0 is in "extended maintenance" by now, and so
    no future build of it will include Berkeley DB:
    Remove it from the Windows VC++ project files.

ChangeSet@1.2382, 2007-01-09 18:14:04+04:00, gluh@mysql.com +3 -0
  Fix for bug#25026 `information_schema.KEY_COLUMN_USAGE`.`REFERENCED_TABLE_NAME` returns garbage
  Unencode internal db & table name

  mysql-test/r/information_schema_inno.result@1.10, 2007-01-09 18:14:02+04:00, gluh@mysql.com +22 -0
    test result

  mysql-test/t/information_schema_inno.test@1.7, 2007-01-09 18:14:02+04:00, gluh@mysql.com +24 -0
    test case

  storage/innobase/handler/ha_innodb.cc@1.279.26.1, 2007-01-09 18:14:02+04:00, gluh@mysql.com +17 -5
    Unencode internal db & table name

ChangeSet@1.1346.881.3, 2007-01-09 12:28:46+01:00, thek@kpdesk.mysql.com +2 -0
  Cset exclude: thek@kpdesk.mysql.com|ChangeSet|20061106104152|07628

  mysys/mf_iocache.c@1.37.2.2, 2007-01-09 12:28:45+01:00, thek@kpdesk.mysql.com +0 -0
    Exclude

  mysys/my_seek.c@1.10.1.2, 2007-01-09 12:28:45+01:00, thek@kpdesk.mysql.com +0 -0
    Exclude

ChangeSet@1.2372.10.1, 2007-01-09 12:21:06+01:00, joerg@trift2. +1 -0
  configure.in  :    Fix a wrong comment.

  configure.in@1.412, 2007-01-09 12:21:02+01:00, joerg@trift2. +1 -1
    Fix a wrong comment (as of 5.1, there is no separate keeping of NDB version numbers).

ChangeSet@1.2372.9.2, 2007-01-09 13:07:39+03:00, kroki@moonlight.home +1 -0
  Fix after manual merge.

  storage/heap/hp_write.c@1.31, 2007-01-09 13:07:34+03:00, kroki@moonlight.home +1 -1
    Fix after manial merge: do cast _after_ pointer substruction.

ChangeSet@1.1346.885.5, 2007-01-09 12:24:25+03:00, kroki@moonlight.home +3 -0
  BUG#23443: user-defined variables can consume too much memory in the
             server
  
  The problem was that when memory was exhausted HEAP engine could crash
  (GROUP BY uses HEAP TABLE).  Alternatively, if SET was used, it could
  report an error "You may only use constant expressions with SET" instead
  of "Out of memory (Needed NNNNNN bytes)".
  
  The solution is:
   - pass MY_WME to (some) calls to my_malloc() to get correct message.
   - fix heap_write() so that the first key is skipped during cleanup
     on ENOMEM because it wasn't inserted and doesn't have to be
     deleted.
  
  No test case is provided because we can't test out-of-memory behaviour
  in our current test framework.

  sql/item_func.cc@1.60.1.54, 2007-01-09 12:24:25+03:00, kroki@moonlight.home +3 -2
    Add MY_WME so that OOM error will be reported.

  heap/hp_block.c@1.4.1.1, 2007-01-09 12:24:25+03:00, kroki@moonlight.home +1 -1
    If allocation fails, write an error message.

  heap/hp_write.c@1.9.1.2, 2007-01-09 12:24:25+03:00, kroki@moonlight.home +12 -3
    On ENOMEM, skip the first key in cleanup, as it wasn't inserted yet.

ChangeSet@1.1616.2923.7, 2007-01-09 09:32:56+01:00, df@kahlann.erinye.com +2 -0
  BUG#24780 workaround for broken installations that depend on using /etc, but were configured differently

  scripts/mysqlaccess.sh@1.12, 2007-01-09 09:32:55+01:00, df@kahlann.erinye.com +4 -0
    also look in /etc

  scripts/mysqld_multi.sh@1.21.3.1, 2007-01-09 09:32:55+01:00, df@kahlann.erinye.com +3 -0
    also look in /etc

ChangeSet@1.2343.22.15, 2007-01-08 23:52:21+01:00, guilhem@gbichot3.local +3 -0
  Manual merge of the fix for BUG#19725 "Calls to SF in other database are not replicated
  correctly in some cases", from 5.0.
  In short, calls to a stored function located in another database
  than the default database, may fail to replicate if the call was made
  by SET, SELECT, or DO.
  sp_head.cc automerged, only the test and test's result had to be hand-merged.

  mysql-test/r/rpl_sp.result@1.30.1.2, 2007-01-08 23:52:19+01:00, guilhem@gbichot3.local +153 -110
    manual merge of the result of the test for BUG#19725

  mysql-test/r/rpl_switch_stm_row_mixed.result@1.16, 2007-01-08 23:52:19+01:00, guilhem@gbichot3.local +8 -8
    the bugfix changes results as expected

  mysql-test/t/rpl_sp.test@1.29, 2007-01-08 23:52:19+01:00, guilhem@gbichot3.local +42 -11
    manual merge of the test for BUG#19725

ChangeSet@1.2343.33.43, 2007-01-08 17:48:07-05:00, jas@fluffy.netfrastructure.com +1 -0
  Revert to pad character of \0 for MySQL collations.

  storage/falcon/Field.cpp@1.9, 2007-01-08 17:48:05-05:00, jas@fluffy.netfrastructure.com +2 -1
    Revert to pad character of \0 for MySQL collations.

ChangeSet@1.2343.33.42, 2007-01-08 16:45:38-05:00, jas@rowvwade. +11 -0
  Put in mechanism for collations to report pad characters, and for MySQL collations
  to get pad character from the MySQL internal collation object.

  storage/falcon/Collation.h@1.6, 2007-01-08 16:45:29-05:00, jas@rowvwade. +5 -4
    Put in mechanism for collations to report pad characters, and for MySQL collations
    to get pad character from the MySQL internal collation object.

  storage/falcon/CollationCaseless.cpp@1.6, 2007-01-08 16:45:29-05:00, jas@rowvwade. +5 -0
    Put in mechanism for collations to report pad characters, and for MySQL collations
    to get pad character from the MySQL internal collation object.

  storage/falcon/CollationCaseless.h@1.4, 2007-01-08 16:45:30-05:00, jas@rowvwade. +1 -0
    Put in mechanism for collations to report pad characters, and for MySQL collations
    to get pad character from the MySQL internal collation object.

  storage/falcon/CollationUnknown.cpp@1.5, 2007-01-08 16:45:30-05:00, jas@rowvwade. +8 -0
    Put in mechanism for collations to report pad characters, and for MySQL collations
    to get pad character from the MySQL internal collation object.

  storage/falcon/CollationUnknown.h@1.2, 2007-01-08 16:45:30-05:00, jas@rowvwade. +1 -0
    Put in mechanism for collations to report pad characters, and for MySQL collations
    to get pad character from the MySQL internal collation object.

  storage/falcon/DeferredIndex.cpp@1.12, 2007-01-08 16:45:31-05:00, jas@rowvwade. +2 -2
    Don't worry about index key runs when index has single key.  Sigh

  storage/falcon/Field.cpp@1.8, 2007-01-08 16:45:31-05:00, jas@rowvwade. +1 -1
    Put in mechanism for collations to report pad characters, and for MySQL collations
    to get pad character from the MySQL internal collation object.

  storage/falcon/IndexRootPage.cpp@1.47, 2007-01-08 16:45:31-05:00, jas@rowvwade. +2 -2
    Re-activate assertion for deferred index keys out of order.

  storage/falcon/MySQLCollation.cpp@1.11, 2007-01-08 16:45:32-05:00, jas@rowvwade. +6 -0
    Put in mechanism for collations to report pad characters, and for MySQL collations
    to get pad character from the MySQL internal collation object.

  storage/falcon/MySQLCollation.h@1.5, 2007-01-08 16:45:32-05:00, jas@rowvwade. +7 -4
    Put in mechanism for collations to report pad characters, and for MySQL collations
    to get pad character from the MySQL internal collation object.

  storage/falcon/ha_falcon.cpp@1.101, 2007-01-08 16:45:33-05:00, jas@rowvwade. +5 -0
    Put in mechanism for collations to report pad characters, and for MySQL collations
    to get pad character from the MySQL internal collation object.

ChangeSet@1.1810.2425.6, 2007-01-08 22:01:06+01:00, guilhem@gbichot3.local +3 -0
  Fix for BUG#19725 "Calls to SF in other database are not replicated
  correctly in some cases".
  In short, calls to a stored function located in another database
  than the default database, may fail to replicate if the call was made
  by SET, SELECT, or DO.
  Longer: when a stored function is called from a statement which does not go
  to binlog ("SET @a=somedb.myfunc()", "SELECT somedb.myfunc()",
  "DO somedb.myfunc()"), this crafted statement is binlogged:
  "SELECT myfunc();" (accompanied with a mention of the default database
  if there is one). So, if "somedb" is not the default database,
  the slave would fail to find myfunc(). The fix is to specify the
  function's database name in the crafted binlogged statement, like this:
  "SELECT somedb.myfunc();". Test added in rpl_sp.test.

  mysql-test/r/rpl_sp.result@1.13.2.8, 2007-01-08 22:01:04+01:00, guilhem@gbichot3.local +152 -109
    Because I moved the SHOW BINLOG EVENTS down a bit, big portions of its
    output move. Also, the function's database name appears in
    SELECT statements.

  mysql-test/t/rpl_sp.test@1.9.2.7, 2007-01-08 22:01:04+01:00, guilhem@gbichot3.local +40 -10
    Adding test for BUG#19725.
    Moving the SHOW BINLOG EVENTS down, it is run at the very end to
    test everything.

  sql/sp_head.cc@1.200.7.4, 2007-01-08 22:01:04+01:00, guilhem@gbichot3.local +2 -0
    When binlogging a "SELECT myfunc()" (when a stored function is executed
    inside a statement which does not go to the binlog (like a SET,
    SELECT, DO), we need to write "SELECT db_of_myfunc().myfunc()",
    because the function may be in a database which is not the default
    database.

ChangeSet@1.2343.33.41, 2007-01-08 15:29:52-05:00, jas@rowvwade. +1 -0
  Accept temporary deoptimization to work around bug to get Hakan working.

  storage/falcon/IndexRootPage.cpp@1.46, 2007-01-08 15:29:46-05:00, jas@rowvwade. +2 -2
    Accept temporary deoptimization to work around bug to get Hakan working.

ChangeSet@1.1346.889.1, 2007-01-08 18:33:55+01:00, joerg@trift2. +2 -0
  Changes necessary to build version 4.0.28:
  
  - "make_binary_distribution" accepts a dummy "--platform=" argument.
  
  - "MySQL-shared-compat.spec" uses a "version40" define symbol internally.

  scripts/make_binary_distribution.sh@1.49.1.17, 2007-01-08 18:33:54+01:00, joerg@trift2. +1 -0
    Newer versions of the release build tools call this with a "--platform=" argument
    which we seem not to need in 4.0, but which makes the tool crash (happened on SCO).
    
    Rather than add another version check into the build tools, just accept a "--platform="
    argument and ignore it, just give a message.

  support-files/MySQL-shared-compat.spec.sh@1.4.1.1, 2007-01-08 18:33:54+01:00, joerg@trift2. +5 -5
    The current version of "Do-shared-compat" needs two digits to identify the release families
    (to differ between 4.0 and 4.1), so the variable "version4" must get renamed to "version40".

ChangeSet@1.2380, 2007-01-08 17:27:28+02:00, gkodinov@macbook.local +1 -0
  mi_check.c:
    added a missing DBUG_RETURN

  storage/myisam/mi_check.c@1.155.1.3, 2007-01-08 17:26:26+02:00, gkodinov@macbook.local +1 -1
    added a missing DBUG_RETURN

ChangeSet@1.2372.2.13, 2007-01-08 14:20:35+01:00, mskold@mysql.com +2 -0
  bug#24820  CREATE INDEX ....USING HASH on NDB table creates ordered index, not HASH index: Merged up test 5.0 case

  mysql-test/r/ndb_index_ordered.result@1.29, 2007-01-08 14:20:16+01:00, mskold@mysql.com +8 -0
    bug#24820  CREATE INDEX ....USING HASH on NDB table creates ordered index, not HASH index: Merged up test 5.0 case

  mysql-test/t/ndb_index_ordered.test@1.32, 2007-01-08 14:20:16+01:00, mskold@mysql.com +9 -0
    bug#24820  CREATE INDEX ....USING HASH on NDB table creates ordered index, not HASH index: Merged up test 5.0 case

ChangeSet@1.1810.2398.11, 2007-01-08 13:53:37+01:00, mskold@mysql.com +2 -0
  bug#24820  CREATE INDEX ....USING HASH on NDB table creates ordered index, not HASH index: Changed test since error mesage wasn't predictable

  mysql-test/r/ndb_index_ordered.result@1.22.1.2, 2007-01-08 13:53:05+01:00, mskold@mysql.com +3 -4
    bug#24820  CREATE INDEX ....USING HASH on NDB table creates ordered index, not HASH index: Changed test since error mesage wasn't predictable

  mysql-test/t/ndb_index_ordered.test@1.25.1.2, 2007-01-08 13:53:05+01:00, mskold@mysql.com +3 -5
    bug#24820  CREATE INDEX ....USING HASH on NDB table creates ordered index, not HASH index: Changed test since error mesage wasn't predictable

ChangeSet@1.2372.2.10, 2007-01-08 11:42:32+01:00, mskold@mysql.com +3 -0
  bug#24820  CREATE INDEX ....USING HASH on NDB table creates ordered index, not HASH index: Added error checking

  mysql-test/r/ndb_index_ordered.result@1.25.1.1, 2007-01-08 11:41:16+01:00, mskold@mysql.com +9 -0
    bug#24820  CREATE INDEX ....USING HASH on NDB table creates ordered index, not HASH index: Added error checking

  mysql-test/t/ndb_index_ordered.test@1.28.1.1, 2007-01-08 11:41:15+01:00, mskold@mysql.com +14 -0
    bug#24820  CREATE INDEX ....USING HASH on NDB table creates ordered index, not HASH index: Added error checking

  sql/ha_ndbcluster.cc@1.390, 2007-01-08 11:41:15+01:00, mskold@mysql.com +12 -1
    bug#24820  CREATE INDEX ....USING HASH on NDB table creates ordered index, not HASH index: Added error checking

ChangeSet@1.1810.2398.10, 2007-01-08 10:38:53+01:00, mskold@mysql.com +3 -0
  bug#24820  CREATE INDEX ....USING HASH on NDB table creates ordered index, not HASH index: Added error checking

  mysql-test/r/ndb_index_ordered.result@1.22.1.1, 2007-01-08 10:38:39+01:00, mskold@mysql.com +9 -0
    bug#24820  CREATE INDEX ....USING HASH on NDB table creates ordered index, not HASH index: Added error checking

  mysql-test/t/ndb_index_ordered.test@1.25.1.1, 2007-01-08 10:38:39+01:00, mskold@mysql.com +14 -0
    bug#24820  CREATE INDEX ....USING HASH on NDB table creates ordered index, not HASH index: Added error checking

  sql/ha_ndbcluster.cc@1.175.61.6, 2007-01-08 10:38:39+01:00, mskold@mysql.com +10 -0
    bug#24820  CREATE INDEX ....USING HASH on NDB table creates ordered index, not HASH index: Added error checking

ChangeSet@1.2343.33.39, 2007-01-07 13:29:40-05:00, jas@rowvwade. +1 -0
  Remove piece of debugging code.

  storage/falcon/IndexRootPage.cpp@1.45, 2007-01-07 13:29:34-05:00, jas@rowvwade. +0 -3
    Remove piece of debugging code.

ChangeSet@1.2343.33.38, 2007-01-07 13:26:30-05:00, jas@rowvwade. +6 -0
  Use IndexPage::findIndex rather than IndexPage::findIndexNode when preparing to
  do an index update to get correct duplicate handling.

  storage/falcon/Dbb.cpp@1.42, 2007-01-07 13:26:20-05:00, jas@rowvwade. +2 -2
    Bifurcate index calls to current and legacy IndexRootPage calls.

  storage/falcon/Index2Page.cpp@1.4, 2007-01-07 13:26:20-05:00, jas@rowvwade. +2 -1
    Use IndexPage::findIndex rather than IndexPage::findIndexNode when preparing to
    do an index update to get correct duplicate handling.

  storage/falcon/Index2RootPage.cpp@1.3, 2007-01-07 13:26:21-05:00, jas@rowvwade. +2 -1
    Use IndexPage::findIndex rather than IndexPage::findIndexNode when preparing to
    do an index update to get correct duplicate handling.

  storage/falcon/IndexPage.cpp@1.32, 2007-01-07 13:26:21-05:00, jas@rowvwade. +2 -1
    Use IndexPage::findIndex rather than IndexPage::findIndexNode when preparing to
    do an index update to get correct duplicate handling.

  storage/falcon/IndexRootPage.cpp@1.44, 2007-01-07 13:26:22-05:00, jas@rowvwade. +8 -4
    Added debugging instrumentation (commented out) for debugging
    IndexRootPage::indexMerge.

  storage/falcon/SyncObject.cpp@1.11, 2007-01-07 13:26:22-05:00, jas@rowvwade. +10 -0
    Be very care about Thread object state when logging errors while handling
    SyncObjects.

ChangeSet@1.2372.8.6, 2007-01-07 12:21:42-05:00, cmiller@zippy.cornsilk.net +2 -0
  Post-merge cleanup and fix minor BUILD/... "="-equality syntax 
  error.

  BUILD/SETUP.sh@1.66, 2007-01-07 12:21:39-05:00, cmiller@zippy.cornsilk.net +1 -1
    Use POSIX "=" equality shell test.

  mysql-test/r/view.result@1.196, 2007-01-07 12:21:39-05:00, cmiller@zippy.cornsilk.net +4 -4
    Revert year drift.

ChangeSet@1.2367.1.5, 2007-01-06 18:40:43-05:00, cmiller@zippy.cornsilk.net +1 -0
  Forgot to add result file to changeset.  :(

  mysql-test/r/ndb_binlog_ignore_db.result@1.5, 2007-01-06 18:40:41-05:00, cmiller@zippy.cornsilk.net +1 -0
    Forgot to add result file to changeset.  :(

ChangeSet@1.2367.1.4, 2007-01-06 18:32:55-05:00, cmiller@zippy.cornsilk.net +2 -0
  Use relative dates so that the tests don't fail when the year
  changes.

  mysql-test/r/view.result@1.193.2.1, 2007-01-06 18:32:53-05:00, cmiller@zippy.cornsilk.net +3 -3
    Use relative dates so that the tests don't fail when the year
    changes.

  mysql-test/t/view.test@1.176, 2007-01-06 18:32:53-05:00, cmiller@zippy.cornsilk.net +3 -3
    Use relative dates so that the tests don't fail when the year
    changes.

ChangeSet@1.2367.1.3, 2007-01-06 12:34:16-05:00, cmiller@zippy.cornsilk.net +1 -0
  A writability test in a prereq file polluted the binlog.  
  
  Reset the info after using those files.

  mysql-test/t/ndb_binlog_ignore_db.test@1.4, 2007-01-06 12:34:14-05:00, cmiller@zippy.cornsilk.net +1 -0
    Reset the binlog after we include several files that have little 
    to do with this test.

ChangeSet@1.2343.63.4, 2007-01-06 13:06:29+01:00, hakank@lu0008.wdf.sap.corp +1 -0
  Forgot to disable failing test.

  mysql-test/t/disabled.def@1.257, 2007-01-06 13:06:25+01:00, hakank@lu0008.wdf.sap.corp +1 -0
    Disabled failing falcon_bug_23818_B.test.

ChangeSet@1.2343.63.3, 2007-01-06 12:25:42+01:00, hakank@lu0008.wdf.sap.corp +2 -0
  New failing test for BUG#23818.

  mysql-test/r/falcon_bug_23818_B.result@1.1, 2007-01-06 12:25:35+01:00, hakank@lu0008.wdf.sap.corp +7 -0
    Result file for test.

  mysql-test/r/falcon_bug_23818_B.result@1.0, 2007-01-06 12:25:35+01:00, hakank@lu0008.wdf.sap.corp +0 -0

  mysql-test/t/falcon_bug_23818_B.test@1.1, 2007-01-06 12:25:36+01:00, hakank@lu0008.wdf.sap.corp +35 -0
    New failing test for BUG#23818.

  mysql-test/t/falcon_bug_23818_B.test@1.0, 2007-01-06 12:25:36+01:00, hakank@lu0008.wdf.sap.corp +0 -0

ChangeSet@1.2372.8.4, 2007-01-05 22:28:53-08:00, brian@zim.(none) +2 -0
  Fix for when shell version of mysql-test-run is called. 

  mysql-test/t/warnings-master.opt@1.6, 2007-01-05 22:28:50-08:00, brian@zim.(none) +1 -0
    Added skip-innodb option (which was what it once was...)

  mysql-test/t/warnings.test@1.29.1.2, 2007-01-05 22:28:50-08:00, brian@zim.(none) +0 -2
    Removed un-needed variable setting. Bug only had to do with unterimated string. 

ChangeSet@1.2372.8.3, 2007-01-05 20:20:53-08:00, brian@zim.(none) +2 -0
  Cleaning up warning for windows. Innodb is compiled but disable on Windows, so it should be fine. NDB wasn't compiled in, which is what caused the issue. 

  mysql-test/r/warnings.result@1.54.3.1, 2007-01-05 20:20:50-08:00, brian@zim.(none) +2 -2
    Modified warning to work with Windows

  mysql-test/t/warnings.test@1.29.1.1, 2007-01-05 20:20:50-08:00, brian@zim.(none) +2 -2
    Moved warning to use Innodb. 

ChangeSet@1.2343.33.37, 2007-01-05 11:12:42-05:00, jas@rowvwade. +1 -0
  Add more debugging information (work in progress).

  storage/falcon/IndexRootPage.cpp@1.43, 2007-01-05 11:12:37-05:00, jas@rowvwade. +8 -12
    Add more debugging information (work in progress).

ChangeSet@1.2343.33.36, 2007-01-05 11:03:43-05:00, jas@rowvwade. +1 -0
  Put in some statistics gathering into the index merge code.

  storage/falcon/IndexRootPage.cpp@1.42, 2007-01-05 11:03:38-05:00, jas@rowvwade. +22 -1
    Put in some statistics gathering into the index merge code.

ChangeSet@1.1616.2924.2, 2007-01-05 16:53:03+01:00, kent@mysql.com +2 -0
  mysql.spec.sh, make_binary_distribution.sh:
    Add CFLAGS to gcc call with --print-libgcc-file, to make sure the
    correct "libgcc.a" path is returned for the 32/64 bit architecture

  scripts/make_binary_distribution.sh@1.55.8.8, 2007-01-05 16:51:46+01:00, kent@mysql.com +1 -1
    Add CFLAGS to gcc call with --print-libgcc-file, to make sure the
    correct "libgcc.a" path is returned for the 32/64 bit architecture

  support-files/mysql.spec.sh@1.83.1.45, 2007-01-05 16:52:04+01:00, kent@mysql.com +6 -1
    Add CFLAGS to gcc call with --print-libgcc-file, to make sure the
    correct "libgcc.a" path is returned for the 32/64 bit architecture

ChangeSet@1.2343.33.35, 2007-01-05 10:46:31-05:00, jas@rowvwade. +1 -0
  Work on massive duplicate performance bug.

  storage/falcon/IndexRootPage.cpp@1.41, 2007-01-05 10:46:25-05:00, jas@rowvwade. +2 -1
    Work on massive duplicate performance bug.

ChangeSet@1.1810.2462.3, 2007-01-05 15:33:39+01:00, tomas@poseidon. +3 -0
  remove unused errorcode
  corrected previous patch removing  "if (signal)", which should acually be "if (signum)"

  ndb/src/common/debugger/EventLogger.cpp@1.21.8.1, 2007-01-05 15:33:32+01:00, tomas@poseidon. +2 -1
    corrected previous patch removing  "if (signal)", which should acually be "if (signum)"

  ndb/src/kernel/blocks/dbtc/Dbtc.hpp@1.26.12.1, 2007-01-05 15:33:32+01:00, tomas@poseidon. +0 -1
    remove unused errorcode

  ndb/src/ndbapi/ndberror.c@1.30.37.1, 2007-01-05 15:33:32+01:00, tomas@poseidon. +0 -1
    remove unused errorcode

ChangeSet@1.1810.2468.1, 2007-01-05 14:02:50+02:00, gkodinov@macbook.gmz +3 -0
  Bug #15881: cast problems
    The optimizer removes expressions from GROUP BY/DISTINCT
    if they happen to participate in a <expression> = <const>
    predicates of the WHERE clause (the idea being that if
    it's always equal to a constant it can't have multiple 
    values).
    However for predicates where the expression and the 
    constant item are of different result type this is not
    valid (e.g. a string column compared to 0).
    Fixed by additional check of the result types of the 
    expression and the constant and if they differ the 
    expression don't get removed from the group by list.

  mysql-test/r/distinct.result@1.46.1.4, 2007-01-05 14:02:43+02:00, gkodinov@macbook.gmz +37 -0
    Bug #15881: cast problems
      - test case

  mysql-test/t/distinct.test@1.29, 2007-01-05 14:02:44+02:00, gkodinov@macbook.gmz +21 -0
    Bug #15881: cast problems
      - test case

  sql/sql_select.cc@1.312.117.6, 2007-01-05 14:02:45+02:00, gkodinov@macbook.gmz +42 -2
    Bug #15881: cast problems
      - can't use <expr>=<const> to remove GROUP BY/DISTINCT cols
        if they're not of the same type.

ChangeSet@1.1616.2881.34, 2007-01-05 10:26:51+01:00, istruewing@chilla.local +3 -0
  Bug#24607 - MyISAM pointer size determined incorrectly
  
  The function mi_get_pointer_length() computed too small
  pointer size for very large tables.
  
  Inserted missing 'else' between the branches for very
  large tables.

  mysql-test/r/myisam.result@1.45.10.2, 2007-01-05 10:26:50+01:00, istruewing@chilla.local +5 -0
    Bug#24607 - MyISAM pointer size determined incorrectly
    Added the test result.

  mysql-test/t/myisam.test@1.33.12.2, 2007-01-05 10:26:50+01:00, istruewing@chilla.local +8 -0
    Bug#24607 - MyISAM pointer size determined incorrectly
    Added the test.

  myisam/mi_create.c@1.37.1.13, 2007-01-05 10:26:50+01:00, istruewing@chilla.local +7 -6
    Bug#24607 - MyISAM pointer size determined incorrectly
    Inserted missing 'else' between the branches for very
    large tables.
    Harmonized literals "(longlong) 1" and "1L" to "ULL(1)"
    where they are used for "ulonglong file_length".

ChangeSet@1.2367.3.1, 2007-01-04 19:51:34-07:00, tsmith@siva.hindu.god +27 -0
  Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
  
  Fixes:
  - Bug #24712: SHOW TABLE STATUS for file-per-table showing incorrect time fields
  - Bug #24386: Performance degradation caused by instrumentation in mutex_struct
  - Bug #24190: many exportable definitions of field_in_record_is_null
  - Bug #21468: InnoDB crash during recovery with corrupted data pages: XA bug?

  storage/innobase/buf/buf0buf.c@1.62.1.1, 2007-01-04 19:51:29-07:00, tsmith@siva.hindu.god +10 -10
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1045:
    buf_page_init_for_read(): Correct the indentation.

  storage/innobase/buf/buf0flu.c@1.38, 2007-01-04 19:51:29-07:00, tsmith@siva.hindu.god +2 -0
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1038:
    Port r983 from branches/zip: Enclose some more debug code in
    #ifdef UNIV_SYNC_DEBUG to allow the code to be built
    with UNIV_DEBUG but without UNIV_SYNC_DEBUG.

  storage/innobase/dict/dict0dict.c@1.94.1.1, 2007-01-04 19:51:29-07:00, tsmith@siva.hindu.god +13 -34
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1124:
    Unify dict_table_get_and_increment_handle_count() with dict_table_get() by
    adding a second parameter, adjust callers.

  storage/innobase/ha/ha0ha.c@1.20.1.1, 2007-01-04 19:51:29-07:00, tsmith@siva.hindu.god +7 -5
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1039:
    Port r1034 from branches/zip: Remove some instrumentation and reduce
    the output of SHOW MUTEX STATUS in non-debug builds.  (Bug #24386)

  storage/innobase/ha/hash0hash.c@1.7.1.1, 2007-01-04 19:51:29-07:00, tsmith@siva.hindu.god +7 -5
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1039:
    Port r1034 from branches/zip: Remove some instrumentation and reduce
    the output of SHOW MUTEX STATUS in non-debug builds.  (Bug #24386)

  storage/innobase/handler/ha_innodb.cc@1.279.1.39, 2007-01-04 19:51:29-07:00, tsmith@siva.hindu.god +51 -59
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1028:
    Merge a change from MySQL AB.
    
    ChangeSet
      2006/11/10 17:22:43+02:00 aelkin@dsl-hkibras-fe30f900-107.dhcp.inet.fi 
      Bug #24190  many exportable definitions of field_in_record_is_null
      
      mysql had several(2) exportable definitions of field_in_record_is_null function.
      
      Fixed with adding static.
    
    storage/innobase/handler/ha_innodb.cc
      2006/11/10 17:22:36+02:00 aelkin@dsl-hkibras-fe30f900-107.dhcp.inet.fi +1 -1
      made static
    
    
    Revision r1008:
    Minor cleanup.
    
    ha_innobase::rnd_pos(): Use correct format in DBUG_PRINT statements.
    
    buf_page_release(): Remove the local variable buf_fix_count.
    
    
    Revision r1039:
    Port r1034 from branches/zip: Remove some instrumentation and reduce
    the output of SHOW MUTEX STATUS in non-debug builds.  (Bug #24386)
    
    
    Revision r1124:
    Unify dict_table_get_and_increment_handle_count() with dict_table_get() by
    adding a second parameter, adjust callers.
    
    Revision r1134:
    Fix a potential bug in ha_innodb.cc:innobase_query_is_update() where the
    function can be called with "current_thd == NULL". Minor non-functional fix
    in log0recv.c
    
    
    Revision r1098:
    Fix bug #24712: SHOW TABLE STATUS for file-per-table showing incorrect
    time fields
    
    
    Revision r1109:
    ha_innodb.cc: Remove unused define MAX_ULONG_BIT.

  storage/innobase/include/btr0sea.h@1.13, 2007-01-04 19:51:29-07:00, tsmith@siva.hindu.god +1 -1
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1088:
    Replace the Latin abbreviation "cf." in comments.

  storage/innobase/include/buf0buf.ic@1.29, 2007-01-04 19:51:29-07:00, tsmith@siva.hindu.god +1 -4
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1008:
    Minor cleanup.
    
    ha_innobase::rnd_pos(): Use correct format in DBUG_PRINT statements.
    
    buf_page_release(): Remove the local variable buf_fix_count.

  storage/innobase/include/data0type.ic@1.33, 2007-01-04 19:51:29-07:00, tsmith@siva.hindu.god +2 -2
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1088:
    Replace the Latin abbreviation "cf." in comments.

  storage/innobase/include/dict0dict.h@1.49, 2007-01-04 19:51:29-07:00, tsmith@siva.hindu.god +8 -14
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1124:
    Unify dict_table_get_and_increment_handle_count() with dict_table_get() by
    adding a second parameter, adjust callers.

  storage/innobase/include/ha0ha.h@1.12, 2007-01-04 19:51:29-07:00, tsmith@siva.hindu.god +12 -5
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1039:
    Port r1034 from branches/zip: Remove some instrumentation and reduce
    the output of SHOW MUTEX STATUS in non-debug builds.  (Bug #24386)

  storage/innobase/include/hash0hash.h@1.9.1.1, 2007-01-04 19:51:30-07:00, tsmith@siva.hindu.god +12 -4
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1039:
    Port r1034 from branches/zip: Remove some instrumentation and reduce
    the output of SHOW MUTEX STATUS in non-debug builds.  (Bug #24386)

  storage/innobase/include/sync0rw.h@1.20, 2007-01-04 19:51:30-07:00, tsmith@siva.hindu.god +18 -4
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1039:
    Port r1034 from branches/zip: Remove some instrumentation and reduce
    the output of SHOW MUTEX STATUS in non-debug builds.  (Bug #24386)

  storage/innobase/include/sync0sync.h@1.31, 2007-01-04 19:51:30-07:00, tsmith@siva.hindu.god +40 -25
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1038:
    Port r983 from branches/zip: Enclose some more debug code in
    #ifdef UNIV_SYNC_DEBUG to allow the code to be built
    with UNIV_DEBUG but without UNIV_SYNC_DEBUG.
    
    
    Revision r1037:
    Port r972 from branches/zip: Enclose some debug code in #ifdef UNIV_SYNC_DEBUG.
    The code was previously unused in non-debug builds.
    
    
    Revision r1039:
    Port r1034 from branches/zip: Remove some instrumentation and reduce
    the output of SHOW MUTEX STATUS in non-debug builds.  (Bug #24386)
    
    
    Revision r1084:
    Remove the unused constants SYNC_INFINITE_TIME and SYNC_TIME_EXCEEDED.

  storage/innobase/include/sync0sync.ic@1.23, 2007-01-04 19:51:30-07:00, tsmith@siva.hindu.god +2 -2
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1039:
    Port r1034 from branches/zip: Remove some instrumentation and reduce
    the output of SHOW MUTEX STATUS in non-debug builds.  (Bug #24386)

  storage/innobase/include/univ.i@1.60, 2007-01-04 19:51:30-07:00, tsmith@siva.hindu.god +19 -11
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1006:
    Introduce #define UNIV_LIST_DEBUG for enabling the debug code in
    UT_LIST_REMOVE_CLEAR().
    
    
    Revision r1088:
    Replace the Latin abbreviation "cf." in comments.
    
    
    Revision r1083:
    univ.i: Document the debug flags (UNIV_DEBUG et al).

  storage/innobase/include/ut0lst.h@1.5, 2007-01-04 19:51:30-07:00, tsmith@siva.hindu.god +1 -1
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1006:
    Introduce #define UNIV_LIST_DEBUG for enabling the debug code in
    UT_LIST_REMOVE_CLEAR().

  storage/innobase/lock/lock0lock.c@1.70.1.1, 2007-01-04 19:51:30-07:00, tsmith@siva.hindu.god +0 -4
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1009:
    Remove duplicate printing of row lock counts in SHOW INNODB STATUS, and in
    the remaining print, add a comma so it doesn't get combined with the heap
    size. Both problems were introduced in r383.

  storage/innobase/log/log0recv.c@1.63.1.1, 2007-01-04 19:51:30-07:00, tsmith@siva.hindu.god +12 -0
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1134:
    Fix a potential bug in ha_innodb.cc:innobase_query_is_update() where the
    function can be called with "current_thd == NULL". Minor non-functional fix
    in log0recv.c
    
    
    Revision r1078:
    Merge r1067:1077 from branches/5.0:
    
    innobase_start_or_create_for_mysql(): Remove unnecessary delay now that
    we moved the setting sync_order_checks_on=TRUE to log0recv.c,
    to the start of the rollback phase in crash recovery.
    
    Fix assertion failure sync0sync.c line 1239
    (the latter ut_error in sync_thread_reset_level())
    in crash recovery when UNIV_SYNC_DEBUG is enabled.
    
    
    Revision r1080:
    Merge r1079 from branches/5.0:
    
    recv_recovery_from_checkpoint_finish(): Add 1 sec delay
    before switching on the sync order checks in crash recovery, so that
    file I/O threads have time to suspend themselves.

  storage/innobase/row/row0ins.c@1.83, 2007-01-04 19:51:30-07:00, tsmith@siva.hindu.god +2 -1
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1124:
    Unify dict_table_get_and_increment_handle_count() with dict_table_get() by
    adding a second parameter, adjust callers.

  storage/innobase/row/row0sel.c@1.115, 2007-01-04 19:51:30-07:00, tsmith@siva.hindu.god +7 -1
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1038:
    Port r983 from branches/zip: Enclose some more debug code in
    #ifdef UNIV_SYNC_DEBUG to allow the code to be built
    with UNIV_DEBUG but without UNIV_SYNC_DEBUG.
    
    
    Revision r1124:
    Unify dict_table_get_and_increment_handle_count() with dict_table_get() by
    adding a second parameter, adjust callers.

  storage/innobase/row/row0upd.c@1.47, 2007-01-04 19:51:30-07:00, tsmith@siva.hindu.god +2 -1
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1124:
    Unify dict_table_get_and_increment_handle_count() with dict_table_get() by
    adding a second parameter, adjust callers.

  storage/innobase/srv/srv0start.c@1.104, 2007-01-04 19:51:30-07:00, tsmith@siva.hindu.god +0 -11
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1038:
    Port r983 from branches/zip: Enclose some more debug code in
    #ifdef UNIV_SYNC_DEBUG to allow the code to be built
    with UNIV_DEBUG but without UNIV_SYNC_DEBUG.
    
    
    Revision r1078:
    Merge r1067:1077 from branches/5.0:
    
    innobase_start_or_create_for_mysql(): Remove unnecessary delay now that
    we moved the setting sync_order_checks_on=TRUE to log0recv.c,
    to the start of the rollback phase in crash recovery.
    
    Fix assertion failure sync0sync.c line 1239
    (the latter ut_error in sync_thread_reset_level())
    in crash recovery when UNIV_SYNC_DEBUG is enabled.
    
    
    Revision r1070:
    Remove another accidentally committed change to srv0start.c.
    The change was accidentally committed with the merge in r1068.
    This revision corresponds to r1051 with a properly merged
    r1067 of branches/5.0.
    
    
    Revision r1068:
    Merge r1067 from branches/5.0:
    
    trx_rollback_for_mysql(), trx_commit_for_mysql():
    Protect the creation of trx_dummy_sess with kernel_mutex.
    This error was introduced in r1046 and r1050.
    
    
    Revision r1069:
    Remove an accidentally committed change to srv0start.c.
    The change was accidentally committed with the merge in r1068.

  storage/innobase/sync/sync0rw.c@1.29, 2007-01-04 19:51:30-07:00, tsmith@siva.hindu.god +9 -6
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1039:
    Port r1034 from branches/zip: Remove some instrumentation and reduce
    the output of SHOW MUTEX STATUS in non-debug builds.  (Bug #24386)

  storage/innobase/sync/sync0sync.c@1.46, 2007-01-04 19:51:30-07:00, tsmith@siva.hindu.god +61 -56
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1038:
    Port r983 from branches/zip: Enclose some more debug code in
    #ifdef UNIV_SYNC_DEBUG to allow the code to be built
    with UNIV_DEBUG but without UNIV_SYNC_DEBUG.
    
    
    Revision r1037:
    Port r972 from branches/zip: Enclose some debug code in #ifdef UNIV_SYNC_DEBUG.
    The code was previously unused in non-debug builds.
    
    
    Revision r1039:
    Port r1034 from branches/zip: Remove some instrumentation and reduce
    the output of SHOW MUTEX STATUS in non-debug builds.  (Bug #24386)

  storage/innobase/trx/trx0roll.c@1.35, 2007-01-04 19:51:30-07:00, tsmith@siva.hindu.god +19 -1
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1049:
    Merge r1048 from branches/5.0:
    
    trx_rollback_for_mysql(): Do not set trx->sess back to NULL.
    This bug was introduced in r1046.
    
    
    Revision r1047:
    Merge r1046 from branches/5.0:
    
    branches/5.0: trx_rollback_for_mysql(): Ensure that trx->sess is non-NULL
    when calling trx_general_rollback_for_mysql().  This removes a segmentation
    fault when rolling back a prepared transaction in XA recovery.  (Bug #21468)
    
    
    Revision r1068:
    Merge r1067 from branches/5.0:
    
    trx_rollback_for_mysql(), trx_commit_for_mysql():
    Protect the creation of trx_dummy_sess with kernel_mutex.
    This error was introduced in r1046 and r1050.
    
    
    Revision r1051:
    Merge r1050 from branches/5.0:
    
    trx_rollback_for_mysql(): Fix the comment introduced in r1046.
    
    trx_commit_for_mysql(): Use the dummy trx->sess also for committing a prepared
    transaction in XA recovery, just in case our code would need the session
    object also in that case (does not seem to need it right now).

  storage/innobase/trx/trx0trx.c@1.70, 2007-01-04 19:51:30-07:00, tsmith@siva.hindu.god +21 -4
    Applied innodb-5.1-ss1039 and innodb-5.1-ss1134 snapshots.
    
    Revision r1009:
    Remove duplicate printing of row lock counts in SHOW INNODB STATUS, and in
    the remaining print, add a comma so it doesn't get combined with the heap
    size. Both problems were introduced in r383.
    
    Revision r1068:
    Merge r1067 from branches/5.0:
    
    trx_rollback_for_mysql(), trx_commit_for_mysql():
    Protect the creation of trx_dummy_sess with kernel_mutex.
    This error was introduced in r1046 and r1050.
    
    
    Revision r1051:
    Merge r1050 from branches/5.0:
    
    trx_rollback_for_mysql(): Fix the comment introduced in r1046.
    
    trx_commit_for_mysql(): Use the dummy trx->sess also for committing a prepared
    transaction in XA recovery, just in case our code would need the session
    object also in that case (does not seem to need it right now).

ChangeSet@1.1616.2924.1, 2007-01-04 23:18:04+01:00, mmj@tiger.mmj.dk +1 -0
  my_global.h:
    Patch from Alfredo for TARGET_FAT_BINARY

  include/my_global.h@1.47.1.64, 2007-01-04 23:16:45+01:00, mmj@tiger.mmj.dk +36 -0
    Patch from Alfredo for TARGET_FAT_BINARY

ChangeSet@1.2343.33.34, 2007-01-04 16:27:57-05:00, jas@rowvwade. +1 -0
  Eliminate idiotic MSVS generated include statement.

  storage/falcon/IndexRootPage.cpp@1.40, 2007-01-04 16:27:52-05:00, jas@rowvwade. +0 -1
    Eliminate idiotic MSVS generated include statement.

ChangeSet@1.1810.2467.1, 2007-01-04 22:22:25+01:00, mmj@tiger.mmj.dk +1 -0
  my_global.h:
    Add patch from Alfredo for TARGET_FAT_BINARY

  include/my_global.h@1.96.9.2, 2007-01-04 22:16:59+01:00, mmj@tiger.mmj.dk +36 -0
    Add patch from Alfredo for TARGET_FAT_BINARY

ChangeSet@1.2343.33.33, 2007-01-04 16:14:35-05:00, jas@rowvwade. +31 -0
  Added code to pass index version numbers through the various layers and to
  dispatch to IndexRootPage or Index2RootPage depending on index version to
  support Netfrastructure legacy indexes.

  storage/falcon/CMakeLists.txt@1.41, 2007-01-04 16:14:16-05:00, jas@rowvwade. +2 -0
    Added class Index2RootPage for Netfrastructure legacy indexes.

  storage/falcon/Database.cpp@1.37, 2007-01-04 16:14:16-05:00, jas@rowvwade. +11 -9
    Added code to pass index version numbers through the various layers and to
    dispatch to IndexRootPage or Index2RootPage depending on index version to
    support Netfrastructure legacy indexes.

  storage/falcon/Database.h@1.14, 2007-01-04 16:14:16-05:00, jas@rowvwade. +4 -4
    Added code to pass index version numbers through the various layers and to
    dispatch to IndexRootPage or Index2RootPage depending on index version to
    support Netfrastructure legacy indexes.

  storage/falcon/Dbb.cpp@1.41, 2007-01-04 16:14:17-05:00, jas@rowvwade. +82 -17
    Added code to pass index version numbers through the various layers and to
    dispatch to IndexRootPage or Index2RootPage depending on index version to
    support Netfrastructure legacy indexes.

  storage/falcon/Dbb.h@1.20, 2007-01-04 16:14:17-05:00, jas@rowvwade. +6 -5
    Added code to pass index version numbers through the various layers and to
    dispatch to IndexRootPage or Index2RootPage depending on index version to
    support Netfrastructure legacy indexes.

  storage/falcon/Hdr.cpp@1.7, 2007-01-04 16:14:17-05:00, jas@rowvwade. +3 -0
    Manage "default" (i.e. core) index version numbers for backward compatibility
    to Netfrastructure databases.

  storage/falcon/Hdr.h@1.5, 2007-01-04 16:14:18-05:00, jas@rowvwade. +2 -0
    Manage "default" (i.e. core) index version numbers for backward compatibility
    to Netfrastructure databases.

  storage/falcon/Index.cpp@1.26, 2007-01-04 16:14:18-05:00, jas@rowvwade. +11 -10
    Added code to pass index version numbers through the various layers and to
    dispatch to IndexRootPage or Index2RootPage depending on index version to
    support Netfrastructure legacy indexes.

  storage/falcon/Index.h@1.11, 2007-01-04 16:14:18-05:00, jas@rowvwade. +1 -1
    Removed unused field.

  storage/falcon/Index2Page.cpp@1.3, 2007-01-04 16:14:19-05:00, jas@rowvwade. +77 -0
    Added Index2Page::findInsertionPoint from IndexPage.

  storage/falcon/Index2Page.h@1.2, 2007-01-04 16:14:19-05:00, jas@rowvwade. +2 -16
    Move various index related constants to RootPage.h.

  storage/falcon/Index2RootPage.cpp@1.2, 2007-01-04 16:14:19-05:00, jas@rowvwade. +165 -0
    Added Index2RootPage::indexMerge from IndexRootPage.

  storage/falcon/Index2RootPage.h@1.2, 2007-01-04 16:14:20-05:00, jas@rowvwade. +4 -2
    Give Index2RootPage.h a different guard macro to avoid colision with IndexRootPage.h.

  storage/falcon/IndexPage.h@1.17, 2007-01-04 16:14:20-05:00, jas@rowvwade. +5 -0
    Moved various index constants to RootPage.h.

  storage/falcon/IndexRootPage.cpp@1.39, 2007-01-04 16:14:21-05:00, jas@rowvwade. +40 -13
    Check for deferred index nodes out of order and complain mightily.

  storage/falcon/IndexRootPage.h@1.13, 2007-01-04 16:14:21-05:00, jas@rowvwade. +2 -0
    Added redo operation for index creation.  I don't know how it got missed, but it did.

  storage/falcon/Inversion.cpp@1.14, 2007-01-04 16:14:21-05:00, jas@rowvwade. +1 -0
    Added code to pass index version numbers through the various layers and to
    dispatch to IndexRootPage or Index2RootPage depending on index version to
    support Netfrastructure legacy indexes.

  storage/falcon/Makefile.am@1.46, 2007-01-04 16:14:22-05:00, jas@rowvwade. +6 -2
    Added class Index2RootPage for Netfrastructure legacy indexes.

  storage/falcon/RepositoryVolume.cpp@1.4, 2007-01-04 16:14:22-05:00, jas@rowvwade. +8 -7
    Added code to pass index version numbers through the various layers and to
    dispatch to IndexRootPage or Index2RootPage depending on index version to
    support Netfrastructure legacy indexes.

  storage/falcon/RootPage.h@1.3, 2007-01-04 16:14:22-05:00, jas@rowvwade. +12 -0
    Added code to pass index version numbers through the various layers and to
    dispatch to IndexRootPage or Index2RootPage depending on index version to
    support Netfrastructure legacy indexes.

  storage/falcon/SRLCreateIndex.cpp@1.6, 2007-01-04 16:14:23-05:00, jas@rowvwade. +20 -5
    Added redo operation for index creation.  I don't know how it got missed, but it did.

  storage/falcon/SRLCreateIndex.h@1.3, 2007-01-04 16:14:23-05:00, jas@rowvwade. +8 -6
    Added redo operation for index creation.  I don't know how it got missed, but it did.

  storage/falcon/SRLDeleteIndex.cpp@1.8, 2007-01-04 16:14:23-05:00, jas@rowvwade. +38 -8
    Added code to pass index version numbers through the various layers and to
    dispatch to IndexRootPage or Index2RootPage depending on index version to
    support Netfrastructure legacy indexes.

  storage/falcon/SRLDeleteIndex.h@1.3, 2007-01-04 16:14:24-05:00, jas@rowvwade. +8 -7
    Added code to pass index version numbers through the various layers and to
    dispatch to IndexRootPage or Index2RootPage depending on index version to
    support Netfrastructure legacy indexes.

  storage/falcon/SRLIndexAdd.cpp@1.7, 2007-01-04 16:14:24-05:00, jas@rowvwade. +10 -17
    Added code to pass index version numbers through the various layers and to
    dispatch to IndexRootPage or Index2RootPage depending on index version to
    support Netfrastructure legacy indexes.

  storage/falcon/SRLIndexAdd.h@1.5, 2007-01-04 16:14:24-05:00, jas@rowvwade. +2 -1
    Added code to pass index version numbers through the various layers and to
    dispatch to IndexRootPage or Index2RootPage depending on index version to
    support Netfrastructure legacy indexes.

  storage/falcon/SRLIndexDelete.cpp@1.6, 2007-01-04 16:14:25-05:00, jas@rowvwade. +10 -4
    Added code to pass index version numbers through the various layers and to
    dispatch to IndexRootPage or Index2RootPage depending on index version to
    support Netfrastructure legacy indexes.

  storage/falcon/SRLIndexDelete.h@1.5, 2007-01-04 16:14:25-05:00, jas@rowvwade. +2 -1
    Added code to pass index version numbers through the various layers and to
    dispatch to IndexRootPage or Index2RootPage depending on index version to
    support Netfrastructure legacy indexes.

  storage/falcon/SRLUpdateIndex.cpp@1.20, 2007-01-04 16:14:25-05:00, jas@rowvwade. +24 -1
    Added code to pass index version numbers through the various layers and to
    dispatch to IndexRootPage or Index2RootPage depending on index version to
    support Netfrastructure legacy indexes.

  storage/falcon/SRLUpdateIndex.h@1.6, 2007-01-04 16:14:26-05:00, jas@rowvwade. +1 -0
    Added code to pass index version numbers through the various layers and to
    dispatch to IndexRootPage or Index2RootPage depending on index version to
    support Netfrastructure legacy indexes.

  storage/falcon/SRLVersion.h@1.8, 2007-01-04 16:14:26-05:00, jas@rowvwade. +2 -1
    Added new serial log version number to retain index version numbers.

ChangeSet@1.2368.5.2, 2007-01-04 11:41:17-08:00, brian@zim.(none) +3 -0
  The CSV format has always relied on numbers being quoted, which doesn't always happen. This fixes that so that numbers can now be unquoted (and the output does this as well so that the log takes up less space). 

  mysql-test/r/csv.result@1.15.1.1, 2007-01-04 11:41:14-08:00, brian@zim.(none) +21 -5
    Fixed test case for format change. Added new test for floating point numbers. 

  mysql-test/t/csv.test@1.18.2.1, 2007-01-04 11:41:14-08:00, brian@zim.(none) +15 -1
    Fixed test for format change. Added test case for floating point numbers. 

  storage/csv/ha_tina.cc@1.71.1.3, 2007-01-04 11:41:14-08:00, brian@zim.(none) +96 -62
    Updated code to handle numbers as raw unquotes types in CSV

ChangeSet@1.2372.2.9, 2007-01-04 17:26:53+01:00, mskold@mysql.com +3 -0
  ha_ndbcluster.h, ndb_dd_alter.result, ha_ndbcluster.cc:
    bug#25296  Truncate table converts NDB disk based tables to in-memory tables: Changed fix to use get_tablespace_name directly instead

  mysql-test/r/ndb_dd_alter.result@1.5, 2007-01-04 17:26:02+01:00, mskold@mysql.com +2 -2
    bug#25296  Truncate table converts NDB disk based tables to in-memory tables: Changed fix to use get_tablespace_name directly instead

  sql/ha_ndbcluster.cc@1.389, 2007-01-04 17:26:02+01:00, mskold@mysql.com +16 -14
    bug#25296  Truncate table converts NDB disk based tables to in-memory tables: Changed fix to use get_tablespace_name directly instead

  sql/ha_ndbcluster.h@1.164, 2007-01-04 17:26:01+01:00, mskold@mysql.com +0 -1
    bug#25296  Truncate table converts NDB disk based tables to in-memory tables: Changed fix to use get_tablespace_name directly instead

ChangeSet@1.2343.33.32, 2007-01-04 10:20:29-05:00, jas@rowvwade. +1 -0
  Always use an index pad byte of zero if a collation is present.

  storage/falcon/Field.cpp@1.7, 2007-01-04 10:20:23-05:00, jas@rowvwade. +1 -0
    Always use an index pad byte of zero if a collation is present.

ChangeSet@1.2343.10.16, 2007-01-04 11:13:19+01:00, jonas@perch.ndb.mysql.com +1 -0
  ndb - bug#25329
    extra sledge hammer, (real 51)
    use dicklock to prevent SUB_START_REQ during node recovery

  storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp@1.110.1.2, 2007-01-04 11:13:17+01:00, jonas@perch.ndb.mysql.com +11 -0
    use dicklock to prevent SUB_START_REQ during node recovery

ChangeSet@1.2343.10.15, 2007-01-04 10:59:12+01:00, jonas@perch.ndb.mysql.com +10 -0
  ndb - recommit extra version info to real-51

  storage/ndb/include/kernel/GlobalSignalNumbers.h@1.30.1.1, 2007-01-04 10:59:10+01:00, jonas@perch.ndb.mysql.com +1 -1
    add extra version info to main clone

  storage/ndb/include/kernel/NodeInfo.hpp@1.5.1.1, 2007-01-04 10:59:10+01:00, jonas@perch.ndb.mysql.com +10 -0
    add extra version info to main clone

  storage/ndb/include/kernel/signaldata/ApiRegSignalData.hpp@1.4.1.1, 2007-01-04 10:59:10+01:00, jonas@perch.ndb.mysql.com +2 -1
    add extra version info to main clone

  storage/ndb/include/ndb_version.h.in@1.12.1.1, 2007-01-04 10:59:10+01:00, jonas@perch.ndb.mysql.com +2 -0
    add extra version info to main clone

  storage/ndb/src/common/debugger/signaldata/SignalNames.cpp@1.15.1.1, 2007-01-04 10:59:10+01:00, jonas@perch.ndb.mysql.com +1 -0
    add extra version info to main clone

  storage/ndb/src/kernel/blocks/qmgr/Qmgr.hpp@1.14.1.2, 2007-01-04 10:59:10+01:00, jonas@perch.ndb.mysql.com +5 -0
    add extra version info to main clone

  storage/ndb/src/kernel/blocks/qmgr/QmgrInit.cpp@1.11.1.1, 2007-01-04 10:59:10+01:00, jonas@perch.ndb.mysql.com +8 -0
    add extra version info to main clone

  storage/ndb/src/kernel/blocks/qmgr/QmgrMain.cpp@1.42.1.2, 2007-01-04 10:59:10+01:00, jonas@perch.ndb.mysql.com +132 -4
    add extra version info to main clone

  storage/ndb/src/kernel/vm/GlobalData.hpp@1.7.1.1, 2007-01-04 10:59:10+01:00, jonas@perch.ndb.mysql.com +1 -0
    add extra version info to main clone

  storage/ndb/src/kernel/vm/SimulatedBlock.hpp@1.27.1.1, 2007-01-04 10:59:10+01:00, jonas@perch.ndb.mysql.com +15 -0
    add extra version info to main clone

ChangeSet@1.2343.10.14, 2007-01-04 10:03:11+01:00, jonas@perch.ndb.mysql.com +4 -0
  ndb - bug#25329
    Fix most obvious error in dict/suma error handling of events

  storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp@1.110.1.1, 2007-01-04 10:03:09+01:00, jonas@perch.ndb.mysql.com +10 -0
    Fix most obvious error in dict/suma error handling of events

  storage/ndb/src/kernel/blocks/dbdict/Dbdict.hpp@1.44.1.1, 2007-01-04 10:03:09+01:00, jonas@perch.ndb.mysql.com +5 -0
    Fix most obvious error in dict/suma error handling of events

  storage/ndb/src/kernel/blocks/suma/Suma.cpp@1.49.1.1, 2007-01-04 10:03:09+01:00, jonas@perch.ndb.mysql.com +45 -14
    Fix most obvious error in dict/suma error handling of events

  storage/ndb/src/kernel/blocks/suma/SumaInit.cpp@1.14.1.1, 2007-01-04 10:03:09+01:00, jonas@perch.ndb.mysql.com +2 -0
    Fix most obvious error in dict/suma error handling of events

ChangeSet@1.2372.2.7, 2007-01-04 09:15:09+01:00, mskold@mysql.com +1 -0
  bug #25296  Truncate table converts NDB disk based tables to in-memory tables: ha_ndbcluster::update_create_info should only update for TRUNCATE since we need to detect change of STORAGE at ALTER TABLE

  sql/ha_ndbcluster.cc@1.388, 2007-01-04 09:14:42+01:00, mskold@mysql.com +4 -2
    bug #25296  Truncate table converts NDB disk based tables to in-memory tables: ha_ndbcluster::update_create_info should only update for TRUNCATE since we need to detect change of STORAGE at ALTER TABLE

ChangeSet@1.2368.4.3, 2007-01-04 04:09:06+01:00, jmiller@mysql.com +6 -0
  Many files:
    Updated from Tomas review

  mysql-test/r/rpl_ndb_do_db.result@1.2, 2007-01-04 04:08:31+01:00, jmiller@mysql.com +0 -2
    Updated from Tomas review

  mysql-test/r/rpl_ndb_do_table.result@1.2, 2007-01-04 04:08:31+01:00, jmiller@mysql.com +0 -3
    Updated from Tomas review

  mysql-test/r/rpl_ndb_rep_ignore.result@1.2, 2007-01-04 04:08:42+01:00, jmiller@mysql.com +0 -2
    Updated from Tomas review

  mysql-test/t/rpl_ndb_do_db.test@1.2, 2007-01-04 04:08:22+01:00, jmiller@mysql.com +2 -0
    Updated from Tomas review

  mysql-test/t/rpl_ndb_do_table.test@1.2, 2007-01-04 04:08:22+01:00, jmiller@mysql.com +2 -1
    Updated from Tomas review

  mysql-test/t/rpl_ndb_rep_ignore.test@1.2, 2007-01-04 04:08:52+01:00, jmiller@mysql.com +2 -0
    Updated from Tomas review

ChangeSet@1.2368.5.1, 2007-01-03 17:26:45-08:00, brian@zim.(none) +6 -0
  Split out the hidden class from the ha_tina file (probably should have just deleted it...) but this is a bit better. 

  storage/csv/CMakeLists.txt@1.5.1.1, 2007-01-03 17:26:40-08:00, brian@zim.(none) +1 -1
    Updated for windows

  storage/csv/Makefile.am@1.10.1.1, 2007-01-03 17:26:40-08:00, brian@zim.(none) +3 -3
    Updated to add new class

  storage/csv/ha_tina.cc@1.71.1.2, 2007-01-03 17:26:40-08:00, brian@zim.(none) +0 -48
    Removed hidden class

  storage/csv/ha_tina.h@1.26, 2007-01-03 17:26:40-08:00, brian@zim.(none) +1 -43
    Remove hidden class

  storage/csv/transparent_file.cc@1.1, 2007-01-03 16:49:17-08:00, brian@zim.(none) +104 -0
    BitKeeper file /home/brian/mysql/merge-5.1/storage/csv/transparent_file.cc

  storage/csv/transparent_file.cc@1.0, 2007-01-03 16:49:17-08:00, brian@zim.(none) +0 -0

  storage/csv/transparent_file.h@1.1, 2007-01-03 16:49:19-08:00, brian@zim.(none) +41 -0
    BitKeeper file /home/brian/mysql/merge-5.1/storage/csv/transparent_file.h

  storage/csv/transparent_file.h@1.0, 2007-01-03 16:49:19-08:00, brian@zim.(none) +0 -0

ChangeSet@1.2343.33.31, 2007-01-03 18:14:11-05:00, jas@rowvwade. +1 -0
  Fudge around misordered deferred index nodes.  This is a temporary solution
  around a collation related bug.

  storage/falcon/IndexRootPage.cpp@1.38, 2007-01-03 18:14:06-05:00, jas@rowvwade. +11 -1
    Fudge around misordered deferred index nodes.  This is a temporary solution
    around a collation related bug.

ChangeSet@1.2343.63.2, 2007-01-03 23:31:17+01:00, hakank@lu0008.wdf.sap.corp +1 -0
  Temporary work around for bug#25359. This patch is from Kent.

  mysql-test/r/view.result@1.193.1.1, 2007-01-03 23:31:10+01:00, hakank@lu0008.wdf.sap.corp +4 -4
    Temporary work around for bug#25359.

ChangeSet@1.2343.63.1, 2007-01-03 23:20:52+01:00, hakank@lu0008.wdf.sap.corp +1 -0
  Bump version to 5.2.0-falcon-alpha.

  configure.in@1.404.2.3, 2007-01-03 23:20:44+01:00, hakank@lu0008.wdf.sap.corp +1 -1
    Bump version to 5.2.0-falcon-alpha.

ChangeSet@1.1810.2465.1, 2007-01-03 12:16:03-08:00, igor@olga.mysql.com +3 -0
  Fixed bug #24345.
  This bug appeared after the patch for bug 21390 that had added some code
  to handle outer joins with no matches after substitution of a const
  table in an efficient way. That code as it is cannot be applied to the case
  of nested outer join operations. Being applied to the queries with
  nested outer joins the code can cause crashes or wrong result sets.
  The fix blocks row substitution for const inner tables of an outer join
  if the inner operand is not a single table.  

  mysql-test/r/join_nested.result@1.23.1.1, 2007-01-03 12:16:01-08:00, igor@olga.mysql.com +43 -0
    Added a test case for bug #24345.

  mysql-test/t/join_nested.test@1.20, 2007-01-03 12:16:01-08:00, igor@olga.mysql.com +51 -0
    Added a test case for bug #24345.

  sql/sql_select.cc@1.312.118.1, 2007-01-03 12:16:01-08:00, igor@olga.mysql.com +11 -1
    Fixed bug #24345.
    This bug appeared after the patch for bug 21390 that had added some code
    to handle outer joins with no matches after substitution of a const
    table in an efficient way. That code as it is cannot be applied to the case
    of nested outer join operations. Being applied to the queries with
    nested outer joins the code can cause crashes or wrong result sets.
    The fix blocks row substitution for const inner tables of an outer join
    if the inner operand is not a single table.  

ChangeSet@1.2343.33.30, 2007-01-03 13:57:36-05:00, jas@rowvwade. +3 -0
  Replaced a "UCHAR" with "unsigned char" so IndexKey.h can be included without Engine.h.

  storage/falcon/Index2RootPage.cpp@1.1, 2007-01-03 13:57:30-05:00, jas@rowvwade. +824 -0
    New BitKeeper file ``storage/falcon/Index2RootPage.cpp''

  storage/falcon/Index2RootPage.cpp@1.0, 2007-01-03 13:57:30-05:00, jas@rowvwade. +0 -0

  storage/falcon/Index2RootPage.h@1.1, 2007-01-03 13:57:30-05:00, jas@rowvwade. +59 -0
    New BitKeeper file ``storage/falcon/Index2RootPage.h''

  storage/falcon/Index2RootPage.h@1.0, 2007-01-03 13:57:30-05:00, jas@rowvwade. +0 -0

  storage/falcon/IndexKey.h@1.18, 2007-01-03 13:57:30-05:00, jas@rowvwade. +1 -1
    Replaced a "UCHAR" with "unsigned char" so IndexKey.h can be included without Engine.h.

ChangeSet@1.1810.2410.7, 2007-01-03 11:47:01-07:00, malff@weblab.(none) +2 -0
  Bug#6298 (LIMIT #, -1 no longer works to set start with no end limit)
  
  With MySQL 3.23 and 4.0, the syntax 'LIMIT N, -1' is accepted, and returns
  all the rows located after row N. This behavior, however, is not the
  intended result, and defeats the purpose of LIMIT, which is to constrain
  the size of a result set.
  
  With MySQL 4.1 and later, this construct is correctly detected as a syntax
  error.
  
  This fix does not change the production code, and only adds a new test case
  to improve test coverage in this area, to enforce in the test suite the
  intended behavior.

  mysql-test/r/select.result@1.121.1.23, 2007-01-03 11:46:59-07:00, malff@weblab.(none) +6 -0
    Enforce that LIMIT N, -1 is illegal.

  mysql-test/t/select.test@1.102.1.16, 2007-01-03 11:46:59-07:00, malff@weblab.(none) +20 -0
    Enforce that LIMIT N, -1 is illegal.

ChangeSet@1.2343.33.29, 2007-01-03 13:46:10-05:00, jas@rowvwade. +18 -0
  Implemented merge between serial log SRLUpdateIndex record and actual index.  There
  are still some low level optimizations to be done to avoid recopying the bucket tail
  when performing multiple inserts, but the basic mechanism is in place.

  storage/falcon/Dbb.cpp@1.40, 2007-01-03 13:45:56-05:00, jas@rowvwade. +0 -2
    Removed conditionals for variable length record numbers in index.

  storage/falcon/IndexKey.cpp@1.16, 2007-01-03 13:45:56-05:00, jas@rowvwade. +27 -0
    Implemented merge between serial log SRLUpdateIndex record and actual index.  There
    are still some low level optimizations to be done to avoid recopying the bucket tail
    when performing multiple inserts, but the basic mechanism is in place.

  storage/falcon/IndexKey.h@1.17, 2007-01-03 13:45:57-05:00, jas@rowvwade. +5 -3
    Implemented merge between serial log SRLUpdateIndex record and actual index.  There
    are still some low level optimizations to be done to avoid recopying the bucket tail
    when performing multiple inserts, but the basic mechanism is in place.

  storage/falcon/IndexNode.cpp@1.8, 2007-01-03 13:45:57-05:00, jas@rowvwade. +0 -6
    Removed conditionals for variable length record numbers in index.

  storage/falcon/IndexNode.h@1.15, 2007-01-03 13:45:57-05:00, jas@rowvwade. +1 -21
    Removed conditionals for variable length record numbers in index.

  storage/falcon/IndexPage.cpp@1.31, 2007-01-03 13:45:58-05:00, jas@rowvwade. +92 -0
    Implemented merge between serial log SRLUpdateIndex record and actual index.  There
    are still some low level optimizations to be done to avoid recopying the bucket tail
    when performing multiple inserts, but the basic mechanism is in place.

  storage/falcon/IndexPage.h@1.16, 2007-01-03 13:45:58-05:00, jas@rowvwade. +1 -0
    Implemented merge between serial log SRLUpdateIndex record and actual index.  There
    are still some low level optimizations to be done to avoid recopying the bucket tail
    when performing multiple inserts, but the basic mechanism is in place.

  storage/falcon/IndexRootPage.cpp@1.37, 2007-01-03 13:45:58-05:00, jas@rowvwade. +158 -1
    Implemented merge between serial log SRLUpdateIndex record and actual index.  There
    are still some low level optimizations to be done to avoid recopying the bucket tail
    when performing multiple inserts, but the basic mechanism is in place.

  storage/falcon/IndexRootPage.h@1.12, 2007-01-03 13:45:59-05:00, jas@rowvwade. +2 -0
    Implemented merge between serial log SRLUpdateIndex record and actual index.  There
    are still some low level optimizations to be done to avoid recopying the bucket tail
    when performing multiple inserts, but the basic mechanism is in place.

  storage/falcon/Log.cpp@1.4, 2007-01-03 13:45:59-05:00, jas@rowvwade. +10 -0
    Added synchronization object so multiple line log entries don't get clobbered.

  storage/falcon/Log.h@1.4, 2007-01-03 13:46:00-05:00, jas@rowvwade. +3 -0
    Added synchronization object so multiple line log entries don't get clobbered.

  storage/falcon/LogStream.cpp@1.3, 2007-01-03 13:46:00-05:00, jas@rowvwade. +1 -0
    Added synchronization object so multiple line log entries don't get clobbered.

  storage/falcon/SQLError.cpp@1.4, 2007-01-03 13:46:00-05:00, jas@rowvwade. +3 -0
    Added synchronization object so multiple line log entries don't get clobbered.

  storage/falcon/SRLUpdateIndex.cpp@1.19, 2007-01-03 13:46:01-05:00, jas@rowvwade. +23 -11
    Implemented merge between serial log SRLUpdateIndex record and actual index.  There
    are still some low level optimizations to be done to avoid recopying the bucket tail
    when performing multiple inserts, but the basic mechanism is in place.

  storage/falcon/SRLUpdateIndex.h@1.5, 2007-01-03 13:46:01-05:00, jas@rowvwade. +15 -10
    Implemented merge between serial log SRLUpdateIndex record and actual index.  There
    are still some low level optimizations to be done to avoid recopying the bucket tail
    when performing multiple inserts, but the basic mechanism is in place.

  storage/falcon/SerialLogAction.cpp@1.5, 2007-01-03 13:46:01-05:00, jas@rowvwade. +1 -0
    Initialize maxBlockNumber to avoid subsequent deoptimization.

  storage/falcon/SerialLogTransaction.cpp@1.12, 2007-01-03 13:46:02-05:00, jas@rowvwade. +1 -1
    Initialize various block number variables for safety.

  storage/falcon/SyncObject.cpp@1.10, 2007-01-03 13:46:02-05:00, jas@rowvwade. +2 -0
    Added synchronization object so multiple line log entries don't get clobbered.

ChangeSet@1.1810.2441.3, 2007-01-03 18:26:39+02:00, gkodinov@rakia.gmz +1 -0
  sql_udf.cc:
    Addendum to the fix for bug#15439 : valgrind pb failed

  sql/sql_udf.cc@1.45.6.1, 2007-01-03 18:25:11+02:00, gkodinov@rakia.gmz +5 -1
    Addendum to the fix for bug#15439 : valgrind pb failed

ChangeSet@1.1810.2398.9, 2007-01-03 14:56:26+01:00, mskold@mysql.com +1 -0
  ndb_use_transactions is set from value for command line flag

  sql/sql_class.cc@1.223.14.1, 2007-01-03 14:55:51+01:00, mskold@mysql.com +0 -3
    ndb_use_transactions is set from value for command line flag

ChangeSet@1.2343.22.13, 2007-01-03 14:09:31+01:00, andrey@example.com +2 -0
  fix for bug #18981 event_logs_tests failure
  On loaded boxes it is possible a INSERT with sleep of 1.5s to take
  more time.

  mysql-test/r/events_logs_tests.result@1.15, 2007-01-03 14:09:24+01:00, andrey@example.com +7 -4
    update result file

  mysql-test/t/events_logs_tests.test@1.15, 2007-01-03 14:09:24+01:00, andrey@example.com +5 -2
    fix test case to be proof of loaded boxes. 20 seconds is reasonable time
    not to get a sleep of 1.5s to sleep for 20s

ChangeSet@1.1346.888.1, 2007-01-03 12:08:59+01:00, bteam@mysql.com +1 -0
  Raise version number after cloning 4.0.28

  configure.in@1.191.1.148, 2007-01-03 12:08:48+01:00, bteam@mysql.com +1 -1
    Raise version number after cloning 4.0.28

ChangeSet@1.2372.2.5, 2007-01-03 10:22:31+01:00, mskold@mysql.com +1 -0
  bug #25296  Truncate table converts NDB disk based tables to in-memory tables: ha_ndbcluster::update_create_infohas to check for explicit STORAGE MEMORY

  sql/ha_ndbcluster.cc@1.387, 2007-01-03 10:21:27+01:00, mskold@mysql.com +2 -1
    bug #25296  Truncate table converts NDB disk based tables to in-memory tables: ha_ndbcluster::update_create_infohas to check for explicit STORAGE MEMORY

ChangeSet@1.1810.2124.37, 2007-01-03 06:17:34+01:00, jonas@perch.ndb.mysql.com +6 -0
  ndb - bug#25364
    on master node failure during qmgr-commitreq
      make sure to remove all committed failed nodes from failed/prepfailed arrays

  ndb/include/kernel/signaldata/DumpStateOrd.hpp@1.3.7.1, 2007-01-03 06:17:32+01:00, jonas@perch.ndb.mysql.com +1 -0
    new error code

  ndb/src/kernel/blocks/ERROR_codes.txt@1.9.15.1, 2007-01-03 06:17:32+01:00, jonas@perch.ndb.mysql.com +3 -0
    new error code

  ndb/src/kernel/blocks/qmgr/Qmgr.hpp@1.3.9.1, 2007-01-03 06:17:32+01:00, jonas@perch.ndb.mysql.com +4 -0
    extra error insert variable

  ndb/src/kernel/blocks/qmgr/QmgrMain.cpp@1.13.24.1, 2007-01-03 06:17:32+01:00, jonas@perch.ndb.mysql.com +59 -13
    make sure to remove all committed failed nodes from failed/prepfailed arrays

  ndb/test/ndbapi/testNodeRestart.cpp@1.13.14.1, 2007-01-03 06:17:32+01:00, jonas@perch.ndb.mysql.com +43 -0
    testcase

  ndb/test/run-test/daily-basic-tests.txt@1.27.25.1, 2007-01-03 06:17:32+01:00, jonas@perch.ndb.mysql.com +4 -0
    testcase

ChangeSet@1.2372.4.4, 2007-01-02 22:16:24-07:00, malff@weblab.(none) +2 -0
  Bug#25302 (893 reduce/reduce conflicts in parser grammar)
  
  This fix corrects build issues introduced by WL#3031:
  
  - In the SQL grammar, 'USER' is a SQL 2003 reserved keyword,
  and therefore should not be part of the keyword production.
  
  - In sql/sql_parse.cc, the code for CREATE SERVER and ALTER SERVER
  was not using proper format strings in the DBUG_PRINT statements.

  sql/sql_parse.cc@1.611.6.2, 2007-01-02 22:16:21-07:00, malff@weblab.(none) +2 -2
    Fixed compiler warnings

  sql/sql_yacc.yy@1.529, 2007-01-02 22:16:21-07:00, malff@weblab.(none) +0 -1
    Fixed reduce/reduce conflicts

ChangeSet@1.2372.4.3, 2007-01-02 17:49:05-07:00, malff@weblab.(none) +1 -0
  
  Merge 5.1-main -> 5.1-runtime, added ignore entry for missing symbolic link

  BitKeeper/etc/ignore@1.243.1.27, 2007-01-02 17:49:03-07:00, malff@weblab.(none) +1 -1
    
    Fixed ignore entry

  BitKeeper/etc/ignore@1.243.1.26, 2007-01-02 17:42:34-07:00, malff@weblab.(none) +1 -0
    added sql_servers.cc

ChangeSet@1.1810.2456.10, 2007-01-03 03:35:57+04:00, holyfoot@mysql.com +1 -0
  merging

  mysql-test/r/flush_block_commit_notembedded.result@1.1.1.1, 2007-01-03 03:35:55+04:00, holyfoot@mysql.com +1 -1
    result fixed

ChangeSet@1.1810.2456.9, 2007-01-03 03:33:26+04:00, holyfoot@mysql.com +1 -0
  mysql_upgrade disabled in embedded server

  mysql-test/t/mysql_upgrade.test@1.3, 2007-01-03 03:33:25+04:00, holyfoot@mysql.com +3 -0
    test disabled in embedded server

ChangeSet@1.2377, 2007-01-03 03:31:12+04:00, holyfoot@mysql.com +1 -0
  ps_not_windows disabled in embedded server

  mysql-test/t/ps_not_windows.test@1.2, 2007-01-03 03:31:10+04:00, holyfoot@mysql.com +2 -0
    disabled in embedded-server

ChangeSet@1.1616.2921.5, 2007-01-03 02:41:14+04:00, holyfoot@mysql.com +1 -0
  warning count for embedded prepared statements added

  libmysqld/lib_sql.cc@1.75.1.60, 2007-01-03 02:41:13+04:00, holyfoot@mysql.com +1 -0
    reading warning count added

ChangeSet@1.2372.2.4, 2007-01-02 22:31:29+01:00, mskold@mysql.com +4 -0
  bug #25296  Truncate table converts NDB disk based tables to in-memory tables: implemented ha_ndbcluster::update_create_info

  mysql-test/r/ndb_dd_alter.result@1.4, 2007-01-02 22:30:57+01:00, mskold@mysql.com +22 -1
    ug #25296  Truncate table converts NDB disk based tables to in-memory tables: implemented ha_ndbcluster::update_create_info

  mysql-test/t/ndb_dd_alter.test@1.4, 2007-01-02 22:30:57+01:00, mskold@mysql.com +3 -0
    ug #25296  Truncate table converts NDB disk based tables to in-memory tables: implemented ha_ndbcluster::update_create_info

  sql/ha_ndbcluster.cc@1.386, 2007-01-02 22:30:57+01:00, mskold@mysql.com +6 -0
    ug #25296  Truncate table converts NDB disk based tables to in-memory tables: implemented ha_ndbcluster::update_create_info

  sql/ha_ndbcluster.h@1.163, 2007-01-02 22:30:57+01:00, mskold@mysql.com +1 -0
    ug #25296  Truncate table converts NDB disk based tables to in-memory tables: implemented ha_ndbcluster::update_create_info

ChangeSet@1.1810.2371.39, 2007-01-02 12:56:48-05:00, cmiller@zippy.cornsilk.net +1 -0
  Bug#23950: misplaced code in mysqld.cc, main()
  
  We should initialize before anything else.

  sql/mysqld.cc@1.439.82.1, 2007-01-02 12:56:41-05:00, cmiller@zippy.cornsilk.net +3 -1
    Move MY_INIT to the top of main().

ChangeSet@1.2372.5.1, 2007-01-02 09:42:13-08:00, acurtis@xiphis.org +3 -0
  Bug#24270
    "mysql_install_db doesn't work properly on 5.1"
    force sql_mode to known value within initialization scripts

  scripts/fill_help_tables.sh@1.19, 2007-01-02 09:42:11-08:00, acurtis@xiphis.org +1 -0
    force sql_mode to known value

  scripts/mysql_create_system_tables.sh@1.46, 2007-01-02 09:42:11-08:00, acurtis@xiphis.org +1 -0
    force sql_mode to known value

  scripts/mysql_fix_privilege_tables.sql@1.54, 2007-01-02 09:42:11-08:00, acurtis@xiphis.org +1 -0
    force sql_mode to known value

ChangeSet@1.2372.3.1, 2007-01-02 17:11:15+01:00, joerg@trift2. +1 -0
  server-tools/instance-manager/Makefile.am
      Delete compiler-specific flag setting - it makes builds break.

  server-tools/instance-manager/Makefile.am@1.43.2.2, 2007-01-02 17:11:11+01:00, joerg@trift2. +1 -1
    Delete compiler-specific flag setting - it makes builds break.
    If this is really wanted, it must be done through "configure", caring about the compiler differences.

ChangeSet@1.1810.2398.8, 2007-01-02 15:47:58+01:00, mskold@mysql.com +1 -0
  Added --ndb-use-transactions

  sql/mysqld.cc@1.439.81.1, 2007-01-02 15:47:30+01:00, mskold@mysql.com +13 -2
    Added --ndb-use-transactions

ChangeSet@1.1616.2921.4, 2007-01-02 17:53:55+04:00, holyfoot@mysql.com +1 -0
  merging fix

  libmysqld/lib_sql.cc@1.75.1.59, 2007-01-02 17:53:54+04:00, holyfoot@mysql.com +0 -2
    merging fix

ChangeSet@1.1616.2921.3, 2007-01-02 17:51:32+04:00, holyfoot@mysql.com +1 -0
  merging fix

  libmysqld/lib_sql.cc@1.75.1.58, 2007-01-02 17:51:31+04:00, holyfoot@mysql.com +4 -4
    merging fix

ChangeSet@1.1616.2921.2, 2007-01-02 17:46:20+04:00, holyfoot@mysql.com +4 -0
  embedded-server related fixes

  libmysqld/lib_sql.cc@1.75.1.57, 2007-01-02 17:46:19+04:00, holyfoot@mysql.com +6 -0
    error message moved to 'stmt'

  mysql-test/t/distinct.test@1.14.1.7, 2007-01-02 17:46:19+04:00, holyfoot@mysql.com +2 -0
    temporary disabled in embedded server

  mysql-test/t/mysqladmin.test@1.1.2.1, 2007-01-02 17:46:19+04:00, holyfoot@mysql.com +2 -0
    disabled in embedded server

  sql/sql_prepare.cc@1.34.36.4, 2007-01-02 17:46:19+04:00, holyfoot@mysql.com +0 -2
    superfluous #ifndef removed

ChangeSet@1.1810.2462.1, 2007-01-02 11:01:48+01:00, kent@mysql.com +1 -0
  view.result:
    Temporary work around for bug#25359

  mysql-test/r/view.result@1.138.28.1, 2007-01-02 11:01:39+01:00, kent@mysql.com +4 -4
    Temporary work around for bug#25359

ChangeSet@1.2368.4.1, 2007-01-02 10:05:58+01:00, mskold@mysql.com +1 -0
  bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: removed use of environment variable NDB_DEFAULT_DISK

  sql/ha_ndbcluster.cc@1.385, 2007-01-02 10:04:53+01:00, mskold@mysql.com +1 -1
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: removed use of environment variable NDB_DEFAULT_DISK

ChangeSet@1.1616.2923.3, 2007-01-01 10:50:39+01:00, kent@mysql.com +9 -0
  Many files:
    Renamed hash_create() not to clash with imap using embedded server (bug#13859)

  innobase/buf/buf0buf.c@1.38.1.3, 2007-01-01 10:50:21+01:00, kent@mysql.com +1 -1
    Renamed hash_create() not to clash with imap using embedded server (bug#13859)

  innobase/dict/dict0dict.c@1.52.1.16, 2007-01-01 10:50:21+01:00, kent@mysql.com +3 -3
    Renamed hash_create() not to clash with imap using embedded server (bug#13859)

  innobase/fil/fil0fil.c@1.41.1.15, 2007-01-01 10:50:21+01:00, kent@mysql.com +2 -2
    Renamed hash_create() not to clash with imap using embedded server (bug#13859)

  innobase/ha/ha0ha.c@1.13.1.1, 2007-01-01 10:50:21+01:00, kent@mysql.com +1 -1
    Renamed hash_create() not to clash with imap using embedded server (bug#13859)

  innobase/ha/hash0hash.c@1.4.1.1, 2007-01-01 10:50:21+01:00, kent@mysql.com +1 -1
    Renamed hash_create() not to clash with imap using embedded server (bug#13859)

  innobase/include/hash0hash.h@1.4.1.1, 2007-01-01 10:50:21+01:00, kent@mysql.com +1 -1
    Renamed hash_create() not to clash with imap using embedded server (bug#13859)

  innobase/lock/lock0lock.c@1.43.1.6, 2007-01-01 10:50:21+01:00, kent@mysql.com +1 -1
    Renamed hash_create() not to clash with imap using embedded server (bug#13859)

  innobase/log/log0recv.c@1.38.1.4, 2007-01-01 10:50:21+01:00, kent@mysql.com +2 -2
    Renamed hash_create() not to clash with imap using embedded server (bug#13859)

  innobase/thr/thr0loc.c@1.7.1.1, 2007-01-01 10:50:21+01:00, kent@mysql.com +1 -1
    Renamed hash_create() not to clash with imap using embedded server (bug#13859)

ChangeSet@1.1810.2461.4, 2007-01-01 09:54:41+01:00, kent@mysql.com +2 -0
  mysqld.cc, configure.in:
    Don't use thread priority by default on Mac OS X (bug#18526)

  configure.in@1.245.1.171, 2007-01-01 09:54:27+01:00, kent@mysql.com +2 -0
    Don't use thread priority by default on Mac OS X (bug#18526)

  sql/mysqld.cc@1.439.1.146, 2007-01-01 09:54:27+01:00, kent@mysql.com +6 -2
    Don't use thread priority by default on Mac OS X (bug#18526)

ChangeSet@1.1810.2461.3, 2007-01-01 08:49:17+01:00, kent@mysql.com +1 -0
  configure.in:
    Build "mysqld_error.h" even if configured --withouth-server (bug#21265)

  configure.in@1.245.1.170, 2007-01-01 08:48:55+01:00, kent@mysql.com +8 -6
    Build "mysqld_error.h" even if configured --withouth-server (bug#21265)

ChangeSet@1.1616.2923.2, 2007-01-01 07:22:57+01:00, kent@mysql.com +1 -0
  configure.in:
    Don't build server when configured --without-server (bug#23973)

  configure.in@1.201.64.17, 2007-01-01 07:22:41+01:00, kent@mysql.com +5 -1
    Don't build server when configured --without-server (bug#23973)

ChangeSet@1.1616.2922.1, 2007-01-01 05:30:31+01:00, kent@mysql.com +2 -0
  mysql_secure_installation.sh:
    Portable handling of "echo" without newline (bug#24605)
  check-cpu:
    In developer script safe to use "printf", not "echo -n"

  BUILD/check-cpu@1.12.2.1, 2007-01-01 05:27:01+01:00, kent@mysql.com +1 -2
    In developer script safe to use "printf", not "echo -n"

  scripts/mysql_secure_installation.sh@1.3.1.1, 2007-01-01 05:29:41+01:00, kent@mysql.com +20 -9
    Portable handling of "echo" without newline (bug#24605)

ChangeSet@1.2372, 2006-12-31 02:29:11+01:00, kent@mysql.com +79 -0
  Many files:
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 
    Added GPL copyright text
  my_vle.h, rpl_utility.h, my_vle.c, base64-t.c, rpl_utility.cc:
    Changed copyright header formatting some
  plugin_example.c, daemon_example.c:
    Added "Copyright (C) 2006 MySQL AB" to GPL header

  CMakeLists.txt@1.20.1.5, 2006-12-31 01:37:21+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  client/CMakeLists.txt@1.15, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  dbug/CMakeLists.txt@1.6, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  extra/CMakeLists.txt@1.11, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  extra/yassl/CMakeLists.txt@1.7, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  extra/yassl/taocrypt/CMakeLists.txt@1.9, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  include/my_uctype.h@1.2, 2006-12-31 02:28:54+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  include/my_vle.h@1.3, 2006-12-31 02:17:58+01:00, kent@mysql.com +2 -5
    Changed copyright header formatting some

  libmysql/CMakeLists.txt@1.12, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  libmysqld/CMakeLists.txt@1.6.2.1, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  libmysqld/examples/CMakeLists.txt@1.4, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  mysys/CMakeLists.txt@1.11, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  mysys/my_vle.c@1.4, 2006-12-31 02:17:58+01:00, kent@mysql.com +2 -5
    Changed copyright header formatting some

  plugin/Makefile.am@1.7, 2006-12-31 02:24:03+01:00, kent@mysql.com +5 -5
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  plugin/daemon_example/Makefile.am@1.2, 2006-12-31 02:28:54+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  plugin/daemon_example/daemon_example.c@1.2, 2006-12-31 02:20:56+01:00, kent@mysql.com +4 -4
    Added "Copyright (C) 2006 MySQL AB" to GPL header

  plugin/fulltext/Makefile.am@1.9, 2006-12-31 02:28:54+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  plugin/fulltext/plugin_example.c@1.17, 2006-12-31 02:20:56+01:00, kent@mysql.com +4 -4
    Added "Copyright (C) 2006 MySQL AB" to GPL header

  regex/CMakeLists.txt@1.7, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  scripts/make_win_bin_dist@1.3, 2006-12-31 02:28:54+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  server-tools/instance-manager/CMakeLists.txt@1.9, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  server-tools/instance-manager/user_management_commands.cc@1.5, 2006-12-31 02:28:54+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  sql/CMakeLists.txt@1.21.7.2, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  sql/authors.h@1.17, 2006-12-31 02:24:03+01:00, kent@mysql.com +2 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/contributors.h@1.3, 2006-12-31 02:24:03+01:00, kent@mysql.com +2 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/item_xmlfunc.cc@1.24, 2006-12-31 02:24:03+01:00, kent@mysql.com +2 -3
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/partition_element.h@1.12, 2006-12-31 02:24:03+01:00, kent@mysql.com +2 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/partition_info.h@1.21, 2006-12-31 02:24:03+01:00, kent@mysql.com +2 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/rpl_injector.cc@1.6.1.2, 2006-12-31 02:24:03+01:00, kent@mysql.com +2 -3
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/rpl_injector.h@1.5.3.2, 2006-12-31 02:24:03+01:00, kent@mysql.com +2 -3
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/rpl_utility.cc@1.6, 2006-12-31 02:27:31+01:00, kent@mysql.com +2 -2
    Changed copyright header formatting some

  sql/rpl_utility.h@1.4, 2006-12-31 02:27:31+01:00, kent@mysql.com +2 -2
    Changed copyright header formatting some

  sql/sql_binlog.cc@1.8, 2006-12-31 02:24:03+01:00, kent@mysql.com +2 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_builtin.cc.in@1.2, 2006-12-31 02:28:54+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  sql/sql_servers.h@1.3, 2006-12-31 02:24:03+01:00, kent@mysql.com +2 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_show.h@1.4, 2006-12-31 02:28:54+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  storage/Makefile.am@1.7, 2006-12-31 02:24:03+01:00, kent@mysql.com +5 -5
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  storage/archive/CMakeLists.txt@1.7, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  storage/archive/Makefile.am@1.10, 2006-12-31 02:24:03+01:00, kent@mysql.com +5 -5
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  storage/archive/archive_test.c@1.4.1.1, 2006-12-31 02:28:54+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  storage/blackhole/CMakeLists.txt@1.6, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  storage/blackhole/Makefile.am@1.7, 2006-12-31 02:24:03+01:00, kent@mysql.com +5 -5
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  storage/csv/CMakeLists.txt@1.6, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  storage/csv/Makefile.am@1.12, 2006-12-31 02:24:03+01:00, kent@mysql.com +2 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  storage/example/CMakeLists.txt@1.5, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  storage/example/Makefile.am@1.13, 2006-12-31 02:24:03+01:00, kent@mysql.com +5 -5
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  storage/federated/CMakeLists.txt@1.3, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  storage/federated/Makefile.am@1.4, 2006-12-31 02:24:03+01:00, kent@mysql.com +5 -5
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  storage/heap/CMakeLists.txt@1.7, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  storage/innobase/CMakeLists.txt@1.10, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  storage/myisam/CMakeLists.txt@1.8, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  storage/myisammrg/CMakeLists.txt@1.8, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  storage/ndb/src/kernel/blocks/dbtup/test_varpage.cpp@1.4, 2006-12-31 02:28:54+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  storage/ndb/src/kernel/blocks/diskpage.cpp@1.2, 2006-12-31 02:28:54+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  storage/ndb/src/kernel/vm/Rope.cpp@1.4, 2006-12-31 02:28:54+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  storage/ndb/src/mgmsrv/ParamInfo.hpp@1.2, 2006-12-31 02:28:54+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  strings/CMakeLists.txt@1.7, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  strings/uctypedump.c@1.2, 2006-12-31 02:28:54+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  tests/CMakeLists.txt@1.8, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  unittest/Makefile.am@1.13, 2006-12-31 02:28:54+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  unittest/examples/Makefile.am@1.8, 2006-12-31 02:28:54+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  unittest/examples/core-t.c@1.2, 2006-12-31 02:28:54+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  unittest/examples/no_plan-t.c@1.5, 2006-12-31 02:28:54+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  unittest/examples/simple-t.c@1.3, 2006-12-31 02:28:54+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  unittest/examples/skip-t.c@1.4, 2006-12-31 02:28:54+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  unittest/examples/skip_all-t.c@1.5, 2006-12-31 02:28:54+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  unittest/examples/todo-t.c@1.4, 2006-12-31 02:28:54+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  unittest/mysys/Makefile.am@1.7, 2006-12-31 02:28:54+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  unittest/mysys/base64-t.c@1.7, 2006-12-31 02:27:31+01:00, kent@mysql.com +1 -2
    Changed copyright header formatting some

  unittest/mytap/Makefile.am@1.4, 2006-12-31 02:28:54+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  unittest/mytap/t/Makefile.am@1.8, 2006-12-31 02:28:54+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  unittest/mytap/t/basic-t.c@1.7, 2006-12-31 02:28:54+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  unittest/unit.pl@1.7, 2006-12-31 02:28:54+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  vio/CMakeLists.txt@1.7, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  win/Makefile.am@1.5, 2006-12-31 02:24:03+01:00, kent@mysql.com +2 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  win/build-vs71.bat@1.6, 2006-12-31 02:28:54+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  win/build-vs8.bat@1.6, 2006-12-31 02:28:54+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  win/configure.js@1.4.1.2, 2006-12-31 02:28:54+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  zlib/CMakeLists.txt@1.7, 2006-12-31 01:37:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

ChangeSet@1.1810.2453.3, 2006-12-31 01:02:27+01:00, kent@mysql.com +524 -0
  my_strtoll10-x86.s:
    Corrected spelling in copyright text
  Makefile.am:
    Don't update the files from BitKeeper
  Many files:
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 
  Many files:
    Added GPL copyright text
  Removed files:
    Docs/Support/colspec-fix.pl
    Docs/Support/docbook-fixup.pl
    Docs/Support/docbook-prefix.pl
    Docs/Support/docbook-split
    Docs/Support/make-docbook
    Docs/Support/make-makefile
    Docs/Support/test-make-manual
    Docs/Support/test-make-manual-de
    Docs/Support/xwf

  BUILD/Makefile.am@1.10.1.2, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  CMakeLists.txt@1.1.8.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  extra/CMakeLists.txt@1.1.1.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  extra/yassl/CMakeLists.txt@1.1.2.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  extra/yassl/taocrypt/CMakeLists.txt@1.1.2.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  libmysql/CMakeLists.txt@1.1.1.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  mysys/CMakeLists.txt@1.1.2.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  regex/CMakeLists.txt@1.1.1.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  server-tools/instance-manager/CMakeLists.txt@1.1.1.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  innobase/CMakeLists.txt@1.1.2.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  sql/CMakeLists.txt@1.1.2.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  strings/CMakeLists.txt@1.1.1.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  heap/CMakeLists.txt@1.1.1.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  tests/CMakeLists.txt@1.1.1.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  vio/CMakeLists.txt@1.1.1.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  client/CMakeLists.txt@1.1.3.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  zlib/CMakeLists.txt@1.1.1.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  myisammrg/CMakeLists.txt@1.1.1.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  dbug/CMakeLists.txt@1.1.1.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  myisam/CMakeLists.txt@1.1.1.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  bdb/CMakeLists.txt@1.1.1.1, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/kernel/blocks/qmgr/Makefile.am@1.3.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  win/Makefile.am@1.1.2.1, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  ndb/src/kernel/blocks/trix/Makefile.am@1.3.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/kernel/blocks/suma/Makefile.am@1.4.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/kernel/blocks/dbacc/Makefile.am@1.5.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/src/kernel/blocks/cmvmi/Makefile.am@1.3.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  innobase/include/Makefile.am@1.11.3.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  ndb/src/kernel/blocks/dbtux/Makefile.am@1.5.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/kernel/blocks/ndbfs/Makefile.am@1.3.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/kernel/blocks/dbutil/Makefile.am@1.3.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  SSL/Makefile.am@1.1.4.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  ndb/src/kernel/blocks/dbtc/Makefile.am@1.3.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/kernel/blocks/ndbcntr/Makefile.am@1.3.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  os2/Makefile.am@1.2.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  os2/include/sys/Makefile.am@1.1.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  os2/include/Makefile.am@1.1.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  bdb/Makefile.in@1.6.3.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  os2/ReadMe.txt@1.2.1.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  win/build-vs71.bat@1.1.1.1, 2006-12-30 18:25:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  win/build-vs8.bat@1.1.1.1, 2006-12-30 18:25:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  BitKeeper/deleted/.del-colspec-fix.pl@1.5.1.1, 2006-12-31 00:02:45+01:00, kent@mysql.com +0 -0
    Delete: Docs/Support/colspec-fix.pl

  win/configure.js@1.1.1.1, 2006-12-30 18:25:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  VC++Files/copy_mysql_files.bat@1.3.1.1, 2006-12-30 14:26:28+01:00, kent@mysql.com +17 -0
    Added GPL copyright text

  BitKeeper/deleted/.del-docbook-fixup.pl@1.16.1.1, 2006-12-31 00:02:45+01:00, kent@mysql.com +0 -0
    Delete: Docs/Support/docbook-fixup.pl

  BitKeeper/deleted/.del-docbook-prefix.pl@1.1.1.1, 2006-12-31 00:02:45+01:00, kent@mysql.com +0 -0
    Delete: Docs/Support/docbook-prefix.pl

  BitKeeper/deleted/.del-docbook-split@1.3.1.1, 2006-12-31 00:02:45+01:00, kent@mysql.com +0 -0
    Delete: Docs/Support/docbook-split

  sql/ha_berkeley.cc@1.151.7.1, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/ha_berkeley.h@1.70.5.1, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/item_uniq.cc@1.10.1.2, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/item_uniq.h@1.29, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  BitKeeper/deleted/.del-make-docbook@1.5.1.1, 2006-12-31 00:02:45+01:00, kent@mysql.com +0 -0
    Delete: Docs/Support/make-docbook

  BitKeeper/deleted/.del-make-makefile@1.2.1.1, 2006-12-31 00:02:45+01:00, kent@mysql.com +0 -0
    Delete: Docs/Support/make-makefile

  scripts/make_win_bin_dist@1.1.5.1, 2006-12-30 23:47:38+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  scripts/make_win_src_distribution.sh@1.37.3.1, 2006-12-30 23:47:38+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  mysql-test/my_create_tables.c@1.3.1.1, 2006-12-30 18:25:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  scripts/mysql_explain_log.sh@1.3.2.1, 2006-12-30 23:47:38+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  VC++Files/test1/mysql_thr.c@1.4.1.1, 2006-12-30 18:25:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  scripts/mysql_upgrade_shell.sh@1.3.2.1, 2006-12-30 18:25:24+01:00, kent@mysql.com +13 -1
    Added GPL copyright text

  tools/mysqlmanager.c@1.47.2.1, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  VC++Files/prepare@1.2.1.1, 2006-12-30 18:25:24+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  sql-bench/print-limit-table@1.7.2.1, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_manager.h@1.1.2.1, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  BitKeeper/deleted/.del-test-make-manual-de@1.1.1.1, 2006-12-31 00:02:45+01:00, kent@mysql.com +0 -0
    Delete: Docs/Support/test-make-manual-de

  BitKeeper/deleted/.del-test-make-manual@1.7.1.1, 2006-12-31 00:02:45+01:00, kent@mysql.com +0 -0
    Delete: Docs/Support/test-make-manual

  VC++Files/thr_test/thr_test.c@1.3.1.1, 2006-12-30 18:25:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  BitKeeper/deleted/.del-xwf@1.1.1.1, 2006-12-31 00:02:45+01:00, kent@mysql.com +0 -0
    Delete: Docs/Support/xwf

  Docs/Makefile.am@1.57.1.6, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  Docs/Support/generate-text-files.pl@1.4.1.1, 2006-12-30 18:25:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  Makefile.am@1.68.5.3, 2006-12-31 00:18:19+01:00, kent@mysql.com +2 -0
    Don't update the files from BitKeeper

  Makefile.am@1.68.5.2, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  client/Makefile.am@1.52.1.11, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  client/client_priv.h@1.43.2.4, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  client/completion_hash.h@1.8, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  client/mysqladmin.cc@1.115.1.2, 2006-12-30 21:02:04+01:00, kent@mysql.com +3 -3
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  client/mysqlimport.c@1.58.1.4, 2006-12-30 21:02:04+01:00, kent@mysql.com +2 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  client/mysqlshow.c@1.49.1.2, 2006-12-30 21:02:04+01:00, kent@mysql.com +2 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  dbug/Makefile.am@1.14.1.3, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  extra/Makefile.am@1.30.1.7, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  extra/yassl/Makefile.am@1.2.1.4, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  extra/yassl/src/make.bat@1.4, 2006-12-30 14:26:28+01:00, kent@mysql.com +18 -0
    Added GPL copyright text

  extra/yassl/taocrypt/Makefile.am@1.1.1.5, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  extra/yassl/taocrypt/benchmark/Makefile.am@1.2.1.3, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  extra/yassl/taocrypt/benchmark/make.bat@1.4, 2006-12-30 14:26:28+01:00, kent@mysql.com +18 -0
    Added GPL copyright text

  extra/yassl/taocrypt/src/make.bat@1.6, 2006-12-30 14:26:28+01:00, kent@mysql.com +18 -0
    Added GPL copyright text

  extra/yassl/taocrypt/test/Makefile.am@1.2.1.3, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  extra/yassl/taocrypt/test/make.bat@1.4, 2006-12-30 14:26:28+01:00, kent@mysql.com +18 -0
    Added GPL copyright text

  extra/yassl/testsuite/make.bat@1.4, 2006-12-30 14:26:28+01:00, kent@mysql.com +18 -0
    Added GPL copyright text

  include/Makefile.am@1.52.2.12, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  include/help_end.h@1.5, 2006-12-30 18:25:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  include/help_start.h@1.5, 2006-12-30 18:25:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  include/my_aes.h@1.5, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  include/my_getopt.h@1.19, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  include/my_handler.h@1.13, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  include/my_time.h@1.11.1.7, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  include/mysql_time.h@1.6, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  include/rijndael.h@1.5, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  include/sha1.h@1.6, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  include/sql_common.h@1.19, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  libmysql/Makefile.am@1.47.1.5, 2006-12-31 00:18:20+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  libmysql/client_settings.h@1.35, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  libmysql_r/Makefile.am@1.22.1.6, 2006-12-31 00:18:20+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  libmysqld/Makefile.am@1.55.1.17, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  libmysqld/emb_qcache.h@1.4, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  libmysqld/embedded_priv.h@1.12.1.4, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  man/Makefile.am@1.14, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  mysql-test/Makefile.am@1.66.4.3, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  mysql-test/install_test_db.sh@1.35.1.2, 2006-12-30 18:25:24+01:00, kent@mysql.com +13 -1
    Added GPL copyright text

  mysql-test/lib/mtr_cases.pl@1.12.2.1, 2006-12-30 18:29:18+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  mysql-test/lib/mtr_diff.pl@1.2, 2006-12-30 18:29:18+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  mysql-test/lib/mtr_gcov.pl@1.3, 2006-12-30 18:29:18+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  mysql-test/lib/mtr_gprof.pl@1.2, 2006-12-30 18:29:18+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  mysql-test/lib/mtr_im.pl@1.3, 2006-12-30 18:29:18+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  mysql-test/lib/mtr_io.pl@1.3.1.7, 2006-12-30 18:29:18+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  mysql-test/lib/mtr_match.pl@1.1.1.3, 2006-12-30 18:29:18+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  mysql-test/lib/mtr_misc.pl@1.12.1.8, 2006-12-30 18:29:18+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  mysql-test/lib/mtr_process.pl@1.25.7.1, 2006-12-30 18:29:18+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  mysql-test/lib/mtr_report.pl@1.21.1.13, 2006-12-30 18:29:18+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  mysql-test/lib/mtr_stress.pl@1.4, 2006-12-30 18:29:18+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  mysql-test/lib/mtr_timer.pl@1.7.1.5, 2006-12-30 18:29:18+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  mysql-test/lib/mtr_unique.pl@1.4, 2006-12-30 18:29:18+01:00, kent@mysql.com +16 -0
    Added GPL copyright text

  mysql-test/ndb/ndbcluster.sh@1.41.1.6, 2006-12-30 18:25:24+01:00, kent@mysql.com +13 -1
    Added GPL copyright text

  mysys/Makefile.am@1.62.1.12, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  mysys/my_aes.c@1.8, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  mysys/my_gethostbyname.c@1.7.1.2, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  mysys/my_gethwaddr.c@1.5, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  mysys/my_getopt.c@1.55.1.4, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  mysys/my_getsystime.c@1.7, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  mysys/my_handler.c@1.24.1.4, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  mysys/my_port.c@1.4, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  mysys/my_semaphore.c@1.5, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  mysys/rijndael.c@1.6, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  mysys/sha1.c@1.8, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  pstack/Makefile.am@1.8, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  pstack/aout/Makefile.am@1.2, 2006-12-31 00:18:20+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  regex/Makefile.am@1.14.1.3, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  scripts/Makefile.am@1.43.1.12, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  scripts/fill_func_tables.sh@1.4.1.2, 2006-12-30 18:25:24+01:00, kent@mysql.com +13 -2
    Added GPL copyright text

  scripts/fill_help_tables.sh@1.18, 2006-12-30 18:25:24+01:00, kent@mysql.com +14 -3
    Added GPL copyright text

  scripts/make_binary_distribution.sh@1.101.5.2, 2006-12-30 23:47:38+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  scripts/make_sharedlib_distribution.sh@1.5, 2006-12-30 23:47:38+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  scripts/mysql_config.sh@1.27, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  scripts/mysql_convert_table_format.sh@1.6.1.1, 2006-12-30 23:47:38+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  scripts/mysql_create_system_tables.sh@1.12.1.17, 2006-12-30 18:25:24+01:00, kent@mysql.com +13 -1
    Added GPL copyright text

  scripts/mysql_find_rows.sh@1.8, 2006-12-30 23:47:38+01:00, kent@mysql.com +14 -3
    Added GPL copyright text

  scripts/mysql_fix_privilege_tables.sh@1.35.1.2, 2006-12-30 23:47:38+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  scripts/mysql_install_db.sh@1.64.1.4, 2006-12-30 18:25:24+01:00, kent@mysql.com +13 -1
    Added GPL copyright text

  scripts/mysql_zap.sh@1.8, 2006-12-30 23:47:38+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  scripts/mysqlbug.sh@1.7.1.1, 2006-12-30 23:47:38+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  server-tools/CMakeLists.txt@1.2, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  server-tools/Makefile.am@1.1.1.3, 2006-12-31 00:18:20+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  server-tools/Makefile.am@1.1.1.2, 2006-12-30 23:47:38+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  server-tools/instance-manager/IMService.cpp@1.7.1.1, 2006-12-30 18:25:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  server-tools/instance-manager/IMService.h@1.3.1.1, 2006-12-30 18:25:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  server-tools/instance-manager/WindowsService.cpp@1.5.1.1, 2006-12-30 18:25:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  server-tools/instance-manager/WindowsService.h@1.5.1.1, 2006-12-30 18:25:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  server-tools/instance-manager/listener.cc@1.24.2.2, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/listener.h@1.6.1.2, 2006-12-30 21:02:05+01:00, kent@mysql.com +4 -3
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/log.cc@1.8.1.2, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/log.h@1.4.1.2, 2006-12-30 21:02:05+01:00, kent@mysql.com +4 -3
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/manager.cc@1.32.1.6, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/manager.h@1.5.1.2, 2006-12-30 21:02:05+01:00, kent@mysql.com +4 -3
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/messages.cc@1.5.1.3, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/messages.h@1.4, 2006-12-30 21:02:06+01:00, kent@mysql.com +4 -3
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/mysql_connection.cc@1.14.1.3, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/mysql_connection.h@1.5.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +4 -3
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/mysqlmanager.cc@1.17.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/options.cc@1.30.2.5, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/options.h@1.14.1.4, 2006-12-30 21:02:06+01:00, kent@mysql.com +4 -3
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/portability.h@1.8.1.3, 2006-12-30 18:25:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  server-tools/instance-manager/priv.cc@1.10.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/priv.h@1.10.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +4 -3
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/protocol.cc@1.13.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/protocol.h@1.6.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +4 -3
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/thread_registry.cc@1.10.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/thread_registry.h@1.6.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +4 -3
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/user_map.cc@1.15.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  server-tools/instance-manager/user_map.h@1.5.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +3 -3
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-bench/Makefile.am@1.20.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-bench/as3ap.sh@1.2.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-bench/bench-count-distinct.sh@1.2.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-bench/bench-init.pl.sh@1.29.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-bench/compare-results.sh@1.10.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-bench/copy-db.sh@1.6.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-bench/crash-me.sh@1.48.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-bench/run-all-tests.sh@1.12.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-bench/server-cfg.sh@1.51.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-bench/test-ATIS.sh@1.12.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-bench/test-alter-table.sh@1.11.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-bench/test-big-tables.sh@1.8.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-bench/test-connect.sh@1.13.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-bench/test-create.sh@1.11.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-bench/test-insert.sh@1.41.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-bench/test-select.sh@1.23.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-bench/test-transactions.sh@1.6.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-bench/test-wisconsin.sh@1.12.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-common/Makefile.am@1.5, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql-common/my_time.c@1.19.10.7, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/Makefile.am@1.103.1.27, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/client_settings.h@1.16, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/custom_conf.h@1.7, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/derror.cc@1.23, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/des_key_file.cc@1.15, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/discover.cc@1.3.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/examples/CMakeLists.txt@1.2, 2006-12-30 14:10:45+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  sql/field.cc@1.256.39.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/field.h@1.153.17.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/filesort.cc@1.105.4.3, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/frm_crypt.cc@1.6, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/gen_lex_hash.cc@1.67.1.5, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/gstream.h@1.7, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/handler.cc@1.167.26.5, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/handler.h@1.138.2.44, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/hash_filo.cc@1.10, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/hash_filo.h@1.14, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/hostname.cc@1.34.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/init.cc@1.16.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/item.cc@1.113.1.134, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/item.h@1.183.1.32, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/item_buff.cc@1.22, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/item_cmpfunc.cc@1.187.15.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/item_create.h@1.43.1.3, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/item_func.h@1.136.2.22, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/item_geofunc.cc@1.27.1.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/item_strfunc.cc@1.261.18.3, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/item_sum.h@1.102.4.2, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/item_timefunc.h@1.63.1.9, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/key.cc@1.34.1.5, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/lex_symbol.h@1.7.1.2, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/lock.cc@1.64.3.2, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/log_event.h@1.122.3.2, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/matherr.c@1.7, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/mf_iocache.cc@1.29, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/my_decimal.cc@1.11.1.3, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/my_decimal.h@1.10.1.3, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/my_lock.c@1.9.1.2, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/opt_range.cc@1.159.35.1, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/opt_range.h@1.57.1.10, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/password.c@1.39.1.3, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/procedure.cc@1.13, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/procedure.h@1.21.1.2, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/protocol.h@1.31.1.5, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/records.cc@1.40.1.6, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/repl_failsafe.cc@1.53.1.10, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/repl_failsafe.h@1.14, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/set_var.h@1.68.3.2, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/spatial.h@1.19.1.3, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_acl.h@1.28.1.24, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_analyse.cc@1.67.1.3, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_analyse.h@1.20.1.2, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_base.cc@1.235.1.125, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_cache.h@1.30.1.5, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_class.cc@1.223.13.4, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_class.h@1.230.48.3, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_client.cc@1.8, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_crypt.cc@1.10.1.2, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_crypt.h@1.7, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_cursor.cc@1.4.1.4, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_cursor.h@1.3, 2006-12-30 21:02:07+01:00, kent@mysql.com +4 -3
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_do.cc@1.11.1.2, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_insert.cc@1.146.41.2, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_lex.cc@1.142.32.2, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_lex.h@1.175.1.60, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_list.cc@1.12, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_load.cc@1.78.1.26, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_manager.cc@1.6.1.2, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_map.cc@1.16.1.2, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_map.h@1.8, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_olap.cc@1.22.1.2, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_rename.cc@1.31.1.6, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_repl.cc@1.133.1.22, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_repl.h@1.37.1.4, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_select.cc@1.312.117.5, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_select.h@1.92.1.22, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_test.cc@1.43.1.5, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_udf.h@1.17, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/sql_update.cc@1.154.26.2, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/structs.h@1.53.1.4, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/table.cc@1.160.43.1, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/table.h@1.102.1.35, 2006-12-30 21:02:07+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/thr_malloc.cc@1.15, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/time.cc@1.57.1.9, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/unireg.cc@1.53.1.27, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/unireg.h@1.39.1.8, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/Makefile.am@1.9.4.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/_check.c@1.17.4.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/_rectest.c@1.5.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/ha_heap.cc@1.71.6.1, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/ha_heap.h@1.37.3.1, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/heapdef.h@1.14.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_block.c@1.6.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_clear.c@1.8.3.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_close.c@1.7.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_create.c@1.20.5.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_delete.c@1.14.6.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_extra.c@1.6.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_hash.c@1.38.8.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_info.c@1.9.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_open.c@1.21.3.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_panic.c@1.5.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_rename.c@1.6.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_rfirst.c@1.13.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_rkey.c@1.15.3.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_rlast.c@1.9.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_rnext.c@1.11.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_rprev.c@1.7.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_rrnd.c@1.8.3.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_rsame.c@1.5.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_scan.c@1.6.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_static.c@1.4.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_test1.c@1.14.3.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_test2.c@1.21.3.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_update.c@1.10.3.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  heap/hp_write.c@1.22.5.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  innobase/Makefile.am@1.6.3.1, 2006-12-30 21:48:23+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/btr/Makefile.am@1.3.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/btr/Makefile.am@1.3.2.1, 2006-12-30 21:48:23+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/buf/Makefile.am@1.2.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/buf/Makefile.am@1.2.2.1, 2006-12-30 21:48:23+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/data/Makefile.am@1.3.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/data/Makefile.am@1.3.2.1, 2006-12-30 21:48:23+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/dict/Makefile.am@1.2.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/dict/Makefile.am@1.2.2.1, 2006-12-30 21:48:23+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/dyn/Makefile.am@1.2.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/dyn/Makefile.am@1.2.2.1, 2006-12-30 21:48:23+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/eval/Makefile.am@1.3.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/eval/Makefile.am@1.3.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/fil/Makefile.am@1.2.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/fil/Makefile.am@1.2.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/fsp/Makefile.am@1.2.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/fsp/Makefile.am@1.2.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/fut/Makefile.am@1.2.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/fut/Makefile.am@1.2.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/ha/Makefile.am@1.2.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/ha/Makefile.am@1.2.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/ibuf/Makefile.am@1.3.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/lock/Makefile.am@1.2.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/lock/Makefile.am@1.2.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/log/Makefile.am@1.2.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/log/Makefile.am@1.2.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/mach/Makefile.am@1.2.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/mach/Makefile.am@1.2.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/mem/Makefile.am@1.4.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/mem/Makefile.am@1.4.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/mtr/Makefile.am@1.2.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/mtr/Makefile.am@1.2.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/os/Makefile.am@1.4.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/page/Makefile.am@1.2.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/page/Makefile.am@1.2.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/pars/Makefile.am@1.4.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/pars/Makefile.am@1.4.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/que/Makefile.am@1.2.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/que/Makefile.am@1.2.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/read/Makefile.am@1.2.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/read/Makefile.am@1.2.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/rem/Makefile.am@1.2.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/rem/Makefile.am@1.2.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/row/Makefile.am@1.2.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/row/Makefile.am@1.2.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/srv/Makefile.am@1.4.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/srv/Makefile.am@1.4.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/sync/Makefile.am@1.3.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/sync/Makefile.am@1.3.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/thr/Makefile.am@1.2.2.2, 2006-12-31 00:18:19+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/thr/Makefile.am@1.2.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/trx/Makefile.am@1.2.2.2, 2006-12-31 00:18:20+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/trx/Makefile.am@1.2.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/usr/Makefile.am@1.2.2.2, 2006-12-31 00:18:20+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/usr/Makefile.am@1.2.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  innobase/ut/Makefile.am@1.2.2.2, 2006-12-31 00:18:20+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  innobase/ut/Makefile.am@1.2.2.1, 2006-12-30 21:48:24+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header

  myisam/Makefile.am@1.29.5.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/ft_boolean_search.c@1.90.5.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/ft_eval.c@1.16.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/ft_nlq_search.c@1.38.3.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/ft_parser.c@1.46.4.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/ft_static.c@1.31.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/ft_stem.c@1.4.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/ft_stopwords.c@1.22.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/ft_test1.c@1.18.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/ft_test1.h@1.4.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/ft_update.c@1.37.3.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/ftdefs.h@1.30.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/fulltext.h@1.9.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/ha_myisam.cc@1.147.9.1, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/ha_myisam.h@1.68.3.1, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_cache.c@1.14.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_changed.c@1.5.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_check.c@1.129.23.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_checksum.c@1.8.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_close.c@1.18.3.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_create.c@1.45.16.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_dbug.c@1.13.3.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_delete.c@1.33.11.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_delete_all.c@1.15.3.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_delete_table.c@1.9.3.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_dynrec.c@1.37.15.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_extra.c@1.44.4.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_info.c@1.15.2.1, 2006-12-30 21:02:04+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_key.c@1.38.16.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_locking.c@1.38.7.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_log.c@1.11.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_open.c@1.90.14.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_packrec.c@1.30.10.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_page.c@1.22.3.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_panic.c@1.10.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_preload.c@1.9.3.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_range.c@1.15.5.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_rename.c@1.8.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_rfirst.c@1.4.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_rkey.c@1.18.10.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_rlast.c@1.4.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_rnext.c@1.15.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_rnext_same.c@1.16.6.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_rprev.c@1.12.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_rrnd.c@1.6.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_rsame.c@1.6.3.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_rsamepos.c@1.4.3.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_scan.c@1.4.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_search.c@1.53.9.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_static.c@1.16.5.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_statrec.c@1.10.4.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_test1.c@1.25.6.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_test2.c@1.27.4.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_test3.c@1.16.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_unique.c@1.22.7.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_update.c@1.17.8.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/mi_write.c@1.50.13.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/myisam_ftdump.c@1.36.5.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/myisamdef.h@1.74.15.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/myisamlog.c@1.29.6.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/myisampack.c@1.39.20.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/rt_index.c@1.16.3.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/rt_index.h@1.3.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/rt_key.h@1.3.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/rt_mbr.c@1.9.3.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/rt_mbr.h@1.4.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/rt_split.c@1.11.10.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/rt_test.c@1.13.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/sort.c@1.45.15.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/sp_defs.h@1.2.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -2
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisam/sp_test.c@1.11.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/Makefile.am@1.13.4.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/ha_myisammrg.cc@1.59.11.1, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  sql/ha_myisammrg.h@1.40.3.1, 2006-12-30 21:02:06+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_close.c@1.6.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_create.c@1.10.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_def.h@1.11.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_delete.c@1.8.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_extra.c@1.12.3.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_info.c@1.10.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_locking.c@1.7.3.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_open.c@1.27.11.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_panic.c@1.6.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_queue.c@1.10.6.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_range.c@1.3.3.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_rfirst.c@1.9.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_rkey.c@1.16.4.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_rlast.c@1.8.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_rnext.c@1.14.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_rnext_same.c@1.4.3.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_rprev.c@1.13.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_rrnd.c@1.14.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_rsame.c@1.7.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_static.c@1.8.3.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_update.c@1.7.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  myisammrg/myrg_write.c@1.6.2.1, 2006-12-30 21:02:05+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  ndb/Makefile.am@1.13.2.2, 2006-12-31 00:18:20+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  ndb/Makefile.am@1.13.2.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/config/common.mk.am@1.6.5.1, 2006-12-31 00:26:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/config/type_kernel.mk.am@1.2.2.1, 2006-12-31 00:26:24+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/config/type_mgmapiclient.mk.am@1.2.1.1, 2006-12-31 00:26:24+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/config/type_ndbapi.mk.am@1.4.4.1, 2006-12-31 00:26:24+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/config/type_ndbapiclient.mk.am@1.2.1.1, 2006-12-31 00:26:24+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/config/type_ndbapitest.mk.am@1.10.2.1, 2006-12-31 00:26:24+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/config/type_ndbapitools.mk.am@1.8.4.1, 2006-12-31 00:26:24+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/config/type_util.mk.am@1.3.4.1, 2006-12-31 00:26:24+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/docs/Makefile.am@1.13.2.2, 2006-12-31 00:18:20+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  ndb/docs/Makefile.am@1.13.2.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/include/Makefile.am@1.16.3.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/include/kernel/kernel_config_parameters.h@1.2.1.1, 2006-12-31 00:40:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/include/kernel/signaldata/CntrStart.hpp@1.1.1.1, 2006-12-31 00:40:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/include/kernel/signaldata/ReadConfig.hpp@1.1.1.1, 2006-12-31 00:40:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/include/kernel/signaldata/UpgradeStartup.hpp@1.3.1.1, 2006-12-31 00:40:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/include/mgmapi/mgmapi_config_parameters.h@1.17.5.1, 2006-12-31 00:40:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/include/mgmapi/mgmapi_config_parameters_debug.h@1.1.1.1, 2006-12-31 00:40:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/include/ndb_net.h@1.2.1.1, 2006-12-31 00:40:58+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/include/util/ConfigValues.hpp@1.3.2.1, 2006-12-31 00:40:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/Makefile.am@1.13.1.2, 2006-12-31 00:18:20+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  ndb/src/Makefile.am@1.13.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/common/Makefile.am@1.4.1.2, 2006-12-31 00:18:20+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  ndb/src/common/Makefile.am@1.4.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/common/debugger/Makefile.am@1.4.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/common/debugger/signaldata/CntrStart.cpp@1.1.1.1, 2006-12-31 00:40:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/common/debugger/signaldata/Makefile.am@1.6.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/src/common/debugger/signaldata/ReadNodesConf.cpp@1.1.1.1, 2006-12-31 00:40:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/common/debugger/signaldata/print.awk@1.1.1.1, 2006-12-31 00:40:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/common/logger/Makefile.am@1.3.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/src/common/mgmcommon/Makefile.am@1.10.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/common/portlib/Makefile.am@1.8.4.2, 2006-12-31 00:18:20+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  ndb/src/common/portlib/Makefile.am@1.8.4.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/common/transporter/Makefile.am@1.11.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/src/common/util/Bitmask.cpp@1.8.1.1, 2006-12-31 00:40:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/common/util/ConfigValues.cpp@1.8.2.1, 2006-12-31 00:40:58+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/src/common/util/Makefile.am@1.10.2.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/src/common/util/new.cpp@1.6.2.1, 2006-12-31 00:40:58+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/src/common/util/testConfigValues/testConfigValues.cpp@1.1.1.1, 2006-12-31 00:40:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/cw/Makefile.am@1.2.1.2, 2006-12-31 00:18:20+01:00, kent@mysql.com +2 -0
    Don't update the files from BitKeeper

  ndb/src/cw/Makefile.am@1.2.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/cw/cpcd/Makefile.am@1.12.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/src/kernel/Makefile.am@1.10.6.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/kernel/blocks/Makefile.am@1.2.2.2, 2006-12-31 00:18:20+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  ndb/src/kernel/blocks/Makefile.am@1.2.2.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/kernel/blocks/backup/Makefile.am@1.4.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/src/kernel/blocks/dbdict/Makefile.am@1.3.2.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/kernel/blocks/dbdict/Master_AddTable.sfl@1.1.1.1, 2006-12-31 00:40:58+01:00, kent@mysql.com +14 -1
    Added GPL copyright text

  ndb/src/kernel/blocks/dbdict/Slave_AddTable.sfl@1.1.1.1, 2006-12-31 00:40:58+01:00, kent@mysql.com +19 -0
    Added GPL copyright text

  ndb/src/kernel/blocks/dbdih/Makefile.am@1.3.2.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/kernel/blocks/dblqh/Makefile.am@1.3.2.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/kernel/blocks/dbtup/Makefile.am@1.4.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/kernel/error/Makefile.am@1.4.2.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/kernel/vm/Makefile.am@1.6.3.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/mgmapi/Makefile.am@1.12.2.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/src/mgmapi/mgmapi_configuration.cpp@1.3.1.1, 2006-12-31 00:40:58+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/mgmclient/Makefile.am@1.17.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/src/mgmsrv/Makefile.am@1.22.2.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/src/ndbapi/Makefile.am@1.12.4.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/test/Makefile.am@1.5.1.2, 2006-12-31 00:18:20+01:00, kent@mysql.com +3 -0
    Don't update the files from BitKeeper

  ndb/test/Makefile.am@1.5.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  ndb/test/ndbapi/Makefile.am@1.19.11.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/test/ndbapi/bank/Makefile.am@1.5.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/test/run-test/Makefile.am@1.19.4.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/test/src/Makefile.am@1.8.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/test/tools/Makefile.am@1.11.1.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  ndb/tools/Makefile.am@1.14.14.1, 2006-12-30 22:07:31+01:00, kent@mysql.com +14 -0
    Added GPL copyright text

  strings/Makefile.am@1.49.1.4, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  strings/bmove_upp-sparc.s@1.6, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  strings/ctype-extra.c@1.23.2.1, 2006-12-30 18:25:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  strings/dump_map.c@1.3, 2006-12-30 18:25:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  strings/macros.asm@1.5, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  strings/my_strtoll10-x86.s@1.6, 2006-12-30 18:29:54+01:00, kent@mysql.com +2 -1
    Corrected spelling in copyright text

  strings/ptr_cmp.asm@1.5, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  strings/strappend-sparc.s@1.6, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  strings/strend-sparc.s@1.6, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  strings/strings.asm@1.6, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  strings/strinstr-sparc.s@1.5, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  strings/strmake-sparc.s@1.6, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  strings/strmov-sparc.s@1.6, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  strings/strnmov-sparc.s@1.6, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  strings/strstr-sparc.s@1.9, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  strings/strxmov-sparc.s@1.6, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  strings/strxmov.asm@1.5, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  strings/uca-dump.c@1.6, 2006-12-30 18:25:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  strings/utr11-dump.c@1.2, 2006-12-30 18:25:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  support-files/MacOSX/Makefile.am@1.11, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  support-files/Makefile.am@1.33, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  tests/Makefile.am@1.23.1.8, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  tests/deadlock_test.c@1.7, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  vio/Makefile.am@1.17.1.5, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

  win/build-vs8_x64.bat@1.2, 2006-12-30 18:25:24+01:00, kent@mysql.com +15 -0
    Added GPL copyright text

  zlib/Makefile.am@1.6.1.8, 2006-12-31 00:18:20+01:00, kent@mysql.com +2 -0
    Don't update the files from BitKeeper

  zlib/Makefile.am@1.6.1.7, 2006-12-30 21:02:08+01:00, kent@mysql.com +1 -1
    Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
    Adjusted year(s) in copyright header 

ChangeSet@1.2343.62.1, 2006-12-29 16:07:33-05:00, cmiller@calliope.local.cmiller +1 -0
  Bug#23950: misplaced code in mysqld.cc, main()
  
  Moved MY_INIT() to top of main(), where it should be.

  sql/mysqld.cc@1.576.26.3, 2006-12-29 16:07:24-05:00, cmiller@calliope.local.cmiller +3 -2
    Nothing should come before MY_INIT().

ChangeSet@1.2343.22.12, 2006-12-29 17:12:59+04:00, bar@mysql.com +2 -0
  After merge fix:
  Adding "flush log" before running mysqlbinlog.

  mysql-test/extra/rpl_tests/rpl_stm_charset.test@1.22, 2006-12-29 17:12:56+04:00, bar@mysql.com +1 -0
    After merge fix:
    Adding "flush log" before running mysqlbinlog.

  mysql-test/r/rpl_stm_charset.result@1.25, 2006-12-29 17:12:56+04:00, bar@mysql.com +1 -0
    After merge fix:
    Adding "flush log" before running mysqlbinlog.

ChangeSet@1.1810.2425.5, 2006-12-29 16:42:16+04:00, bar@mysql.com +1 -0
  log_event.cc:
    After merge fix

  sql/log_event.cc@1.174.1.47, 2006-12-29 16:40:55+04:00, bar@mysql.com +2 -1
    After merge fix

ChangeSet@1.2343.22.10, 2006-12-29 16:00:51+04:00, bar@mysql.com +3 -0
  After merge fix.
  Adding "flush logs" to fix test failure.

  mysql-test/extra/binlog_tests/ctype_ucs_binlog.test@1.9, 2006-12-29 16:00:48+04:00, bar@mysql.com +1 -0
    After merge fix.
    Adding "flush logs" to fix test failure.

  mysql-test/r/binlog_row_ctype_ucs.result@1.4, 2006-12-29 16:00:48+04:00, bar@mysql.com +1 -0
    After merge fix.
    Adding "flush logs" to fix test failure.

  mysql-test/r/binlog_stm_ctype_ucs.result@1.10, 2006-12-29 16:00:48+04:00, bar@mysql.com +1 -0
    After merge fix.
    Adding "flush logs" to fix test failure.

ChangeSet@1.1810.2457.1, 2006-12-28 10:00:16+01:00, df@kahlann.erinye.com +1 -0
  fix breakage on qnx

  cmd-line-utils/readline/undo.c@1.10.1.1, 2006-12-28 10:00:14+01:00, df@kahlann.erinye.com +1 -1
    cast breaks on qnx

ChangeSet@1.2343.6.10, 2006-12-28 10:03:25+04:00, holyfoot@mysql.com +1 -0
  bdb_notembedded.test gone

  BitKeeper/etc/gone@1.109, 2006-12-28 10:00:14+04:00, holyfoot@mysql.com +2 -0

ChangeSet@1.2343.6.9, 2006-12-28 09:44:56+04:00, holyfoot@mysql.com +1 -0
  WL #3630 (add embedded server to pushbuild)
  innodb.test fix

  mysql-test/t/innodb.test@1.153, 2006-12-28 09:44:55+04:00, holyfoot@mysql.com +1 -1
    test disabled for embedded server
    replace_result fixed

ChangeSet@1.2343.6.8, 2006-12-28 09:42:04+04:00, holyfoot@mysql.com +12 -0
  WL#3630 (add embedded server to pushbuild)
  5.1-related fixes
  libmysqld/Makefile.am fixed to recompile and link ha_*.cc files that
  keep dependance on THD structure.
  Minor fixes to make tests working.

  mysql-test/t/ps_not_windows.test@1.1.1.1, 2006-12-28 09:42:02+04:00, holyfoot@mysql.com +1 -0
    doesn't work in embedded server

  config/ac-macros/plugins.m4@1.21, 2006-12-28 09:42:02+04:00, holyfoot@mysql.com +2 -0
    condition_dependent_plugin_objects added

  libmysqld/Makefile.am@1.103.1.1, 2006-12-28 09:42:02+04:00, holyfoot@mysql.com +24 -4
    rules for ha_*.o files added
    condition_dependent_plugin_objects sent to linker

  libmysqld/lib_sql.cc@1.122.1.6, 2006-12-28 09:42:02+04:00, holyfoot@mysql.com +2 -0
    ddl_log initialization added

  mysql-test/r/flush_block_commit_notembedded.result@1.2, 2006-12-28 09:42:02+04:00, holyfoot@mysql.com +3 -3
    result fixed

  mysql-test/t/crash_commit_before.test@1.5, 2006-12-28 09:42:02+04:00, holyfoot@mysql.com +1 -0
    doesn't work in embedded server

  mysql-test/t/csv.test@1.18.1.1, 2006-12-28 09:42:02+04:00, holyfoot@mysql.com +1 -0
    replace_result added

  mysql-test/t/ps.test@1.92.1.1, 2006-12-28 09:42:02+04:00, holyfoot@mysql.com +1 -0
    doesn't work in embedded server
    should be fixed by separating ps_notembedded.test

  mysql-test/t/ps_1general.test@1.37, 2006-12-28 09:42:02+04:00, holyfoot@mysql.com +1 -1
    replace_result fixed

  mysql-test/t/trigger.test@1.61, 2006-12-28 09:42:02+04:00, holyfoot@mysql.com +1 -1
    replace_result fixed

  sql/sql_insert.cc@1.234.5.1, 2006-12-28 09:42:02+04:00, holyfoot@mysql.com +2 -0
    #ifdef HAVE_ROW_BASED_REPLICATION added

  storage/myisam/ha_myisam.cc@1.202.1.1, 2006-12-28 09:42:02+04:00, holyfoot@mysql.com +4 -2
    MY_UNPACK_FILENAME flag added

ChangeSet@1.1810.2424.8, 2006-12-27 19:54:49+04:00, svoj@mysql.com +1 -0
  After merge fix.

  sql/sql_update.cc@1.154.2.53, 2006-12-27 19:54:47+04:00, svoj@mysql.com +5 -3
    After merge fix.

ChangeSet@1.2368.1.2, 2006-12-27 14:16:34+01:00, tomas@poseidon. +3 -0
  ndb: remove compiler warnings

  sql/ha_ndbcluster.cc@1.384, 2006-12-27 14:16:05+01:00, tomas@poseidon. +1 -1
    ndb: remove compiler warnings

  storage/ndb/src/kernel/blocks/backup/Backup.cpp@1.62, 2006-12-27 14:16:05+01:00, tomas@poseidon. +1 -1
    ndb: remove compiler warnings

  storage/ndb/src/mgmapi/mgmapi.cpp@1.82, 2006-12-27 14:16:05+01:00, tomas@poseidon. +6 -6
    ndb: remove compiler warnings

ChangeSet@1.2367.2.1, 2006-12-27 02:23:51+01:00, kent@mysql.com +147 -0
  Many files:
    Changed header to GPL version 2 only

  sql/sql_yacc.yy.bak@1.2, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  client/mysqlslap.c@1.40, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/atomic/nolock.h@1.4, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/atomic/rwlock.h@1.3, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/atomic/x86-gcc.h@1.5, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/atomic/x86-msvc.h@1.4, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_atomic.h@1.5, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_trie.h@1.2, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_vle.h@1.2, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/mysql/plugin.h@1.23.1.1, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_atomic.c@1.3, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_getncpus.c@1.2, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_memmem.c@1.4, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_vle.c@1.3, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/trie.c@1.2, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  plugin/Makefile.am@1.6, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/IMService.h@1.6, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/WindowsService.h@1.7, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/exit_codes.h@1.2, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/user_management_commands.h@1.5, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/authors.h@1.16, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/contributors.h@1.2, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/event_data_objects.cc@1.81.1.1, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/event_data_objects.h@1.15, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/event_db_repository.cc@1.20, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/event_db_repository.h@1.12, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/event_queue.cc@1.19.3.1, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/event_queue.h@1.13, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/event_scheduler.cc@1.31, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/event_scheduler.h@1.19, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/events.cc@1.67, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/events.h@1.51, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_ndbcluster_binlog.cc@1.90.1.1, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_ndbcluster_binlog.h@1.21, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_ndbcluster_tables.h@1.5, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_partition.cc@1.78.1.3, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_partition.h@1.28.1.4, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_xmlfunc.cc@1.23, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_xmlfunc.h@1.7, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/log.h@1.18.1.1, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/partition_element.h@1.11, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/partition_info.cc@1.33, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/partition_info.h@1.20, 2006-12-23 20:33:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/rpl_filter.cc@1.7, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/rpl_filter.h@1.9, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/rpl_injector.cc@1.6.1.1, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/rpl_injector.h@1.5.3.1, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/rpl_mi.cc@1.2, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/rpl_mi.h@1.2, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/rpl_rli.cc@1.4, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/rpl_rli.h@1.8, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/rpl_tblmap.cc@1.3, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/rpl_tblmap.h@1.3, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/rpl_utility.cc@1.5, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/rpl_utility.h@1.3, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_binlog.cc@1.7, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_partition.cc@1.96.1.1, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_partition.h@1.13, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_plugin.cc@1.36.5.1, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_plugin.h@1.13, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_servers.cc@1.4, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_servers.h@1.2, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_tablespace.cc@1.9, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/Makefile.am@1.6, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/archive/Makefile.am@1.9, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/blackhole/Makefile.am@1.6, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/csv/Makefile.am@1.11, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/example/Makefile.am@1.12, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/federated/Makefile.am@1.3, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/innobase/handler/Makefile.am@1.2, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/include/kernel/signaldata/AllocNodeId.hpp@1.3, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/include/kernel/signaldata/CreateFilegroup.hpp@1.4, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/include/kernel/signaldata/CreateFilegroupImpl.hpp@1.4, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/include/kernel/signaldata/CreateObj.hpp@1.2, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/include/kernel/signaldata/DictObjOp.hpp@1.2, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/include/kernel/signaldata/DihFragCount.hpp@1.2, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/include/kernel/signaldata/DropFilegroup.hpp@1.4, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/include/kernel/signaldata/DropFilegroupImpl.hpp@1.2, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/include/kernel/signaldata/DropObj.hpp@1.2, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/include/kernel/signaldata/Extent.hpp@1.2.1.1, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/include/kernel/signaldata/LgmanContinueB.hpp@1.2, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/include/kernel/signaldata/PgmanContinueB.hpp@1.4, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/include/kernel/signaldata/RestoreContinueB.hpp@1.2, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/include/kernel/signaldata/RestoreImpl.hpp@1.2, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/include/kernel/signaldata/RouteOrd.hpp@1.2, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/include/kernel/signaldata/TsmanContinueB.hpp@1.2, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/include/ndbapi/NdbIndexStat.hpp@1.5, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/ndbapi-examples/mgmapi_logevent/mgmapi_logevent.cpp@1.3, 2006-12-23 20:33:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/ndbapi-examples/mgmapi_logevent_dual/mgmapi_logevent_dual.cpp@1.1.1.1, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/ndbapi-examples/ndbapi_async/ndbapi_async.cpp@1.3, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/ndbapi-examples/ndbapi_async1/ndbapi_async1.cpp@1.3, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/ndbapi-examples/ndbapi_event/ndbapi_event.cpp@1.6, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/ndbapi-examples/ndbapi_retries/ndbapi_retries.cpp@1.3, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/ndbapi-examples/ndbapi_scan/ndbapi_scan.cpp@1.3, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/ndbapi-examples/ndbapi_simple/ndbapi_simple.cpp@1.3, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/ndbapi-examples/ndbapi_simple_dual/ndbapi_simple_dual.cpp@1.2, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/ndbapi-examples/ndbapi_simple_index/ndbapi_simple_index.cpp@1.3, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/blocks/dbdih/printSysfile.cpp@1.2, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/blocks/dbtup/DbtupDiskAlloc.cpp@1.18.1.1, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/blocks/dbtup/DbtupVarAlloc.cpp@1.5, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/blocks/dbtup/Undo_buffer.cpp@1.4, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/blocks/dbtup/Undo_buffer.hpp@1.2, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/blocks/dbtup/tuppage.cpp@1.3, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/blocks/dbtup/tuppage.hpp@1.4, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/blocks/dbtux/DbtuxStat.cpp@1.2, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/blocks/diskpage.hpp@1.2.1.1, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/blocks/lgman.cpp@1.20.1.1, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/blocks/lgman.hpp@1.9, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/blocks/pgman.cpp@1.19, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/blocks/pgman.hpp@1.10, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/blocks/print_file.cpp@1.3.1.1, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/blocks/record_types.hpp@1.6, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/blocks/restore.cpp@1.12, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/blocks/restore.hpp@1.7, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/blocks/tsman.cpp@1.10.1.1, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/blocks/tsman.hpp@1.6.1.1, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/vm/DLCFifoList.hpp@1.2, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/vm/DLCHashTable.hpp@1.2, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/vm/DynArr256.cpp@1.2, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/vm/DynArr256.hpp@1.2, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/vm/KeyTable2Ref.hpp@1.3, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/vm/LinearPool.hpp@1.3, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/vm/NdbdSuperPool.cpp@1.2, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/vm/NdbdSuperPool.hpp@1.2, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/vm/Pool.cpp@1.3, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/vm/Pool.hpp@1.11, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/vm/RWPool.cpp@1.3, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/vm/RWPool.hpp@1.4, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/vm/Rope.hpp@1.2, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/vm/SLFifoList.hpp@1.3, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/vm/WOPool.cpp@1.3, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/vm/WOPool.hpp@1.5, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/vm/bench_pool.cpp@1.5, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/vm/ndbd_malloc_impl.cpp@1.11, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/kernel/vm/ndbd_malloc_impl.hpp@1.7, 2006-12-23 20:33:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/mgmsrv/ParamInfo.cpp@1.3, 2006-12-23 20:33:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/src/ndbapi/NdbIndexStat.cpp@1.6, 2006-12-23 20:33:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/test/ndbapi/testIndexStat.cpp@1.3, 2006-12-23 20:33:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/test/tools/listen.cpp@1.4, 2006-12-23 20:33:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  storage/ndb/tools/restore/ndb_nodegroup_map.h@1.2, 2006-12-23 20:33:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/my_strchr.c@1.3, 2006-12-23 20:33:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  unittest/mysys/base64-t.c@1.6, 2006-12-23 20:33:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  unittest/mysys/bitmap-t.c@1.5, 2006-12-23 20:33:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  unittest/mysys/my_atomic-t.c@1.6.1.1, 2006-12-23 20:33:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  unittest/mytap/tap.c@1.10, 2006-12-23 20:33:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  unittest/mytap/tap.h@1.9, 2006-12-23 20:33:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  win/Makefile.am@1.4, 2006-12-23 20:33:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

ChangeSet@1.1810.2371.37, 2006-12-26 12:42:54-07:00, tsmith@siva.hindu.god +2 -0
  In func_group.test, round the results of std() for some calls, because Windows' sqrt() function appears to return fewer "significant" digits than the Unix implementations.
  This is for bug #22555.

  mysql-test/r/func_group.result@1.49.1.9, 2006-12-26 12:42:51-07:00, tsmith@siva.hindu.god +12 -12
    Round the results of std() for some calls, because Windows' sqrt() function appears to return fewer "significant" digits than the Unix implementations.
    This is for bug #22555.

  mysql-test/t/func_group.test@1.48.1.5, 2006-12-26 12:42:51-07:00, tsmith@siva.hindu.god +4 -4
    Round the results of std() for some calls, because Windows' sqrt() function appears to return fewer "significant" digits than the Unix implementations.
    This is for bug #22555.

ChangeSet@1.2343.18.12, 2006-12-26 22:10:02+04:00, svoj@mysql.com +2 -0
  After merge fix.

  mysql-test/r/index_merge_myisam.result@1.5, 2006-12-26 22:09:59+04:00, svoj@mysql.com +12 -1
    After merge fix.

  sql/opt_range.cc@1.252.2.2, 2006-12-26 22:09:59+04:00, svoj@mysql.com +10 -5
    After merge fix.

ChangeSet@1.1810.2413.6, 2006-12-26 20:22:16+04:00, holyfoot@mysql.com +1 -0
  lock_multi disabled

  mysql-test/t/lock_multi.test@1.13.1.8, 2006-12-26 20:22:13+04:00, holyfoot@mysql.com +1 -0
    doesn't work in embedded server

ChangeSet@1.1810.2451.3, 2006-12-26 17:47:30+04:00, svoj@mysql.com +4 -0
  BUG#25048 - ERROR 126 : Incorrect key file for table '.XXXX.MYI'; try to
              repair it
  
  Multi-table delete that is optimized with QUICK_RANGE reports table
  corruption.
  
  DELETE statement must not use KEYREAD optimization, and sets
  table->no_keyread to 1. This was ignored in QUICK_RANGE optimization.
  
  With this fix QUICK_RANGE optimization honors table->no_keyread
  value and does not enable KEYREAD when it is requested.

  mysql-test/r/index_merge.result@1.19.2.1, 2006-12-26 17:47:29+04:00, svoj@mysql.com +1 -1
    Fixed a test case according to fix for bug#25048.

  mysql-test/r/index_merge_ror.result@1.8.1.1, 2006-12-26 17:47:29+04:00, svoj@mysql.com +11 -0
    A test case for bug#25048.

  mysql-test/t/index_merge_ror.test@1.8.1.1, 2006-12-26 17:47:29+04:00, svoj@mysql.com +15 -0
    A test case for bug#25048.

  sql/opt_range.cc@1.159.34.1, 2006-12-26 17:47:29+04:00, svoj@mysql.com +17 -6
    Do not use key read when head->no_keyread is set.

ChangeSet@1.1810.2453.2, 2006-12-23 20:17:15+01:00, kent@mysql.com +1802 -0
  Many files:
    Changed header to GPL version 2 only

  BUILD/Makefile.am@1.10.1.1, 2006-12-23 20:04:03+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/ArrayFifoList.hpp@1.1.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/ArrayList.hpp@1.1.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/DbtupLCP.cpp@1.3.1.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/DbtupSystemRestart.cpp@1.5.2.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/DbtupUndoLog.cpp@1.1.1.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  win/Makefile.am@1.1.1.1, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/include/Makefile.am@1.11.2.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  tools/Makefile.am@1.22.3.1, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  SSL/Makefile.am@1.1.3.1, 2006-12-23 20:04:03+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  os2/Makefile.am@1.2.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  os2/include/sys/Makefile.am@1.1.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  os2/include/Makefile.am@1.1.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  bdb/Makefile.in@1.6.2.1, 2006-12-23 20:04:03+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbfs/MemoryChannelOSE.hpp@1.3.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/MetaData.cpp@1.2.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/MetaData.hpp@1.4.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/win32/NdbCondition.c@1.4.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/ose/NdbCondition.c@1.4.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/ose/NdbConditionOSE.h@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/win32/NdbDaemon.c@1.3.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/win32/NdbEnv.c@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/ose/NdbEnv.c@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/NdbErrHnd.cpp@1.5.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/win32/NdbHost.c@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/ose/NdbHost.c@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/win32/NdbMem.c@1.4.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/ose/NdbMem.c@1.4.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/ose/NdbMem_SoftOse.cpp@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/win32/NdbMutex.c@1.4.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/ose/NdbMutex.c@1.4.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/ose/NdbOut.cpp@1.4.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/win32/NdbSleep.c@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/ose/NdbSleep.c@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/ose/NdbTCP.c@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/win32/NdbTCP.c@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/win32/NdbThread.c@1.4.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/ose/NdbThread.c@1.4.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/win32/NdbTick.c@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/old_dirs/ose/NdbTick.c@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/OSE_Receiver.cpp@1.4.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/OSE_Receiver.hpp@1.1.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/OSE_Signals.hpp@1.1.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/OSE_Transporter.cpp@1.5.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/OSE_Transporter.hpp@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/acid2/TraceNdbApi.hpp@1.2.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/acid2/VerifyNdbApi.hpp@1.2.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/vw_test/bcd.h@1.4.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/config-os2.h@1.5.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/dbGenerator.c@1.4.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/dbGenerator.h@1.2.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/dbGenerator.h@1.2.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/dbPopulate.c@1.4.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/dbPopulate.h@1.2.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_berkeley.cc@1.151.6.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_berkeley.h@1.70.4.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_uniq.cc@1.10.1.1, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_uniq.h@1.28, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/localDbPrepare.c@1.4.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/macros.h@1.4.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/macros.h@1.4.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/src/generator/mainGenerator.c@1.4.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/src/populator/mainPopulate.c@1.4.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/ndbapi-examples/mgmapi_logevent_example/mgmapi_logevent.cpp@1.3.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/mmslist.cpp@1.4.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_lread.c@1.6.2.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_lwrite.c@1.7.2.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_os2cond.c@1.5.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  mysys/my_os2dirsrch.c@1.3.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  mysys/my_os2dirsrch.h@1.3.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  mysys/my_os2dlfcn.c@1.2.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  mysys/my_os2dlfcn.h0@1.1.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  mysys/my_os2file64.c@1.5.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  mysys/my_os2thread.c@1.5.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  mysys/my_os2tls.c@1.3.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  client/mysqlmanager-pwgen.c@1.12.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  tools/mysqlmanager.c@1.47.1.1, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  client/mysqlmanagerc.c@1.13.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/ndb_error.hpp@1.4.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/async-src/user/ndb_error.hpp@1.4.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/include/ndb_schema.hpp@1.2.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/ndbapi-examples/ndbapi_async_example/ndbapi_async.cpp@1.13.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/ndbapi-examples/ndbapi_async_example1/ndbapi_async1.cpp@1.9.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/ndbapi-examples/ndbapi_event_example/ndbapi_event.cpp@1.13.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/ndbapi-examples/ndbapi_retries_example/ndbapi_retries.cpp@1.10.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/ndbapi-examples/ndbapi_scan_example/ndbapi_scan.cpp@1.13.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/ndbapi-examples/ndbapi_simple_example/ndbapi_simple.cpp@1.14.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/ndbapi-examples/ndbapi_simple_index_example/ndbapi_simple_index.cpp@1.12.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql-bench/print-limit-table@1.7.1.1, 2006-12-23 20:04:28+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  mysys/raid.cc@1.36.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/raid.h@1.19.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/raid2.c@1.1.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  sql/sql_manager.h@1.1.1.1, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/src/include/testData.h@1.2.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/testData.h@1.2.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/include/testDefinitions.h@1.4.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userHandle.h@1.2.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userHandle.h@1.2.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userInterface.cpp@1.6.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userInterface.c@1.4.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/src/include/userInterface.h@1.2.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/async-src/include/userInterface.h@1.2.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/userTransaction.c@1.4.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/lmc-bench/src/user/old/userTransaction.c@1.4.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/vw_test/utv.h@1.2.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/old_dirs/vw_test/vcdrfunc.h@1.2.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/tools/old_dirs/waiter/waiter.cpp@1.4.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  Docs/Makefile.am@1.57.1.5, 2006-12-23 20:04:03+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  Makefile.am@1.68.5.1, 2006-12-23 20:04:03+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  client/Makefile.am@1.52.1.10, 2006-12-23 20:04:03+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  client/client_priv.h@1.43.2.3, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  client/completion_hash.cc@1.12, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  client/completion_hash.h@1.7, 2006-12-23 20:04:04+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  client/get_password.c@1.10.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  client/my_readline.h@1.7, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  client/mysql.cc@1.199.1.31, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  client/mysql_upgrade.c@1.6.4.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  client/mysqladmin.cc@1.115.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  client/mysqlbinlog.cc@1.123.5.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  client/mysqlcheck.c@1.55.1.3, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  client/mysqldump.c@1.214.21.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  client/mysqlimport.c@1.58.1.3, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  client/mysqlshow.c@1.49.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  client/mysqltest.c@1.155.29.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  client/readline.cc@1.13, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  client/sql_string.cc@1.26, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  client/sql_string.h@1.16, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  cmd-line-utils/Makefile.am@1.4, 2006-12-23 20:04:04+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  dbug/Makefile.am@1.14.1.2, 2006-12-23 20:04:04+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  extra/Makefile.am@1.30.1.6, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  extra/charset2html.c@1.9, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  extra/comp_err.c@1.23.1.2, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  extra/innochecksum.c@1.6, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  extra/my_print_defaults.c@1.24, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  extra/mysql_waitpid.c@1.8, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  extra/perror.c@1.39.1.7, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  extra/replace.c@1.20.1.2, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  extra/resolve_stack_dump.c@1.18, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  extra/resolveip.c@1.24.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/Makefile.am@1.52.2.11, 2006-12-23 20:04:04+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  include/base64.h@1.3.1.3, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/config-netware.h@1.14.2.3, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/config-win.h@1.71.3.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/decimal.h@1.15.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/errmsg.h@1.27.1.2, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/ft_global.h@1.29.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/hash.h@1.19, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/heap.h@1.24.1.3, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/keycache.h@1.7, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/m_ctype.h@1.114.1.10, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/m_string.h@1.37.1.2, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/md5.h@1.8, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_aes.h@1.4, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_alarm.h@1.5, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_alloc.h@1.6, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_base.h@1.70.1.12, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_bitmap.h@1.11.1.3, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_dbug.h@1.16.2.5, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_dir.h@1.8, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_getopt.h@1.18, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_global.h@1.96.9.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_handler.h@1.12, 2006-12-23 20:04:04+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  include/my_libwrap.h@1.3, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_list.h@1.9, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_net.h@1.15.1.2, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_no_pthread.h@1.7.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_nosys.h@1.4.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_pthread.h@1.90.4.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_sys.h@1.178.2.13, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_time.h@1.11.1.6, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_tree.h@1.18.1.2, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_user.h@1.2, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/my_xml.h@1.3.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/myisam.h@1.70.1.4, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/myisammrg.h@1.15.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/myisampack.h@1.14, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/mysql.h@1.154.8.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/mysql_com.h@1.100.1.12, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/mysql_embed.h@1.14, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/mysql_time.h@1.5, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/mysys_err.h@1.14.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/queues.h@1.11.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/rijndael.h@1.4, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/sha1.h@1.5, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/sql_common.h@1.18, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/sslopt-case.h@1.16, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/sslopt-longopts.h@1.13, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/sslopt-vars.h@1.8, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/t_ctype.h@1.8, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/thr_alarm.h@1.17.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/thr_lock.h@1.17.2.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/typelib.h@1.3.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  include/violite.h@1.46.2.3, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  libmysql/client_settings.h@1.34, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  libmysqld/Makefile.am@1.55.1.16, 2006-12-23 20:04:05+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  libmysqld/emb_qcache.cc@1.7.1.2, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  libmysqld/emb_qcache.h@1.3, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  libmysqld/embedded_priv.h@1.12.1.3, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  libmysqld/examples/Makefile.am@1.31.1.3, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  libmysqld/libmysqld.c@1.66.1.7, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  man/Makefile.am@1.13, 2006-12-23 20:04:05+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  mysql-test/Makefile.am@1.66.4.2, 2006-12-23 20:04:07+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  mysys/Makefile.am@1.62.1.11, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/array.c@1.11.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/base64.c@1.5.1.9, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/charset-def.c@1.15.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/charset.c@1.149, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/checksum.c@1.10, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/default.c@1.72.4.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/default_modify.c@1.11.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/errors.c@1.19.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/hash.c@1.46.1.3, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/list.c@1.12, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/make-conf.c@1.6, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/md5.c@1.9, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_brkhant.c@1.7, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_cache.c@1.13, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_dirname.c@1.11.1.3, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_fn_ext.c@1.9, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_format.c@1.21.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_getdate.c@1.8, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_iocache.c@1.56.1.5, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_iocache2.c@1.27.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_keycache.c@1.55.1.3, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_keycaches.c@1.8, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_loadpath.c@1.10, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_pack.c@1.21.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_path.c@1.9.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_qsort.c@1.16, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_qsort2.c@1.5, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_radix.c@1.5, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_same.c@1.6, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_sort.c@1.7, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_soundex.c@1.10, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_strip.c@1.7, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_tempdir.c@1.3.1.2, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_tempfile.c@1.24.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_unixpath.c@1.5, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_util.c@1.5, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_wcomp.c@1.9, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mf_wfile.c@1.10, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mulalloc.c@1.7, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_access.c@1.7.2.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_aes.c@1.7, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_alarm.c@1.5, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_alloc.c@1.32.1.2, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_append.c@1.6.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_bit.c@1.4.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_bitmap.c@1.25.1.10, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_chsize.c@1.20, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_clock.c@1.8.2.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_compress.c@1.11.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_conio.c@1.3, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_copy.c@1.14.2.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_crc32.c@1.4, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_create.c@1.13.2.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_delete.c@1.7, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_div.c@1.7, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_dup.c@1.4.2.2, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_error.c@1.21.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_file.c@1.1.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_fopen.c@1.17, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_fstream.c@1.10, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_gethostbyname.c@1.7.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  mysys/my_gethwaddr.c@1.4, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_getopt.c@1.55.1.3, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_getpagesize.c@1.2, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_getsystime.c@1.6, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_getwd.c@1.17.1.2, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_handler.c@1.24.1.3, 2006-12-23 20:04:07+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  mysys/my_init.c@1.44.1.3, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_largepage.c@1.2, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_lib.c@1.23.3.3, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_libwrap.c@1.4, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_lock.c@1.12.1.4, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_lockmem.c@1.5, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_malloc.c@1.9.1.3, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_messnc.c@1.7, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_mkdir.c@1.7.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_mmap.c@1.7.1.3, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_net.c@1.7.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_netware.c@1.4, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_new.cc@1.6, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_once.c@1.8.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_open.c@1.25.3.2, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_port.c@1.3, 2006-12-23 20:04:08+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  mysys/my_pread.c@1.10.1.3, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_pthread.c@1.43.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_quick.c@1.6, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_read.c@1.12, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_realloc.c@1.10, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_redel.c@1.10.2.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_rename.c@1.7.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_seek.c@1.11.1.5, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_semaphore.c@1.4, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_sleep.c@1.7.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_static.c@1.16.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_static.h@1.19, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_symlink.c@1.10, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_symlink2.c@1.8.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_sync.c@1.5, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_thr_init.c@1.31.3.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_wincond.c@1.6.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_windac.c@1.2, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_winthread.c@1.13, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/my_write.c@1.14, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/mysys_priv.h@1.12.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/ptr_cmp.c@1.6.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/queues.c@1.15.1.2, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/rijndael.c@1.5, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/safemalloc.c@1.24.1.3, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/sha1.c@1.7, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/string.c@1.8.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/test_charset.c@1.18, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/test_dir.c@1.4.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/test_fn.c@1.6, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/test_xml.c@1.3, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/testhash.c@1.8.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/thr_alarm.c@1.49.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/thr_lock.c@1.49.2.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/thr_mutex.c@1.27.1.2, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/thr_rwlock.c@1.12, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/tree.c@1.32, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  mysys/typelib.c@1.14.2.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  netware/mysql_fix_privilege_tables.pl@1.4, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  netware/mysql_secure_installation.pl@1.2, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  pstack/Makefile.am@1.7, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  regex/Makefile.am@1.14.1.2, 2006-12-23 20:04:23+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  scripts/Makefile.am@1.43.1.11, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  scripts/fill_help_tables.sh@1.17, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  scripts/mysql_config.sh@1.26, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  scripts/mysql_secure_installation.sh@1.4, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/Makefile.am@1.29.1.5, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/buffer.cc@1.11.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/buffer.h@1.10, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/command.cc@1.6.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/command.h@1.5.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/commands.cc@1.32.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/commands.h@1.9.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/guardian.cc@1.20.2.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/guardian.h@1.12.1.2, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/instance.cc@1.32.3.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/instance.h@1.15.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/instance_map.cc@1.26.1.3, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/instance_map.h@1.18.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/instance_options.cc@1.29.1.4, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/instance_options.h@1.19.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/listener.cc@1.24.2.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/listener.h@1.6.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/log.cc@1.8.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/log.h@1.4.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/manager.cc@1.32.1.5, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/manager.h@1.5.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/messages.cc@1.5.1.2, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/messages.h@1.3, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/mysql_connection.cc@1.14.1.2, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/mysql_connection.h@1.5.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/mysql_manager_error.h@1.3.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/mysqlmanager.cc@1.17.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/options.cc@1.30.2.4, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/options.h@1.14.1.3, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/parse.cc@1.13.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/parse.h@1.6.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/parse_output.cc@1.18.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/parse_output.h@1.5.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/priv.cc@1.10.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/priv.h@1.10.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/protocol.cc@1.13.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/protocol.h@1.6.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/thread_registry.cc@1.10.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/thread_registry.h@1.6.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/user_map.cc@1.15.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  server-tools/instance-manager/user_map.h@1.5.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql-bench/Makefile.am@1.20.1.1, 2006-12-23 20:04:28+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  sql-bench/as3ap.sh@1.2.1.1, 2006-12-23 20:04:28+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  sql-bench/bench-count-distinct.sh@1.2.1.1, 2006-12-23 20:04:28+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  sql-bench/bench-init.pl.sh@1.29.1.1, 2006-12-23 20:04:28+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  sql-bench/compare-results.sh@1.10.1.1, 2006-12-23 20:04:28+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  sql-bench/copy-db.sh@1.6.1.1, 2006-12-23 20:04:28+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  sql-bench/crash-me.sh@1.48.1.1, 2006-12-23 20:04:28+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  sql-bench/run-all-tests.sh@1.12.1.1, 2006-12-23 20:04:28+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  sql-bench/server-cfg.sh@1.51.1.1, 2006-12-23 20:04:29+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  sql-bench/test-ATIS.sh@1.12.1.1, 2006-12-23 20:04:29+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  sql-bench/test-alter-table.sh@1.11.1.1, 2006-12-23 20:04:29+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  sql-bench/test-big-tables.sh@1.8.1.1, 2006-12-23 20:04:29+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  sql-bench/test-connect.sh@1.13.1.1, 2006-12-23 20:04:29+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  sql-bench/test-create.sh@1.11.1.1, 2006-12-23 20:04:29+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  sql-bench/test-insert.sh@1.41.1.1, 2006-12-23 20:04:29+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  sql-bench/test-select.sh@1.23.1.1, 2006-12-23 20:04:29+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  sql-bench/test-transactions.sh@1.6.1.1, 2006-12-23 20:04:29+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  sql-bench/test-wisconsin.sh@1.12.1.1, 2006-12-23 20:04:29+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  sql-common/Makefile.am@1.4, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql-common/client.c@1.83.13.3, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql-common/my_time.c@1.19.10.6, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql-common/my_user.c@1.2, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql-common/pack.c@1.6, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/Makefile.am@1.103.1.26, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/client_settings.h@1.15, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/custom_conf.h@1.6, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/derror.cc@1.22, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/des_key_file.cc@1.14, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/discover.cc@1.3.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/field.cc@1.256.39.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/field.h@1.153.17.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/field_conv.cc@1.52.1.7, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/filesort.cc@1.105.4.2, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/frm_crypt.cc@1.5, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/gen_lex_hash.cc@1.67.1.4, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/gstream.cc@1.9, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/gstream.h@1.6, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_ndbcluster.cc@1.175.1.117, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_ndbcluster.h@1.82.4.10, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/handler.cc@1.167.26.4, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/handler.h@1.138.2.43, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/hash_filo.cc@1.9, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/hash_filo.h@1.13, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/hostname.cc@1.34.1.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/init.cc@1.16.1.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item.cc@1.113.1.133, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item.h@1.183.1.31, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_buff.cc@1.21, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_cmpfunc.cc@1.187.15.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_cmpfunc.h@1.122.6.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_create.cc@1.58.1.4, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_create.h@1.43.1.2, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_func.cc@1.270.1.48, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_func.h@1.136.2.21, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_geofunc.cc@1.27.1.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_geofunc.h@1.13.1.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_row.cc@1.32.1.2, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_row.h@1.21.1.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_strfunc.cc@1.261.18.2, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_strfunc.h@1.101.1.18, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_subselect.cc@1.113.12.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_subselect.h@1.77.5.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_sum.cc@1.170.14.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_sum.h@1.102.4.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_timefunc.cc@1.100.25.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/item_timefunc.h@1.63.1.8, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/key.cc@1.34.1.4, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/lex.h@1.137.1.8, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/lex_symbol.h@1.7.1.1, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/lock.cc@1.64.3.1, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/log.cc@1.158.14.1, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/log_event.cc@1.174.12.3, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/log_event.h@1.122.3.1, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/matherr.c@1.6, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/mf_iocache.cc@1.28, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/my_decimal.cc@1.11.1.2, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/my_decimal.h@1.10.1.2, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/my_lock.c@1.9.1.1, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/mysql_priv.h@1.290.81.1, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/mysqld.cc@1.439.1.145, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/mysqld_suffix.h@1.3, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/net_serv.cc@1.88.2.1, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/opt_range.cc@1.159.33.1, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/opt_range.h@1.57.1.9, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/opt_sum.cc@1.44.1.16, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/parse_file.cc@1.17.1.4, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/parse_file.h@1.13.1.1, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/password.c@1.39.1.2, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/procedure.cc@1.12, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/procedure.h@1.21.1.1, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/protocol.cc@1.111.1.8, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/protocol.h@1.31.1.4, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/records.cc@1.40.1.5, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/repl_failsafe.cc@1.53.1.9, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/repl_failsafe.h@1.13, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/set_var.cc@1.125.20.2, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/set_var.h@1.68.3.1, 2006-12-23 20:04:25+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/Makefile.am@1.34, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/Index.xml@1.38.1.2, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/armscii8.xml@1.6, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/ascii.xml@1.5, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/cp1250.xml@1.5.1.1, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/cp1251.xml@1.9, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/cp1256.xml@1.6, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/cp1257.xml@1.7, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/cp850.xml@1.5, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/cp852.xml@1.5, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/cp866.xml@1.5, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/dec8.xml@1.5, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/geostd8.xml@1.3, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/greek.xml@1.6, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/hebrew.xml@1.4.1.1, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/hp8.xml@1.5, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/keybcs2.xml@1.5, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/koi8r.xml@1.5, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/koi8u.xml@1.5, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/latin1.xml@1.9, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/latin2.xml@1.7, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/latin5.xml@1.7, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/latin7.xml@1.8, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/macce.xml@1.5, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/macroman.xml@1.5, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/share/charsets/swe7.xml@1.5, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/slave.cc@1.241.1.46, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/slave.h@1.85.1.14, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sp.cc@1.82.1.43, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sp.h@1.32.1.3, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sp_cache.cc@1.15.1.2, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sp_cache.h@1.14, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sp_head.cc@1.200.9.2, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sp_head.h@1.79.2.1, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sp_pcontext.cc@1.32, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sp_pcontext.h@1.30, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sp_rcontext.cc@1.44, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sp_rcontext.h@1.34, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/spatial.cc@1.27.2.1, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/spatial.h@1.19.1.2, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_acl.cc@1.128.43.1, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_acl.h@1.28.1.23, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_analyse.cc@1.67.1.2, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_analyse.h@1.20.1.1, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_array.h@1.3, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_base.cc@1.235.1.124, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_bitmap.h@1.7.1.6, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_cache.cc@1.76.1.21, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_cache.h@1.30.1.4, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_class.cc@1.223.13.3, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_class.h@1.230.48.2, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_client.cc@1.7, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_crypt.cc@1.10.1.1, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_crypt.h@1.6, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_cursor.cc@1.4.1.3, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_cursor.h@1.2, 2006-12-23 20:04:26+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_db.cc@1.120.1.14, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_delete.cc@1.144.1.44, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_derived.cc@1.78.1.1, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_do.cc@1.11.1.1, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_error.cc@1.36.1.3, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_error.h@1.1.1.1, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_handler.cc@1.72.1.14, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_help.cc@1.47.1.6, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_insert.cc@1.146.41.1, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_lex.cc@1.142.32.1, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_lex.h@1.175.1.59, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_list.cc@1.11, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_list.h@1.39.2.1, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_load.cc@1.78.1.25, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_locale.cc@1.7.1.1, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_manager.cc@1.6.1.1, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_map.cc@1.16.1.1, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_map.h@1.7, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_olap.cc@1.22.1.1, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_parse.cc@1.426.133.1, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_prepare.cc@1.142.1.46, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_rename.cc@1.31.1.5, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_repl.cc@1.133.1.21, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_repl.h@1.37.1.3, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_select.cc@1.312.117.4, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_select.h@1.92.1.21, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_show.cc@1.253.44.1, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_sort.h@1.6, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_state.c@1.2, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_string.cc@1.91.3.1, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_string.h@1.60.1.4, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_table.cc@1.239.1.90, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_test.cc@1.43.1.4, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_trigger.cc@1.35.1.26, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_trigger.h@1.19.1.4, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_udf.cc@1.45.5.1, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_udf.h@1.16, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_union.cc@1.130.1.5, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_update.cc@1.154.26.1, 2006-12-23 20:04:27+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_view.cc@1.78.1.23, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_view.h@1.11.1.3, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/sql_yacc.yy@1.371.1.128, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/stacktrace.c@1.18.1.5, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/stacktrace.h@1.4.1.3, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/strfunc.cc@1.9.1.2, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/structs.h@1.53.1.3, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/table.cc@1.160.40.4, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/table.h@1.102.1.34, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/thr_malloc.cc@1.14, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/time.cc@1.57.1.8, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/tzfile.h@1.2, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/tztime.cc@1.24.1.13, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/tztime.h@1.12.1.3, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/udf_example.c@1.29.1.5, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/uniques.cc@1.28, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/unireg.cc@1.53.1.26, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/unireg.h@1.39.1.7, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_archive.cc@1.60.11.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_archive.h@1.31.3.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_blackhole.cc@1.21.4.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_blackhole.h@1.5.2.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/examples/ha_tina.cc@1.10.7.1, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/examples/ha_tina.h@1.5.2.1, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/examples/ha_example.cc@1.19.2.1, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/examples/ha_example.h@1.10.2.1, 2006-12-23 20:04:28+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_federated.cc@1.24.19.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_federated.h@1.18.3.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/Makefile.am@1.9.3.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/_check.c@1.17.3.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/_rectest.c@1.5.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_heap.cc@1.71.5.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_heap.h@1.37.2.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/heapdef.h@1.14.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_block.c@1.6.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_clear.c@1.8.2.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_close.c@1.7.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_create.c@1.20.4.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_delete.c@1.14.5.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_extra.c@1.6.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_hash.c@1.38.7.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_info.c@1.9.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_open.c@1.21.2.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_panic.c@1.5.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_rename.c@1.6.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_rfirst.c@1.13.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_rkey.c@1.15.2.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_rlast.c@1.9.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_rnext.c@1.11.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_rprev.c@1.7.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_rrnd.c@1.8.2.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_rsame.c@1.5.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_scan.c@1.6.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_static.c@1.4.1.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_test1.c@1.14.2.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_test2.c@1.21.2.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_update.c@1.10.2.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  heap/hp_write.c@1.22.4.1, 2006-12-23 20:04:04+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/Makefile.am@1.6.2.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/btr/Makefile.am@1.3.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/buf/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/data/Makefile.am@1.3.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/dict/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/dyn/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/eval/Makefile.am@1.3.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/fil/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/fsp/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/fut/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/ha/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_innodb.cc@1.202.35.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_innodb.h@1.93.4.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/ibuf/Makefile.am@1.3.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/lock/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/log/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/mach/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/mem/Makefile.am@1.4.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/mtr/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/os/Makefile.am@1.4.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/page/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/pars/Makefile.am@1.4.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/que/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/read/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/rem/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/row/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/srv/Makefile.am@1.4.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/sync/Makefile.am@1.3.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/thr/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/trx/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/usr/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  innobase/ut/Makefile.am@1.2.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/Makefile.am@1.29.4.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/ft_boolean_search.c@1.90.4.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/ft_eval.c@1.16.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/ft_eval.h@1.7.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/ft_nlq_search.c@1.38.2.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/ft_parser.c@1.46.3.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/ft_static.c@1.31.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/ft_stem.c@1.4.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/ft_stopwords.c@1.22.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/ft_test1.c@1.18.1.1, 2006-12-23 20:04:05+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/ft_test1.h@1.4.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/ft_update.c@1.37.2.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/ftdefs.h@1.30.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/fulltext.h@1.9.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_myisam.cc@1.147.8.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_myisam.h@1.68.2.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_cache.c@1.14.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_changed.c@1.5.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_check.c@1.129.21.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_checksum.c@1.8.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_close.c@1.18.2.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_create.c@1.45.15.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_dbug.c@1.13.2.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_delete.c@1.33.10.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_delete_all.c@1.15.2.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_delete_table.c@1.9.2.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_dynrec.c@1.37.12.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_extra.c@1.44.3.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_info.c@1.15.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_key.c@1.38.15.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_keycache.c@1.9.2.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_locking.c@1.38.6.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_log.c@1.11.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_open.c@1.90.12.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_packrec.c@1.30.8.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_page.c@1.22.2.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_panic.c@1.10.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_preload.c@1.9.2.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_range.c@1.15.3.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_rename.c@1.8.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_rfirst.c@1.4.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_rkey.c@1.18.9.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_rlast.c@1.4.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_rnext.c@1.15.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_rnext_same.c@1.16.5.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_rprev.c@1.12.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_rrnd.c@1.6.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_rsame.c@1.6.2.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_rsamepos.c@1.4.2.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_scan.c@1.4.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_search.c@1.53.8.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_static.c@1.16.4.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_statrec.c@1.10.3.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_test1.c@1.25.4.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_test2.c@1.27.3.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_test3.c@1.16.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_unique.c@1.22.6.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_update.c@1.17.6.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/mi_write.c@1.50.10.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/myisam_ftdump.c@1.36.4.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/myisamchk.c@1.112.10.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/myisamdef.h@1.74.14.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/myisamlog.c@1.29.5.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/myisampack.c@1.39.19.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/rt_index.c@1.16.2.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/rt_index.h@1.3.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/rt_key.c@1.8.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/rt_key.h@1.3.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/rt_mbr.c@1.9.2.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/rt_mbr.h@1.4.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/rt_split.c@1.11.8.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/rt_test.c@1.13.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/sort.c@1.45.14.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/sp_defs.h@1.2.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/sp_key.c@1.8.3.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisam/sp_test.c@1.11.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/Makefile.am@1.13.3.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_myisammrg.cc@1.59.10.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  sql/ha_myisammrg.h@1.40.2.1, 2006-12-23 20:04:24+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_close.c@1.6.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_create.c@1.10.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_def.h@1.11.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_delete.c@1.8.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_extra.c@1.12.2.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_info.c@1.10.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_locking.c@1.7.2.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_open.c@1.27.10.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_panic.c@1.6.1.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_queue.c@1.10.5.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_range.c@1.3.2.1, 2006-12-23 20:04:06+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_rfirst.c@1.9.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_rkey.c@1.16.3.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_rlast.c@1.8.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_rnext.c@1.14.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_rnext_same.c@1.4.2.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_rprev.c@1.13.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_rrnd.c@1.14.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_rsame.c@1.7.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_static.c@1.8.2.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_update.c@1.7.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  myisammrg/myrg_write.c@1.6.1.1, 2006-12-23 20:04:07+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/debugger/DebuggerNames.hpp@1.1.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/debugger/EventLogger.hpp@1.9.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/debugger/GrepError.hpp@1.2.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/debugger/SignalLoggerManager.hpp@1.5.2.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/editline/editline.h@1.1.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/AttributeDescriptor.hpp@1.5.3.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/AttributeHeader.hpp@1.7.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/AttributeList.hpp@1.1.3.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/BlockNumbers.h@1.3.2.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/GlobalSignalNumbers.h@1.7.17.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/GrepEvent.hpp@1.1.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/Interpreter.hpp@1.3.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/LogLevel.hpp@1.15.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/NodeBitmask.hpp@1.1.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/NodeInfo.hpp@1.2.2.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/NodeState.hpp@1.4.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/RefConvert.hpp@1.1.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/kernel_types.h@1.1.2.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/ndb_limits.h@1.14.5.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/AbortAll.hpp@1.1.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/AccFrag.hpp@1.1.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/AccLock.hpp@1.1.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/AccScan.hpp@1.4.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/AccSizeAltReq.hpp@1.1.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/AlterIndx.hpp@1.3.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/AlterTab.hpp@1.1.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/AlterTable.hpp@1.1.5.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/AlterTrig.hpp@1.1.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/ApiBroadcast.hpp@1.1.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/ApiRegSignalData.hpp@1.3.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/ApiVersion.hpp@1.1.2.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/ArbitSignalData.hpp@1.3.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/AttrInfo.hpp@1.2.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/BackupContinueB.hpp@1.1.2.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/BackupImpl.hpp@1.2.4.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/BackupSignalData.hpp@1.2.4.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/BlockCommitOrd.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/BuildIndx.hpp@1.5.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/CheckNodeGroups.hpp@1.2.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/CloseComReqConf.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/CmInit.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/CmRegSignalData.hpp@1.1.3.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/CmvmiCfgConf.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/CntrMasterConf.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/CntrMasterReq.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/ConfigParamId.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/ContinueFragmented.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/CopyActive.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/CopyFrag.hpp@1.1.2.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/CopyGCIReq.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/CreateEvnt.hpp@1.7.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/CreateFrag.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/CreateFragmentation.hpp@1.2.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/CreateIndx.hpp@1.6.2.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/CreateTab.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/CreateTable.hpp@1.3.2.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/CreateTrig.hpp@1.3.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/DiAddTab.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/DiGetNodes.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/DictLock.hpp@1.3.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/DictSchemaInfo.hpp@1.2.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/DictSizeAltReq.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/DictStart.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/DictTabInfo.hpp@1.17.5.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/DihAddFrag.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/DihContinueB.hpp@1.2.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/DihSizeAltReq.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/DihStartTab.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/DihSwitchReplica.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/DisconnectRep.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/DropIndx.hpp@1.3.2.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/DropTab.hpp@1.2.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/DropTabFile.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/DropTable.hpp@1.1.4.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/DropTrig.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/DumpStateOrd.hpp@1.3.6.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/EmptyLcp.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/EndTo.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/EventReport.hpp@1.3.3.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/EventSubscribeReq.hpp@1.4.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/ExecFragReq.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/FailRep.hpp@1.1.2.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/FireTrigOrd.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/FsAppendReq.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/FsCloseReq.hpp@1.3.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/FsConf.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/FsOpenReq.hpp@1.2.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/FsReadWriteReq.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/FsRef.hpp@1.1.3.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/FsRemoveReq.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/GCPSave.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/GetTabInfo.hpp@1.1.2.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/GetTableId.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/GrepImpl.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/HotSpareRep.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/IndxAttrInfo.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/IndxKeyInfo.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/InvalidateNodeLCPConf.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/InvalidateNodeLCPReq.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/KeyInfo.hpp@1.3.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/LCP.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/ListTables.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/LqhFrag.hpp@1.2.3.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/LqhKey.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/LqhSizeAltReq.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/LqhTransConf.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/ManagementServer.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/MasterGCP.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/MasterLCP.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/NFCompleteRep.hpp@1.1.2.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/NdbSttor.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/NdbfsContinueB.hpp@1.2.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/NextScan.hpp@1.2.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/NodeFailRep.hpp@1.1.2.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/NodeStateSignalData.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/PackedSignal.hpp@1.2.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/PrepDropTab.hpp@1.2.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/PrepFailReqRef.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/ReadNodesConf.hpp@1.2.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/RelTabMem.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/RepImpl.hpp@1.2.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/ResumeReq.hpp@1.1.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/ScanFrag.hpp@1.9.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/ScanTab.hpp@1.13.1.1, 2006-12-23 20:04:09+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/SetLogLevelOrd.hpp@1.4.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/SetVarReq.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/SignalData.hpp@1.9.2.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/SignalDataPrint.hpp@1.3.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/SignalDroppedRep.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/SrFragidConf.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/StartFragReq.hpp@1.1.2.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/StartInfo.hpp@1.2.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/StartMe.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/StartOrd.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/StartPerm.hpp@1.1.2.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/StartRec.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/StartTo.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/StopMe.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/StopPerm.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/StopReq.hpp@1.1.4.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/SumaImpl.hpp@1.3.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/SystemError.hpp@1.1.2.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TamperOrd.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TcCommit.hpp@1.3.2.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TcContinueB.hpp@1.2.2.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TcHbRep.hpp@1.2.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TcIndx.hpp@1.4.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TcKeyConf.hpp@1.5.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TcKeyFailConf.hpp@1.2.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TcKeyRef.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TcKeyReq.hpp@1.5.2.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TcRollbackRep.hpp@1.2.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TcSizeAltReq.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TestOrd.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TransIdAI.hpp@1.2.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TrigAttrInfo.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TupCommit.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TupFrag.hpp@1.7.3.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TupKey.hpp@1.2.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TupSizeAltReq.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TuxBound.hpp@1.4.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TuxContinueB.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TuxMaint.hpp@1.3.2.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/TuxSizeAltReq.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/UpdateTo.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/UtilDelete.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/UtilExecute.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/UtilLock.hpp@1.2.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/UtilPrepare.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/UtilRelease.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/UtilSequence.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/signaldata/WaitGCP.hpp@1.1.2.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/kernel/trigger_definitions.h@1.4.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/logger/ConsoleLogHandler.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/logger/FileLogHandler.hpp@1.4.2.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/logger/LogHandler.hpp@1.6.3.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/logger/Logger.hpp@1.6.2.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/logger/SysLogHandler.hpp@1.2.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/mgmapi/mgmapi.h@1.42.15.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/mgmapi/mgmapi_debug.h@1.7.2.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/mgmapi/ndb_logevent.h@1.3.4.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/mgmapi/ndbd_exit_codes.h@1.2.5.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/mgmcommon/ConfigRetriever.hpp@1.16.4.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/mgmcommon/IPCConfig.hpp@1.3.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/mgmcommon/MgmtErrorReporter.hpp@1.4.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndb_constants.h@1.10.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndb_global.h.in@1.9.3.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndb_init.h@1.1.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndb_types.h.in@1.15.1.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndb_version.h.in@1.1.9.1, 2006-12-23 20:04:08+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndbapi/Ndb.hpp@1.39.10.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndbapi/NdbApi.hpp@1.8.2.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndbapi/NdbBlob.hpp@1.15.4.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndbapi/NdbDictionary.hpp@1.48.9.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndbapi/NdbError.hpp@1.7.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndbapi/NdbEventOperation.hpp@1.12.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndbapi/NdbIndexOperation.hpp@1.9.3.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndbapi/NdbIndexScanOperation.hpp@1.17.5.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndbapi/NdbOperation.hpp@1.31.6.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndbapi/NdbPool.hpp@1.1.1.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndbapi/NdbRecAttr.hpp@1.15.2.1, 2006-12-23 20:04:10+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndbapi/NdbReceiver.hpp@1.15.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndbapi/NdbScanFilter.hpp@1.7.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndbapi/NdbScanOperation.hpp@1.32.6.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndbapi/NdbTransaction.hpp@1.41.7.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndbapi/ndb_cluster_connection.hpp@1.10.3.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndbapi/ndb_opt_defaults.h@1.2.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndbapi/ndbapi_limits.h@1.7.2.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/ndbapi/ndberror.h@1.8.2.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/newtonapi/dba.h@1.3.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/newtonapi/defs/pcn_types.h@1.4.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/portlib/NdbCondition.h@1.2.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/portlib/NdbConfig.h@1.5.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/portlib/NdbDaemon.h@1.1.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/portlib/NdbEnv.h@1.1.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/portlib/NdbHost.h@1.1.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/portlib/NdbMain.h@1.1.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/portlib/NdbMem.h@1.3.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/portlib/NdbMutex.h@1.5.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/portlib/NdbSleep.h@1.1.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/portlib/NdbTCP.h@1.7.4.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/portlib/NdbThread.h@1.4.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/portlib/NdbTick.h@1.2.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/portlib/PortDefs.h@1.4.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/portlib/prefetch.h@1.2.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/transporter/TransporterCallback.hpp@1.1.3.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/transporter/TransporterDefinitions.hpp@1.9.7.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/transporter/TransporterRegistry.hpp@1.18.4.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/BaseString.hpp@1.7.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/Bitmask.hpp@1.16.2.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/File.hpp@1.4.7.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/InputStream.hpp@1.3.4.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/NdbAutoPtr.hpp@1.4.1.1, 2006-12-23 20:04:11+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/NdbOut.hpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/NdbSqlUtil.hpp@1.23.4.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/OutputStream.hpp@1.3.2.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/Parser.hpp@1.3.3.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/Properties.hpp@1.6.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/SimpleProperties.hpp@1.4.4.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/SocketAuthenticator.hpp@1.2.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/SocketClient.hpp@1.4.2.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/SocketServer.hpp@1.6.5.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/UtilBuffer.hpp@1.4.2.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/Vector.hpp@1.4.2.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/basestring_vsnprintf.h@1.2.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/md5_hash.hpp@1.2.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/ndb_opts.h@1.10.7.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/random.h@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/socket_io.h@1.3.2.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/uucode.h@1.3.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/include/util/version.h@1.2.3.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/BlockNames.cpp@1.1.2.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/DebuggerNames.cpp@1.7.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/EventLogger.cpp@1.21.7.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/GrepError.cpp@1.2.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/SignalLoggerManager.cpp@1.6.4.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/AccLock.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/AlterIndx.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/AlterTab.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/AlterTable.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/AlterTrig.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/BackupImpl.cpp@1.2.3.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/BackupSignalData.cpp@1.1.3.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/CloseComReqConf.cpp@1.3.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/ContinueB.cpp@1.4.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/CopyGCI.cpp@1.2.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/CreateEvnt.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/CreateFragmentation.cpp@1.2.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/CreateIndx.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/CreateTrig.cpp@1.3.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/DictTabInfo.cpp@1.6.2.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/DihContinueB.cpp@1.2.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/DihSwitchReplicaReq.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/DisconnectRep.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/DropIndx.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/DropTab.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/DropTrig.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/FailRep.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/FireTrigOrd.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/FsAppendReq.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/FsCloseReq.cpp@1.2.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/FsConf.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/FsOpenReq.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/FsReadWriteReq.cpp@1.3.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/FsRef.cpp@1.1.2.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/GCPSave.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/IndxAttrInfo.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/IndxKeyInfo.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/LCP.cpp@1.2.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/LqhFrag.cpp@1.1.2.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/LqhKey.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/LqhTrans.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/MasterLCP.cpp@1.2.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/NFCompleteRep.cpp@1.2.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/NdbSttor.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/NdbfsContinueB.cpp@1.2.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/PackedSignal.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/PrepDropTab.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/PrepFailReqRef.cpp@1.3.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/ScanFrag.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/ScanTab.cpp@1.14.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/SignalDataPrint.cpp@1.10.3.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/SignalDroppedRep.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/SignalNames.cpp@1.6.7.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/StartRec.cpp@1.1.2.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/SumaImpl.cpp@1.2.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/SystemError.cpp@1.3.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/TcIndx.cpp@1.2.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/TcKeyConf.cpp@1.2.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/TcKeyRef.cpp@1.1.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/TcKeyReq.cpp@1.2.1.1, 2006-12-23 20:04:12+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/TcRollbackRep.cpp@1.1.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/TrigAttrInfo.cpp@1.1.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/TupCommit.cpp@1.1.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/TupKey.cpp@1.1.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/TuxMaint.cpp@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/UtilDelete.cpp@1.1.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/UtilExecute.cpp@1.1.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/UtilLock.cpp@1.1.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/UtilPrepare.cpp@1.1.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/debugger/signaldata/UtilSequence.cpp@1.1.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/logger/ConsoleLogHandler.cpp@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/logger/FileLogHandler.cpp@1.9.6.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/logger/LogHandler.cpp@1.8.6.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/logger/LogHandlerList.cpp@1.3.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/logger/LogHandlerList.hpp@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/logger/Logger.cpp@1.10.5.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/logger/SysLogHandler.cpp@1.4.2.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/logger/listtest/LogHandlerListUnitTest.cpp@1.6.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/logger/listtest/LogHandlerListUnitTest.hpp@1.1.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/logger/loggertest/LoggerUnitTest.cpp@1.4.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/logger/loggertest/LoggerUnitTest.hpp@1.1.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/mgmcommon/ConfigRetriever.cpp@1.24.11.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/mgmcommon/IPCConfig.cpp@1.18.8.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/mgmcommon/printConfig/printConfig.cpp@1.4.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/NdbCondition.c@1.7.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/NdbConfig.c@1.16.2.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/NdbDaemon.c@1.11.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/NdbEnv.c@1.4.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/NdbHost.c@1.3.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/NdbMem.c@1.12.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/NdbMutex.c@1.5.7.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/NdbPortLibTest.cpp@1.5.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/NdbSleep.c@1.6.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/NdbTCP.cpp@1.10.5.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/NdbThread.c@1.20.9.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/NdbTick.c@1.5.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/memtest.c@1.6.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/mmstest.cpp@1.4.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/munmaptest.cpp@1.5.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/win32/NdbCondition.c@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/win32/NdbDaemon.c@1.1.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/win32/NdbEnv.c@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/win32/NdbHost.c@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/win32/NdbMem.c@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/win32/NdbMutex.c@1.3.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/win32/NdbSleep.c@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/win32/NdbTCP.c@1.2.3.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/win32/NdbThread.c@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/portlib/win32/NdbTick.c@1.2.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/Packer.cpp@1.5.2.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/Packer.hpp@1.1.1.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/SCI_Transporter.cpp@1.7.4.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/SCI_Transporter.hpp@1.4.2.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/SHM_Buffer.hpp@1.6.2.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/SHM_Transporter.cpp@1.14.3.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/SHM_Transporter.hpp@1.7.3.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/SHM_Transporter.unix.cpp@1.5.2.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/SHM_Transporter.win32.cpp@1.3.2.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/SendBuffer.cpp@1.1.2.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/SendBuffer.hpp@1.3.2.1, 2006-12-23 20:04:13+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/TCP_Transporter.cpp@1.9.2.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/TCP_Transporter.hpp@1.4.2.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/Transporter.cpp@1.18.6.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/Transporter.hpp@1.10.5.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/TransporterInternalDefinitions.hpp@1.2.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/TransporterRegistry.cpp@1.52.13.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/basictest/basicTransporterTest.cpp@1.3.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/buddy.cpp@1.3.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/buddy.hpp@1.3.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/failoverSCI/failoverSCI.cpp@1.3.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/perftest/perfTransporterTest.cpp@1.4.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/priotest/prioSCI/prioSCI.cpp@1.1.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/priotest/prioSHM/prioSHM.cpp@1.1.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/priotest/prioTCP/prioTCP.cpp@1.1.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/priotest/prioTransporterTest.cpp@1.4.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/transporter/priotest/prioTransporterTest.hpp@1.1.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/BaseString.cpp@1.7.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/File.cpp@1.8.10.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/InputStream.cpp@1.3.6.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/NdbOut.cpp@1.5.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/NdbSqlUtil.cpp@1.29.5.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/OutputStream.cpp@1.4.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/Parser.cpp@1.6.6.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/Properties.cpp@1.10.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/SimpleProperties.cpp@1.5.6.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/SocketAuthenticator.cpp@1.2.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/SocketClient.cpp@1.6.4.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/SocketServer.cpp@1.15.6.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/basestring_vsnprintf.c@1.11.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/filetest/FileUnitTest.cpp@1.3.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/filetest/FileUnitTest.hpp@1.1.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/md5_hash.cpp@1.3.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/ndb_init.c@1.2.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/random.c@1.4.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/socket_io.cpp@1.7.9.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/strdup.c@1.5.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/testProperties/testProperties.cpp@1.4.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/testSimpleProperties/sp_test.cpp@1.4.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/uucode.c@1.3.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/common/util/version.c@1.18.6.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/cpcc-win32/C++/CPC_GUI.cpp@1.1.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/cpcc-win32/C++/CPC_GUI.h@1.1.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/cpcc-win32/C++/NdbControls.cpp@1.1.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/cpcc-win32/C++/StdAfx.cpp@1.1.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/cpcc-win32/C++/StdAfx.h@1.3.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/cpcc-win32/C++/TreeView.cpp@1.1.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/cpcc-win32/C++/TreeView.h@1.1.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/cpcc-win32/C++/resource.h@1.1.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/cpcd/APIService.cpp@1.6.3.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/cpcd/APIService.hpp@1.1.2.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/cpcd/CPCD.cpp@1.7.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/cpcd/CPCD.hpp@1.2.3.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/cpcd/Monitor.cpp@1.4.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/cpcd/Process.cpp@1.15.8.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/cpcd/common.cpp@1.4.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/cpcd/common.hpp@1.4.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/cpcd/main.cpp@1.7.5.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/test/socketclient/socketClientTest.cpp@1.3.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/util/ClientInterface.cpp@1.1.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/util/ClientInterface.hpp@1.3.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/util/SocketRegistry.cpp@1.1.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/util/SocketRegistry.hpp@1.1.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/util/SocketService.cpp@1.1.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/cw/util/SocketService.hpp@1.1.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/SimBlockList.cpp@1.5.6.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/backup/Backup.cpp@1.15.27.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/backup/Backup.hpp@1.7.8.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/backup/BackupFormat.hpp@1.1.2.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/backup/BackupInit.cpp@1.10.7.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/backup/FsBuffer.hpp@1.4.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/backup/read.cpp@1.4.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/cmvmi/Cmvmi.cpp@1.18.13.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/cmvmi/Cmvmi.hpp@1.2.3.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbacc/Dbacc.hpp@1.18.6.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbacc/DbaccInit.cpp@1.12.5.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbacc/DbaccMain.cpp@1.49.11.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbdict/Dbdict.cpp@1.40.39.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbdict/Dbdict.hpp@1.9.20.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbdict/SchemaFile.hpp@1.1.3.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbdict/printSchemaFile.cpp@1.6.6.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbdih/Dbdih.hpp@1.8.8.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbdih/DbdihInit.cpp@1.6.8.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbdih/DbdihMain.cpp@1.24.61.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbdih/Sysfile.hpp@1.2.1.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbdih/printSysfile/printSysfile.cpp@1.4.1.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dblqh/Dblqh.hpp@1.32.12.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dblqh/DblqhInit.cpp@1.14.3.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dblqh/DblqhMain.cpp@1.66.31.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dblqh/redoLogReader/records.cpp@1.1.5.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dblqh/redoLogReader/records.hpp@1.1.5.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dblqh/redoLogReader/redoLogFileReader.cpp@1.3.5.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtc/Dbtc.hpp@1.26.11.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtc/DbtcInit.cpp@1.8.8.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtc/DbtcMain.cpp@1.73.33.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/AttributeOffset.hpp@1.2.1.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/Dbtup.hpp@1.22.6.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/DbtupAbort.cpp@1.2.2.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/DbtupBuffer.cpp@1.6.2.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/DbtupCommit.cpp@1.2.5.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/DbtupDebug.cpp@1.8.1.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/DbtupExecQuery.cpp@1.19.5.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/DbtupFixAlloc.cpp@1.1.1.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/DbtupGen.cpp@1.15.6.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/DbtupIndex.cpp@1.13.1.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/DbtupMeta.cpp@1.12.5.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/DbtupPagMan.cpp@1.5.2.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/DbtupPageMap.cpp@1.1.3.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/DbtupRoutines.cpp@1.16.3.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/DbtupScan.cpp@1.3.2.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/DbtupStoredProcDef.cpp@1.1.1.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/DbtupTabDesMan.cpp@1.2.2.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtup/DbtupTrigger.cpp@1.6.7.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtux/Dbtux.hpp@1.39.5.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtux/DbtuxCmp.cpp@1.12.2.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtux/DbtuxDebug.cpp@1.20.3.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtux/DbtuxGen.cpp@1.18.4.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtux/DbtuxMaint.cpp@1.16.2.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtux/DbtuxMeta.cpp@1.17.2.1, 2006-12-23 20:04:15+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtux/DbtuxNode.cpp@1.15.2.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp@1.27.4.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtux/DbtuxSearch.cpp@1.9.3.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbtux/DbtuxTree.cpp@1.14.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbutil/DbUtil.cpp@1.11.2.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/dbutil/DbUtil.hpp@1.3.2.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/mutexes.hpp@1.1.1.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbcntr/Ndbcntr.hpp@1.2.5.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbcntr/NdbcntrInit.cpp@1.5.7.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbcntr/NdbcntrMain.cpp@1.14.17.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbcntr/NdbcntrSysTable.cpp@1.2.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp@1.14.8.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbfs/AsyncFile.hpp@1.3.3.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbfs/AsyncFileTest/AsyncFileTest.cpp@1.2.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbfs/CircularIndex.cpp@1.1.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbfs/CircularIndex.hpp@1.1.3.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbfs/Filename.cpp@1.7.2.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbfs/Filename.hpp@1.5.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbfs/MemoryChannel.cpp@1.1.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbfs/MemoryChannel.hpp@1.4.5.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbfs/MemoryChannelTest/MemoryChannelTest.cpp@1.2.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp@1.14.7.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbfs/Ndbfs.hpp@1.2.3.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbfs/OpenFiles.hpp@1.1.3.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbfs/Pool.hpp@1.2.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/ndbfs/VoidFs.cpp@1.2.3.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/qmgr/Qmgr.hpp@1.3.8.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/qmgr/QmgrInit.cpp@1.4.4.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/qmgr/QmgrMain.cpp@1.13.23.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/qmgr/timer.hpp@1.1.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/suma/Suma.cpp@1.19.4.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/suma/Suma.hpp@1.3.4.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/suma/SumaInit.cpp@1.6.3.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/trix/Trix.cpp@1.7.2.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/blocks/trix/Trix.hpp@1.3.2.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/error/ErrorHandlingMacros.hpp@1.2.2.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/error/ErrorReporter.cpp@1.8.10.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/error/ErrorReporter.hpp@1.6.4.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/error/TimeModule.cpp@1.2.2.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/error/TimeModule.hpp@1.1.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/error/ndbd_exit_codes.c@1.1.8.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/main.cpp@1.48.12.1, 2006-12-23 20:04:14+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/Array.hpp@1.1.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/ArrayPool.hpp@1.6.2.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/CArray.hpp@1.1.2.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/Callback.hpp@1.2.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/ClusterConfiguration.cpp@1.4.2.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/ClusterConfiguration.hpp@1.1.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/Configuration.cpp@1.39.11.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/Configuration.hpp@1.15.4.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/DLFifoList.hpp@1.3.3.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/DLHashTable.hpp@1.3.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/DLHashTable2.hpp@1.3.2.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/DLList.hpp@1.2.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/DataBuffer.hpp@1.3.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/Emulator.cpp@1.15.6.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/Emulator.hpp@1.6.3.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/FastScheduler.cpp@1.6.3.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/FastScheduler.hpp@1.3.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/GlobalData.hpp@1.4.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/KeyDescriptor.hpp@1.1.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/KeyTable.hpp@1.1.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/KeyTable2.hpp@1.1.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/LongSignal.hpp@1.3.1.1, 2006-12-23 20:04:16+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/Mutex.cpp@1.2.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/Mutex.hpp@1.2.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/Prio.hpp@1.1.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/RequestTracker.hpp@1.1.2.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/SLList.hpp@1.2.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/SafeCounter.cpp@1.1.2.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/SafeCounter.hpp@1.1.4.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/SectionReader.cpp@1.2.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/SectionReader.hpp@1.2.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/SignalCounter.hpp@1.4.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/SimBlockList.hpp@1.1.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/SimplePropertiesSection.cpp@1.2.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/SimulatedBlock.cpp@1.17.13.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/SimulatedBlock.hpp@1.11.9.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/SuperPool.cpp@1.1.2.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/SuperPool.hpp@1.2.2.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/ThreadConfig.cpp@1.3.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/ThreadConfig.hpp@1.1.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/TimeQueue.cpp@1.1.2.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/TimeQueue.hpp@1.1.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/TransporterCallback.cpp@1.7.6.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/VMSignal.cpp@1.2.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/VMSignal.hpp@1.5.2.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/WaitQueue.hpp@1.1.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/WatchDog.cpp@1.3.2.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/WatchDog.hpp@1.1.2.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/al_test/arrayListTest.cpp@1.4.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/al_test/arrayPoolTest.cpp@1.4.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/al_test/main.cpp@1.4.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/ndbd_malloc.cpp@1.1.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/ndbd_malloc.hpp@1.1.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/pc.hpp@1.8.3.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/testCopy/rr.cpp@1.3.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/testCopy/testCopy.cpp@1.3.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/testDataBuffer/testDataBuffer.cpp@1.3.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/testLongSig/testLongSig.cpp@1.5.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/testSimplePropertiesSection/test.cpp@1.3.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/kernel/vm/testSuperPool.cpp@1.1.2.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmapi/LocalConfig.cpp@1.22.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmapi/LocalConfig.hpp@1.9.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmapi/mgmapi.cpp@1.44.32.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmapi/mgmapi_configuration.hpp@1.3.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmapi/mgmapi_internal.h@1.1.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmapi/ndb_logevent.cpp@1.3.6.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmapi/ndb_logevent.hpp@1.1.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmapi/test/keso.c@1.5.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmapi/test/mgmSrvApi.cpp@1.3.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmclient/CommandInterpreter.cpp@1.49.27.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmclient/main.cpp@1.20.6.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmclient/ndb_mgmclient.h@1.3.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmclient/ndb_mgmclient.hpp@1.13.2.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmclient/test_cpcd/test_cpcd.cpp@1.6.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmsrv/Config.cpp@1.6.2.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmsrv/Config.hpp@1.6.2.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmsrv/ConfigInfo.cpp@1.60.22.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmsrv/ConfigInfo.hpp@1.8.6.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmsrv/InitConfigFileParser.cpp@1.19.4.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmsrv/InitConfigFileParser.hpp@1.6.3.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmsrv/MgmtSrvr.cpp@1.73.42.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmsrv/MgmtSrvr.hpp@1.30.18.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmsrv/MgmtSrvrConfig.cpp@1.5.3.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmsrv/MgmtSrvrGeneralSignalHandling.cpp@1.1.3.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmsrv/Services.cpp@1.45.36.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmsrv/Services.hpp@1.13.8.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmsrv/SignalQueue.cpp@1.2.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmsrv/SignalQueue.hpp@1.2.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmsrv/convertStrToInt.cpp@1.3.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmsrv/convertStrToInt.hpp@1.1.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmsrv/main.cpp@1.41.8.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/mgmsrv/mkconfig/mkconfig.cpp@1.6.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/API.hpp@1.1.1.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/ClusterMgr.cpp@1.17.9.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/ClusterMgr.hpp@1.4.6.1, 2006-12-23 20:04:17+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/DictCache.cpp@1.12.10.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/DictCache.hpp@1.6.9.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/Ndb.cpp@1.49.15.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbApiSignal.cpp@1.8.2.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbApiSignal.hpp@1.4.2.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbBlob.cpp@1.22.8.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbBlobImpl.hpp@1.1.2.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbDictionary.cpp@1.34.6.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbDictionaryImpl.cpp@1.74.27.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbDictionaryImpl.hpp@1.30.11.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbErrorOut.cpp@1.4.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbEventOperation.cpp@1.4.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbEventOperationImpl.cpp@1.18.2.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbEventOperationImpl.hpp@1.5.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbImpl.hpp@1.8.9.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbIndexOperation.cpp@1.21.4.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbLinHash.hpp@1.4.4.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbOperation.cpp@1.15.3.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbOperationDefine.cpp@1.19.2.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbOperationExec.cpp@1.18.3.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbOperationInt.cpp@1.15.2.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbOperationScan.cpp@1.5.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbOperationSearch.cpp@1.24.3.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbPool.cpp@1.2.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbPoolImpl.cpp@1.4.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbPoolImpl.hpp@1.2.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbRecAttr.cpp@1.20.7.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbReceiver.cpp@1.15.2.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbScanFilter.cpp@1.8.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbScanOperation.cpp@1.66.19.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbTransaction.cpp@1.43.25.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbTransactionScan.cpp@1.16.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbUtil.cpp@1.1.2.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbUtil.hpp@1.4.3.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/NdbWaiter.hpp@1.1.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/Ndberr.cpp@1.11.2.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/Ndbif.cpp@1.27.10.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/Ndbinit.cpp@1.29.7.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/Ndblist.cpp@1.13.5.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/ObjectMap.hpp@1.7.2.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/SignalSender.cpp@1.3.4.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/SignalSender.hpp@1.1.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/TransporterFacade.cpp@1.34.10.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/TransporterFacade.hpp@1.23.5.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/ndb_cluster_connection.cpp@1.29.10.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/ndb_cluster_connection_impl.hpp@1.2.3.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/ndberror.c@1.30.36.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/signal-sender/SignalSender.cpp@1.4.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/src/ndbapi/signal-sender/SignalSender.hpp@1.3.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/CpcClient.hpp@1.2.2.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/HugoAsynchTransactions.hpp@1.1.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/HugoCalculator.hpp@1.3.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/HugoOperations.hpp@1.11.5.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/HugoTransactions.hpp@1.7.2.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NDBT.hpp@1.1.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NDBT_DataSet.hpp@1.1.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NDBT_DataSetTransaction.hpp@1.1.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NDBT_Error.hpp@1.2.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NDBT_Output.hpp@1.1.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NDBT_ResultRow.hpp@1.3.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NDBT_ReturnCodes.h@1.1.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NDBT_Stats.hpp@1.3.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NDBT_Table.hpp@1.9.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NDBT_Tables.hpp@1.3.2.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NDBT_Test.hpp@1.11.4.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NdbBackup.hpp@1.2.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NdbConfig.hpp@1.2.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NdbGrep.hpp@1.1.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NdbRestarter.hpp@1.4.2.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NdbRestarts.hpp@1.1.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NdbSchemaCon.hpp@1.3.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NdbSchemaOp.hpp@1.12.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NdbTest.hpp@1.1.1.1, 2006-12-23 20:04:18+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/NdbTimer.hpp@1.3.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/TestNdbEventOperation.hpp@1.1.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/UtilTransactions.hpp@1.6.2.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/include/getarg.h@1.4.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/InsertRecs.cpp@1.2.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/ScanFilter.hpp@1.3.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/ScanFunctions.hpp@1.7.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/ScanInterpretTest.hpp@1.5.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/TraceNdbApi.cpp@1.2.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/VerifyNdbApi.cpp@1.2.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/acid.cpp@1.5.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/acid2.cpp@1.5.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/adoInsertRecs.cpp@1.2.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/asyncGenerator.cpp@1.5.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bank/Bank.cpp@1.9.3.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bank/Bank.hpp@1.6.3.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bank/BankLoad.cpp@1.8.2.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bank/bankCreator.cpp@1.8.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bank/bankMakeGL.cpp@1.8.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bank/bankSumAccounts.cpp@1.8.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bank/bankTimer.cpp@1.8.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bank/bankTransactionMaker.cpp@1.8.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bank/bankValidateAllGLs.cpp@1.8.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bank/testBank.cpp@1.6.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/asyncGenerator.cpp@1.1.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/dbGenerator.h@1.1.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/dbPopulate.cpp@1.1.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/dbPopulate.h@1.1.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/macros.h@1.1.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/mainAsyncGenerator.cpp@1.1.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/mainPopulate.cpp@1.3.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/ndb_async1.cpp@1.1.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/ndb_async2.cpp@1.1.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/ndb_error.hpp@1.1.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/ndb_schema.hpp@1.1.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/ndb_user_transaction.cpp@1.1.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/ndb_user_transaction2.cpp@1.1.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/ndb_user_transaction3.cpp@1.1.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/ndb_user_transaction4.cpp@1.1.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/ndb_user_transaction5.cpp@1.1.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/ndb_user_transaction6.cpp@1.1.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/testData.h@1.1.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/testDefinitions.h@1.1.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/userInterface.cpp@1.3.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bench/userInterface.h@1.2.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/benchronja.cpp@1.6.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/bulk_copy.cpp@1.6.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/cdrserver.cpp@1.6.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/celloDb.cpp@1.3.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/create_all_tabs.cpp@1.6.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/create_tab.cpp@1.7.2.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/drop_all_tabs.cpp@1.6.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/flexAsynch.cpp@1.12.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/flexBench.cpp@1.11.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/flexHammer.cpp@1.11.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/flexScan.cpp@1.9.3.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/flexTT.cpp@1.11.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/flexTimedAsynch.cpp@1.4.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/flex_bench_mysql.cpp@1.8.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/index.cpp@1.6.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/index2.cpp@1.6.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/initronja.cpp@1.5.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/interpreterInTup.cpp@1.8.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/mainAsyncGenerator.cpp@1.6.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/msa.cpp@1.7.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/ndb_async1.cpp@1.2.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/ndb_async2.cpp@1.2.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/ndb_user_populate.cpp@1.4.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/ndb_user_transaction.cpp@1.2.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/ndb_user_transaction2.cpp@1.2.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/ndb_user_transaction3.cpp@1.2.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/ndb_user_transaction4.cpp@1.2.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/ndb_user_transaction5.cpp@1.2.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/ndb_user_transaction6.cpp@1.2.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/restarter.cpp@1.5.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/restarter2.cpp@1.5.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/restarts.cpp@1.5.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/size.cpp@1.5.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testBackup.cpp@1.10.5.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testBasic.cpp@1.8.2.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testBasicAsynch.cpp@1.4.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testBlobs.cpp@1.20.14.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testDataBuffers.cpp@1.14.2.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testDeadlock.cpp@1.7.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testDict.cpp@1.20.9.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testGrepVerify.cpp@1.7.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testIndex.cpp@1.14.4.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testInterpreter.cpp@1.3.3.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testMgm.cpp@1.4.3.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testNdbApi.cpp@1.13.8.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testNodeRestart.cpp@1.13.13.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testOIBasic.cpp@1.39.5.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testOperations.cpp@1.8.3.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testOrderedIndex.cpp@1.3.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testPartitioning.cpp@1.6.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testReadPerf.cpp@1.13.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testRestartGci.cpp@1.8.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testSRBank.cpp@1.2.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testScan.cpp@1.16.3.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testScanInterpreter.cpp@1.5.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testScanPerf.cpp@1.16.1.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testSystemRestart.cpp@1.8.3.1, 2006-12-23 20:04:19+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testTimeout.cpp@1.11.4.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/testTransactions.cpp@1.6.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/test_event.cpp@1.8.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/test_event_merge.cpp@1.2.2.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/test_event_multi_table.cpp@1.1.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/ndbapi/userInterface.cpp@1.5.1.1, 2006-12-23 20:04:20+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/newtonapi/basic_test/basic/basic.cpp@1.3.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/newtonapi/basic_test/bulk_read/br_test.cpp@1.3.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/newtonapi/basic_test/common.cpp@1.3.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/newtonapi/basic_test/common.hpp@1.3.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/newtonapi/basic_test/ptr_binding/ptr_binding_test.cpp@1.3.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/newtonapi/basic_test/too_basic.cpp@1.3.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/newtonapi/perf_test/perf.cpp@1.4.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/SQL99_test/SQL99_test.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/SQL99_test/SQL99_test.h@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/NDBT_ALLOCHANDLE.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/NDBT_ALLOCHANDLE_HDBC.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/NDBT_SQLConnect.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/NDBT_SQLPrepare.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLAllocEnvTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLAllocHandleTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLAllocHandleTest_bf.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLBindColTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLBindParameterTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLCancelTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLCloseCursorTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLColAttributeTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLColAttributeTest1.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLColAttributeTest2.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLColAttributeTest3.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLConnectTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLCopyDescTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLDescribeColTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLDisconnectTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLDriverConnectTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLEndTranTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLErrorTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLExecDirectTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLExecuteTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLFetchScrollTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLFetchTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLFreeHandleTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLFreeStmtTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLGetConnectAttrTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLGetCursorNameTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLGetDataTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLGetDescFieldTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLGetDescRecTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLGetDiagFieldTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLGetDiagRecSimpleTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLGetDiagRecTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLGetEnvAttrTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLGetFunctionsTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLGetInfoTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLGetStmtAttrTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLGetTypeInfoTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLMoreResultsTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLNumResultColsTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLParamDataTest.cpp@1.1.1.1, 2006-12-23 20:04:21+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLPrepareTest.cpp@1.1.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLPutDataTest.cpp@1.1.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLRowCountTest.cpp@1.1.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLSetConnectAttrTest.cpp@1.1.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLSetCursorNameTest.cpp@1.1.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLSetDescFieldTest.cpp@1.1.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLSetDescRecTest.cpp@1.1.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLSetEnvAttrTest.cpp@1.1.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLSetStmtAttrTest.cpp@1.1.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLTablesTest.cpp@1.1.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/SQLTransactTest.cpp@1.1.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/common.hpp@1.1.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/client/main.cpp@1.1.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/odbc/driver/testOdbcDriver.cpp@1.4.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -18
    Changed header to GPL version 2 only

  ndb/test/odbc/test_compiler/test_compiler.cpp@1.1.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/run-test/main.cpp@1.24.3.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/run-test/run-test.hpp@1.4.3.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/CpcClient.cpp@1.10.2.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/HugoAsynchTransactions.cpp@1.5.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/HugoCalculator.cpp@1.18.3.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/HugoOperations.cpp@1.18.6.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/HugoTransactions.cpp@1.24.2.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/NDBT_Error.cpp@1.3.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/NDBT_Output.cpp@1.1.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/NDBT_ResultRow.cpp@1.11.4.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/NDBT_ReturnCodes.cpp@1.3.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/NDBT_Table.cpp@1.8.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/NDBT_Tables.cpp@1.14.2.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/NDBT_Test.cpp@1.23.4.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/NdbBackup.cpp@1.20.6.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/NdbConfig.cpp@1.5.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/NdbGrep.cpp@1.4.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/NdbRestarter.cpp@1.11.2.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/NdbRestarts.cpp@1.4.4.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/NdbSchemaCon.cpp@1.4.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/NdbSchemaOp.cpp@1.8.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/src/UtilTransactions.cpp@1.17.4.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/tools/copy_tab.cpp@1.7.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/tools/cpcc.cpp@1.11.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/tools/create_index.cpp@1.9.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/tools/hugoCalculator.cpp@1.5.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/tools/hugoFill.cpp@1.6.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/tools/hugoLoad.cpp@1.4.2.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/tools/hugoLockRecords.cpp@1.6.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/tools/hugoPkDelete.cpp@1.7.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/tools/hugoPkRead.cpp@1.6.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/tools/hugoPkReadRecord.cpp@1.7.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/tools/hugoPkUpdate.cpp@1.7.2.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/tools/hugoScanRead.cpp@1.8.2.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/tools/hugoScanUpdate.cpp@1.7.2.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/tools/restart.cpp@1.5.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/tools/transproxy.cpp@1.9.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/test/tools/verify_index.cpp@1.7.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/delete_all.cpp@1.16.4.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/desc.cpp@1.18.3.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/drop_index.cpp@1.13.5.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/drop_tab.cpp@1.14.3.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/listTables.cpp@1.20.4.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/ndb_config.cpp@1.4.14.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/ndb_test_platform.cpp@1.3.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/ndbsql.cpp@1.5.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/restore/Restore.cpp@1.22.8.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/restore/Restore.hpp@1.18.4.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/restore/consumer.cpp@1.6.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/restore/consumer.hpp@1.5.2.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/restore/consumer_printer.cpp@1.3.1.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/restore/consumer_printer.hpp@1.2.2.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/restore/consumer_restore.cpp@1.14.14.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/restore/consumer_restore.hpp@1.9.2.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/restore/consumer_restorem.cpp@1.4.1.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/restore/restore_main.cpp@1.29.11.1, 2006-12-23 20:04:23+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/select_all.cpp@1.22.2.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/select_count.cpp@1.19.2.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  ndb/tools/waiter.cpp@1.23.3.1, 2006-12-23 20:04:22+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/Makefile.am@1.49.1.3, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/bchange.c@1.7, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/bcmp.c@1.9, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/bcopy-duff.c@1.5, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/bfill.c@1.6, 2006-12-23 20:04:29+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/bmove.c@1.7, 2006-12-23 20:04:29+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/bmove512.c@1.8, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/bmove_upp-sparc.s@1.5, 2006-12-23 20:04:29+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/bmove_upp.c@1.6, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/bzero.c@1.4, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/conf_to_src.c@1.18.1.1, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/ctype-big5.c@1.80.1.11, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/ctype-bin.c@1.66.1.6, 2006-12-23 20:04:29+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/ctype-cp932.c@1.11.1.3, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/ctype-czech.c@1.64, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/ctype-euc_kr.c@1.65.1.4, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/ctype-eucjpms.c@1.12.1.3, 2006-12-23 20:04:29+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/ctype-gb2312.c@1.62.1.4, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/ctype-gbk.c@1.78.1.3, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/ctype-latin1.c@1.48.1.3, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/ctype-mb.c@1.47.1.6, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/ctype-simple.c@1.75.1.5, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/ctype-sjis.c@1.88.1.3, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/ctype-tis620.c@1.91.1.3, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/ctype-uca.c@1.41, 2006-12-23 20:04:29+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/ctype-ucs2.c@1.50.1.14, 2006-12-23 20:04:29+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/ctype-ujis.c@1.69.1.3, 2006-12-23 20:04:29+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/ctype-utf8.c@1.97.1.5, 2006-12-23 20:04:29+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/ctype-win1250ch.c@1.55.1.2, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/ctype.c@1.63.1.1, 2006-12-23 20:04:29+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/decimal.c@1.65.3.4, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/do_ctype.c@1.7, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/int2str.c@1.9, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/is_prefix.c@1.6, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/llstr.c@1.8, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/longlong2str-x86.s@1.13, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/longlong2str.c@1.9, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/longlong2str_asm.c@1.2, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/macros.asm@1.4, 2006-12-23 20:04:30+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/memcmp.c@1.5, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/memcpy.c@1.5, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/memset.c@1.4, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/my_strtoll10-x86.s@1.5, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/my_strtoll10.c@1.14, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/my_vsnprintf.c@1.36, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/ptr_cmp.asm@1.4, 2006-12-23 20:04:30+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/r_strinstr.c@1.8, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/str2int.c@1.10, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/str_alloc.c@1.2, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/str_test.c@1.10, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strappend-sparc.s@1.5, 2006-12-23 20:04:30+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/strappend.c@1.6, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strcat.c@1.4, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strcend.c@1.6, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strchr.c@1.4, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strcmp.c@1.4, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strcont.c@1.6, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strend-sparc.s@1.5, 2006-12-23 20:04:30+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/strend.c@1.6, 2006-12-23 20:04:30+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/strfill.c@1.6, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strings-not-used.h@1.5, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strings-x86.s@1.9, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strings.asm@1.5, 2006-12-23 20:04:30+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/strinstr-sparc.s@1.4, 2006-12-23 20:04:30+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/strinstr.c@1.7, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strlen.c@1.4, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strmake-sparc.s@1.5, 2006-12-23 20:04:30+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/strmake.c@1.8, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strmov-sparc.s@1.5, 2006-12-23 20:04:30+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/strmov.c@1.8, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strnlen.c@1.8, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strnmov-sparc.s@1.5, 2006-12-23 20:04:30+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/strnmov.c@1.6, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strrchr.c@1.4, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strstr-sparc.s@1.8, 2006-12-23 20:04:30+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/strstr.c@1.7, 2006-12-23 20:04:30+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/strto.c@1.19, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strtol.c@1.10, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strtoll.c@1.10, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strtoul.c@1.9, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strtoull.c@1.10, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/strxmov-sparc.s@1.5, 2006-12-23 20:04:30+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/strxmov.asm@1.4, 2006-12-23 20:04:30+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/strxmov.c@1.7, 2006-12-23 20:04:30+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/strxnmov.c@1.6.1.1, 2006-12-23 20:04:30+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  strings/t_ctype.h@1.8, 2006-12-23 20:04:30+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/udiv.c@1.6, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  strings/xml.c@1.8.1.1, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  support-files/MacOSX/Makefile.am@1.10, 2006-12-23 20:04:31+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  support-files/Makefile.am@1.32, 2006-12-23 20:04:31+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  support-files/MySQL-shared-compat.spec.sh@1.8, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  tests/Makefile.am@1.23.1.7, 2006-12-23 20:04:31+01:00, kent@mysql.com +2 -2
    Changed header to GPL version 2 only

  tests/connect_test.c@1.10, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  tests/deadlock_test.c@1.6, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  tests/insert_test.c@1.13, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  tests/list_test.c@1.8, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  tests/mysql_client_test.c@1.167.26.1, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  tests/select_test.c@1.14, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  tests/showdb_test.c@1.9, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  tests/ssl_test.c@1.10, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  tests/thread_test.c@1.17, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  vio/Makefile.am@1.17.1.4, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  vio/test-ssl.c@1.11, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  vio/test-sslclient.c@1.10, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  vio/test-sslserver.c@1.12, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  vio/vio.c@1.28.2.1, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  vio/vio_priv.h@1.7, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  vio/viosocket.c@1.37.1.7, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  vio/viossl.c@1.34.4.1, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  vio/viosslfactories.c@1.26.2.4, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  vio/viotest-ssl.c@1.9, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

  zlib/Makefile.am@1.6.1.6, 2006-12-23 20:04:31+01:00, kent@mysql.com +1 -2
    Changed header to GPL version 2 only

ChangeSet@1.2343.19.32, 2006-12-22 21:35:40-05:00, cmiller@zippy.cornsilk.net +1 -0
  Fixed error in merge.

  sql/item_sum.cc@1.208, 2006-12-22 21:35:38-05:00, cmiller@zippy.cornsilk.net +1 -1
    Fixed error in merge.

ChangeSet@1.1810.2323.3, 2006-12-22 15:37:37-05:00, cmiller@zippy.cornsilk.net +5 -0
  Bug#22555: STDDEV yields positive result for groups with only one row
  
  When only one row was present, the subtraction of nearly the same number 
  resulted in catastropic cancellation, introducing an error in the 
  VARIANCE calculation near 1e-15.  That was sqrt()ed to get STDDEV, the 
  error was escallated to near 1e-8.  
  
  The simple fix of testing for a row count of 1 and forcing that to yield 
  0.0 is insufficient, as two rows of the same value should also have a
  variance of 0.0, yet the error would be about the same.
  
  So, this patch changes the formula that computes the VARIANCE to be one
  that is not subject to catastrophic cancellation.
  
  In addition, it now uses only (faster-than-decimal) floating point numbers
  to calculate, and renders that to other types on demand.

  BitKeeper/etc/collapsed@1.5.6.1, 2006-12-15 15:45:24-05:00, cmiller@zippy.cornsilk.net +1 -0

  mysql-test/r/func_group.result@1.49.3.1, 2006-12-22 15:37:35-05:00, cmiller@zippy.cornsilk.net +268 -0
    Test that the bug is fixed, and that no unexpected behavior arises from the 
    changes.

  mysql-test/t/func_group.test@1.48.2.1, 2006-12-22 15:37:35-05:00, cmiller@zippy.cornsilk.net +92 -0
    Test that the bug is fixed, and that no unexpected behavior arises from the 
    changes.

  sql/item_sum.cc@1.170.13.1, 2006-12-22 15:37:35-05:00, cmiller@zippy.cornsilk.net +120 -238
    Serg's suggestion: Force all VARIANCE calculations to be done with floating-
    point types.  It's faster, and the SQL standard says we may implement these
    functions any way we want.
    
    Additionally, use a form of variance calculation that is not subject to 
    catastrophic cancellation.   
    http://static.flickr.com/108/311308512_5c4e1c0c3d_b.jpg

  sql/item_sum.h@1.102.3.1, 2006-12-22 15:37:35-05:00, cmiller@zippy.cornsilk.net +14 -6
    Remove unused members and add a comment describing the recurrence relation.

ChangeSet@1.2343.56.6, 2006-12-22 13:57:33+01:00, msvensson@pilot.mysql.com +1 -0
  Add the missing file

  mysql-test/include/ndb_not_readonly.inc@1.1, 2006-12-22 13:57:31+01:00, msvensson@pilot.mysql.com +31 -0
    New BitKeeper file ``mysql-test/include/ndb_not_readonly.inc''

  mysql-test/include/ndb_not_readonly.inc@1.0, 2006-12-22 13:57:31+01:00, msvensson@pilot.mysql.com +0 -0

ChangeSet@1.2343.56.5, 2006-12-22 13:34:23+01:00, msvensson@pilot.mysql.com +2 -0
  Wait for mysqld connected to NDB to come out of read only mode

  mysql-test/include/have_multi_ndb.inc@1.5, 2006-12-22 13:34:21+01:00, msvensson@pilot.mysql.com +4 -0
    Wait for mysqld connected to NDB to come out of read only mode

  mysql-test/include/have_ndb.inc@1.13, 2006-12-22 13:34:21+01:00, msvensson@pilot.mysql.com +4 -0
    Wait for mysqld connected to NDB to come out of read only mode

ChangeSet@1.1616.2917.1, 2006-12-22 15:30:37+03:00, kaa@polly.local +5 -0
  Fix for the bug #24037 "Lossy Hebrew to Unicode conversion".
  
  Added definitions for the following Hebrew characters as specified by the ISO/IEC 8859-8:1999:
  
  LEFT-TO-RIGHT MARK (LRM)
  RIGHT-TO-LEFT MARK (RLM)

  mysql-test/r/ctype_hebrew.result@1.1, 2006-12-22 15:30:34+03:00, kaa@polly.local +11 -0
    Added the test case for bug #24037 "Lossy Hebrew to Unicode conversion"

  mysql-test/r/ctype_hebrew.result@1.0, 2006-12-22 15:30:34+03:00, kaa@polly.local +0 -0

  mysql-test/t/ctype_hebrew.test@1.1, 2006-12-22 15:30:35+03:00, kaa@polly.local +16 -0
    Added the test case for bug #24037 "Lossy Hebrew to Unicode conversion"

  mysql-test/t/ctype_hebrew.test@1.0, 2006-12-22 15:30:35+03:00, kaa@polly.local +0 -0

  sql/share/charsets/hebrew.xml@1.5, 2006-12-22 15:30:34+03:00, kaa@polly.local +2 -2
    Added definitions for the following Hebrew characters as specified by the ISO/IEC 8859-8:1999:
    
    LEFT-TO-RIGHT MARK (LRM)
    RIGHT-TO-LEFT MARK (RLM)

  strings/conf_to_src.c@1.13.1.4, 2006-12-22 15:30:34+03:00, kaa@polly.local +8 -1
    Added a warning comment in the generated C source file.

  strings/ctype-extra.c@1.17.1.4, 2006-12-22 15:30:34+03:00, kaa@polly.local +12 -4
    Re-generated from sql/share/charsets/hebrew.xml

ChangeSet@1.2343.56.4, 2006-12-22 12:35:06+01:00, msvensson@pilot.mysql.com +1 -0
  Potential use of NULL pointer in 'plugin_for_each_with_mask', check pointer
  before referencing it.

  sql/sql_plugin.cc@1.36.4.2, 2006-12-22 12:35:04+01:00, msvensson@pilot.mysql.com +1 -1
    Make sure the plugin being refernced in the plugins array has not been set to NULL already.

ChangeSet@1.2343.21.23, 2006-12-22 12:27:26+01:00, msvensson@pilot.mysql.com +1 -0
  Potential use of NULL pointer in 'plugin_for_each_with_mask', check pointer
  before referencing it.

  sql/sql_plugin.cc@1.36.1.8, 2006-12-22 12:27:25+01:00, msvensson@pilot.mysql.com +1 -1
    Make sure the plugin being refernced in the plugins array has not been set to NULL already.

ChangeSet@1.2343.21.21, 2006-12-22 12:14:12+01:00, msvensson@pilot.mysql.com +1 -0
  Cset exclude: msvensson@neptunus.(none)|ChangeSet|20061220175325|03033

  sql/sql_plugin.cc@1.36.1.6, 2006-12-22 12:14:11+01:00, msvensson@pilot.mysql.com +0 -0
    Exclude

ChangeSet@1.2343.57.1, 2006-12-22 12:12:58+01:00, msvensson@pilot.mysql.com +1 -0
  Bug#22694 "function plugin_foreach_with_mask() uses an uninitialized pointer"
     Fix uninitialized memory.

  sql/sql_plugin.cc@1.36.4.1, 2006-12-22 12:12:57+01:00, msvensson@pilot.mysql.com +10 -9
    move my_alloca() call out of nested stack frame.
    ensure that every element of array is initialized.

ChangeSet@1.2343.35.4, 2006-12-22 12:09:44+01:00, mats@romeo.(none) +1 -0
  BUG#22864 (CREATE-SELECT does not work correctly):
  Post-merge fixes.

  sql/log.cc@1.251, 2006-12-22 12:09:35+01:00, mats@romeo.(none) +0 -2
    Removing HAVE_ROW_BASED_REPLICATION from file.

ChangeSet@1.1810.2454.2, 2006-12-22 10:20:20+01:00, msvensson@pilot.mysql.com +1 -0
  Cset exclude: msvensson@neptunus.(none)|ChangeSet|20061215122345|24188

  mysql-test/t/rpl_openssl.test@1.11.1.8, 2006-12-22 10:20:13+01:00, msvensson@pilot.mysql.com +0 -0
    Exclude

ChangeSet@1.1616.2916.1, 2006-12-22 09:59:41+01:00, msvensson@pilot.mysql.com +1 -0
  Set default number of masters to 1

  mysql-test/mysql-test-run.pl@1.8.9.113, 2006-12-22 09:59:40+01:00, msvensson@pilot.mysql.com +1 -1
    Set default number of masters to 1

ChangeSet@1.2343.22.8, 2006-12-22 11:43:04+04:00, bar@mysql.com +1 -0
  After merge fix

  mysql-test/t/mysqlbinlog.test@1.34, 2006-12-22 11:43:00+04:00, bar@mysql.com +5 -5
    After merge fix

ChangeSet@1.2363, 2006-12-21 22:38:54-05:00, patg@radha.patg.net +4 -0
  WL #3031
  
  * Various windows errors fixed
  * Increased max key length for federated

  include/my_time.h@1.24, 2006-12-21 22:38:41-05:00, patg@radha.patg.net +2 -1
    WL #3031
    
    Windows compile errors for some platforms. JBalint helped find this fix.

  sql/log_event.cc@1.252.1.9, 2006-12-21 22:38:42-05:00, patg@radha.patg.net +6 -6
    WL #3031
    
    Windows compile errors on some platforms. explicite casting.

  sql/sql_servers.cc@1.3, 2006-12-21 22:38:44-05:00, patg@radha.patg.net +3 -0
    WL #3031
    
    Add rwlock init to sql_servers to fix hang on windows.

  storage/federated/ha_federated.h@1.43, 2006-12-21 22:38:44-05:00, patg@radha.patg.net +2 -1
    WL #3031
    
    Increase max key length to innodb's max (Cisco fix)

ChangeSet@1.1810.2371.30, 2006-12-22 00:38:34+01:00, msvensson@pilot.mysql.com +5 -0
  Bug #23125 [patch] trigger test fails when run as root
   - Skip tests using chmod when running as root

  mysql-test/t/information_schema_chmod.test@1.3, 2006-12-22 00:38:30+01:00, msvensson@pilot.mysql.com +2 -2
    Use mysqltest builtin "chmode"

  mysql-test/t/mysqltest.test@1.24.1.26, 2006-12-22 00:38:30+01:00, msvensson@pilot.mysql.com +3 -0
    Dont run as root - test chmod

  mysql-test/t/rpl_rotate_logs.test@1.63.2.1, 2006-12-22 00:38:30+01:00, msvensson@pilot.mysql.com +5 -3
    Use mysqltest builtin "chmode"
    Use 'write_file' and 'chmod' instead of system

  mysql-test/t/trigger.test@1.34.13.1, 2006-12-22 00:38:30+01:00, msvensson@pilot.mysql.com +10 -4
    Don't run as root
    Use 'write_file' and 'chmod'

  mysql-test/t/varbinary.test@1.12, 2006-12-22 00:38:31+01:00, msvensson@pilot.mysql.com +4 -0
    Don't run as root

ChangeSet@1.1810.2371.29, 2006-12-22 00:05:40+01:00, msvensson@pilot.mysql.com +1 -0
  Bug#24148 regression tests hang with SSL enabled
   - Don't call SSL_shutdown a second time

  vio/viossl.c@1.34.2.5, 2006-12-22 00:05:39+01:00, msvensson@pilot.mysql.com +9 -5
    SSL_shutdown might return 0 indicating that it should be called once
    again for a graceful shutdown. Since the socket are going to be closed
    anyway ther is no need for the second call.

ChangeSet@1.2343.51.5, 2006-12-21 16:43:11+01:00, msvensson@pilot.mysql.com +1 -0
  Add call to 'thd::clean_up' before deleting THD

  sql/ha_ndbcluster_binlog.cc@1.94, 2006-12-21 16:43:09+01:00, msvensson@pilot.mysql.com +1 -1
    Add call to 'thd::clean_up' before deleting THD

ChangeSet@1.1810.2453.1, 2006-12-21 13:35:41+01:00, joerg@trift2. +1 -0
  configure.in  :  Update of the NDB version number was missing, do it.

  configure.in@1.245.71.7, 2006-12-21 13:35:38+01:00, joerg@trift2. +1 -1
    Fix an omission: Version number for NDB is still kept separate (up to 5.0)
    and must be changed in sync with the general version number in AM_INIT_AUTOMAKE.

ChangeSet@1.2303.251.1, 2006-12-21 09:29:02+01:00, mats@romeo.(none) +10 -0
  BUG#22864 (Rollback following CREATE... SELECT discards 'CREATE TABLE'
  from log):
  When row-based logging is used, the CREATE-SELECT is written as two
  parts: as a CREATE TABLE statement and as the rows for the table. For
  both transactional and non-transactional tables, the CREATE TABLE
  statement was written to the transaction cache, as were the rows, and
  on statement end, the entire transaction cache was written to the binary
  log if the table was non-transactional. For transactional tables, the
  events were kept in the transaction cache until end of transaction (or
  statement that were not part of a transaction).
  
  For the case when AUTOCOMMIT=0 and we are creating a transactional table
  using a create select, we would then keep the CREATE TABLE statement and
  the rows for the CREATE-SELECT, while executing the following statements.
  On a rollback, the transaction cache would then be cleared, which would
  also remove the CREATE TABLE statement. Hence no table would be created
  on the slave, while there is an empty table on the master.
  
  This relates to BUG#22865 where the table being created exists on the
  master, but not on the slave during insertion of rows into the newly
  created table. This occurs since the CREATE TABLE statement were still
  in the transaction cache until the statement finished executing, and
  possibly longer if the table was transactional.
  
  This patch changes the behaviour of the CREATE-SELECT statement by
  adding an implicit commit at the end of the statement when creating
  non-temporary tables. Hence, non-temporary tables will be written to the
  binary log on completion, and in the even of AUTOCOMMIT=0, a new
  transaction will be started. Temporary tables do not commit an ongoing
  transaction: neither as a pre- not a post-commit.
  
  The events for both transactional and non-transactional tables are
  saved in the transaction cache, and written to the binary log at end
  of the statement.

  mysql-test/r/rpl_row_create_table.result@1.8, 2006-12-21 09:28:56+01:00, mats@romeo.(none) +190 -1
    Result change

  mysql-test/t/rpl_row_create_table-slave.opt@1.1, 2006-12-21 09:28:57+01:00, mats@romeo.(none) +1 -0
    New BitKeeper file ``mysql-test/t/rpl_row_create_table-slave.opt''

  mysql-test/t/rpl_row_create_table-slave.opt@1.0, 2006-12-21 09:28:57+01:00, mats@romeo.(none) +0 -0

  mysql-test/t/rpl_row_create_table.test@1.8, 2006-12-21 09:28:56+01:00, mats@romeo.(none) +117 -8
    Requring InnoDB for slave as well.
    Adding test CREATE-SELECT that is rolled back explicitly.
    Changing binlog positions.

  sql/log.cc@1.237.6.1, 2006-12-21 09:28:56+01:00, mats@romeo.(none) +129 -29
    Adding helper class to handle lock/unlock of mutexes using RAII.
    Factoring out code into write_cache() function to transaction cache
      to binary log.
    Adding function THD::binlog_flush_transaction_cache() to flush the
      transaction cache to the binary log file.
    Factoring out code into binlog_set_stmt_begin() to set the beginning
      of statement savepoint.
    Clearing before statement point when transaction cache is truncated
     so that these points are out of range.

  sql/log.h@1.16.2.1, 2006-12-21 09:28:56+01:00, mats@romeo.(none) +2 -0
    Adding method MYSQL_BIN_LOG::write_cache()

  sql/log_event.h@1.136.1.1, 2006-12-21 09:28:56+01:00, mats@romeo.(none) +9 -3
    Replicating OPTION_NOT_AUTOCOMMIT flag (see changeset comment)

  sql/mysql_priv.h@1.448.10.1, 2006-12-21 09:28:56+01:00, mats@romeo.(none) +33 -33
    Although left-shifting signed integer values is well-defined,
    it has potential for strange errors. Using unsigned long long
    instead of signed long long since this is the type of the options
    flags.

  sql/slave.cc@1.288.3.1, 2006-12-21 09:28:57+01:00, mats@romeo.(none) +6 -0
    Adding printout of transaction-critical thread flags.

  sql/sql_class.h@1.320.8.1, 2006-12-21 09:28:57+01:00, mats@romeo.(none) +2 -0
    Adding function THD::binlog_flush_transaction_cache()
    Adding function THD::binlog_set_stmt_begin()

  sql/sql_insert.cc@1.230.6.1, 2006-12-21 09:28:57+01:00, mats@romeo.(none) +75 -19
    Adding code to cache events for a CREATE-SELECT statement.
    Disabling binlog for SBR (but not RBR) when sending error for select part
    of CREATE-SELECT statement.
    Adding implicit commit at end of statement for non-temporary tables.

ChangeSet@1.2343.53.4, 2006-12-20 17:11:47-07:00, tsmith@siva.hindu.god +2 -0
  Post-merge fix (related to bug 24200 changes)

  sql/mysqld.cc@1.576.26.2, 2006-12-20 17:11:44-07:00, tsmith@siva.hindu.god +3 -1
    Post-merge fix

  sql/set_var.cc@1.188.16.2, 2006-12-20 17:11:44-07:00, tsmith@siva.hindu.god +2 -1
    Post-merge fix

ChangeSet@1.1616.2900.12, 2006-12-20 23:44:53+01:00, msvensson@neptunus.(none) +2 -0
  Count number of masters the test is actually using and only start as
  many as neeeded

  mysql-test/lib/mtr_cases.pl@1.6.2.16, 2006-12-20 23:44:51+01:00, msvensson@neptunus.(none) +2 -5
    Count number of masters the test is actually using and only start as
    many as neeeded

  mysql-test/mysql-test-run.pl@1.8.9.112, 2006-12-20 23:44:51+01:00, msvensson@neptunus.(none) +20 -6
    Count number of masters the test is actually using and only start as
    many as neeeded

ChangeSet@1.2343.52.2, 2006-12-20 22:57:23+01:00, msvensson@neptunus.(none) +2 -0
  Improve ndb thread shutdown handling

  sql/ha_ndbcluster.cc@1.378.1.1, 2006-12-20 22:57:20+01:00, msvensson@neptunus.(none) +35 -4
    Make 'ndbcluster_end' wait for thread created by 'ndbluster_init'

  sql/ha_ndbcluster_binlog.cc@1.91.1.1, 2006-12-20 22:57:21+01:00, msvensson@neptunus.(none) +23 -30
    Make 'ndbcluster_binlog_end' wait for thread created by 'ndbcluster_binlog_start'

ChangeSet@1.2362, 2006-12-20 13:40:58-05:00, patg@radha.patg.net +2 -0
  WL #3031
  
  fixing pushbuild warnings and errors

  sql/sql_servers.cc@1.2, 2006-12-20 13:40:48-05:00, patg@radha.patg.net +8 -9
    WL# 3031
    
    Cleaning up compile warnings on various platforms that I found with pushbuild

  storage/federated/ha_federated.cc@1.90.1.2, 2006-12-20 13:40:49-05:00, patg@radha.patg.net +4 -5
    WL# 3031
    
    Cleaning up compile warnings on various platforms that I found with pushbuild,
    error on windows

ChangeSet@1.1616.2903.6, 2006-12-20 17:42:44+01:00, df@kahlann.erinye.com +1 -0
  BUG#20061 build script can not detect my cpu

  BUILD/check-cpu@1.12.1.2, 2006-12-20 17:42:42+01:00, df@kahlann.erinye.com +27 -3
    add a handful of Celeroni and automatic fallback to uname if /proc/cpuinfo is there but we don't understand the information in it

ChangeSet@1.1616.2900.11, 2006-12-20 16:54:37+01:00, msvensson@neptunus.(none) +1 -0
  When running with --valgrind and --debug send all the output from
  mysqld and valgrind to tracefile.

  mysql-test/mysql-test-run.pl@1.8.9.111, 2006-12-20 16:54:36+01:00, msvensson@neptunus.(none) +13 -0
    When running with --valgrind and --debug send all the output from
    mysqld and valgrind to tracefile.

ChangeSet@1.1616.2900.10, 2006-12-20 16:53:06+01:00, msvensson@neptunus.(none) +1 -0
  Add possibility to activate --mark-progress of mysqltest

  mysql-test/mysql-test-run.pl@1.8.9.110, 2006-12-20 16:53:01+01:00, msvensson@neptunus.(none) +7 -0
    Add possibility to activate --mark-progress of mysqltest

ChangeSet@1.1616.2914.1, 2006-12-20 19:05:35+04:00, svoj@mysql.com +4 -0
  BUG#21310 - Trees in SQL causing a "crashed" table with MyISAM storage engine
  
  An update that used a join of a table to itself and modified the
  table on one side of the join reported the table as crashed or
  updated wrong rows.
  
  Fixed by creating temporary table for self-joined multi update statement.

  mysql-test/r/myisam.result@1.45.10.1, 2006-12-20 19:05:34+04:00, svoj@mysql.com +16 -0
    A test case for BUG#21310.

  mysql-test/t/myisam.test@1.33.12.1, 2006-12-20 19:05:34+04:00, svoj@mysql.com +19 -0
    A test case for BUG#21310.

  sql/lock.cc@1.42.1.26, 2006-12-20 19:05:34+04:00, svoj@mysql.com +1 -1
    Exclude 'table' param from check.

  sql/sql_update.cc@1.83.22.1, 2006-12-20 19:05:34+04:00, svoj@mysql.com +59 -72
    Disabling record cache for self-joined multi update statement is wrong.
    The join must only see the table as it was at the beginning of the statement.
    safe_update_on_fly check if it is safe to update first table on the fly, that is
    not creating temporary table. It is possible in case a row from this table is
    never read more than once. safe_update_on_fly now detect self-joined table and
    refuse to update this table on the fly.

ChangeSet@1.2343.51.1, 2006-12-20 15:34:45+01:00, tomas@poseidon. +3 -0
  Bug #21806: wrong ndb binlog behaviour when cluster disconnects/restarts
  - latest gci is reinitialized to 0 at reconnect, ndb binlog thread needs to wait until valid gci is retrieved

  mysql-test/r/ndb_binlog_discover.result@1.4, 2006-12-20 15:34:37+01:00, tomas@poseidon. +1 -1
    Bug #21806: wrong ndb binlog behaviour when cluster disconnects/restarts
    - latest gci is reinitialized to 0 at reconnect, ndb binlog thread needs to wait until valid gci is retrieved

  mysql-test/t/disabled.def@1.175.1.47, 2006-12-20 15:34:37+01:00, tomas@poseidon. +2 -2
    Bug #21806: wrong ndb binlog behaviour when cluster disconnects/restarts
    - latest gci is reinitialized to 0 at reconnect, ndb binlog thread needs to wait until valid gci is retrieved

  sql/ha_ndbcluster_binlog.cc@1.92, 2006-12-20 15:34:37+01:00, tomas@poseidon. +1 -1
    Bug #21806: wrong ndb binlog behaviour when cluster disconnects/restarts
    - latest gci is reinitialized to 0 at reconnect, ndb binlog thread needs to wait until valid gci is retrieved

ChangeSet@1.1616.2881.30, 2006-12-20 15:32:02+01:00, istruewing@chilla.local +4 -0
  Bug#25213 - Compiler warnings in MyISAM code
  
  Compiler warnings due to non-matching conversion
  specifications in format strings in DBUG_PRINT calls,
  due to non-used parameters (in non-debug mode), and
  due to seemingly uninitialized variables.
  
  Initialized variables, declared parameters unused, and
  casted DBUG_PRINT arguments to get rid of warnings.

  myisam/mi_range.c@1.12.1.2, 2006-12-20 15:32:00+01:00, istruewing@chilla.local +1 -0
    Bug#25213 - Compiler warnings in MyISAM code
    Initialized a variable to get rid of a compiler warning.

  myisam/mi_test1.c@1.23.1.1, 2006-12-20 15:32:00+01:00, istruewing@chilla.local +1 -1
    Bug#25213 - Compiler warnings in MyISAM code
    Declared an parameter unused to get rid of warnings.

  myisam/mi_write.c@1.46.2.1, 2006-12-20 15:32:00+01:00, istruewing@chilla.local +11 -7
    Bug#25213 - Compiler warnings in MyISAM code
    Initialized a variable to get rid of a compiler warning.
    Casted arguments to DBUG_PRINT to match them with their
    format string conversion specification.

  myisam/rt_split.c@1.11.4.2, 2006-12-20 15:32:00+01:00, istruewing@chilla.local +4 -0
    Bug#25213 - Compiler warnings in MyISAM code
    Initialized variables to get rid of compiler warnings.

ChangeSet@1.1616.2881.29, 2006-12-20 15:18:09+01:00, istruewing@chilla.local +1 -0
  Bug#25208 - Warnings in mi_packrec.c
  
  Compiler warnings due to non-matching conversion
  specifications in format strings in DBUG_PRINT calls.
  
  Fixed DBUG_PRINT format specifiactions.

  myisam/mi_packrec.c@1.25.1.7, 2006-12-20 15:18:08+01:00, istruewing@chilla.local +7 -6
    Bug#25208 - Warnings in mi_packrec.c
    Fixed DBUG_PRINT format specifiactions.

ChangeSet@1.2343.21.17, 2006-12-20 15:15:26+01:00, mskold@mysql.com +6 -0
  ndb_dd_ddl.test, ndb_dd_ddl.result, ha_ndbcluster.cc:
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: disallowed TABLESPACE declaration for STORAGE MEMORY
  Makefile:
    Rename: storage/ndb/ndbapi-examples/mgmapi_logevent_dual/Makefile -> storage/ndb/ndbapi-examples/mgmapi_logevent2/Makefile
  mgmapi_logevent2.cpp:
    Rename: storage/ndb/ndbapi-examples/mgmapi_logevent_dual/mgmapi_logevent_dual.cpp -> storage/ndb/ndbapi-examples/mgmapi_logevent_dual/mgmapi_logevent2.cpp
  Makefile:
    Rename mgmapi_logevent_dual to mgmapi_logevent2
  mgmapi_logevent2.cpp:
    Rename: storage/ndb/ndbapi-examples/mgmapi_logevent_dual/mgmapi_logevent2.cpp -> storage/ndb/ndbapi-examples/mgmapi_logevent2/mgmapi_logevent2.cpp

  mysql-test/r/ndb_dd_ddl.result@1.12.1.1, 2006-12-20 15:05:22+01:00, mskold@mysql.com +5 -0
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: disallowed TABLESPACE declaration for STORAGE MEMORY

  mysql-test/t/ndb_dd_ddl.test@1.12, 2006-12-20 15:05:22+01:00, mskold@mysql.com +9 -0
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: disallowed TABLESPACE declaration for STORAGE MEMORY

  sql/ha_ndbcluster.cc@1.381, 2006-12-20 15:05:22+01:00, mskold@mysql.com +10 -0
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: disallowed TABLESPACE declaration for STORAGE MEMORY

  storage/ndb/ndbapi-examples/Makefile@1.11, 2006-12-20 14:05:32+01:00, mskold@mysql.com +1 -1
    Rename mgmapi_logevent_dual to mgmapi_logevent2

  storage/ndb/ndbapi-examples/mgmapi_logevent2/Makefile@1.3, 2006-12-20 14:05:32+01:00, mskold@mysql.com +1 -1
    Rename mgmapi_logevent_dual to mgmapi_logevent2

  storage/ndb/ndbapi-examples/mgmapi_logevent2/Makefile@1.2, 2006-12-20 13:53:56+01:00, mskold@mysql.com +0 -0
    Rename: storage/ndb/ndbapi-examples/mgmapi_logevent_dual/Makefile -> storage/ndb/ndbapi-examples/mgmapi_logevent2/Makefile

  storage/ndb/ndbapi-examples/mgmapi_logevent2/mgmapi_logevent2.cpp@1.3, 2006-12-20 13:53:56+01:00, mskold@mysql.com +0 -0
    Rename: storage/ndb/ndbapi-examples/mgmapi_logevent_dual/mgmapi_logevent2.cpp -> storage/ndb/ndbapi-examples/mgmapi_logevent2/mgmapi_logevent2.cpp

  storage/ndb/ndbapi-examples/mgmapi_logevent_dual/mgmapi_logevent2.cpp@1.2, 2006-12-20 13:52:21+01:00, mskold@mysql.com +0 -0
    Rename: storage/ndb/ndbapi-examples/mgmapi_logevent_dual/mgmapi_logevent_dual.cpp -> storage/ndb/ndbapi-examples/mgmapi_logevent_dual/mgmapi_logevent2.cpp

ChangeSet@1.1810.2442.10, 2006-12-20 13:23:33+01:00, df@kahlann.erinye.com +1 -0
  add file to VC++ project file
  TAG: mysql-5.0.32

  VC++Files/mysys/mysys.vcproj@1.2.3.1, 2006-12-20 13:23:31+01:00, df@kahlann.erinye.com +43 -0
    add my_getpagesize.c to mysys.vcproj

ChangeSet@1.1810.2448.7, 2006-12-20 11:13:16+01:00, joerg@trift2. +1 -0
  Fix silly typos in the disabling of "im_daemon_life_cycle" (bug#24415).

  mysql-test/t/disabled.def@1.2.9.2, 2006-12-20 11:13:13+01:00, joerg@trift2. +1 -1
    Fix silly typos in the disabling of "im_daemon_life_cycle" (bug#24415).

ChangeSet@1.1810.2450.2, 2006-12-20 10:54:41+01:00, joerg@trift2. +1 -0
  Disable test "im_deamon_life_cycle", Bug#24425, see note: [19 Dec 23:17] Trudy Pelzer

  mysql-test/t/disabled.def@1.2.9.1, 2006-12-20 10:54:38+01:00, joerg@trift2. +1 -0
    Disable test "im_deamon_life_cycle", Bug#24425, see note: [19 Dec 23:17] Trudy Pelzer

ChangeSet@1.1810.2450.1, 2006-12-19 20:17:33-07:00, tsmith@siva.hindu.god +3 -0
  Remove warnings by casting

  cmd-line-utils/readline/histfile.c@1.9.1.2, 2006-12-19 20:17:30-07:00, tsmith@siva.hindu.god +2 -1
    Remove warning (compare signed & unsigned)

  sql/udf_example.c@1.29.1.4, 2006-12-19 20:17:30-07:00, tsmith@siva.hindu.god +1 -1
    Remove warning (cast integer to pointer of different size)

  strings/decimal.c@1.65.3.3, 2006-12-19 20:17:30-07:00, tsmith@siva.hindu.god +1 -1
    Remove warning (%lx format, double arg)

ChangeSet@1.1810.2448.2, 2006-12-19 17:42:26-07:00, tsmith@siva.hindu.god +1 -0
  Alternative decimal2double implementation using an algorithm
  more similar to my_strtod() (and maybe even a bit faster due
  to less floating point divisions).
  
  This should at least partially fix Bug #23260 for DECIMALs
  with a moderate number of total digits.
  

  strings/decimal.c@1.65.3.2, 2006-12-19 17:42:24-07:00, tsmith@siva.hindu.god +27 -9
    Alternative decimal2double implementation using an algorithm
    more similar to my_strtod() (and maybe even a bit faster due
    to less floating point divisions).
    
    This should at least partially fix Bug #23260 for DECIMALs
    with a moderate number of total digits.
    

ChangeSet@1.1810.2449.1, 2006-12-19 16:57:51-07:00, tsmith@siva.hindu.god +13 -0
  Added innodb_rollback_on_timeout option to restore the 4.1 
  InnoDB timeout behavior (Bug #24200)

  mysql-test/include/innodb_rollback_on_timeout.inc@1.1, 2006-12-19 16:57:48-07:00, tsmith@siva.hindu.god +37 -0
    Added innodb_rollback_on_timeout option to restore the 4.1 
    InnoDB timeout behavior (Bug #24200)

  mysql-test/include/innodb_rollback_on_timeout.inc@1.0, 2006-12-19 16:57:48-07:00, tsmith@siva.hindu.god +0 -0

  mysql-test/t/innodb_mysql.test@1.3.17.1, 2006-12-19 16:57:47-07:00, tsmith@siva.hindu.god +2 -0
    Added innodb_rollback_on_timeout option to restore the 4.1 
    InnoDB timeout behavior (Bug #24200)

  mysql-test/r/innodb_mysql.result@1.3.4.10, 2006-12-19 16:57:47-07:00, tsmith@siva.hindu.god +36 -0
    Added innodb_rollback_on_timeout option to restore the 4.1 
    InnoDB timeout behavior (Bug #24200)

  mysql-test/r/innodb_timeout_rollback.result@1.1, 2006-12-19 16:57:48-07:00, tsmith@siva.hindu.god +35 -0
    Added innodb_rollback_on_timeout option to restore the 4.1 
    InnoDB timeout behavior (Bug #24200)

  mysql-test/r/innodb_timeout_rollback.result@1.0, 2006-12-19 16:57:48-07:00, tsmith@siva.hindu.god +0 -0

  mysql-test/t/innodb_mysql-master.opt@1.1, 2006-12-19 16:57:48-07:00, tsmith@siva.hindu.god +1 -0
    Set --innodb-lock-wait-timeout=2, since test for bug #24200 times out.
    
    This *could* cause random test failures if some long-running transaction concurrency is being tested.  However, such a test really should go in innodb-big or some other test file.
    

  mysql-test/t/innodb_mysql-master.opt@1.0, 2006-12-19 16:57:48-07:00, tsmith@siva.hindu.god +0 -0

  mysql-test/t/innodb_timeout_rollback-master.opt@1.1, 2006-12-19 16:57:48-07:00, tsmith@siva.hindu.god +1 -0
    Added innodb_rollback_on_timeout option to restore the 4.1 
    InnoDB timeout behavior (Bug #24200)

  mysql-test/t/innodb_timeout_rollback-master.opt@1.0, 2006-12-19 16:57:48-07:00, tsmith@siva.hindu.god +0 -0

  mysql-test/t/innodb_timeout_rollback.test@1.1, 2006-12-19 16:57:48-07:00, tsmith@siva.hindu.god +5 -0
    Added innodb_rollback_on_timeout option to restore the 4.1 
    InnoDB timeout behavior (Bug #24200)

  mysql-test/t/innodb_timeout_rollback.test@1.0, 2006-12-19 16:57:48-07:00, tsmith@siva.hindu.god +0 -0

  sql/mysqld.cc@1.439.1.144, 2006-12-19 16:57:48-07:00, tsmith@siva.hindu.god +6 -1
    Added innodb_rollback_on_timeout option to restore the 4.1 
    InnoDB timeout behavior (Bug #24200)

  sql/set_var.cc@1.125.20.1, 2006-12-19 16:57:48-07:00, tsmith@siva.hindu.god +1 -0
    Added innodb_rollback_on_timeout option to restore the 4.1 
    InnoDB timeout behavior (Bug #24200)

  sql/ha_innodb.cc@1.202.34.2, 2006-12-19 16:57:47-07:00, tsmith@siva.hindu.god +7 -0
    Added innodb_rollback_on_timeout option to restore the 4.1 
    InnoDB timeout behavior (Bug #24200)

  sql/ha_innodb.h@1.93.3.1, 2006-12-19 16:57:48-07:00, tsmith@siva.hindu.god +1 -0
    Added innodb_rollback_on_timeout option to restore the 4.1 
    InnoDB timeout behavior (Bug #24200)

  innobase/include/row0mysql.h@1.39.6.1, 2006-12-19 16:57:47-07:00, tsmith@siva.hindu.god +2 -0
    Added innodb_rollback_on_timeout option to restore the 4.1 
    InnoDB timeout behavior (Bug #24200)

  innobase/row/row0mysql.c@1.103.20.1, 2006-12-19 16:57:47-07:00, tsmith@siva.hindu.god +10 -1
    Added innodb_rollback_on_timeout option to restore the 4.1 
    InnoDB timeout behavior (Bug #24200)

ChangeSet@1.1810.2448.1, 2006-12-19 15:54:12-07:00, tsmith@siva.hindu.god +3 -0
  Bug #24947: REPEAT function returns NULL when passed a field as the count parameter
  
  Handling of large signed/unsigned values was not consistent, so some string functions could return bogus results.
  The current fix is to simply patch up the val_str() methods for those string items.
  It would be good clean this code up in general, to make similar problems much harder to make.  This is left as an exercise for the reader.

  mysql-test/r/func_str.result@1.110.1.14, 2006-12-19 15:54:09-07:00, tsmith@siva.hindu.god +12 -0
    Update test results for bug #24947

  mysql-test/t/func_str.test@1.92.1.6, 2006-12-19 15:54:09-07:00, tsmith@siva.hindu.god +8 -0
    Add test case for bug #24947

  sql/item_strfunc.cc@1.261.18.1, 2006-12-19 15:54:09-07:00, tsmith@siva.hindu.god +19 -20
    Adjust some string function Items' val_str() methods to handle large signed/unsigned arguments properly

ChangeSet@1.2343.50.2, 2006-12-19 23:20:43+01:00, mskold@mysql.com +10 -0
  bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: ALTER TABLE must specify STORAGE explicitely to change it, + post review changes

  include/my_base.h@1.94, 2006-12-19 23:19:14+01:00, mskold@mysql.com +8 -0
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: ALTER TABLE must specify STORAGE explicitely to change it, + post review changes

  mysql-test/r/ndb_dd_disk2memory.result@1.9, 2006-12-19 23:19:20+01:00, mskold@mysql.com +2 -2
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: ALTER TABLE must specify STORAGE explicitely to change it, + post review changes

  mysql-test/r/rpl_ndb_dd_advance.result@1.10, 2006-12-19 23:19:20+01:00, mskold@mysql.com +6 -6
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: ALTER TABLE must specify STORAGE explicitely to change it, + post review changes

  mysql-test/t/ndb_dd_disk2memory.test@1.4, 2006-12-19 23:19:19+01:00, mskold@mysql.com +1 -1
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: ALTER TABLE must specify STORAGE explicitely to change it, + post review changes

  sql/ha_ndbcluster.cc@1.380, 2006-12-19 23:19:18+01:00, mskold@mysql.com +5 -5
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: ALTER TABLE must specify STORAGE explicitely to change it, + post review changes

  sql/ha_ndbcluster.h@1.161, 2006-12-19 23:19:17+01:00, mskold@mysql.com +1 -1
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: ALTER TABLE must specify STORAGE explicitely to change it, + post review changes

  sql/handler.h@1.250, 2006-12-19 23:19:14+01:00, mskold@mysql.com +2 -2
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: ALTER TABLE must specify STORAGE explicitely to change it, + post review changes

  sql/sql_show.cc@1.379.2.2, 2006-12-19 23:19:17+01:00, mskold@mysql.com +2 -2
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: ALTER TABLE must specify STORAGE explicitely to change it, + post review changes

  sql/sql_table.cc@1.375.1.6, 2006-12-19 23:19:16+01:00, mskold@mysql.com +4 -4
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: ALTER TABLE must specify STORAGE explicitely to change it, + post review changes

  sql/sql_yacc.yy@1.521.3.1, 2006-12-19 23:19:15+01:00, mskold@mysql.com +4 -2
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: ALTER TABLE must specify STORAGE explicitely to change it, + post review changes

ChangeSet@1.2343.32.5, 2006-12-19 15:02:37-07:00, malff@weblab.(none) +2 -0
  Bug#25183 (Compiler warnings in the sql directory (GCC 4.1))
  Fixed compiler warnings.
  
  In set_var.cc, the code was not properly returning an error code
  if close_cached_tables() failed.
  
  In sql_tables.cc, the code was not returning properly an error code
  if lock_table_names() failed.
  
  Both cases are bugs, introduced in 5.1 only by recent changes.

  sql/set_var.cc@1.188.1.20, 2006-12-19 14:57:48-07:00, malff@weblab.(none) +1 -1
    Fixed build warnings:
    set_var.cc:3861: warning: 'result' may be used uninitialized in this function

  sql/sql_table.cc@1.375.2.1, 2006-12-19 14:57:48-07:00, malff@weblab.(none) +10 -3
    Fixed build warnings:
    sql_table.cc:5307: warning: 'error' may be used uninitialized in this function

ChangeSet@1.2343.50.1, 2006-12-19 15:53:46+01:00, mskold@mysql.com +7 -0
  bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: copy tablespace from old table in copying alter table

  mysql-test/r/ndb_dd_alter.result@1.3, 2006-12-19 15:53:11+01:00, mskold@mysql.com +10 -4
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: copy tablespace from old table in copying alter table

  mysql-test/t/ndb_dd_alter.test@1.3, 2006-12-19 15:53:11+01:00, mskold@mysql.com +4 -0
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: copy tablespace from old table in copying alter table

  sql/ha_ndbcluster.cc@1.379, 2006-12-19 15:53:10+01:00, mskold@mysql.com +8 -2
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: copy tablespace from old table in copying alter table

  sql/ha_ndbcluster.h@1.160, 2006-12-19 15:53:10+01:00, mskold@mysql.com +1 -1
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: copy tablespace from old table in copying alter table

  sql/handler.h@1.249, 2006-12-19 15:53:07+01:00, mskold@mysql.com +1 -1
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: copy tablespace from old table in copying alter table

  sql/sql_show.cc@1.379.2.1, 2006-12-19 15:53:09+01:00, mskold@mysql.com +2 -2
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: copy tablespace from old table in copying alter table

  sql/sql_table.cc@1.375.1.5, 2006-12-19 15:53:10+01:00, mskold@mysql.com +10 -1
    bug#24667  After ALTER TABLE operation ndb_dd table becomes regular ndb: copy tablespace from old table in copying alter table

ChangeSet@1.1616.2903.5, 2006-12-19 15:10:15+01:00, df@kahlann.erinye.com +6 -0
  remove hard-coded socket paths from some tests

  mysql-test/t/grant_cache.test@1.9.1.6, 2006-12-19 15:10:14+01:00, df@kahlann.erinye.com +7 -7
    replace hard-coded socket paths with variable containing the appropriate path

  mysql-test/t/myisam.test@1.33.11.1, 2006-12-19 15:10:14+01:00, df@kahlann.erinye.com +1 -1
    replace hard-coded socket paths with variable containing the appropriate path

  mysql-test/t/query_cache_notembedded.test@1.2.2.1, 2006-12-19 15:10:14+01:00, df@kahlann.erinye.com +2 -2
    replace hard-coded socket paths with variable containing the appropriate path

  mysql-test/t/rpl000017.test@1.11.1.2, 2006-12-19 15:10:14+01:00, df@kahlann.erinye.com +2 -2
    replace hard-coded socket paths with variable containing the appropriate path

  mysql-test/t/rpl000015.test@1.25.1.6, 2006-12-19 15:10:14+01:00, df@kahlann.erinye.com +2 -2
    replace hard-coded socket paths with variable containing the appropriate path

  mysql-test/t/rpl_rotate_logs.test@1.48.1.5, 2006-12-19 15:10:14+01:00, df@kahlann.erinye.com +2 -2
    replace hard-coded socket paths with variable containing the appropriate path

ChangeSet@1.2343.21.15, 2006-12-19 16:17:57+03:00, skozlov@mysql.com +2 -0
  WL#2862 ndb_sp.test - removed unnecessary line

  mysql-test/r/ndb_sp.result@1.2, 2006-12-19 16:17:50+03:00, skozlov@mysql.com +0 -1
    WL#2862

  mysql-test/t/ndb_sp.test@1.2, 2006-12-19 16:17:51+03:00, skozlov@mysql.com +0 -1
    WL#2862

ChangeSet@1.1810.2446.1, 2006-12-19 15:04:26+02:00, gkodinov@macbook.gmz +3 -0
  Bug #23578: Corruption prevents Optimize table from working properly with a
  spatial index
   While executing OPTIMIZE TABLE on MyISAM tables the server re-creates the
   index file(s) in order to sort them physically by the key. This cannot be 
   done for R-tree indexes as it makes no sense.
   The server was not checking the type of the index and was accessing an 
   R-tree index as if it was a B-tree.
   Fixed by preventing sorting the index file if it contains an R-tree index.  
   

  mysql-test/r/gis-rtree.result@1.14.1.9, 2006-12-19 15:04:20+02:00, gkodinov@macbook.gmz +11 -0
    Bug #23578: Corruption prevents Optimize table from working properly with a
    spatial index
     - test case

  mysql-test/t/gis-rtree.test@1.18.1.2, 2006-12-19 15:04:21+02:00, gkodinov@macbook.gmz +17 -0
    Bug #23578: Corruption prevents Optimize table from working properly with a
    spatial index
     - test case

  myisam/mi_check.c@1.129.20.1, 2006-12-19 15:04:20+02:00, gkodinov@macbook.gmz +8 -0
    Bug #23578: Corruption prevents Optimize table from working properly with a
    spatial index
     - disable sorting the index file if it contains an R-tree index.

ChangeSet@1.2361, 2006-12-19 08:02:55-05:00, patg@radha.patg.net +1 -0
  WL# 3031
  
  The final testcase needing new error codes. Really.

  mysql-test/r/rpl_row_tabledefs_2myisam.result@1.6.1.1, 2006-12-19 08:02:46-05:00, patg@radha.patg.net +4 -4
    WL #3031
    
    Ack! Another test needing new error code results

ChangeSet@1.2343.49.1, 2006-12-19 16:37:50+04:00, holyfoot@mysql.com +3 -0
  bug #22451 (Partitions: duplicating results with ENGINE=FEDERATED)
  
  As presently PARTITIONS + FEDERATED just doesn't work i added error message
  to inform user about that.
  Should be enabled again after releted WL's completion.

  mysql-test/r/partition_federated.result@1.1, 2006-12-19 16:37:45+04:00, holyfoot@mysql.com +6 -0
    result added

  mysql-test/r/partition_federated.result@1.0, 2006-12-19 16:37:45+04:00, holyfoot@mysql.com +0 -0

  mysql-test/t/partition_federated.test@1.1, 2006-12-19 16:37:45+04:00, holyfoot@mysql.com +21 -0
    test added

  mysql-test/t/partition_federated.test@1.0, 2006-12-19 16:37:45+04:00, holyfoot@mysql.com +0 -0

  storage/federated/ha_federated.cc@1.90.3.1, 2006-12-19 16:37:45+04:00, holyfoot@mysql.com +1 -1
    partitioning disabled in FEDERATED engine

ChangeSet@1.1810.2410.6, 2006-12-19 15:32:02+03:00, anozdrin@alik. +3 -0
  Fix for BUG#24293: '\Z' token is not handled correctly in views.
  
  If SELECT-part of CREATE VIEW statement contains '\Z',
  it is not handled correctly.
  
  The problem was in String::print().
  Symbol with code 032 (26) is replaced with '\z',
  which is not supported by the lexer.
  
  The fix is to replace the symbol with '\Z'.

  mysql-test/r/view.result@1.138.1.47, 2006-12-19 15:32:00+03:00, anozdrin@alik. +9 -0
    Update result file.

  mysql-test/t/view.test@1.126.1.45, 2006-12-19 15:32:01+03:00, anozdrin@alik. +15 -0
    Add test case for BUG#24293.

  sql/sql_string.cc@1.91.1.4, 2006-12-19 15:32:01+03:00, anozdrin@alik. +2 -2
    We should replace 032 with \Z, since lexer does not understand \z.

ChangeSet@1.2303.250.3, 2006-12-19 12:21:41+03:00, kaa@polly.local +1 -0
  Added copy_typelib() declaration to make ABI compatibility test happy

  include/mysql_h.ic@1.6.1.2, 2006-12-19 12:21:36+03:00, kaa@polly.local +11 -8
    Added copy_typelib() declaration to make ABI compatibility test happy

ChangeSet@1.1810.2437.2, 2006-12-19 11:21:14+03:00, kaa@polly.local +1 -0
  Added copy_typelib() declaration to make ABI compatibility test happy

  include/mysql_h.ic@1.3.2.1, 2006-12-19 11:21:12+03:00, kaa@polly.local +10 -8
    Added copy_typelib() declaration to make ABI compatibility test happy

ChangeSet@1.1616.2905.10, 2006-12-18 21:12:01-08:00, mtaylor@qualinost.(none) +1 -0
  Search through options to find where the slow query log actually is. 

  scripts/mysqldumpslow.sh@1.9, 2006-12-18 21:11:57-08:00, mtaylor@qualinost.(none) +8 -2
    Search through options to find where the slow query log actually is. 

ChangeSet@1.2359, 2006-12-18 18:08:38-08:00, trudy@linux.site +1 -0
  Updated file to use doxygen commenting style.

  storage/example/ha_example.cc@1.50, 2006-12-18 18:08:35-08:00, trudy@linux.site +243 -172
    Updated file to use doxygen commenting style.

ChangeSet@1.1810.2364.6, 2006-12-18 18:41:38-07:00, tsmith@siva.hindu.god +11 -0
  This ChangeSet must be null-merged to 5.1.
  
  Applied innodb-5.0-ss1040 and innodb-5.0-ss1099 snapshots.
  
  Bugs fixed:
  - Bug #21468: InnoDB crash during recovery with corrupted data pages: XA bug?
  - Bug #24299: Identifiers in foreign keys cannot contain U+0160, U+0360, ..., U+FF60
  - Bug #24386: Performance degradation caused by instrumentation in mutex_struct
  - Bug #24712: SHOW TABLE STATUS for file-per-table showing incorrect time fields

  innobase/dict/dict0dict.c@1.65.15.1, 2006-12-18 18:41:34-07:00, tsmith@siva.hindu.god +16 -13
    Applied innodb-5.0-ss1040 and innodb-5.0-ss1099 snapshots.
    
    Revision r1030:
    branches/5.0: Replace isspace() with a wrapper ib_isspace(), because on
    Win32 isspace(0xa0) appears to hold.  (Bug #24299)

  sql/ha_innodb.cc@1.202.32.1, 2006-12-18 18:41:35-07:00, tsmith@siva.hindu.god +29 -19
    Applied innodb-5.0-ss1040 and innodb-5.0-ss1099 snapshots.
    
    Revision r1040:
    branches/5.0: Port r1039 from trunk:
    
    Port r1034 from branches/zip: Remove some instrumentation and reduce
    the output of SHOW MUTEX STATUS in non-debug builds.  (Bug #24386)
    
    
    Revision r1099:
    branches/5.0: Merge revision 1098 from trunk: Fix bug #24712: SHOW TABLE
    STATUS for file-per-table showing incorrect time fields

  innobase/include/sync0rw.h@1.11.2.1, 2006-12-18 18:41:34-07:00, tsmith@siva.hindu.god +10 -4
    Applied innodb-5.0-ss1040 and innodb-5.0-ss1099 snapshots.
    
    Revision r1040:
    branches/5.0: Port r1039 from trunk:
    
    Port r1034 from branches/zip: Remove some instrumentation and reduce
    the output of SHOW MUTEX STATUS in non-debug builds.  (Bug #24386)

  innobase/include/sync0sync.h@1.22.3.1, 2006-12-18 18:41:34-07:00, tsmith@siva.hindu.god +20 -12
    Applied innodb-5.0-ss1040 and innodb-5.0-ss1099 snapshots.
    
    Revision r1040:
    branches/5.0: Port r1039 from trunk:
    
    Port r1034 from branches/zip: Remove some instrumentation and reduce
    the output of SHOW MUTEX STATUS in non-debug builds.  (Bug #24386)

  innobase/include/sync0sync.ic@1.18.1.1, 2006-12-18 18:41:34-07:00, tsmith@siva.hindu.god +2 -2
    Applied innodb-5.0-ss1040 and innodb-5.0-ss1099 snapshots.
    
    Revision r1040:
    branches/5.0: Port r1039 from trunk:
    
    Port r1034 from branches/zip: Remove some instrumentation and reduce
    the output of SHOW MUTEX STATUS in non-debug builds.  (Bug #24386)

  innobase/log/log0recv.c@1.46.9.1, 2006-12-18 18:41:34-07:00, tsmith@siva.hindu.god +10 -0
    Applied innodb-5.0-ss1040 and innodb-5.0-ss1099 snapshots.
    
    Revision r1076:
    branches/5.0: Remove the unintentionally committed change to univ.i in r1075.
    Fix assertion failure sync0sync.c line 1239
    (the latter ut_error in sync_thread_reset_level())
    in crash recovery when UNIV_SYNC_DEBUG is enabled.
    
    
    Revision r1079:
    branches/5.0: recv_recovery_from_checkpoint_finish(): Add 1 sec delay
    before switching on the sync order checks in crash recovery, so that
    file I/O threads have time to suspend themselves.

  innobase/srv/srv0start.c@1.80.16.1, 2006-12-18 18:41:34-07:00, tsmith@siva.hindu.god +0 -11
    Applied innodb-5.0-ss1040 and innodb-5.0-ss1099 snapshots.
    
    Revision r1075:
    branches/5.0: Fix assertion failure sync0sync.c line 1239
    (the latter ut_error in sync_thread_reset_level())
    in crash recovery when UNIV_SYNC_DEBUG is enabled.
    
    
    Revision r1077:
    branches/5.0: innobase_start_or_create_for_mysql(): Remove unnecessary delay
    now that we moved the setting sync_order_checks_on=TRUE to log0recv.c,
    to the start of the rollback phase in crash recovery.

  innobase/sync/sync0rw.c@1.19.2.1, 2006-12-18 18:41:35-07:00, tsmith@siva.hindu.god +8 -6
    Applied innodb-5.0-ss1040 and innodb-5.0-ss1099 snapshots.
    
    Revision r1040:
    branches/5.0: Port r1039 from trunk:
    
    Port r1034 from branches/zip: Remove some instrumentation and reduce
    the output of SHOW MUTEX STATUS in non-debug builds.  (Bug #24386)

  innobase/sync/sync0sync.c@1.34.4.1, 2006-12-18 18:41:35-07:00, tsmith@siva.hindu.god +19 -13
    Applied innodb-5.0-ss1040 and innodb-5.0-ss1099 snapshots.
    
    Revision r1040:
    branches/5.0: Port r1039 from trunk:
    
    Port r1034 from branches/zip: Remove some instrumentation and reduce
    the output of SHOW MUTEX STATUS in non-debug builds.  (Bug #24386)

  innobase/trx/trx0roll.c@1.26.2.1, 2006-12-18 18:41:35-07:00, tsmith@siva.hindu.god +19 -1
    Applied innodb-5.0-ss1040 and innodb-5.0-ss1099 snapshots.
    
    Revision r1067:
    branches/5.0: trx_rollback_for_mysql(), trx_commit_for_mysql():
    Protect the creation of trx_dummy_sess with kernel_mutex.
    This error was introduced in r1046 and r1050.
    
    
    Revision r1050:
    branches/5.0: trx_rollback_for_mysql(): Fix the comment introduced in r1046.
    
    trx_commit_for_mysql(): Use the dummy trx->sess also for committing a prepared
    transaction in XA recovery, just in case our code would need the session
    object also in that case (does not seem to need it right now).
    
    
    Revision r1048:
    branches/5.0: trx_rollback_for_mysql(): Do not set trx->sess back to NULL.
    This bug was introduced in r1046.
    
    
    Revision r1046:
    branches/5.0: trx_rollback_for_mysql(): Ensure that trx->sess is non-NULL
    when calling trx_general_rollback_for_mysql().  This removes a segmentation
    fault when rolling back a prepared transaction in XA recovery.  (Bug #21468)

  innobase/trx/trx0trx.c@1.54.9.1, 2006-12-18 18:41:35-07:00, tsmith@siva.hindu.god +18 -0
    Applied innodb-5.0-ss1040 and innodb-5.0-ss1099 snapshots.
    
    Revision r1067:
    branches/5.0: trx_rollback_for_mysql(), trx_commit_for_mysql():
    Protect the creation of trx_dummy_sess with kernel_mutex.
    This error was introduced in r1046 and r1050.
    
    
    Revision r1050:
    branches/5.0: trx_rollback_for_mysql(): Fix the comment introduced in r1046.
    
    trx_commit_for_mysql(): Use the dummy trx->sess also for committing a prepared
    transaction in XA recovery, just in case our code would need the session
    object also in that case (does not seem to need it right now).

ChangeSet@1.2358, 2006-12-18 17:16:40-08:00, trudy@linux.site +1 -0
  Added back missing closing brace at file-end.

  storage/example/ha_example.h@1.19, 2006-12-18 17:16:37-08:00, trudy@linux.site +1 -0
    Added back missing closing brace at file-end.

ChangeSet@1.2357, 2006-12-18 16:52:56-08:00, trudy@linux.site +1 -0
  Update file to use doxygen commenting style.

  storage/example/ha_example.cc@1.49, 2006-12-18 16:52:53-08:00, trudy@linux.site +1 -0
    Updated file to use doxygen commenting style.

ChangeSet@1.2356, 2006-12-18 14:28:15-08:00, trudy@linux.site +1 -0
  Updated file to use doxygen commenting style.

  storage/example/ha_example.h@1.18, 2006-12-18 14:26:31-08:00, trudy@linux.site +150 -56
    Updated file to use doxygen commenting style.

ChangeSet@1.2354.1.1, 2006-12-18 16:39:50-05:00, patg@radha.patg.net +4 -0
  WL# 3031
  
  - Added more test results for hard-coded error numbers
  - Fix for windows

  mysql-test/r/rpl_extraCol_myisam.result@1.2, 2006-12-18 14:59:37-05:00, patg@radha.patg.net +7 -7
    WL# 3031
    
    More result files for tests that have hard-coded error numbers (!!)

  mysql-test/r/rpl_ndb_extraCol.result@1.2, 2006-12-18 15:00:38-05:00, patg@radha.patg.net +7 -7
    WL# 3031
    
    More result files for tests that have hard-coded error numbers (!!)

  mysql-test/r/rpl_row_tabledefs_3innodb.result@1.3.1.1, 2006-12-18 15:01:39-05:00, patg@radha.patg.net +4 -4
    WL# 3031
    
    More result files for tests that have hard-coded error numbers (!!)

  sql/CMakeLists.txt@1.21.7.1, 2006-12-18 15:02:40-05:00, patg@radha.patg.net +1 -1
    WL# 3031
    
    Noticed windows build breaks, added sql_servers.cc to CMakeLists.txt

ChangeSet@1.2343.45.5, 2006-12-18 14:38:12+01:00, msvensson@maint1.mysql.com +1 -0
  Merge fix of updated test result

  mysql-test/r/symlink.result@1.33, 2006-12-18 14:38:09+01:00, msvensson@maint1.mysql.com +2 -2
    Merge fix of updated test result

ChangeSet@1.2343.45.3, 2006-12-18 14:12:19+01:00, msvensson@shellback. +1 -0
  Update function description for Event_queue::get_top_for_execution_if_time

  sql/event_queue.cc@1.19.1.4, 2006-12-18 14:12:15+01:00, msvensson@shellback. +0 -2
    Update function description for Event_queue::get_top_for_execution_if_time

ChangeSet@1.1616.2908.3, 2006-12-18 13:44:21+01:00, df@kahlann.erinye.com +1 -0
  Use a temporary directory for sockets if the socket path becomes too long.

  mysql-test/mysql-test-run.pl@1.8.19.1, 2006-12-18 13:44:20+01:00, df@kahlann.erinye.com +6 -0
    Use a temporary directory for sockets if the socket path becomes too long.

ChangeSet@1.2343.47.1, 2006-12-18 12:00:35+01:00, msvensson@shellback. +1 -0
  Reorganize the wait for event to be scheduled loop
  Only use "set_timespec" when there is a need to use it

  sql/event_queue.cc@1.19.2.1, 2006-12-18 12:00:31+01:00, msvensson@shellback. +35 -43
    Reorganize the wait for event to be scheduled loop
    Only use "set_timespec" when there is a need to use it

ChangeSet@1.1810.2444.1, 2006-12-18 11:51:45+01:00, joerg@trift2. +1 -0
  support-files/mysql.spec.sh
      Fix the move of "mysqlmanager" to section 8: Directory name was wrong.

  support-files/mysql.spec.sh@1.99.12.1, 2006-12-18 11:51:42+01:00, joerg@trift2. +5 -1
    Fix the move of "mysqlmanager" to section 8: Directory name was wrong.

ChangeSet@1.2343.46.1, 2006-12-18 14:39:23+04:00, holyfoot@mysql.com +3 -0
  bug #24502 (reorganize partition closes connection)
  
  when REORGANIZE creates new partition, no_subparts for that partition
  isn't set right (call handler::set_partitions_defaults always returns 1)
  Normally the number of subpartitions should be inherited from the
  table.

  mysql-test/r/partition.result@1.57, 2006-12-18 14:39:19+04:00, holyfoot@mysql.com +10 -0
    result fixed

  mysql-test/t/partition.test@1.51, 2006-12-18 14:39:19+04:00, holyfoot@mysql.com +16 -0
    testcase

  sql/sql_partition.cc@1.97, 2006-12-18 14:39:19+04:00, holyfoot@mysql.com +1 -0
    no_subparts is set for newly created partitions

ChangeSet@1.1810.2436.2, 2006-12-18 11:09:47+01:00, msvensson@shellback. +2 -0
  Change windows pthread_cond_timedwait to use an absolute time value 

  include/my_pthread.h@1.90.3.2, 2006-12-18 11:09:42+01:00, msvensson@shellback. +8 -6
    Calculate absolute time value int set_timespec_*

  mysys/my_wincond.c@1.8, 2006-12-18 11:09:43+01:00, msvensson@shellback. +10 -9
    Use absolute timevalue in pthread_cond_timedwwait

ChangeSet@1.2343.21.14, 2006-12-18 12:52:59+03:00, skozlov@mysql.com +2 -0
  fix for commit 1.2368

  mysql-test/r/ndb_cursor.result@1.2, 2006-12-18 12:52:53+03:00, skozlov@mysql.com +1 -0
    fix for commit 1.2368

  mysql-test/t/ndb_cursor.test@1.2, 2006-12-18 12:52:53+03:00, skozlov@mysql.com +1 -0
    fix for commit 1.2368

ChangeSet@1.1810.2438.10, 2006-12-18 10:22:48+01:00, msvensson@maint1.mysql.com +2 -0
  Use MYSQLTEST_VARDIR variable

  mysql-test/r/symlink.result@1.21.1.9, 2006-12-18 10:22:45+01:00, msvensson@maint1.mysql.com +2 -2
    Use MYSQLTEST_VARDIR variable

  mysql-test/t/symlink.test@1.17.1.4, 2006-12-18 10:22:45+01:00, msvensson@maint1.mysql.com +4 -4
    Use MYSQLTEST_VARDIR variable

ChangeSet@1.2343.21.13, 2006-12-18 09:46:44+03:00, skozlov@mysql.com +2 -0
  fix for commit 1.2368

  mysql-test/r/ndb_alter_table.result@1.41, 2006-12-18 09:46:37+03:00, skozlov@mysql.com +6 -6
    fix for commit 1.2368

  mysql-test/t/ndb_alter_table.test@1.37, 2006-12-18 09:46:37+03:00, skozlov@mysql.com +2 -2
    fix for commit 1.2368

ChangeSet@1.2343.21.12, 2006-12-17 23:08:04+03:00, skozlov@mysql.com +12 -0
  WL#2862

  mysql-test/r/ndb_alter_table.result@1.40, 2006-12-17 23:07:59+03:00, skozlov@mysql.com +45 -0
    WL#2862

  mysql-test/r/ndb_basic.result@1.48, 2006-12-17 23:08:00+03:00, skozlov@mysql.com +76 -0
    WL#2862

  mysql-test/r/ndb_cursor.result@1.1, 2006-12-17 23:08:00+03:00, skozlov@mysql.com +39 -0
    WL#2862

  mysql-test/r/ndb_cursor.result@1.0, 2006-12-17 23:08:00+03:00, skozlov@mysql.com +0 -0

  mysql-test/r/ndb_sp.result@1.1, 2006-12-17 23:08:00+03:00, skozlov@mysql.com +45 -0
    WL#2862

  mysql-test/r/ndb_sp.result@1.0, 2006-12-17 23:08:00+03:00, skozlov@mysql.com +0 -0

  mysql-test/r/ndb_subquery.result@1.5, 2006-12-17 23:08:00+03:00, skozlov@mysql.com +35 -4
    WL#2862

  mysql-test/r/ndb_trigger.result@1.2, 2006-12-17 23:08:00+03:00, skozlov@mysql.com +28 -3
    WL#2862

  mysql-test/t/ndb_alter_table.test@1.36, 2006-12-17 23:08:00+03:00, skozlov@mysql.com +27 -0
    WL#2862

  mysql-test/t/ndb_basic.test@1.47, 2006-12-17 23:08:00+03:00, skozlov@mysql.com +53 -0
    WL#2862

  mysql-test/t/ndb_cursor.test@1.1, 2006-12-17 23:08:00+03:00, skozlov@mysql.com +46 -0
    WL#2862

  mysql-test/t/ndb_cursor.test@1.0, 2006-12-17 23:08:00+03:00, skozlov@mysql.com +0 -0

  mysql-test/t/ndb_sp.test@1.1, 2006-12-17 23:08:00+03:00, skozlov@mysql.com +43 -0
    WL#2862

  mysql-test/t/ndb_sp.test@1.0, 2006-12-17 23:08:00+03:00, skozlov@mysql.com +0 -0

  mysql-test/t/ndb_subquery.test@1.7, 2006-12-17 23:08:00+03:00, skozlov@mysql.com +14 -4
    WL#2862

  mysql-test/t/ndb_trigger.test@1.2, 2006-12-17 23:08:00+03:00, skozlov@mysql.com +26 -4
    WL#2862

ChangeSet@1.2343.19.22, 2006-12-15 18:04:09-08:00, mtaylor@qualinost.(none) +1 -0
  Changed config of mysqlmanager to use my.cnf search path.

  server-tools/instance-manager/Makefile.am@1.43.1.1, 2006-12-15 18:04:04-08:00, mtaylor@qualinost.(none) +1 -1
    Changed config of mysqlmanager to use my.cnf search path. 

ChangeSet@1.1616.2905.9, 2006-12-15 16:17:10-08:00, mtaylor@qualinost.(none) +1 -0
  support /etc/mysql/my.cnf in mysqld_multi as well. 

  scripts/mysqld_multi.sh@1.21.2.1, 2006-12-15 16:16:27-08:00, mtaylor@qualinost.(none) +9 -1
    support /etc/mysql/my.cnf in mysqld_multi as well. 

ChangeSet@1.1810.2438.7, 2006-12-15 12:34:36-08:00, mtaylor@qualinost.(none) +2 -0
  Added /etc/mysql to my.cnf search path after /etc. 
  bug #25104

  mysys/default.c@1.72.1.12, 2006-12-15 12:34:33-08:00, mtaylor@qualinost.(none) +6 -4
    Added /etc/mysql to the search path after /etc. 

  scripts/mysqld_multi.sh@1.30.1.1, 2006-12-15 12:34:33-08:00, mtaylor@qualinost.(none) +9 -1
    Added /etc/mysql to the my.cnf search path.
    Changed chop to chomp - since it's smarter. 

ChangeSet@1.1616.2905.8, 2006-12-15 12:25:09-08:00, mtaylor@qualinost.(none) +1 -0
  Added support for /etc/mysql after /etc in the search path for my.cnf
  bug #25104

  mysys/default.c@1.43.1.8, 2006-12-15 12:25:06-08:00, mtaylor@qualinost.(none) +1 -0
    Added support for /etc/mysql after /etc in the search path for my.cnf

ChangeSet@1.1616.2913.1, 2006-12-15 10:57:58-08:00, mtaylor@qualinost.(none) +1 -0
  Added support for sensible-editor from Debian, instead of emacs. 

  scripts/mysqlbug.sh@1.8, 2006-12-15 10:57:55-08:00, mtaylor@qualinost.(none) +7 -1
    Added support for sensible-editor from Debian, instead of emacs. 

ChangeSet@1.1810.2442.2, 2006-12-15 17:57:31+01:00, df@kahlann.erinye.com +1 -0
  also include data files for varbinary test in binary distribution

  scripts/make_binary_distribution.sh@1.101.5.1, 2006-12-15 17:57:29+01:00, df@kahlann.erinye.com +1 -0
    also include data files for varbinary test in binary distribution

ChangeSet@1.2343.19.19, 2006-12-15 17:47:20+01:00, msvensson@neptunus.(none) +1 -0
  Calculate offset for wait time passed to set_timespec
  Pass different msg if waiting on empty queue

  sql/event_queue.cc@1.19.1.2, 2006-12-15 17:47:17+01:00, msvensson@neptunus.(none) +3 -2
    Calculate offset for wait time passed to set_timespec instead of
    the "absolute time" from execute_at
    Pass different msg if waiting on empty queue

ChangeSet@1.1810.2442.1, 2006-12-15 17:45:17+01:00, df@kahlann.erinye.com +1 -0
  minor fixup

  support-files/mysql.spec.sh@1.99.1.61, 2006-12-15 17:45:12+01:00, df@kahlann.erinye.com +1 -1
    fixup

ChangeSet@1.2343.10.12, 2006-12-15 17:12:41+01:00, jonas@perch.ndb.mysql.com +1 -0
  merge fix

  storage/ndb/test/ndbapi/testIndex.cpp@1.19, 2006-12-15 17:12:39+01:00, jonas@perch.ndb.mysql.com +2 -1
    merge fix

ChangeSet@1.2343.42.1, 2006-12-15 16:34:29+01:00, jmiller@mysql.com +9 -0
  New cluster replication test cases for replication options

  mysql-test/r/rpl_ndb_do_db.result@1.1, 2006-12-15 16:32:28+01:00, jmiller@mysql.com +60 -0
    New cluster replication test case to test do_db option

  mysql-test/r/rpl_ndb_do_db.result@1.0, 2006-12-15 16:32:28+01:00, jmiller@mysql.com +0 -0

  mysql-test/r/rpl_ndb_do_table.result@1.1, 2006-12-15 16:32:45+01:00, jmiller@mysql.com +25 -0
    New cluster replication test case to test do_table option

  mysql-test/r/rpl_ndb_do_table.result@1.0, 2006-12-15 16:32:45+01:00, jmiller@mysql.com +0 -0

  mysql-test/r/rpl_ndb_rep_ignore.result@1.1, 2006-12-15 16:33:53+01:00, jmiller@mysql.com +56 -0
    New cluster replication test case to test replicate_ignore option(s)

  mysql-test/r/rpl_ndb_rep_ignore.result@1.0, 2006-12-15 16:33:53+01:00, jmiller@mysql.com +0 -0

  mysql-test/t/rpl_ndb_do_db-slave.opt@1.1, 2006-12-15 16:32:19+01:00, jmiller@mysql.com +1 -0
    New cluster replication test case to test do_db option

  mysql-test/t/rpl_ndb_do_db-slave.opt@1.0, 2006-12-15 16:32:19+01:00, jmiller@mysql.com +0 -0

  mysql-test/t/rpl_ndb_do_db.test@1.1, 2006-12-15 16:32:19+01:00, jmiller@mysql.com +55 -0
    New cluster replication test case to test do_db option

  mysql-test/t/rpl_ndb_do_db.test@1.0, 2006-12-15 16:32:19+01:00, jmiller@mysql.com +0 -0

  mysql-test/t/rpl_ndb_do_table-slave.opt@1.1, 2006-12-15 16:33:02+01:00, jmiller@mysql.com +1 -0
    New cluster replication test case to test do_table option

  mysql-test/t/rpl_ndb_do_table-slave.opt@1.0, 2006-12-15 16:33:02+01:00, jmiller@mysql.com +0 -0

  mysql-test/t/rpl_ndb_do_table.test@1.1, 2006-12-15 16:33:02+01:00, jmiller@mysql.com +31 -0
    New cluster replication test case to test do_table option

  mysql-test/t/rpl_ndb_do_table.test@1.0, 2006-12-15 16:33:02+01:00, jmiller@mysql.com +0 -0

  mysql-test/t/rpl_ndb_rep_ignore-slave.opt@1.1, 2006-12-15 16:33:43+01:00, jmiller@mysql.com +1 -0
    New cluster replication test case to test replicate_ignore option(s)

  mysql-test/t/rpl_ndb_rep_ignore-slave.opt@1.0, 2006-12-15 16:33:43+01:00, jmiller@mysql.com +0 -0

  mysql-test/t/rpl_ndb_rep_ignore.test@1.1, 2006-12-15 16:33:43+01:00, jmiller@mysql.com +56 -0
    New cluster replication test case to test replicate_ignore option(s)

  mysql-test/t/rpl_ndb_rep_ignore.test@1.0, 2006-12-15 16:33:43+01:00, jmiller@mysql.com +0 -0

ChangeSet@1.2354, 2006-12-15 09:42:41-05:00, patg@radha.patg.net +1 -0
  WL #3031
  
  Yet another test result that needed to be regenerated due to new error
  messages. This test only runs via ./mysql-test-run.pl --ps-protocol --mysqld=--binlog-format=row rpl_extraCol_innodb

  mysql-test/r/rpl_extraCol_innodb.result@1.2, 2006-12-15 09:42:20-05:00, patg@radha.patg.net +7 -7
    WL #3031
    
    Yet another test result that needed to be regenerated due to new error
    messages. This test only runs via ./mysql-test-run.pl --ps-protocol --mysqld=--binlog-format=row rpl_extraCol_innodb

ChangeSet@1.1810.2124.36, 2006-12-15 15:39:45+01:00, jonas@perch.ndb.mysql.com +5 -0
  ndb - bug#25059
    incorrect handling of commit/ignore error in unique index code

  ndb/src/kernel/blocks/dbtc/DbtcMain.cpp@1.73.32.2, 2006-12-15 15:39:43+01:00, jonas@perch.ndb.mysql.com +2 -13
    1) handle potential ptr error
    2) remove incorrect commit-handling in uk code

  ndb/src/ndbapi/NdbTransaction.cpp@1.43.23.1, 2006-12-15 15:39:43+01:00, jonas@perch.ndb.mysql.com +9 -0
    1) force 4012
    2) handle AO_IgnoreError in uk code

  ndb/src/ndbapi/Ndbif.cpp@1.27.8.1, 2006-12-15 15:39:43+01:00, jonas@perch.ndb.mysql.com +1 -0
    force 4012

  ndb/test/ndbapi/testIndex.cpp@1.14.3.1, 2006-12-15 15:39:43+01:00, jonas@perch.ndb.mysql.com +65 -0
    test program for 25059

  ndb/test/run-test/daily-basic-tests.txt@1.27.23.2, 2006-12-15 15:39:44+01:00, jonas@perch.ndb.mysql.com +4 -0
    add testcase

ChangeSet@1.2343.19.18, 2006-12-15 15:05:50+01:00, msvensson@neptunus.(none) +5 -0
  Bug#24997 warnings test case failure
   - Move the specific test case to a separate file that is run only
     if we have a disabled handler.

  mysql-test/r/warnings.result@1.54.2.1, 2006-12-15 15:05:48+01:00, msvensson@neptunus.(none) +0 -7
    Move the test for warning that table type is changed to separate file
    as it only occurs when engine is disabled.

  mysql-test/r/warnings_engine_disabled.result@1.1, 2006-12-15 15:05:48+01:00, msvensson@neptunus.(none) +7 -0
    Move the test for warning that table type is changed to separate file
    as it only occurs when engine is disabled.

  mysql-test/r/warnings_engine_disabled.result@1.0, 2006-12-15 15:05:48+01:00, msvensson@neptunus.(none) +0 -0

  mysql-test/t/warnings.test@1.30, 2006-12-15 15:05:48+01:00, msvensson@neptunus.(none) +0 -6
    Move the test for warning that table type is changed to separate file
    as it only occurs when engine is disabled.

  mysql-test/t/warnings_engine_disabled-master.opt@1.1, 2006-12-15 15:05:48+01:00, msvensson@neptunus.(none) +1 -0
    New BitKeeper file ``mysql-test/t/warnings_engine_disabled-master.opt''

  mysql-test/t/warnings_engine_disabled-master.opt@1.0, 2006-12-15 15:05:48+01:00, msvensson@neptunus.(none) +0 -0

  mysql-test/t/warnings_engine_disabled.test@1.1, 2006-12-15 15:05:48+01:00, msvensson@neptunus.(none) +19 -0
    Move the test for warning that table type is changed to separate file
    as it only occurs when engine is disabled.

  mysql-test/t/warnings_engine_disabled.test@1.0, 2006-12-15 15:05:48+01:00, msvensson@neptunus.(none) +0 -0

ChangeSet@1.1810.2124.35, 2006-12-15 13:31:31+01:00, jonas@perch.ndb.mysql.com +2 -0
  ndb - bug#25090
    add testcase

  ndb/test/ndbapi/testBasic.cpp@1.8.1.1, 2006-12-15 13:31:29+01:00, jonas@perch.ndb.mysql.com +26 -0
    add testcase for bug#25090

  ndb/test/run-test/daily-basic-tests.txt@1.27.23.1, 2006-12-15 13:31:29+01:00, jonas@perch.ndb.mysql.com +4 -0
    add testcase for bug#25090

ChangeSet@1.1810.2427.5, 2006-12-15 13:18:16+01:00, bteam@mysql.com +1 -0
  Raise version number after cloning 5.0.32

  configure.in@1.245.71.6, 2006-12-15 13:18:09+01:00, bteam@mysql.com +1 -1
    Raise version number after cloning 5.0.32

ChangeSet@1.1616.2912.1, 2006-12-15 16:01:56+04:00, svoj@mysql.com +1 -0
  BUG#24358 - Table access crashes server
  
  Having broken .frm, particulary number of field names does
  not match number of fields, causes server crash.
  
  Refuse to open a table if number of field names in a table
  is not equal to number of fields in a table.
  
  No test case, since it requires broken .frm file.

  sql/table.cc@1.111.4.10, 2006-12-15 16:01:53+04:00, svoj@mysql.com +2 -0
    Refuse to open a table if number of field names in a table
    is not equal to number of fields in a table.

ChangeSet@1.2343.19.16, 2006-12-15 12:54:40+01:00, msvensson@neptunus.(none) +1 -0
  Remove junk

  mysql-test/mysql-test-run.pl@1.254.1.3, 2006-12-15 12:54:38+01:00, msvensson@neptunus.(none) +1 -3
    Remove junk

ChangeSet@1.1810.2124.34, 2006-12-15 12:37:55+01:00, jonas@perch.ndb.mysql.com +1 -0
  ndb - bug#25090
    make sure apicon timer is reset when setting CS_CONNECTED

  ndb/src/kernel/blocks/dbtc/DbtcMain.cpp@1.73.32.1, 2006-12-15 12:37:53+01:00, jonas@perch.ndb.mysql.com +2 -0
    make sure apicon timer is reset when setting CS_CONNECTED

ChangeSet@1.2343.40.2, 2006-12-15 10:45:25+01:00, msvensson@shellback. +1 -0
  Fix VC++ warning about extra ; delimiter

  storage/federated/ha_federated.cc@1.90.2.1, 2006-12-15 10:45:22+01:00, msvensson@shellback. +1 -1
    Fix VC++ warning about extra ; delimiter

ChangeSet@1.2343.40.1, 2006-12-15 10:41:24+01:00, msvensson@shellback. +3 -0
  Add macro for retrieving sec part of "struct timespec"
  Use macros for working with "struct timespec" in event_queue.cc
  Fix merge problem

  include/my_pthread.h@1.98.1.3, 2006-12-15 10:40:47+01:00, msvensson@shellback. +7 -5
    Remove merge problem causing "struct timespec" to be declared twice
    Add macro "get_timespec_sec" used for retrieving the time in seconds 

  sql/event_queue.cc@1.19.1.1, 2006-12-15 10:40:47+01:00, msvensson@shellback. +4 -5
    Use macros for working with "struct timespec"

  sql/log_event.cc@1.252.6.1, 2006-12-15 10:41:21+01:00, msvensson@shellback. +7 -7
    Add casts from "byte*" to "char*"

ChangeSet@1.1810.2441.1, 2006-12-15 11:38:30+02:00, gkodinov@macbook.gmz +3 -0
  Bug #15439: UDF name case handling forces DELETE FROM mysql.func to remove
              the UDF
  When deleting a user defined function MySQL must remove it from both the
  in-memory hash table and the mysql.proc system table.
  Finding (and removal therefore) from the internal hash table is case 
  insensitive (or whatever the default charset is), whereas finding and 
  removal from the system table is case sensitive.
  As a result if you supply a function name that is not in the same character
  case to DROP FUNCTION the server will remove the function only from the
  in-memory hash table and will keep the row in mysql.proc system table.
  This will cause inconsistency between the two structures (that is fixed
  only by restarting the server).
  Fixed by using the name in the precise case (from the in-memory hash table)
  to delete the row in the mysql.proc system table. 

  mysql-test/r/udf.result@1.3.1.7, 2006-12-15 11:38:24+02:00, gkodinov@macbook.gmz +11 -0
    Bug #15439: UDF name case handling forces DELETE FROM mysql.func to remove
                the UDF
     - test case

  mysql-test/t/udf.test@1.8.1.3, 2006-12-15 11:38:24+02:00, gkodinov@macbook.gmz +17 -0
    Bug #15439: UDF name case handling forces DELETE FROM mysql.func to remove
                the UDF
     - test case

  sql/sql_udf.cc@1.45.1.15, 2006-12-15 11:38:25+02:00, gkodinov@macbook.gmz +1 -1
    Bug #15439: UDF name case handling forces DELETE FROM mysql.func to remove
                the UDF
     - use the exact function name in deleting from mysql.proc.

ChangeSet@1.1810.2398.7, 2006-12-15 09:03:21+01:00, mskold@mysql.com +2 -0
  bug#19956  Problems with VARCHAR primary key and BLOB fields:added test case

  mysql-test/r/ndb_read_multi_range.result@1.3.2.1, 2006-12-15 09:02:29+01:00, mskold@mysql.com +14 -0
    bug#19956  Problems with VARCHAR primary key and BLOB fields:added test case

  mysql-test/t/ndb_read_multi_range.test@1.4.2.1, 2006-12-15 09:02:51+01:00, mskold@mysql.com +15 -0
    bug#19956  Problems with VARCHAR primary key and BLOB fields:added test case

ChangeSet@1.1616.2911.1, 2006-12-15 07:56:01+01:00, thek@kpdesk.mysql.com +1 -0
  Bug#17498 failed to put data file in custom directory use "data directory" option
  
  - Result file was not properly committed.
  - Update result file to match the new test case.

  mysql-test/r/myisam.result@1.45.9.1, 2006-12-15 07:56:00+01:00, thek@kpdesk.mysql.com +0 -21
    Bug#17498 failed to put data file in custom directory use "data directory" option
    
    - Update result file to match the new test case.

ChangeSet@1.1810.2440.2, 2006-12-14 17:47:55-07:00, tsmith@siva.hindu.god +1 -0
  Post-merge fix to symlink.result

  mysql-test/r/symlink.result@1.21.1.8, 2006-12-14 17:47:48-07:00, tsmith@siva.hindu.god +1 -0
    Post-merge fix to symlink.result

ChangeSet@1.1616.2905.5, 2006-12-14 16:23:54-07:00, tsmith@siva.hindu.god +4 -0
  myisam.result: a test was moved from the .test file, but the results were not updated.

  mysql-test/r/myisam.result@1.45.1.25, 2006-12-14 16:23:53-07:00, tsmith@siva.hindu.god +1 -21
    Fix results file - a test was moved from the .test file, but the results were not updated.

  mysql-test/r/symlink.result@1.11.1.12, 2006-12-14 16:23:53-07:00, tsmith@siva.hindu.god +1 -0
    echo End of 4.1 tests while I'm here

  mysql-test/t/myisam.test@1.33.1.23, 2006-12-14 16:23:53-07:00, tsmith@siva.hindu.god +2 -1
    echo End of 4.1 tests while I'm here

  mysql-test/t/symlink.test@1.11.1.6, 2006-12-14 16:23:53-07:00, tsmith@siva.hindu.god +1 -1
    echo End of 4.1 tests while I'm here

ChangeSet@1.2343.19.11, 2006-12-15 00:09:56+01:00, msvensson@neptunus.(none) +7 -0
  Add support for loading example plugin and add plugin.test

  mysql-test/include/have_example_plugin.inc@1.1, 2006-12-15 00:09:53+01:00, msvensson@neptunus.(none) +16 -0
    New BitKeeper file ``mysql-test/include/have_example_plugin.inc''

  mysql-test/include/have_example_plugin.inc@1.0, 2006-12-15 00:09:53+01:00, msvensson@neptunus.(none) +0 -0

  mysql-test/include/have_udf.inc@1.5, 2006-12-15 00:09:53+01:00, msvensson@neptunus.(none) +1 -1
    Rename have_udf.require to hqave_dynamic_loading.require

  mysql-test/mysql-test-run.pl@1.254.1.2, 2006-12-15 00:09:53+01:00, msvensson@neptunus.(none) +25 -5
    Add support for ha_example plugin

  mysql-test/r/have_dynamic_loading.require@1.4, 2006-12-14 23:25:24+01:00, msvensson@neptunus.(none) +0 -0
    Rename: mysql-test/r/have_udf.require -> mysql-test/r/have_dynamic_loading.require

  mysql-test/r/have_example_plugin.require@1.1, 2006-12-15 00:09:53+01:00, msvensson@neptunus.(none) +2 -0
    New BitKeeper file ``mysql-test/r/have_example_plugin.require''

  mysql-test/r/have_example_plugin.require@1.0, 2006-12-15 00:09:53+01:00, msvensson@neptunus.(none) +0 -0

  mysql-test/r/plugin.result@1.1, 2006-12-15 00:09:53+01:00, msvensson@neptunus.(none) +15 -0
    New BitKeeper file ``mysql-test/r/plugin.result''

  mysql-test/r/plugin.result@1.0, 2006-12-15 00:09:53+01:00, msvensson@neptunus.(none) +0 -0

  mysql-test/t/plugin.test@1.1, 2006-12-15 00:09:53+01:00, msvensson@neptunus.(none) +26 -0
    New BitKeeper file ``mysql-test/t/plugin.test''

  mysql-test/t/plugin.test@1.0, 2006-12-15 00:09:53+01:00, msvensson@neptunus.(none) +0 -0

ChangeSet@1.2343.28.8, 2006-12-14 15:36:45-07:00, tsmith@siva.hindu.god +1 -0
  include/my_pthread.h:  Fix botched merge - add struct timespec and set_timespec(), etc.

  include/my_pthread.h@1.98.1.2, 2006-12-14 15:36:42-07:00, tsmith@siva.hindu.god +69 -2
    Fix botched merge - add struct timespec and set_timespec(), etc.

ChangeSet@1.1810.2439.2, 2006-12-14 22:41:26+01:00, joerg@trift2. +1 -0
  support-files/mysql.spec.sh
      The "mysqlmanager" man page got moved from section 1 to 8.

  support-files/mysql.spec.sh@1.99.1.60, 2006-12-14 22:41:23+01:00, joerg@trift2. +2 -1
    The "mysqlmanager" man page got moved from section 1 to 8.

ChangeSet@1.1616.2910.1, 2006-12-14 22:30:32+01:00, joerg@trift2. +1 -0
  support-files/mysql.spec.sh
      The Docs team has two new manpages for the "server" RPM: "my_print_defaults" and "mysql_tzinfo_to_sql".

  support-files/mysql.spec.sh@1.83.1.44, 2006-12-14 22:30:30+01:00, joerg@trift2. +7 -0
    The Docs team has two new manpages for the "server" RPM: "my_print_defaults" and "mysql_tzinfo_to_sql".
     

ChangeSet@1.1810.2432.2, 2006-12-14 21:48:08+01:00, msvensson@neptunus.(none) +1 -0
  Put the DBUG_DUMP inside ifdef DEBUG_DATA_PACKETS

  sql/net_serv.cc@1.88.1.6, 2006-12-14 21:48:07+01:00, msvensson@neptunus.(none) +4 -1
    Put the DBUG_DUMP inside ifdef DEBUG_DATA_PACKETS

ChangeSet@1.1616.2905.4, 2006-12-14 12:18:36-08:00, mtaylor@qualinost.(none) +1 -0
  Change permissions on $mysql_unix_port_dir if we create it so that everyone can access it. 

  scripts/mysqld_safe.sh@1.72.1.6, 2006-12-14 12:18:22-08:00, mtaylor@qualinost.(none) +1 -0
    Change permissions on $mysql_unix_port_dir if we create it so that everyone can access it. 

ChangeSet@1.1616.2895.4, 2006-12-14 14:54:59-05:00, jpipes@shakedown.(none) +1 -0
  Fix for Bug#21970.  
  
  The mysql-test-run-shell.sh script was improperly evaluating an expression for setting up multiple masters.
  
  This fix adds the `expr $MASTER_MYPORT + 1` construct to the offending line in order for the expression to evaluate properly and produce 9307 instead of the string "9306+1"  

  mysql-test/mysql-test-run-shell.sh@1.208.1.66, 2006-12-14 14:54:57-05:00, jpipes@shakedown.(none) +1 -1
    Fix for Bug#21970.  
    
    The mysql-test-run-shell.sh script was improperly evaluating an expression for setting up multiple masters.
    
    This fix adds the `expr $MASTER_MYPORT + 1` construct to the offending line in order for the expression to evaluate properly and produce 9307 instead of the string "9306+1"  

ChangeSet@1.1810.2437.1, 2006-12-14 20:58:07+03:00, kaa@polly.local +6 -0
  Fix for bug #24117 "server crash on a FETCH with a cursor on a table which is not in the table cache"
  
  Problem:
  When creating a temporary field for a temporary table in create_tmp_field_from_field(), a resulting field is created as an exact copy of an original one (in Field::new_field()). However, Field_enum and Field_set contain a pointer (typelib) to memory allocated in the parent table's MEM_ROOT, which under some circumstances may be deallocated later by the time a temporary table is used.
  
  Solution:
  Override the new_field() method for Field_enum and Field_set and create a separate copy of the typelib structure in there.

  include/typelib.h@1.4, 2006-12-14 20:58:03+03:00, kaa@polly.local +3 -0
    Added copy_typelib() declaration

  mysql-test/r/sp.result@1.170.27.3, 2006-12-14 20:58:03+03:00, kaa@polly.local +16 -0
    Added a testcase for bug #24117 "server crash on a FETCH with a cursor on a table which is not in the table cache"

  mysql-test/t/sp.test@1.174.27.2, 2006-12-14 20:58:04+03:00, kaa@polly.local +24 -0
    Added a testcase for bug #24117 "server crash on a FETCH with a cursor on a table which is not in the table cache"

  mysys/typelib.c@1.13.1.1, 2006-12-14 20:58:04+03:00, kaa@polly.local +51 -0
    Added copy_typelib() definition

  sql/field.cc@1.256.37.1, 2006-12-14 20:58:04+03:00, kaa@polly.local +10 -0
    Create a copy of the internal 'typelib' structure when copying Field_enum of Field_set objects.

  sql/field.h@1.153.15.1, 2006-12-14 20:58:04+03:00, kaa@polly.local +1 -0
    Override new_field method in Field_enum (and Field_set) to copy the typelib structure.

ChangeSet@1.2343.21.9, 2006-12-14 16:52:50+01:00, mskold@mysql.com +1 -0
  bug#19956  Problems with VARCHAR primary key and BLOB fields:put back removed error handling for HA_ERR_KEY_NOT_FOUND

  sql/ha_ndbcluster.cc@1.378, 2006-12-14 16:52:36+01:00, mskold@mysql.com +6 -3
    bug#19956  Problems with VARCHAR primary key and BLOB fields:put back removed error handling for HA_ERR_KEY_NOT_FOUND

ChangeSet@1.1810.2398.6, 2006-12-14 16:27:14+01:00, mskold@mysql.com +1 -0
  Removed check for impossible error return

  sql/ha_ndbcluster.cc@1.175.61.5, 2006-12-14 16:26:28+01:00, mskold@mysql.com +4 -7
    Removed check for impossible error return

ChangeSet@1.2353, 2006-12-14 10:07:17-05:00, patg@radha.patg.net +1 -0
  BUG #25074
  
  mysql_upgrade test gives inconsitent results

  mysql-test/t/disabled.def@1.175.35.1, 2006-12-14 10:06:56-05:00, patg@radha.patg.net +1 -0
    BUG #25074
    
    mysql_upgrade test gives inconsitent results

ChangeSet@1.1810.2435.1, 2006-12-14 15:23:44+01:00, msvensson@shellback. +6 -0
  BUG#24687 func_misc test fails on win64
   - Use same precision (milliseconds) for all time functions
     used  when calculating time for pthread_cond_timedwait
   - Use 'GetSystemTimeAsFileTime' for both start and curr time

  include/config-win.h@1.71.1.11, 2006-12-14 15:22:04+01:00, msvensson@shellback. +0 -1
    Move all defines for 'pthread_cond_timedwait' to my_pthread.h

  include/my_global.h@1.96.1.34, 2006-12-14 15:22:04+01:00, msvensson@shellback. +1 -35
    Move all defines for 'pthread_cond_timedwait' to my_pthread.h

  include/my_pthread.h@1.90.3.1, 2006-12-14 15:22:05+01:00, msvensson@shellback. +69 -10
    Redefine "struct timespec" to better suite the needs 
    of 'pthread_cond_timedwait' for windows implementation
    Add windows specific define for set_timespec_nsec
    Move all defines related to pthread_cond_timed wait to same file
    Declare union for reading FILETIME as __int64 with correct alignment

  mysys/my_wincond.c@1.7, 2006-12-14 15:22:05+01:00, msvensson@shellback. +22 -6
    Use 'GetSystemTimeAsFileTime()' both for getting start and current time
    Use new members of "struct timespec"
    Make sure the calculated timeout value never exceeds the value
    passed to set_timespec/set_timespec_nsec 

  server-tools/instance-manager/guardian.cc@1.20.1.6, 2006-12-14 15:22:05+01:00, msvensson@shellback. +2 -3
    Use set_timespec macro

  server-tools/instance-manager/instance.cc@1.32.1.4, 2006-12-14 15:22:06+01:00, msvensson@shellback. +2 -3
    Use set_timespec macro

ChangeSet@1.2343.35.2, 2006-12-14 17:48:32+04:00, bar@mysql.com +2 -0
  After merge fix for Bug N22645

  mysql-test/t/disabled.def@1.175.34.4, 2006-12-14 17:48:27+04:00, bar@mysql.com +0 -1
    After merge fix for Bug N22645

  sql/log_event.cc@1.258, 2006-12-14 17:48:27+04:00, bar@mysql.com +1 -1
    After merge fix for Bug N22645

ChangeSet@1.1810.2434.2, 2006-12-14 13:45:17+01:00, thek@kpdesk.mysql.com +2 -0
  Bug#17498 failed to put data file in custom directory use "data directory" option
  
  Merged 4.1->5.0. Updated myisam.test

  mysql-test/r/myisam.result@1.71.1.21, 2006-12-14 13:45:15+01:00, thek@kpdesk.mysql.com +0 -13
    updated result file

  mysql-test/t/myisam.test@1.55.1.17, 2006-12-14 13:45:15+01:00, thek@kpdesk.mysql.com +0 -34
    Removing symlink specific test from myisam test

ChangeSet@1.1810.2425.4, 2006-12-14 16:31:23+04:00, bar@mysql.com +2 -0
  After merge fix for bug N22645

  mysql-test/t/mysqlbinlog.test@1.21.1.15, 2006-12-14 16:31:19+04:00, bar@mysql.com +2 -2
    After merge fix

  sql/log_event.cc@1.174.1.46, 2006-12-14 16:31:19+04:00, bar@mysql.com +1 -1
    Fixing comment, thanks to Andrei for suggestion

ChangeSet@1.1616.2907.1, 2006-12-14 13:23:31+01:00, thek@kpdesk.mysql.com +4 -0
  Bug#17498 failed to put data file in custom directory use "data directory" option
  
  - When this bug was corrected it changed the behavior 
    for data/index directory in the myisam test case.
  - This patch moves the OS depending tests to a non-windows
    test file.

  mysql-test/r/myisam.result@1.45.8.1, 2006-12-14 13:23:30+01:00, thek@kpdesk.mysql.com +0 -21
    moved test from myisam to symlink; new result file

  mysql-test/r/symlink.result@1.11.1.11, 2006-12-14 13:23:30+01:00, thek@kpdesk.mysql.com +21 -0
    moved test from myisam to symlink; new result file

  mysql-test/t/myisam.test@1.33.10.1, 2006-12-14 13:23:30+01:00, thek@kpdesk.mysql.com +0 -37
    moved test from myisam to symlink

  mysql-test/t/symlink.test@1.11.1.5, 2006-12-14 13:23:30+01:00, thek@kpdesk.mysql.com +37 -0
    moved test from myisam to symlink

ChangeSet@1.2343.22.6, 2006-12-14 14:05:25+04:00, bar@mysql.com +14 -0
  Bug#17642 mysqlbinlog: Restore from row-based binlog fails
  
  Problem: mysqlbinlog_base64 failed sporadically.
  
  Reason: Missing "flush logs" before running $MYSQL_BINLOG,
  which could start dumping the log file before server
  has finished writting into it.
  Fix:
  - implementing --force-if-open option to "mysqlbinlog"
  - adding --disable-force-if-open to make $MYSQL_BINLOG
    fail on non-closed log files, to garantee that nobody
    will forget "flush logs" in the future.
  - adding "flush logs" into all affected tests.

  client/mysqlbinlog.cc@1.141, 2006-12-14 14:05:17+04:00, bar@mysql.com +21 -0
    Implementing --force-if-open option with TRUE by default

  mysql-test/mysql-test-run.pl@1.254.2.1, 2006-12-14 14:05:18+04:00, bar@mysql.com +1 -1
    Using --disable-force-if-open for all tests to avoid
    sporadic test failures because of running "mysqlbinlog"
    on a non-flushed binlog files.

  mysql-test/r/binlog_row_mix_innodb_myisam.result@1.17, 2006-12-14 14:05:18+04:00, bar@mysql.com +1 -0
    FLush log before running dumping.

  mysql-test/r/binlog_stm_mix_innodb_myisam.result@1.35, 2006-12-14 14:05:18+04:00, bar@mysql.com +1 -0
    FLush log before running dumping.

  mysql-test/r/mysqlbinlog.result@1.26, 2006-12-14 14:05:18+04:00, bar@mysql.com +2 -0
    FLush log before running dumping.

  mysql-test/r/mysqlbinlog2.result@1.11, 2006-12-14 14:05:18+04:00, bar@mysql.com +1 -0
    FLush log before running dumping.

  mysql-test/r/mysqlbinlog_base64.result@1.3, 2006-12-14 14:05:18+04:00, bar@mysql.com +1 -0
    FLush log before running dumping.

  mysql-test/r/user_var-binlog.result@1.9, 2006-12-14 14:05:18+04:00, bar@mysql.com +1 -0
    FLush log before running dumping.

  mysql-test/t/binlog_row_mix_innodb_myisam.test@1.6, 2006-12-14 14:05:18+04:00, bar@mysql.com +1 -0
    FLush log before running dumping.

  mysql-test/t/binlog_stm_mix_innodb_myisam.test@1.6, 2006-12-14 14:05:18+04:00, bar@mysql.com +1 -0
    FLush log before running dumping.

  mysql-test/t/mysqlbinlog.test@1.32, 2006-12-14 14:05:18+04:00, bar@mysql.com +13 -2
    FLush log before running dumping.
    
    Adding new tests:
    - checking that $MYSQL_BINLOG returns an error on a non-closed binlog
    file because of --disable-force-if-open
    - checking that it does not return an error with --force-if-open

  mysql-test/t/mysqlbinlog2.test@1.11, 2006-12-14 14:05:18+04:00, bar@mysql.com +1 -0
    FLush log before running dumping.

  mysql-test/t/mysqlbinlog_base64.test@1.3, 2006-12-14 14:05:18+04:00, bar@mysql.com +1 -0
    FLush log before running dumping.

  mysql-test/t/user_var-binlog.test@1.8, 2006-12-14 14:05:18+04:00, bar@mysql.com +1 -0
    FLush log before running dumping.

ChangeSet@1.1810.2430.3, 2006-12-13 21:08:25-08:00, igor@olga.mysql.com +5 -0
  Fixed bug #25027.
  Blocked evaluation of constant objects of the classes
  Item_func_is_null and Item_is_not_null_test at the
  prepare phase in the cases when the objects used subqueries. 

  mysql-test/r/ps.result@1.56.1.29, 2006-12-13 21:08:23-08:00, igor@olga.mysql.com +7 -0
    Extended test case for bug #25027.

  mysql-test/t/ps.test@1.56.1.26, 2006-12-13 21:08:23-08:00, igor@olga.mysql.com +5 -0
    Extended test case for bug #25027.

  sql/item_cmpfunc.cc@1.187.14.3, 2006-12-13 21:08:23-08:00, igor@olga.mysql.com +3 -3
    Fixed bug #25027.
    Blocked evaluation of constant objects of the classes
    Item_func_is_null and Item_is_not_null_test at the
    prepare phase in the cases when the objects used subqueries. 

  sql/item_cmpfunc.h@1.122.2.11, 2006-12-13 21:08:23-08:00, igor@olga.mysql.com +2 -1
    Fixed bug #25027.
    Blocked evaluation of constant objects of the classes
    Item_func_is_null and Item_is_not_null_test at the
    prepare phase in the cases when the objects used subqueries. 

  sql/sql_lex.cc@1.142.31.2, 2006-12-13 21:08:23-08:00, igor@olga.mysql.com +1 -0
    Returned back the assertion in st_select_lex_unit::set_limit,
    removed by the previous commit for this bug.

ChangeSet@1.1810.2432.1, 2006-12-13 23:30:20+01:00, msvensson@neptunus.(none) +1 -0
  change all auto_ptr in yaSSL to mySTL since some lack reset

  extra/yassl/src/ssl.cpp@1.16.1.6, 2006-12-13 23:30:17+01:00, msvensson@neptunus.(none) +2 -2
    change all auto_ptr to mySTL since some lack reset

ChangeSet@1.2343.21.7, 2006-12-13 21:04:10+01:00, msvensson@neptunus.(none) +1 -0
  Remove old hack to avoid reception of SUB_DATA signals to destroyed Ndb object

  sql/ha_ndbcluster_binlog.cc@1.91, 2006-12-13 21:04:07+01:00, msvensson@neptunus.(none) +1 -26
    Remove old hack to avoid reception of SUB_DATA signals to destroyed Ndb object

ChangeSet@1.2343.18.4, 2006-12-13 19:20:34+04:00, svoj@mysql.com +1 -0
  After merge fix.

  mysql-test/r/alter_table.result@1.71, 2006-12-13 19:20:31+04:00, svoj@mysql.com +2 -2
    After merge fix.

ChangeSet@1.1810.2430.2, 2006-12-13 00:39:13-08:00, igor@olga.mysql.com +3 -0
  Fixed bug #25027.
  Removed an assertion that was not valid for the cases where the query
  in a prepared statement contained a single-row non-correlated
  subquery that was used as an argument of the IS NULL predicate.

  mysql-test/r/ps.result@1.56.1.28, 2006-12-13 00:39:10-08:00, igor@olga.mysql.com +15 -0
    Added a test case for bug #25027.

  mysql-test/t/ps.test@1.56.1.25, 2006-12-13 00:39:10-08:00, igor@olga.mysql.com +18 -0
    Added a test case for bug #25027.

  sql/sql_lex.cc@1.142.31.1, 2006-12-13 00:39:10-08:00, igor@olga.mysql.com +0 -1
    Fixed bug #25027.
    Removed an assertion that was not valid for the cases where the query
    in a prepared statement contained a single-row non-correlated
    subquery that was used as an argument of the IS NULL predicate.

ChangeSet@1.2352, 2006-12-12 19:39:45-05:00, patg@radha.local +2 -0
  WL# 3031
  
  Found that the results from select had to be fixed too.

  mysql-test/r/federated_server.result@1.4, 2006-12-12 19:39:36-05:00, patg@radha.local +2 -2
    WL# 3031
    
    Found that the results from select had to be fixed too.

  mysql-test/t/federated_server.test@1.4, 2006-12-12 19:39:37-05:00, patg@radha.local +2 -1
    WL# 3031
    
    Found that the results from select had to be fixed too.

ChangeSet@1.2349.1.2, 2006-12-12 19:12:30-05:00, patg@radha.local +1 -0
  WL #3031
  
  changed to test verbiage to test PB on 5.1 arch tree

  mysql-test/t/federated_server.test@1.1.1.2, 2006-12-12 19:12:22-05:00, patg@radha.local +2 -0
    WL #3031
    
    changed to test verbiage to test PB on 5.1 arch tree

ChangeSet@1.2343.32.4, 2006-12-12 16:42:35-07:00, malff@weblab.(none) +1 -0
  Merge cleanup

  sql/sql_yacc.yy@1.521.1.6, 2006-12-12 16:42:32-07:00, malff@weblab.(none) +2 -12
    Merge cleanup

ChangeSet@1.2349.1.1, 2006-12-12 17:23:11-05:00, patg@radha.local +2 -0
  WL #3031
  
  Trying again (!) to commit the fix containing replace-result to fix the problem
  with hard-coded ports in the result file of the federated_server test.

  mysql-test/r/federated_server.result@1.1.1.1, 2006-12-12 17:23:00-05:00, patg@radha.local +4 -4
    WL #3031
    
    Trying again (!) to commit the fix containing replace-result to fix the problem
    with hard-coded ports in the result file of the federated_server test.

  mysql-test/t/federated_server.test@1.1.1.1, 2006-12-12 17:23:01-05:00, patg@radha.local +4 -0
    WL #3031
    
    Trying again (!) to commit the fix containing replace-result to fix the problem
    with hard-coded ports in the result file of the federated_server test.

ChangeSet@1.2343.32.2, 2006-12-12 23:22:46+03:00, kostja@bodhi.local +2 -0
  Post-merge fixes.

  mysql-test/r/read_only.result@1.6, 2006-12-12 23:22:38+03:00, kostja@bodhi.local +1 -1
    A post-merge fix: update results.

  server-tools/instance-manager/guardian.cc@1.37, 2006-12-12 23:22:38+03:00, kostja@bodhi.local +1 -2
    Remove initialization of a non-existent member.

ChangeSet@1.2350, 2006-12-12 13:18:49-05:00, patg@radha.myhome.westell.com +2 -0
  WL# 3031
  
  Added --replace-result to avoid hard-coding of port

  mysql-test/r/federated_server.result@1.2, 2006-12-12 13:18:35-05:00, patg@radha.myhome.westell.com +4 -4
    WL# 3031
    
    Added --replace-result to avoid hard-coding of port

  mysql-test/t/federated_server.test@1.2, 2006-12-12 13:18:35-05:00, patg@radha.myhome.westell.com +4 -0
    WL# 3031
    
    Added --replace-result to avoid hard-coding of port

ChangeSet@1.2343.10.10, 2006-12-12 16:21:06+01:00, jonas@perch.ndb.mysql.com +2 -0
  ndb - bug#24949
    make sure not too poll to long, in case of hb-failure of last db-node

  storage/ndb/src/ndbapi/Ndbif.cpp@1.47, 2006-12-12 16:21:05+01:00, jonas@perch.ndb.mysql.com +2 -2
    Make sure not to poll too long

  storage/ndb/src/ndbapi/TransporterFacade.cpp@1.54.1.1, 2006-12-12 16:21:05+01:00, jonas@perch.ndb.mysql.com +3 -5
    Make sure not to poll too long

ChangeSet@1.1810.2416.5, 2006-12-12 15:47:02+01:00, df@kahlann.erinye.com +1 -0
  BUG#24896 magnus' suggestion

  client/mysql_upgrade.c@1.6.3.3, 2006-12-12 15:47:01+01:00, df@kahlann.erinye.com +2 -2
    BUG#24896 magnus' suggestion

ChangeSet@1.1810.2427.2, 2006-12-12 13:55:40+01:00, df@kahlann.erinye.com +1 -0
  BUG#24902 in 5.0

  mysql-test/Makefile.am@1.66.4.1, 2006-12-12 13:55:38+01:00, df@kahlann.erinye.com +1 -1
    BUG#24902

ChangeSet@1.2343.10.9, 2006-12-12 13:09:20+01:00, jonas@perch.ndb.mysql.com +2 -0
  ndb - bug#25001
    make sure DISK flag is set on DATA column for blob table

  storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp@1.156, 2006-12-12 13:09:18+01:00, jonas@perch.ndb.mysql.com +6 -2
    maek sure DISK flag is set on DATA column fro blob table

  storage/ndb/src/ndbapi/NdbDictionaryImpl.hpp@1.70, 2006-12-12 13:09:18+01:00, jonas@perch.ndb.mysql.com +1 -1
    maek sure DISK flag is set on DATA column fro blob table

ChangeSet@1.2343.10.8, 2006-12-12 13:07:22+01:00, jonas@perch.ndb.mysql.com +1 -0
  ndb - style
    split assignment into 2 lines

  storage/ndb/src/kernel/blocks/dbtup/DbtupRoutines.cpp@1.31, 2006-12-12 13:07:20+01:00, jonas@perch.ndb.mysql.com +2 -1
    remove bad assignment

ChangeSet@1.1616.2900.9, 2006-12-12 12:28:02+01:00, msvensson@neptunus.(none) +1 -0
  Improve error message that describes waitpid($pid) returned unexpected result

  mysql-test/lib/mtr_process.pl@1.15.3.10, 2006-12-12 12:28:00+01:00, msvensson@neptunus.(none) +2 -1
    Improve error message that describes waitpid($pid) returned unexpected result

ChangeSet@1.2343.25.2, 2006-12-12 10:36:52+01:00, df@kahlann.erinye.com +1 -0
  BUG#24902

  mysql-test/Makefile.am@1.91.2.1, 2006-12-12 10:36:50+01:00, df@kahlann.erinye.com +1 -1
    BUG#24902

ChangeSet@1.1616.2904.2, 2006-12-11 18:57:23-08:00, igor@olga.mysql.com +4 -0
  Fixed bug #24670: optimizations that are legal only for subqueries without tables
  and no WHERE condition were applied for any subquery without tables.
  

  mysql-test/r/subselect.result@1.67.1.119, 2006-12-11 18:57:21-08:00, igor@olga.mysql.com +13 -0
    Added a test case for bug #24670.

  mysql-test/t/subselect.test@1.58.1.105, 2006-12-11 18:57:21-08:00, igor@olga.mysql.com +12 -0
    Added a test case for bug #24670.

  sql/item_subselect.cc@1.60.1.87, 2006-12-11 18:57:21-08:00, igor@olga.mysql.com +17 -2
    Fixed bug #24670: optimizations that are legal only for subqueries without tables
    and no WHERE condition were applied for any subquery without tables.
    
    Removed an assertion that caused an abort for subqueries without tables and no 
    WHERE condition. 
    Blocked substitution of a single-row subquery without tables for the constant 
    row from its select list when the subquery contained a WHERE condition.
    This optimization is valid only for subquries without tables with no conditions.
    Any subquery without tables with WHERE clause returns NULL if the WHERE condition
    is FALSE. Erroneously it was always considered as non-nullable that could trigger 
    another optimization concerning IS NULL predicates which is applicable only for 
    non-nullable expressions and ultimately led to a wrong result returned by the outer
    query.
    Added a proper implementation of the virtual method may_be_null for class 
    subselect_single_select_engine.

  sql/item_subselect.h@1.52.1.13, 2006-12-11 18:57:21-08:00, igor@olga.mysql.com +2 -1
    Fixed bug #24670: optimizations that are legal only for subqueries without tables
    and no WHERE condition were applied for any subquery without tables.
    Made method may_by_null for class subselect_engine vvirtual.

ChangeSet@1.1810.2410.5, 2006-12-11 18:52:24-07:00, malff@weblab.(none) +1 -0
  minor cleanup

  mysql-test/t/sp_stress_case.test@1.3, 2006-12-11 18:52:21-07:00, malff@weblab.(none) +0 -5
    Minor cleanup ... the test is now faster, even in debug builds

ChangeSet@1.1810.2362.2, 2006-12-11 16:59:02-07:00, malff@weblab.(none) +4 -0
  Bug#19194 (Right recursion in parser for CASE causes excessive stack usage,
    limitation)
  Bug#24854 (Mixing Searched Case with Simple Case inside Stored Procedure
    crashes Mysqld)
  
  Implemented code review (19194) comments

  BitKeeper/deleted/.del-sp_stress_case.sh@1.2, 2006-12-11 16:57:06-07:00, malff@weblab.(none) +0 -0
    Delete: mysql-test/t/sp_stress_case.sh

  mysql-test/r/sp_stress_case.result@1.2, 2006-12-11 16:56:28-07:00, malff@weblab.(none) +96 -18
    Implemented code review comments : use SQL instead of a shell script to
    generate the code

  mysql-test/t/sp_stress_case.test@1.2, 2006-12-11 16:56:28-07:00, malff@weblab.(none) +84 -25
    Adjusted

  sql/sql_yacc.yy@1.371.84.4, 2006-12-11 16:56:28-07:00, malff@weblab.(none) +42 -1
    Added more explicit comments

ChangeSet@1.1810.2428.2, 2006-12-12 01:50:12+03:00, kostja@bodhi.local +9 -0
  Post-merge fixes for Bug#4968 "Stored procedure crash if cursor opened 
  on altered table" and Bug#19733 "Repeated alter, or repeated 
  create/drop, fails"

  mysql-test/r/ps.result@1.56.11.2, 2006-12-12 01:50:10+03:00, kostja@bodhi.local +54 -228
    Post-merge fixes: update results with new tests.

  mysql-test/r/sp.result@1.170.29.1, 2006-12-12 01:50:10+03:00, kostja@bodhi.local +17 -0
    Post-merge fixes: update results.

  mysql-test/t/ps.test@1.56.11.2, 2006-12-12 01:50:10+03:00, kostja@bodhi.local +72 -0
    Add more test cases for Bug#4968 and related.

  mysql-test/t/sp.test@1.174.28.1, 2006-12-12 01:50:10+03:00, kostja@bodhi.local +28 -0
    A post-merge fix: add more testcases for Bug#4968 and related.

  sql/sql_insert.cc@1.146.40.2, 2006-12-12 01:50:10+03:00, kostja@bodhi.local +7 -8
    Post-merge fixes: update comments, fix errors of the manual merge.

  sql/sql_lex.cc@1.142.1.66, 2006-12-12 01:50:10+03:00, kostja@bodhi.local +1 -2
    Fix a manual merge error.

  sql/sql_parse.cc@1.426.131.2, 2006-12-12 01:50:10+03:00, kostja@bodhi.local +13 -11
    Fix a few errors of the manual merge, style.

  sql/sql_table.cc@1.239.40.3, 2006-12-12 01:50:10+03:00, kostja@bodhi.local +10 -10
    Post-merge fixes, fix a few errors of the manual merge, fix style.

  sql/sql_yacc.yy@1.371.89.2, 2006-12-12 01:50:10+03:00, kostja@bodhi.local +1 -3
    A post-merge fix.

ChangeSet@1.2349, 2006-12-11 11:44:03-05:00, patg@radha.myhome.westell.com +12 -0
  WL #3031
  
  * New result files due to new error message/error numbers
  * Fixed system_mysql_db tests to work with servers table
  * Added UTF8 charset to table defs

  mysql-test/include/system_db_struct.inc@1.8, 2006-12-11 11:43:38-05:00, patg@radha.myhome.westell.com +1 -0
    WL# 3031
    
    Added servers table to inc file used in system_mysql_db* tests

  mysql-test/lib/init_db.sql@1.31, 2006-12-11 11:43:39-05:00, patg@radha.myhome.westell.com +1 -1
    WL# 3031
    
    Added UTF charset to table def

  mysql-test/r/mysql.result@1.24.1.9, 2006-12-11 11:43:40-05:00, patg@radha.myhome.westell.com +2 -2
    WL# 3031
    
    New result files, new error messages shifted error #s up by two

  mysql-test/r/rpl_sp.result@1.31, 2006-12-11 11:43:40-05:00, patg@radha.myhome.westell.com +1 -1
    WL# 3031
    
    New result files, new error messages shifted error #s up by two

  mysql-test/r/sp.result@1.241, 2006-12-11 11:43:41-05:00, patg@radha.myhome.westell.com +4 -4
    WL# 3031
    
    New result files, new error messages shifted error #s up by two

  mysql-test/r/sp_gis.result@1.6, 2006-12-11 11:43:42-05:00, patg@radha.myhome.westell.com +2 -2
    WL# 3031
    
    New result files, new error messages shifted error #s up by two

  mysql-test/r/system_mysql_db.result@1.46, 2006-12-11 11:43:43-05:00, patg@radha.myhome.westell.com +14 -0
    WL #3031
    
    New system_mysql_db tests required adding servers table creation. Some more
    comments in these tests would have been nice to explain what they do ;)

  mysql-test/t/system_mysql_db_fix30020.test@1.31, 2006-12-11 11:43:43-05:00, patg@radha.myhome.westell.com +1 -1
    WL #3031
    
    New system_mysql_db tests required adding servers table creation. Some more
    comments in these tests would have been nice to explain what they do ;)

  mysql-test/t/system_mysql_db_fix40123.test@1.5, 2006-12-11 11:43:44-05:00, patg@radha.myhome.westell.com +1 -1
    WL #3031
    
    New system_mysql_db tests required adding servers table creation. Some more
    comments in these tests would have been nice to explain what they do ;)

  mysql-test/t/system_mysql_db_fix50030.test@1.4, 2006-12-11 11:43:45-05:00, patg@radha.myhome.westell.com +4 -1
    WL #3031
    
    New system_mysql_db tests required adding servers table creation. Some more
    comments in these tests would have been nice to explain what they do ;)

  scripts/mysql_create_system_tables.sh@1.44, 2006-12-11 11:43:45-05:00, patg@radha.myhome.westell.com +1 -1
    WL# 3031
    
    Added utf8 charset to table def

  scripts/mysql_fix_privilege_tables.sql@1.53, 2006-12-11 11:43:46-05:00, patg@radha.myhome.westell.com +16 -0
    WL# 3031
    
    Added servers table to mysql_fix_privilege_tables

ChangeSet@1.1810.2420.12, 2006-12-11 16:43:21+01:00, msvensson@neptunus.(none) +2 -0
  Wait for INSERT DELAYED to finish i.e sleep in while loop until
  "select count" is one more.

  mysql-test/r/archive.result@1.13.1.3, 2006-12-11 16:43:18+01:00, msvensson@neptunus.(none) +6 -0
    Wait for INSERT DELAYED to finish i.e sleep in while loop until
    "select count" is one more.

  mysql-test/t/archive.test@1.14.1.3, 2006-12-11 16:43:18+01:00, msvensson@neptunus.(none) +7 -3
    Wait for INSERT DELAYED to finish i.e sleep in while loop until
    "select count" is one more.

ChangeSet@1.2343.10.7, 2006-12-11 16:18:34+01:00, jonas@perch.ndb.mysql.com +1 -0
  ndb - bug#24664
    Fix in bug fix, make sure LCP_SKIP is only used for inserts...

  storage/ndb/src/kernel/blocks/dbtup/DbtupCommit.cpp@1.20, 2006-12-11 16:18:32+01:00, jonas@perch.ndb.mysql.com +1 -1
    Make sure LCP_SKIP is only used for inserts

ChangeSet@1.1616.2900.8, 2006-12-11 15:39:15+01:00, msvensson@neptunus.(none) +1 -0
  Bug#20225 mysqltest runs in an endless loop when trying to start rpl_sys test suite
   - Add printout in safe_connect indicating that mysqltest is in a loop waiting for
  connection to mysqld. Will be printed when --verbose is passed as argument to
    mysqltest

  client/mysqltest.c@1.92.21.38, 2006-12-11 15:39:13+01:00, msvensson@neptunus.(none) +5 -0
    Bug#20225 mysqltest runs in an endless loop when trying to start rpl_sys test suite
     - Add printout in safe_connect indicating that mysqltest is in a loop waiting for
    connection to mysqld 

ChangeSet@1.2343.29.1, 2006-12-11 17:08:10+04:00, bar@mysql.com +2 -0
  after merge fix for bug N20396

  mysql-test/r/binlog_row_mix_innodb_myisam.result@1.16, 2006-12-11 17:08:06+04:00, bar@mysql.com +2 -2
    after merge fix for bug N20396

  mysql-test/t/binlog_row_mix_innodb_myisam.test@1.5, 2006-12-11 17:08:06+04:00, bar@mysql.com +1 -1
    after merge fix for bug N20396

ChangeSet@1.2343.23.2, 2006-12-11 12:33:42+01:00, Kristofer.Pettersson@naruto. +1 -0
  Bug#17489 failed to put data file in custom directory use "data directory" option
  
  - Updated result file to fit test case automerge.

  mysql-test/r/windows.result@1.9, 2006-12-11 12:33:34+01:00, Kristofer.Pettersson@naruto. +6 -0
    Updated result file to fit automerge.

ChangeSet@1.1616.2900.6, 2006-12-11 12:16:20+01:00, msvensson@neptunus.(none) +1 -0
  Pass --no-defaults to embedded server to avoid that it reads any defaults file

  mysql-test/mysql-test-run.pl@1.8.9.109, 2006-12-11 12:16:19+01:00, msvensson@neptunus.(none) +2 -3
    Pass "--no-defaults" to embedded server as "--server-arg=--no-defaults"

ChangeSet@1.2343.22.3, 2006-12-11 15:08:04+04:00, bar@mysql.com +2 -0
  After merge fix for bug N20396 

  mysql-test/r/binlog_row_ctype_ucs.result@1.3, 2006-12-11 15:07:59+04:00, bar@mysql.com +3 -1
    After merge fix for bug N20396 

  mysql-test/r/rpl_row_mysqlbinlog.result@1.4, 2006-12-11 15:07:59+04:00, bar@mysql.com +52 -42
    After merge fix for bug N20396 

ChangeSet@1.1810.2420.9, 2006-12-11 12:06:12+01:00, msvensson@neptunus.(none) +1 -0
  Fix merge error in mysql-test/Makefile.am

  mysql-test/Makefile.am@1.66.1.14, 2006-12-11 12:06:10+01:00, msvensson@neptunus.(none) +1 -1
    Fix merge error

ChangeSet@1.1810.2423.4, 2006-12-11 11:25:45+01:00, msvensson@neptunus.(none) +1 -0
  Bug#23735 mysqlbinlog client fails when reading binlog from stdin
   - Windows opens stdin in text mode by default. Certain characters
     such as CTRL-Z are interpeted as events and the read() method
     will stop. CTRL-Z is the EOF marker in Windows. to get past this
     you have to open stdin in binary mode. Setmode() is used to set
     stdin in binary mode. Errors on setting this mode result in
     halting the function and printing an error message to stderr.

  client/mysqlbinlog.cc@1.123.4.1, 2006-12-11 11:25:42+01:00, msvensson@neptunus.(none) +19 -0
    Apply fix to 5.0 as well

ChangeSet@1.2348, 2006-12-09 13:33:26-05:00, patg@govinda.patg.net +1 -0
  WL #3031
  
  Change to test results, committing so I can clone to another box to complete merge.

  mysql-test/r/mysql_upgrade.result@1.5, 2006-12-09 13:33:23-05:00, patg@govinda.patg.net +0 -170
    WL #3031
    
    Change to test results, committing so I can clone to another box to complete merge.

ChangeSet@1.2343.21.3, 2006-12-09 11:45:33+01:00, jonas@perch.ndb.mysql.com +1 -0
  ya typo

  mysql-test/Makefile.am@1.91.1.2, 2006-12-09 11:45:31+01:00, jonas@perch.ndb.mysql.com +1 -1
    ya typo

ChangeSet@1.2343.21.2, 2006-12-09 11:08:12+01:00, jonas@perch.ndb.mysql.com +1 -0
  fix bug in make install

  mysql-test/Makefile.am@1.91.1.1, 2006-12-09 11:08:11+01:00, jonas@perch.ndb.mysql.com +1 -1
    fix bug in make install

ChangeSet@1.2303.229.2, 2006-12-08 22:19:51-05:00, patg@govinda.patg.net +20 -0
  WL# 3031
  
  Post-commit issues fixed
  * Test results for other tests fixed due to added error #s
  * Memory allocation/free issues found with running with valgrind
  * Fix to mysql-test-run shell script to run federated_server test (installs
  mysql.servers table properly)

  mysql-test/r/1st.result@1.1.1.1, 2006-12-08 22:19:46-05:00, patg@govinda.patg.net +1 -0
    WL #3031
    
    New result for 1st test

  mysql-test/r/backup.result@1.22, 2006-12-08 22:19:46-05:00, patg@govinda.patg.net +13 -13
    WL #3031
    
    Error codes differ due to addition of error codes for federated server errors (2)
    so all test results with hard-coded error #s will be off by two. New results generated.

  mysql-test/r/connect.result@1.25.1.1, 2006-12-08 22:19:46-05:00, patg@govinda.patg.net +3 -0
    WL #3031
    
    Error codes differ due to addition of error codes for federated server errors (2)
    so all test results with hard-coded error #s will be off by two. New results generated.

  mysql-test/r/information_schema.result@1.140.2.1, 2006-12-08 22:19:46-05:00, patg@govinda.patg.net +2 -1
    WL #3031
    
    Error codes differ due to addition of error codes for federated server errors (2)
    so all test results with hard-coded error #s will be off by two. New results generated.

  mysql-test/r/mysql.result@1.24.3.1, 2006-12-08 22:19:46-05:00, patg@govinda.patg.net +2 -2
    WL #3031
    
    Error codes differ due to addition of error codes for federated server errors (2)
    so all test results with hard-coded error #s will be off by two. New results generated.

  mysql-test/r/mysqlcheck.result@1.11.1.1, 2006-12-08 22:19:46-05:00, patg@govinda.patg.net +2 -0
    WL #3031
    
    Error codes differ due to addition of error codes for federated server errors (2)
    so all test results with hard-coded error #s will be off by two. New results generated.

  mysql-test/r/ndb_dd_basic.result@1.13, 2006-12-08 22:19:46-05:00, patg@govinda.patg.net +3 -3
    WL #3031
    
    Error codes differ due to addition of error codes for federated server errors (2)
    so all test results with hard-coded error #s will be off by two. New results generated.

  mysql-test/r/ndb_dd_ddl.result@1.13, 2006-12-08 22:19:46-05:00, patg@govinda.patg.net +1 -1
    WL #3031
    
    Error codes differ due to addition of error codes for federated server errors (2)
    so all test results with hard-coded error #s will be off by two. New results generated.

  mysql-test/r/select.result@1.139, 2006-12-08 22:19:46-05:00, patg@govinda.patg.net +1 -1
    WL #3031
    
    Error codes differ due to addition of error codes for federated server errors (2)
    so all test results with hard-coded error #s will be off by two. New results generated.

  mysql-test/r/show_check.result@1.107.1.1, 2006-12-08 22:19:46-05:00, patg@govinda.patg.net +1 -1
    WL #3031
    
    Error codes differ due to addition of error codes for federated server errors (2)
    so all test results with hard-coded error #s will be off by two. New results generated.

  mysql-test/r/sp.result@1.232.2.1, 2006-12-08 22:19:46-05:00, patg@govinda.patg.net +4 -4
    WL #3031
    
    Error codes differ due to addition of error codes for federated server errors (2)
    so all test results with hard-coded error #s will be off by two. New results generated.

  mysql-test/r/sp_gis.result@1.2.2.1, 2006-12-08 22:19:46-05:00, patg@govinda.patg.net +2 -2
    WL #3031
    
    Error codes differ due to addition of error codes for federated server errors (2)
    so all test results with hard-coded error #s will be off by two. New results generated.

  mysql-test/r/sp_trans.result@1.14, 2006-12-08 22:19:46-05:00, patg@govinda.patg.net +1 -1
    WL #3031
    
    Error codes differ due to addition of error codes for federated server errors (2)
    so all test results with hard-coded error #s will be off by two. New results generated.

  mysql-test/r/system_mysql_db.result@1.43.1.1, 2006-12-08 22:19:46-05:00, patg@govinda.patg.net +1 -0
    WL #3031
    
    Error codes differ due to addition of error codes for federated server errors (2)
    so all test results with hard-coded error #s will be off by two. New results generated.

  mysql-test/r/type_timestamp.result@1.36, 2006-12-08 22:19:46-05:00, patg@govinda.patg.net +7 -7
    WL #3031
    
    Error codes differ due to addition of error codes for federated server errors (2)
    so all test results with hard-coded error #s will be off by two. New results generated.

  mysql-test/r/warnings.result@1.54.1.1, 2006-12-08 22:19:46-05:00, patg@govinda.patg.net +1 -1
    WL #3031
    
    Error codes differ due to addition of error codes for federated server errors (2)
    so all test results with hard-coded error #s will be off by two. New results generated.

  mysql-test/r/xml.result@1.20, 2006-12-08 22:19:46-05:00, patg@govinda.patg.net +9 -9
    WL #3031
    
    Error codes differ due to addition of error codes for federated server errors (2)
    so all test results with hard-coded error #s will be off by two. New results generated.

  scripts/mysql_create_system_tables.sh@1.41.1.2, 2006-12-08 22:19:47-05:00, patg@govinda.patg.net +17 -13
    WL #3031
    
    Fixed old mysql-test-run.sh script to work with new mysql.servers table as reported
    by Cisco

  sql/sql_yacc.yy@1.519.1.2, 2006-12-08 22:19:47-05:00, patg@govinda.patg.net +1 -0
    WL# 3031
    
    OPTIONS/options must be usable as table or column name.

  storage/federated/ha_federated.cc@1.89.1.2, 2006-12-08 22:19:47-05:00, patg@govinda.patg.net +24 -16
    WL# 3031
    
    * Fixed allocation and free issues (warnings found with --valgrind)
    * Fixed cast issues
    * Made sure port was set accordingly

ChangeSet@1.1616.2902.1, 2006-12-08 16:17:46-07:00, tsmith@siva.hindu.god +1 -0
  Makefile.am
      - test* targets are identical (as much as possible) to 5.0 & 5.1 versions
      - use @PERL@ ./mysql-test-run.pl, instead of depending on /usr/bin/perl location
      - PHONY: target includes all test targets

  Makefile.am@1.60.1.19, 2006-12-08 16:17:44-07:00, tsmith@siva.hindu.god +27 -26
    - test* targets are identical (as much as possible) to 5.0 & 5.1 versions
    - use @PERL@ ./mysql-test-run.pl, instead of depending on /usr/bin/perl location
    - PHONY: target includes all test targets

ChangeSet@1.1810.2422.4, 2006-12-08 19:23:12+01:00, rafal@quant.(none) +1 -0
  Minor fix

  include/my_pthread.h@1.90.2.2, 2006-12-08 19:20:22+01:00, rafal@quant.(none) +1 -1
    Fixed missing \ in #if directive.

ChangeSet@1.2343.10.6, 2006-12-08 17:21:29+01:00, jonas@perch.ndb.mysql.com +1 -0
  ndb - bug#24917
    

  storage/ndb/src/kernel/blocks/lgman.cpp@1.22, 2006-12-08 17:21:27+01:00, jonas@perch.ndb.mysql.com +4 -2
    Hande LCP= 0 specially

ChangeSet@1.1616.2900.5, 2006-12-08 17:09:07+01:00, msvensson@neptunus.(none) +1 -0
  Bug#19410 Test 'kill' fails on Windows + SCO

  mysql-test/t/kill.test@1.6.1.8, 2006-12-08 17:09:04+01:00, msvensson@neptunus.(none) +4 -1
    Move the connect of second connection to just before the query to be killed are sent.
    This introduces less variance since the connect time is not included in the delay
    we want between send of query and kill.

ChangeSet@1.1616.2900.4, 2006-12-08 16:48:49+01:00, msvensson@neptunus.(none) +1 -0
  Add missing  space

  client/mysqltest.c@1.92.21.37, 2006-12-08 16:48:47+01:00, msvensson@neptunus.(none) +1 -1
    Add missing  space

ChangeSet@1.1616.2900.3, 2006-12-08 16:43:50+01:00, msvensson@neptunus.(none) +1 -0
  Bug#19410 Test 'kill' fails on Windows + SCO
   - Use "mysql_field_count" to determine if there is a need to
     call "mysql_store_result"

  client/mysqltest.c@1.92.21.36, 2006-12-08 16:43:47+01:00, msvensson@neptunus.(none) +5 -3
    Only call 'mysql_store_result' if 'mysql_field_count' is greater than 0
    indicating that this query has a result set.  This change is mainly since
    if mysql_store_result fails the value returned by mysql_field_count will be reset.

ChangeSet@1.2343.10.5, 2006-12-08 16:15:59+01:00, jonas@perch.ndb.mysql.com +3 -0
  ndb - bug#24914
    Fix start transaction with hint from ndbapi

  storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp@1.110, 2006-12-08 16:15:57+01:00, jonas@perch.ndb.mysql.com +1 -1
    Fix fragments array for API

  storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp@1.94, 2006-12-08 16:15:57+01:00, jonas@perch.ndb.mysql.com +1 -1
    Fix fragments array for API

  storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp@1.155, 2006-12-08 16:15:58+01:00, jonas@perch.ndb.mysql.com +7 -2
    Fix fragments array for API

ChangeSet@1.1616.2900.2, 2006-12-08 16:08:54+01:00, msvensson@neptunus.(none) +1 -0
  Bug#24498 Stack overflow in mysqltest
   - Thanks to Vasil Dimov for the patch!

  client/mysqltest.c@1.92.21.35, 2006-12-08 16:08:52+01:00, msvensson@neptunus.(none) +3 -1
    Use my_snprintf to protect against exceeding size of buff
    Since variable name and valu might not be null terminated it's necessary to
    provide the length of the format specifiers.   

ChangeSet@1.1616.2900.1, 2006-12-08 13:37:40+01:00, msvensson@neptunus.(none) +1 -0
  Backport fix for mysqladmin on windows test failure

  mysql-test/t/mysqladmin.test@1.1.1.1, 2006-12-08 13:37:38+01:00, msvensson@neptunus.(none) +2 -2
    Backport fix for mysqladmin on windows test failure

ChangeSet@1.1810.2423.1, 2006-12-08 12:13:43+01:00, msvensson@neptunus.(none) +2 -0
  Fix problems with "make dist" and running from "binary dist"

  mysql-test/Makefile.am@1.66.1.13, 2006-12-08 12:13:40+01:00, msvensson@neptunus.(none) +1 -1
    Add missing ($DESTDIR) wich cause "make discheck" to fail

  scripts/make_binary_distribution.sh@1.101.1.15, 2006-12-08 12:13:40+01:00, msvensson@neptunus.(none) +1 -1
    Add std_data/*.MY* files to binary dist

ChangeSet@1.2303.185.9, 2006-12-08 15:13:12+04:00, bar@mysql.com +3 -0
  After merge fix

  mysql-test/r/binlog_stm_ctype_ucs.result@1.9, 2006-12-08 15:13:08+04:00, bar@mysql.com +11 -9
    After merge fix

  mysql-test/r/rpl_timezone.result@1.18.1.2, 2006-12-08 15:13:08+04:00, bar@mysql.com +0 -32
    After merge fix

  mysql-test/t/binlog_stm_mix_innodb_myisam.test@1.5, 2006-12-08 15:13:08+04:00, bar@mysql.com +1 -1
    After merge fix

ChangeSet@1.1810.2422.1, 2006-12-08 11:41:12+01:00, rafal@quant.(none) +2 -0
  BUG#24507 (rpl_log.test crash slave):
  
  The problem was located to lie inside current NPTL pthread_exit() 
  implementation. Race conditions in this code can lead to segmentation
  fault. Hovewer, this can happen only in a race between first thread 
  calling pthread_exit() and other threads. 
  
  Workaround implemented in this patch spawns a dummy thread, which
  exits immediately, during thread lib initialization. This will exclude
  segment violations when further threads exit.
   

  include/my_pthread.h@1.90.2.1, 2006-12-08 11:41:07+01:00, rafal@quant.(none) +20 -0
    define macro NPTL_PTHREAD_EXIT_BUG which controls whether workaround
    in my_thread_global_init() is included or not.

  mysys/my_thr_init.c@1.31.2.1, 2006-12-08 11:41:07+01:00, rafal@quant.(none) +39 -0
    Spawn a dummy thread in my_thread_global_init() to initialize pthread 
    lib internal variables.

ChangeSet@1.2343.10.4, 2006-12-08 10:24:48+01:00, jonas@perch.ndb.mysql.com +2 -0
  ndb - bug#21948
    Fix bug in previous changeset...causing SR problems with disk

  storage/ndb/src/kernel/blocks/dbtup/DbtupCommit.cpp@1.19, 2006-12-08 10:24:46+01:00, jonas@perch.ndb.mysql.com +18 -3
    fix some more strict-aliasing problems

  storage/ndb/src/kernel/blocks/tsman.cpp@1.12, 2006-12-08 10:24:46+01:00, jonas@perch.ndb.mysql.com +1 -0
    Fix newly introduced bug

ChangeSet@1.1810.2416.4, 2006-12-08 10:23:03+01:00, df@kahlann.erinye.com +1 -0
  BUG#24896 mysql_upgrade -p fix

  client/mysql_upgrade.c@1.6.3.2, 2006-12-08 10:23:01+01:00, df@kahlann.erinye.com +11 -1
    BUG#24896 mysql_upgrade core dumps on RHEL3 using 5.0.30 commerical binaries

ChangeSet@1.1616.2899.1, 2006-12-08 02:20:09+03:00, kostja@bodhi.local +12 -0
  A fix and test cases for
  Bug#4968 "Stored procedure crash if cursor opened on altered table"
  Bug#19733 "Repeated alter, or repeated create/drop, fails"
  Bug#19182 "CREATE TABLE bar (m INT) SELECT n FROM foo; doesn't work from 
  stored procedure."
  Bug#6895 "Prepared Statements: ALTER TABLE DROP COLUMN does nothing"
  Bug#22060 "ALTER TABLE x AUTO_INCREMENT=y in SP crashes server"
  
  Test cases for bugs 4968, 19733, 6895 will be added in 5.0.
  
  Re-execution of CREATE DATABASE, CREATE TABLE and ALTER TABLE 
  statements in stored routines or as prepared statements caused
  incorrect results (and crashes in versions prior to 5.0.25).
  In 5.1 the problem occured only for CREATE DATABASE, CREATE TABLE
  SELECT and CREATE TABLE with INDEX/DATA DIRECTOY options).
  
  The problem of bugs 4968, 19733, 19282 and 6895 was that functions
  mysql_prepare_table, mysql_create_table and mysql_alter_table were not
  re-execution friendly: during their operation they used to modify contents
  of LEX (members create_info, alter_info, key_list, create_list),
  thus making the LEX unusable for the next execution.
  In particular, these functions removed processed columns and keys from
  create_list, key_list and drop_list. Search the code in sql_table.cc 
  for drop_it.remove() and similar patterns to find evidence.
  
  The fix is to supply to these functions a usable copy of each of the
  above structures at every re-execution of an SQL statement. 
  
  To simplify memory management, LEX::key_list and LEX::create_list
  were added to LEX::alter_info, a fresh copy of which is created for
  every execution.
  
  The problem of crashing bug 22060 stemmed from the fact that the above 
  metnioned functions were not only modifying HA_CREATE_INFO structure in 
  LEX, but also were changing it to point to areas in volatile memory of 
  the execution memory root.
   
  The patch solves this problem by creating and using an on-stack
  copy of HA_CREATE_INFO (note that code in 5.1 already creates and
  uses a copy of this structure in mysql_create_table()/alter_table(),
  but this approach didn't work well for CREATE TABLE SELECT statement).

  mysql-test/r/ps.result@1.31.1.23, 2006-12-08 02:20:05+03:00, kostja@bodhi.local +67 -0
    Update test results (Bug#19182, Bug#22060)

  mysql-test/t/ps.test@1.27.1.29, 2006-12-08 02:20:05+03:00, kostja@bodhi.local +72 -0
    Add a test case for Bug#19182, Bug#22060 (4.1-only parts)

  sql/mysql_priv.h@1.186.108.1, 2006-12-08 02:20:05+03:00, kostja@bodhi.local +7 -12
    LEX::key_list and LEX::create_list were moved to LEX::alter_info.
    Update declarations to use LEX::alter_info instead of these two
    members.

  sql/sql_class.h@1.146.61.1, 2006-12-08 02:20:05+03:00, kostja@bodhi.local +10 -9
    Replace pair<columns, keys> with an instance of Alter_info in
    select_create constructor. We create a new copy of Alter_info
    each time we re-execute SELECT .. CREATE prepared statement.

  sql/sql_insert.cc@1.86.28.1, 2006-12-08 02:20:05+03:00, kostja@bodhi.local +1 -1
    Adjust to a new signature of create_table_from_items.

  sql/sql_lex.cc@1.97.21.5, 2006-12-08 02:20:05+03:00, kostja@bodhi.local +12 -0
    Implement Alter_info::Alter_info that would make a "deep" copy
    of all definition lists (keys, columns).

  sql/sql_lex.h@1.102.41.4, 2006-12-08 02:20:05+03:00, kostja@bodhi.local +48 -8
    Move key_list and create_list to class Alter_info. Implement
    Alter_info::Alter_info that can be used with PS and SP.

  sql/sql_list.h@1.21.3.11, 2006-12-08 02:20:05+03:00, kostja@bodhi.local +62 -12
    Implement a copy constructor of class List that makes a deep copy
    of all list nodes.

  sql/sql_parse.cc@1.271.130.1, 2006-12-08 02:20:05+03:00, kostja@bodhi.local +108 -98
    Adjust to new signatures of mysql_create_table, mysql_alter_table,
    select_create. Functions mysql_create_index and mysql_drop_index has
    become identical after initialization of alter_info was moved to the 
    parser, and were merged. Flag enable_slow_log was not updated for 
    SQLCOM_DROP_INDEX, which is a bug. Just like CREATE INDEX, DROP INDEX
    is currently done via complete table rebuild and is rightfully a slow
    administrative statement.

  sql/sql_show.cc@1.122.25.1, 2006-12-08 02:20:06+03:00, kostja@bodhi.local +1 -1
    Adjust mysqld_show_create_db to a new signature.

  sql/sql_table.cc@1.157.62.1, 2006-12-08 02:20:06+03:00, kostja@bodhi.local +96 -277
    Adjust mysql_alter_table, mysql_recreate_table, mysql_create_table,
    mysql_prepare_table to new signatures.

  sql/sql_yacc.yy@1.203.1.199, 2006-12-08 02:20:06+03:00, kostja@bodhi.local +27 -23
    LEX::key_list and LEX::create_list moved to class Alter_info

ChangeSet@1.2303.185.7, 2006-12-07 15:00:01-05:00, cbell@suse.vabb.com +1 -0
  WL#3618 Minor correction to configure script to remove the replication.m4 script.

  configure.in@1.396.6.2, 2006-12-07 14:59:57-05:00, cbell@suse.vabb.com +0 -1
    WL#3618 Minor correction to configure script to remove the replication.m4 script.

ChangeSet@1.1810.2420.5, 2006-12-07 12:53:32-05:00, cmiller@zippy.cornsilk.net +1 -0
  Having MYSQL_VERSION_ID defined correctly made this KILL_QUERY enum item visible.  This is a
  forwards-incompatible change.

  include/mysql_h.ic@1.3.1.4, 2006-12-07 12:53:30-05:00, cmiller@zippy.cornsilk.net +1 -0
    Having MYSQL_VERSION_ID defined correctly made this KILL_QUERY enum item visible.  This is a
    forwards-incompatible change.

ChangeSet@1.1616.2898.1, 2006-12-07 17:01:00+01:00, Kristofer.Pettersson@naruto. +3 -0
  Bug#17498 failed to put data file in custom directory use "data directory" option
  - Using DATA/INDEX DIRECTORY option on Windows put data/index file into
    default directory because the OS doesn't support readlink().
  - The procedure for changing data/index file directory is 
    different under Windows.
  - With this fix we report a warning if DATA/INDEX option is used,
    but OS doesn't support readlink().

  mysql-test/r/windows.result@1.1.1.1, 2006-12-07 17:00:56+01:00, Kristofer.Pettersson@naruto. +6 -0
    - updated result file.

  mysql-test/t/windows.test@1.1.1.1, 2006-12-07 17:00:57+01:00, Kristofer.Pettersson@naruto. +9 -0
    - Added test case to verify we get warnings if we specify DATA/INDEX
      DIRECTORY on a platform which doesn't support readlink().

  sql/sql_parse.cc@1.271.129.1, 2006-12-07 17:00:58+01:00, Kristofer.Pettersson@naruto. +6 -0
    - Added warnings if DATA/INDEX DIRECTORY option is used but not supported
      by the target platform.

ChangeSet@1.2343.7.6, 2006-12-07 16:30:30+01:00, mskold@mysql.com +1 -0
  ps_7ndb problem now fixed

  mysql-test/t/disabled.def@1.175.33.1, 2006-12-07 16:30:20+01:00, mskold@mysql.com +0 -1
    ps_7ndb problem now fixed

ChangeSet@1.2343.7.5, 2006-12-07 16:27:38+01:00, mskold@mysql.com +1 -0
  Bug#24818 CREATE UNIQUE INDEX (...) USING HASH on a NDB table crashes mysqld: Re-generated test result

  mysql-test/r/ndb_index_unique.result@1.33, 2006-12-07 16:27:28+01:00, mskold@mysql.com +1 -1
    Bug#24818 CREATE UNIQUE INDEX (...) USING HASH on a NDB table crashes mysqld: Re-generated test result

ChangeSet@1.1616.2894.3, 2006-12-07 16:06:29+01:00, df@kahlann.erinye.com +1 -0
  do not autorelease build ids when a child of mysql-test-run.pl dies

  mysql-test/lib/mtr_unique.pl@1.3, 2006-12-07 16:06:27+01:00, df@kahlann.erinye.com +9 -3
    do not autorelease build ids when a child dies

ChangeSet@1.1616.2765.6, 2006-12-07 15:49:59+01:00, mskold@mysql.com +2 -0
  Bug#24818 CREATE UNIQUE INDEX (...) USING HASH on a NDB table crashes mysqld: Added test case

  mysql-test/r/ndb_index_unique.result@1.11.1.3, 2006-12-07 15:49:31+01:00, mskold@mysql.com +15 -0
    Bug#24818 CREATE UNIQUE INDEX (...) USING HASH on a NDB table crashes mysqld: Added test case

  mysql-test/t/ndb_index_unique.test@1.9.1.4, 2006-12-07 15:49:31+01:00, mskold@mysql.com +8 -0
    Bug#24818 CREATE UNIQUE INDEX (...) USING HASH on a NDB table crashes mysqld: Added test case

ChangeSet@1.1616.2891.2, 2006-12-07 18:32:40+04:00, svoj@mysql.com +3 -0
  BUG#23404 - ROW_FORMAT=FIXED option is lost is an index is added to the
              table
  
  ROW_FORMAT option is lost during CREATE/DROP INDEX.
  
  This fix forces CREATE/DROP INDEX to retain ROW_FORMAT by instructing
  mysql_alter_table() that ROW_FORMAT is not used during creating/dropping
  indexes.

  mysql-test/r/alter_table.result@1.40.2.1, 2006-12-07 18:32:39+04:00, svoj@mysql.com +15 -0
    A test case for bug#23404.

  mysql-test/t/alter_table.test@1.29.2.1, 2006-12-07 18:32:39+04:00, svoj@mysql.com +11 -0
    A test case for bug#23404.

  sql/sql_parse.cc@1.271.128.1, 2006-12-07 18:32:39+04:00, svoj@mysql.com +2 -0
    CREATE/DROP INDEX must not change ROW_FORMAT. Setting create_info.row_type
    to ROW_TYPE_NOT_USED informs mysql_alter_table that ROW_FORMAT was not
    used during alteration, and thus must be retained.

ChangeSet@1.2303.101.23, 2006-12-07 15:25:02+01:00, jonas@perch.ndb.mysql.com +12 -0
  ndb - bug#21948 & bug#17605
    fix alloc/free extent in undo log
    allow extent to be reused once a lcp is finished (instead of when next lcp starts)

  storage/ndb/include/kernel/signaldata/Extent.hpp@1.3, 2006-12-07 15:24:59+01:00, jonas@perch.ndb.mysql.com +2 -0
    Add lsn to alloc extent

  storage/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp@1.125.1.3, 2006-12-07 15:25:00+01:00, jonas@perch.ndb.mysql.com +5 -2
    Notify TSMAN of both start and stop of LCP

  storage/ndb/src/kernel/blocks/dbtup/Dbtup.hpp@1.53, 2006-12-07 15:25:00+01:00, jonas@perch.ndb.mysql.com +40 -5
    1) Add unused undo entries for drop table, alloc/free extent
    2) handle create_table better (correct?) in undo log
    3) fix some typos/style

  storage/ndb/src/kernel/blocks/dbtup/DbtupDiskAlloc.cpp@1.16.1.1, 2006-12-07 15:25:00+01:00, jonas@perch.ndb.mysql.com +144 -12
    1) Add unused undo entries for drop table, alloc/free extent
    2) handle create_table better (correct?) in undo log
    3) fix some typos/style

  storage/ndb/src/kernel/blocks/dbtup/DbtupExecQuery.cpp@1.45.1.2, 2006-12-07 15:25:00+01:00, jonas@perch.ndb.mysql.com +3 -3
    fix style

  storage/ndb/src/kernel/blocks/dbtup/DbtupGen.cpp@1.32.1.2, 2006-12-07 15:25:00+01:00, jonas@perch.ndb.mysql.com +2 -2
    fix typo/style

  storage/ndb/src/kernel/blocks/dbtup/DbtupMeta.cpp@1.32, 2006-12-07 15:25:00+01:00, jonas@perch.ndb.mysql.com +194 -37
    Make sure regFragPtr.p->m_logfile_group_id = RNIL is applicable

  storage/ndb/src/kernel/blocks/diskpage.hpp@1.3, 2006-12-07 15:24:59+01:00, jonas@perch.ndb.mysql.com +4 -1
    Add (unused) undo entries for drop table, and alloc/free extent

  storage/ndb/src/kernel/blocks/lgman.cpp@1.19.1.1, 2006-12-07 15:25:00+01:00, jonas@perch.ndb.mysql.com +8 -3
    Add m_logfile_group_id to log callback

  storage/ndb/src/kernel/blocks/print_file.cpp@1.4, 2006-12-07 15:25:00+01:00, jonas@perch.ndb.mysql.com +46 -2
    Add (unused) undo entries for drop table, and alloc/free extent

  storage/ndb/src/kernel/blocks/tsman.cpp@1.11, 2006-12-07 15:25:00+01:00, jonas@perch.ndb.mysql.com +78 -93
    1) change so that LCP limit on resuse of extent is only for duration of lcp
    2) refactor so lookup_extent is put into subroutine

  storage/ndb/src/kernel/blocks/tsman.hpp@1.7, 2006-12-07 15:25:00+01:00, jonas@perch.ndb.mysql.com +51 -3
    refactor so lookup_extent is put into subroutine

ChangeSet@1.2303.247.1, 2006-12-07 09:18:35-05:00, cbell@suse.vabb.com +41 -0
  WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
  Please see worklog for details on files changed.

  BitKeeper/deleted/.del-have_row_based.inc@1.2, 2006-12-07 09:06:07-05:00, cbell@suse.vabb.com +0 -0
    Delete: mysql-test/include/have_row_based.inc

  BitKeeper/deleted/.del-have_row_based.require@1.2, 2006-12-07 09:05:47-05:00, cbell@suse.vabb.com +0 -0
    Delete: mysql-test/r/have_row_based.require

  BitKeeper/deleted/.del-not_row_based.inc@1.2, 2006-12-07 09:06:13-05:00, cbell@suse.vabb.com +0 -0
    Delete: mysql-test/include/not_row_based.inc

  BitKeeper/deleted/.del-not_row_based.require@1.2, 2006-12-07 09:05:54-05:00, cbell@suse.vabb.com +0 -0
    Delete: mysql-test/r/not_row_based.require

  BitKeeper/deleted/.del-replication.m4@1.7, 2006-12-07 09:11:12-05:00, cbell@suse.vabb.com +0 -0
    Delete: config/ac-macros/replication.m4

  config/ac-macros/replication.m4@1.6, 2006-12-07 09:07:41-05:00, cbell@suse.vabb.com +0 -0
    Rename: BitKeeper/deleted/.del-replication.m4 -> config/ac-macros/replication.m4

  BitKeeper/deleted/.del-replication.m4@1.5, 2006-12-07 09:03:59-05:00, Chuck@suse.vabb.com +0 -0
    Delete: config/ac-macros/replication.m4

  config/ac-macros/replication.m4@1.4, 2006-12-07 09:03:27-05:00, Chuck@suse.vabb.com +0 -28
    WL#3618 Remove HAVE_ROW_BASED_REPLICATION #fidef macros

  config/ac-macros/ha_ndbcluster.m4@1.20.1.1, 2006-12-07 09:18:27-05:00, cbell@suse.vabb.com +1 -4
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  configure.in@1.396.6.1, 2006-12-07 09:18:27-05:00, cbell@suse.vabb.com +0 -1
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  include/config-win.h@1.90.1.2, 2006-12-07 09:18:27-05:00, cbell@suse.vabb.com +0 -1
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  include/my_global.h@1.149.1.1, 2006-12-07 09:18:27-05:00, cbell@suse.vabb.com +0 -3
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  libmysqld/CMakeLists.txt@1.6.1.5, 2006-12-07 09:18:27-05:00, cbell@suse.vabb.com +1 -2
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  mysql-test/extra/rpl_tests/rpl_row_basic.test@1.4, 2006-12-07 09:18:27-05:00, cbell@suse.vabb.com +0 -1
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  mysql-test/extra/rpl_tests/rpl_truncate.test@1.3, 2006-12-07 09:18:27-05:00, cbell@suse.vabb.com +0 -1
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  mysql-test/t/rpl_rbr_to_sbr.test@1.6, 2006-12-07 09:18:27-05:00, cbell@suse.vabb.com +0 -1
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  mysql-test/t/rpl_row_basic_11bugs.test@1.11, 2006-12-07 09:18:27-05:00, cbell@suse.vabb.com +0 -1
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  mysql-test/t/rpl_row_basic_8partition.test@1.6, 2006-12-07 09:18:27-05:00, cbell@suse.vabb.com +0 -1
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  mysql-test/t/rpl_row_max_relay_size.test@1.4, 2006-12-07 09:18:27-05:00, cbell@suse.vabb.com +0 -1
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  mysql-test/t/rpl_switch_stm_row_mixed.test@1.13, 2006-12-07 09:18:27-05:00, cbell@suse.vabb.com +0 -1
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/CMakeLists.txt@1.21.1.11, 2006-12-07 09:18:27-05:00, cbell@suse.vabb.com +1 -2
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/handler.cc@1.234.32.1, 2006-12-07 09:18:27-05:00, cbell@suse.vabb.com +0 -8
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/item_create.cc@1.67.3.1, 2006-12-07 09:18:27-05:00, cbell@suse.vabb.com +0 -4
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/log.cc@1.243.2.1, 2006-12-07 09:18:27-05:00, cbell@suse.vabb.com +2 -28
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/log.h@1.16.1.2, 2006-12-07 09:18:27-05:00, cbell@suse.vabb.com +0 -2
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/log_event.cc@1.254.1.1, 2006-12-07 09:18:28-05:00, cbell@suse.vabb.com +7 -10
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/log_event.h@1.138.1.1, 2006-12-07 09:18:28-05:00, cbell@suse.vabb.com +3 -7
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/mysql_priv.h@1.457.6.1, 2006-12-07 09:18:28-05:00, cbell@suse.vabb.com +0 -3
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/mysqld.cc@1.576.24.1, 2006-12-07 09:18:28-05:00, cbell@suse.vabb.com +0 -40
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/rpl_injector.cc@1.7, 2006-12-07 09:18:28-05:00, cbell@suse.vabb.com +0 -3
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/rpl_injector.h@1.5.2.1, 2006-12-07 09:18:28-05:00, cbell@suse.vabb.com +0 -2
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/set_var.cc@1.188.15.1, 2006-12-07 09:18:28-05:00, cbell@suse.vabb.com +0 -9
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/set_var.h@1.93.2.1, 2006-12-07 09:18:28-05:00, cbell@suse.vabb.com +0 -4
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/sp_head.cc@1.244, 2006-12-07 09:18:28-05:00, cbell@suse.vabb.com +0 -2
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/sp_head.h@1.93, 2006-12-07 09:18:28-05:00, cbell@suse.vabb.com +0 -2
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/sql_base.cc@1.360.3.1, 2006-12-07 09:18:28-05:00, cbell@suse.vabb.com +0 -6
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/sql_class.cc@1.298.1.1, 2006-12-07 09:18:28-05:00, cbell@suse.vabb.com +0 -17
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/sql_class.h@1.326.7.1, 2006-12-07 09:18:29-05:00, cbell@suse.vabb.com +0 -15
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/sql_insert.cc@1.234.3.1, 2006-12-07 09:18:29-05:00, cbell@suse.vabb.com +0 -9
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/sql_lex.cc@1.207.4.1, 2006-12-07 09:18:29-05:00, cbell@suse.vabb.com +0 -2
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/sql_lex.h@1.245.7.1, 2006-12-07 09:18:29-05:00, cbell@suse.vabb.com +0 -2
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/sql_load.cc@1.108.2.1, 2006-12-07 09:18:29-05:00, cbell@suse.vabb.com +0 -2
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/sql_view.cc@1.113.1.1, 2006-12-07 09:18:29-05:00, cbell@suse.vabb.com +0 -2
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

  sql/table.cc@1.252.4.1, 2006-12-07 09:18:29-05:00, cbell@suse.vabb.com +0 -5
    WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
    Please see worklog for details on files changed.

ChangeSet@1.1616.2894.2, 2006-12-07 15:02:32+01:00, df@kahlann.erinye.com +3 -0
  BUG#24780 use --sysconfdir in scripts

  scripts/Makefile.am@1.39.1.9, 2006-12-07 15:02:31+01:00, df@kahlann.erinye.com +1 -0
    pass --sysconfdir to scripts

  scripts/mysqlaccess.sh@1.11, 2006-12-07 15:02:31+01:00, df@kahlann.erinye.com +3 -3
    use --sysconfdir instead of hardcoded /etc

  scripts/mysqld_multi.sh@1.21.1.3, 2006-12-07 15:02:31+01:00, df@kahlann.erinye.com +3 -3
    use --sysconfdir instead of hardcoded /etc

ChangeSet@1.1810.2417.3, 2006-12-07 09:31:53+04:00, bar@mysql.com +7 -0
  Bug#22645 LC_TIME_NAMES: Statement not replicated
  Implementing event based replication of LC_TIME_NAMES for 5.0
  (as a replacement of previously made ONE_SHOT replication)

  mysql-test/r/mysqlbinlog.result@1.24.1.1, 2006-12-07 09:31:48+04:00, bar@mysql.com +20 -0
    Fixing results

  mysql-test/r/rpl_locale.result@1.2, 2006-12-07 09:31:48+04:00, bar@mysql.com +4 -0
    Fixing results

  mysql-test/t/disabled.def@1.2.7.2, 2006-12-07 09:31:48+04:00, bar@mysql.com +0 -1
    Enabling rpl_locale

  mysql-test/t/mysqlbinlog.test@1.21.3.1, 2006-12-07 09:31:48+04:00, bar@mysql.com +19 -0
    Check "mysqlbinlog | mysql" reproduces lc_time_names correctly.

  mysql-test/t/rpl_locale.test@1.2, 2006-12-07 09:31:48+04:00, bar@mysql.com +2 -0
    Adding new test: that setting lc_time_names back to en_US works fine.

  sql/log_event.cc@1.174.14.1, 2006-12-07 09:31:48+04:00, bar@mysql.com +34 -3
    Implementing event based replication of LC_TIME_NAMES for 5.0
    (as a replacement of previously made ONE_SHOT replication)

  sql/log_event.h@1.122.2.1, 2006-12-07 09:31:48+04:00, bar@mysql.com +6 -1
    Adding new Q_*_CODE
    Adding "lc_time_names_number" members into Query_log_event and PRINT_EVENT_INFO

ChangeSet@1.1616.2895.3, 2006-12-06 19:13:00-05:00, jpipes@shakedown.(none) +1 -0
  Fix for Bug #20246 (enum mysql_enum_shutdown_level not well-defined in mysql_com.h)
  
  MYSQL_VERSION_ID is tested before it has been defined.  This leads to
  a warning when compiling with -Wundef and it also will break the
  internal logic of mysql_com.h as soon as MYSQL_VERSION_ID exceeds
  50000.
  
  The fix entailed a simple re-ordering of included files in mysql.h

  include/mysql.h@1.135.1.11, 2006-12-06 19:12:58-05:00, jpipes@shakedown.(none) +1 -1
    Fix for Bug #20246 (enum mysql_enum_shutdown_level not well-defined in mysql_com.h)
    
    MYSQL_VERSION_ID is tested before it has been defined.  This leads to
    a warning when compiling with -Wundef and it also will break the
    internal logic of mysql_com.h as soon as MYSQL_VERSION_ID exceeds
    50000.
    
    Placed the #include for mysql_version.h above mysql_com.h to resolve conflict

ChangeSet@1.2343.11.4, 2006-12-06 16:15:20+01:00, df@kahlann.erinye.com +3 -0
  apply magnus' rpl_000015 fix
  TAG: mysql-5.1.14

  mysql-test/mysql-test-run.pl@1.227.1.17, 2006-12-06 16:15:18+01:00, df@kahlann.erinye.com +1 -0
    apply magnus' rpl_000015 fix

  mysql-test/r/rpl_000015.result@1.38.2.1, 2006-12-06 16:15:18+01:00, df@kahlann.erinye.com +1 -1
    apply magnus' rpl_000015 fix

  mysql-test/t/rpl_000015.test@1.36.2.1, 2006-12-06 16:15:18+01:00, df@kahlann.erinye.com +1 -1
    apply magnus' rpl_000015 fix

ChangeSet@1.2303.101.22, 2006-12-06 14:38:32+01:00, jonas@perch.ndb.mysql.com +6 -0
  ndb - add support for periodic mem-reporting

  storage/ndb/include/mgmapi/mgmapi_config_parameters.h@1.28.1.1, 2006-12-06 14:38:30+01:00, jonas@perch.ndb.mysql.com +2 -0
    Add new config paramemter

  storage/ndb/src/kernel/blocks/dbacc/Dbacc.hpp@1.33, 2006-12-06 14:38:30+01:00, jonas@perch.ndb.mysql.com +1 -0
    add support for periodic mem-reporting

  storage/ndb/src/kernel/blocks/dbacc/DbaccMain.cpp@1.77.1.2, 2006-12-06 14:38:30+01:00, jonas@perch.ndb.mysql.com +21 -7
    add support for periodic mem-reporting

  storage/ndb/src/kernel/blocks/dbtup/Dbtup.hpp@1.52, 2006-12-06 14:38:30+01:00, jonas@perch.ndb.mysql.com +1 -0
    add support for periodic mem-reporting

  storage/ndb/src/kernel/blocks/dbtup/DbtupGen.cpp@1.32.1.1, 2006-12-06 14:38:30+01:00, jonas@perch.ndb.mysql.com +20 -4
    add support for periodic mem-reporting

  storage/ndb/src/mgmsrv/ConfigInfo.cpp@1.90.2.1, 2006-12-06 14:38:30+01:00, jonas@perch.ndb.mysql.com +12 -0
    add support for periodic mem-reporting

ChangeSet@1.2343.11.3, 2006-12-06 14:23:10+01:00, df@kahlann.erinye.com +1 -0
  stole magnus' fix for random im test failures from 5.1-maint

  server-tools/instance-manager/guardian.cc@1.33.2.1, 2006-12-06 14:23:08+01:00, df@kahlann.erinye.com +1 -0
    stole magnus' fix for random im test failures from 5.1-maint

ChangeSet@1.1616.2896.1, 2006-12-06 16:32:12+04:00, ramil@mysql.com +4 -0
  Fix for bug #22533: Traditional: Too-long bit value not rejected.
  
  Problem: storing >=8 byte hexadecimal values we don't check data.
  Fix: check if the data fits the {u}longlong range.

  mysql-test/r/select.result@1.34.3.41, 2006-12-06 16:32:08+04:00, ramil@mysql.com +17 -0
    Fix for bug #22533: Traditional: Too-long bit value not rejected.
      - test result.

  mysql-test/t/range.test@1.12.2.12, 2006-12-06 16:32:08+04:00, ramil@mysql.com +2 -2
    Fix for bug #22533: Traditional: Too-long bit value not rejected.
      - adjusted.

  mysql-test/t/select.test@1.28.4.16, 2006-12-06 16:32:08+04:00, ramil@mysql.com +12 -1
    Fix for bug #22533: Traditional: Too-long bit value not rejected.
      - test case.

  sql/item.cc@1.58.77.1, 2006-12-06 16:32:08+04:00, ramil@mysql.com +19 -6
    Fix for bug #22533: Traditional: Too-long bit value not rejected.
      - limit storing value to {U}LONGLONG_MAX in numeric context.

ChangeSet@1.1810.2124.33, 2006-12-06 13:09:30+01:00, jonas@perch.ndb.mysql.com +1 -0
  ndb - bug#22773
    Fix correct log event on db-node disconnect

  ndb/src/mgmsrv/MgmtSrvr.cpp@1.73.40.1, 2006-12-06 13:09:29+01:00, jonas@perch.ndb.mysql.com +1 -1
    Fix typo

ChangeSet@1.2343.11.2, 2006-12-06 09:54:21+01:00, kent@mysql.com +1 -0
  log_event.cc:
    On Windows, byte != char

  sql/log_event.cc@1.252.4.1, 2006-12-06 09:53:46+01:00, kent@mysql.com +6 -6
    On Windows, byte != char

ChangeSet@1.2343.11.1, 2006-12-06 09:17:08+01:00, df@kahlann.erinye.com +1 -0
  build fix for instance manager build on aix and hpux

  server-tools/instance-manager/Makefile.am@1.44, 2006-12-06 09:17:05+01:00, df@kahlann.erinye.com +1 -1
    remove -Wall and -W, not all compilers know these

ChangeSet@1.2303.124.25, 2006-12-05 19:04:46+03:00, petr@outpost.site +2 -0
  remove assert

  sql/event_data_objects.cc@1.82, 2006-12-05 19:04:43+03:00, petr@outpost.site +16 -9
    add a comments that using gmt_sec_to_TIME() won't
    be safe after 2038. per andrey's request

  sql/event_queue.cc@1.20, 2006-12-05 19:04:43+03:00, petr@outpost.site +0 -1
    remove assert, which aborts server in the case when it shouldn't

ChangeSet@1.2343.7.2, 2006-12-05 15:52:31+01:00, mskold@mysql.com +1 -0
  New result

  mysql-test/r/ps_7ndb.result@1.50, 2006-12-05 15:52:10+01:00, mskold@mysql.com +157 -157
    New result

ChangeSet@1.1810.2419.1, 2006-12-05 18:44:14+04:00, svoj@mysql.com +5 -0
  BUG#23526 - show table status reports incorrect values for MyISAM tables
  
  This problem could happen when show table status get outdated copy
  of TABLE object from table cache.
  
  MyISAM updates state info when external_lock() method is called. Though
  I_S does not lock a table to avoid deadlocks. If I_S opens a table which
  is in a table cache it will likely get outdated state info copy.
  
  In this case shared state copy is more recent than local copy. This problem
  is fixed by correctly restoring myisam state info pointer back to original
  value, that is to shared state.
  
  Affects MyISAM only. No good deterministic test case for this fix.

  include/thr_lock.h@1.17.1.1, 2006-12-05 18:44:12+04:00, svoj@mysql.com +1 -0
    Added restore_status, that will be called prior to release a
    read lock.

  mysys/thr_lock.c@1.49.1.3, 2006-12-05 18:44:12+04:00, svoj@mysql.com +10 -2
    Call restore_status if we have lock with priority lower than
    TL_WRITE_CONCURRENT_INSERT.

  myisam/mi_locking.c@1.38.5.1, 2006-12-05 18:44:12+04:00, svoj@mysql.com +9 -0
    Added mi_restore_status, that will be called prior to release a
    read lock. This function is intended to set myisam state pointer
    back to original value, that is to shared state.

  myisam/mi_open.c@1.90.11.1, 2006-12-05 18:44:12+04:00, svoj@mysql.com +1 -0
    Added restore_status, that will be called prior to release a
    read lock.

  myisam/myisamdef.h@1.74.13.1, 2006-12-05 18:44:12+04:00, svoj@mysql.com +1 -0
    Added mi_restore_status, that will be called prior to release a
    read lock.

ChangeSet@1.2303.101.20, 2006-12-05 15:10:56+01:00, jonas@perch.ndb.mysql.com +7 -0
  ndb - bug#24664
    1) run lcp snapshot for both MM and DD tables (so I dont have to change restore to use WRITE)
    2) fix >= and > bug in lcp skip/keep handling
    3) very cool test prog for this :-)

  storage/ndb/include/kernel/signaldata/BackupContinueB.hpp@1.5, 2006-12-05 15:10:54+01:00, jonas@perch.ndb.mysql.com +2 -1
    Add new error insert

  storage/ndb/src/kernel/blocks/ERROR_codes.txt@1.31, 2006-12-05 15:10:54+01:00, jonas@perch.ndb.mysql.com +4 -1
    Add new error insert

  storage/ndb/src/kernel/blocks/backup/Backup.cpp@1.56.1.1, 2006-12-05 15:10:54+01:00, jonas@perch.ndb.mysql.com +35 -0
    Add new error insert

  storage/ndb/src/kernel/blocks/dbtup/DbtupCommit.cpp@1.16.1.1, 2006-12-05 15:10:54+01:00, jonas@perch.ndb.mysql.com +16 -17
    1) get >= and > correct for lcp keep/skip
    2) always run lcp snapshot impl. (previously only for dd tables)

  storage/ndb/src/kernel/blocks/dbtup/DbtupScan.cpp@1.17, 2006-12-05 15:10:54+01:00, jonas@perch.ndb.mysql.com +18 -22
    1) get >= and > correct for lcp keep/skip
    2) always run lcp snapshot impl. (previously only for dd tables)

  storage/ndb/test/ndbapi/testSystemRestart.cpp@1.12, 2006-12-05 15:10:54+01:00, jonas@perch.ndb.mysql.com +66 -0
    add testcase

  storage/ndb/test/run-test/daily-basic-tests.txt@1.54.1.4, 2006-12-05 15:10:54+01:00, jonas@perch.ndb.mysql.com +4 -0
    add testcase

ChangeSet@1.2303.228.3, 2006-12-05 18:05:53+04:00, svoj@mysql.com +1 -0
  BUG#23255 - Missing version parameter in plugin declaration example
  
  Plugin interface version was not raised properly after incompatible
  changes to plugin structure were introduced.
  
  Fixed plugin interface version according to worklog 2761.

  include/mysql/plugin.h@1.24, 2006-12-05 18:05:50+04:00, svoj@mysql.com +2 -2
    Fixed plugin interface version according to worklog 2761.

ChangeSet@1.1810.2417.2, 2006-12-05 16:01:21+04:00, bar@mysql.com +3 -0
  Merging bug#22645 "LC_TIME_NAMES: Statement not replicated" from 4.1.

  mysql-test/t/disabled.def@1.2.7.1, 2006-12-05 16:01:17+04:00, bar@mysql.com +1 -0
    Disabling test in 5.0 temporarily

  sql/mysql_priv.h@1.290.78.2, 2006-12-05 16:01:17+04:00, bar@mysql.com +3 -1
    Adding number_par agrument to constructor

  sql/sql_locale.cc@1.9, 2006-12-05 16:01:17+04:00, bar@mysql.com +327 -327
    Using constructor, instead of structure initialization.

ChangeSet@1.2303.243.1, 2006-12-05 10:46:03+01:00, mats@romeo.(none) +7 -0
  BUG#24490 (segfault inside unpack_row at Field_bit_as_char::set_default()):
  Field_bit::set_default() did not check the bit_len, hence used the undefined
  bit_ptr, causing a crash. The patch adds a check that bit_len > 0 before
  following the bit_ptr.

  mysql-test/extra/rpl_tests/rpl_row_tabledefs.test@1.6, 2006-12-05 10:45:58+01:00, mats@romeo.(none) +20 -20
    Doing select using ORDER BY to prevent table-internal order from
    affecting the result.

  mysql-test/r/rpl_row_tabledefs_2myisam.result@1.7, 2006-12-05 10:45:58+01:00, mats@romeo.(none) +26 -26
    Result change

  mysql-test/r/rpl_row_tabledefs_3innodb.result@1.4, 2006-12-05 10:45:58+01:00, mats@romeo.(none) +26 -26
    Result change

  mysql-test/t/rpl_row_tabledefs_3innodb-slave.opt@1.1, 2006-12-05 10:45:59+01:00, mats@romeo.(none) +1 -0
    New BitKeeper file ``mysql-test/t/rpl_row_tabledefs_3innodb-slave.opt''

  mysql-test/t/rpl_row_tabledefs_3innodb-slave.opt@1.0, 2006-12-05 10:45:59+01:00, mats@romeo.(none) +0 -0

  sql/field.cc@1.352.3.1, 2006-12-05 10:45:58+01:00, mats@romeo.(none) +6 -3
    Checking bit_len before following the bit_ptr, since bit_ptr has no
    sensible value in the case that bit_len == 0.

  sql/field.h@1.190.6.1, 2006-12-05 10:45:58+01:00, mats@romeo.(none) +7 -0
    Field_bit::set_default() used the bit_ptr, but it is undefined,
    hence causing a crash.  In reality, the hierarchy order is not correct
    so added a TODO comment about refactoring.

  sql/log_event.cc@1.255, 2006-12-05 10:45:59+01:00, mats@romeo.(none) +8 -5
    Code was manipulating bits for a FIELD_TYPE_BIT field without checking
    if the bit_len was > 0, hence using an undefined bit_ptr when the
    class was actually a Field_bit_as_char.

ChangeSet@1.1616.2875.3, 2006-12-05 13:45:21+04:00, bar@mysql.com +10 -0
  Bug#22645 LC_TIME_NAMES: Statement not replicated
  Problem: replication of LC_TIME_NAMES didn't work.
  Thus, INSERTS or UPDATES using date_format() always
  worked with en_US on the slave side.
  Fix: adding ONE_SHOT implementation for LC_TIME_NAMES.

  mysql-test/r/rpl_locale.result@1.1, 2006-12-05 13:45:17+04:00, bar@mysql.com +16 -0
    Adding test case

  mysql-test/r/rpl_locale.result@1.0, 2006-12-05 13:45:17+04:00, bar@mysql.com +0 -0

  mysql-test/r/variables.result@1.21.1.44, 2006-12-05 13:45:16+04:00, bar@mysql.com +57 -0
    Adding various tests with LC_TIME_NAMES and
    string and numeric constants and expressions.

  mysql-test/t/rpl_locale.test@1.1, 2006-12-05 13:45:17+04:00, bar@mysql.com +22 -0
    Adding test case

  mysql-test/t/rpl_locale.test@1.0, 2006-12-05 13:45:17+04:00, bar@mysql.com +0 -0

  mysql-test/t/variables.test@1.18.1.35, 2006-12-05 13:45:17+04:00, bar@mysql.com +44 -0
    Adding various tests with LC_TIME_NAMES and
    string and numeric constants and expressions.

  sql/log.cc@1.108.1.59, 2006-12-05 13:45:17+04:00, bar@mysql.com +15 -0
    Adding ONE_SHOT trick for lc_time_names.

  sql/mysql_priv.h@1.186.91.58, 2006-12-05 13:45:17+04:00, bar@mysql.com +2 -0
    Adding new member "number" - for unique locale IDs.
    Adding prototype for my_locale_by_number().

  sql/set_var.cc@1.34.69.1, 2006-12-05 13:45:17+04:00, bar@mysql.com +27 -8
    Modifying lc_time_names variable to understand both:
    - string valyes (using locale name)
    - number values (using locale IDs)

  sql/set_var.h@1.54.1.8, 2006-12-05 13:45:17+04:00, bar@mysql.com +6 -2
    - Marking lc_time_names as ONE_SHOT capable.
    - Marking lc_time_names as INT_RESULT compatible.

  sql/sql_locale.cc@1.1.1.3, 2006-12-05 13:45:17+04:00, bar@mysql.com +1125 -120
    - adding local IDs
    - better layout for locale data declarations
      (splitting long lines into short ones)
    - adding DBUG_ASSERT into my_locale_by_name()
      and moving this function towards the end of file -
      after "my_locales" declaration
    - adding my_locale_by_number() implementation

  sql/sql_parse.cc@1.271.1.219, 2006-12-05 13:45:17+04:00, bar@mysql.com +1 -0
    Adding initialization of lc_time_names
    to its default value (en_US)

ChangeSet@1.2303.233.3, 2006-12-04 22:01:48-08:00, brian@zim.(none) +4 -0
  This updates archive to use new header information in az files and makes way for combining the meta data file with the AZ file. 

  storage/archive/azio.c@1.9.1.2, 2006-12-04 22:01:45-08:00, brian@zim.(none) +103 -44
    This removes the default gzip information and now uses a custom header. 

  storage/archive/azlib.h@1.6, 2006-12-04 22:01:45-08:00, brian@zim.(none) +13 -0
    Additions for custom header and future meta data. 

  storage/archive/ha_archive.cc@1.111.1.3, 2006-12-04 22:01:45-08:00, brian@zim.(none) +16 -46
    Removed data header in favor of new header system.

  storage/archive/ha_archive.h@1.56, 2006-12-04 22:01:45-08:00, brian@zim.(none) +0 -2
    Removes data_version

ChangeSet@1.2303.124.24, 2006-12-04 16:31:30-07:00, malff@weblab.(none) +1 -0
  No bug number.
  Fixed typos in the comments.

  sql/sql_yacc.yy@1.520.1.1, 2006-12-04 16:31:27-07:00, malff@weblab.(none) +3 -3
    Fixed typos

ChangeSet@1.1810.2412.1, 2006-12-04 19:48:49+03:00, petr@outpost.site +1 -0
  Fix Bug #19044 IM aborts on exit
  
  On windows IM aborted on assert once one
  stoppped it. The reason is that we didn't
  close the sockets on windows and therefore,
  the listener thread wasn't able to finish.
  This happened because we used close() call
  for it. While on windows one should use
  closesocket().
  On other platfroms we have appropriate defines
  for closesocket(), so this is the function which
  should be used.

  server-tools/instance-manager/listener.cc@1.24.1.4, 2006-12-04 19:48:47+03:00, petr@outpost.site +5 -5
    close -> closesocket

ChangeSet@1.2303.185.4, 2006-12-04 15:57:56+01:00, guilhem@gbichot3.local +1 -0
  Work around slow my_atomic-t test on hpux11: decrease number of
  iterations on this platform

  unittest/mysys/my_atomic-t.c@1.7, 2006-12-04 15:57:54+01:00, guilhem@gbichot3.local +9 -3
    decrease number of iterations on hpux11 (to hopefully go from one hour
    to a few minutes).

ChangeSet@1.1810.2410.2, 2006-12-04 14:05:27+03:00, anozdrin@booka. +1 -0
  Use standard shell instead of BASH.

  mysql-test/t/log.sh@1.2, 2006-12-04 14:05:24+03:00, anozdrin@booka. +1 -1
    Use standard shell instead of BASH.

ChangeSet@1.2303.101.19, 2006-12-04 10:06:51+01:00, jonas@perch.ndb.mysql.com +1 -0
  ndb - bug#24166
    SR crash if table with disk with hidden primary key...

  storage/ndb/src/kernel/blocks/dbtup/DbtupRoutines.cpp@1.28.1.1, 2006-12-04 10:06:50+01:00, jonas@perch.ndb.mysql.com +1 -1
    fix bug 24166

ChangeSet@1.2303.233.2, 2006-12-03 22:09:32-08:00, brian@zim.(none) +5 -0
  Fixed problems with original gzio() functions not being able to correctly return lengths of long rows. 

  storage/archive/archive_test.c@1.5, 2006-12-03 22:09:29-08:00, brian@zim.(none) +106 -21
    Updated the test for 2gig and 4gig tests.

  storage/archive/azio.c@1.9.1.1, 2006-12-03 22:09:29-08:00, brian@zim.(none) +37 -13
    Fixed return type bug that was inherited in original library. 

  storage/archive/azlib.h@1.5, 2006-12-03 22:09:29-08:00, brian@zim.(none) +2 -2
    Fixes for original library

  storage/archive/ha_archive.cc@1.111.1.2, 2006-12-03 22:09:29-08:00, brian@zim.(none) +101 -35
    Far more error testing!

  storage/archive/ha_archive.h@1.55, 2006-12-03 22:09:29-08:00, brian@zim.(none) +1 -1
    Updated returnn type for pack_row()

ChangeSet@1.2303.182.14, 2006-12-04 03:07:44+03:00, petr@outpost.site +4 -0
  Fix Bug #21328 mysqld issues warnings on ALTER CSV table to MyISAM

  mysql-test/r/csv.result@1.16, 2006-12-04 03:07:42+03:00, petr@outpost.site +8 -0
    update result file

  mysql-test/r/log_tables.result@1.14.1.1, 2006-12-04 03:07:42+03:00, petr@outpost.site +0 -3
    log_tables test contains alter of a CSV table with
    NULLs which results in warnings. In fact this is how
    the bug noticed. So, now when it is fixed we should
    update result file.

  mysql-test/t/csv.test@1.19, 2006-12-04 03:07:42+03:00, petr@outpost.site +14 -0
    add a test for the bug

  storage/csv/ha_tina.cc@1.69.2.1, 2006-12-04 03:07:42+03:00, petr@outpost.site +4 -2
    We should write 0 to the data file in the
    case we meet NULL. CSV does not support
    NULL values internally and we shouldn't
    distinguish them from 0 when writing a row
    (the alternative is to implement full NULL
    support). Otherwise other routines (such as
    Field::check_int() become confused).
    In 5.0 NULLs are stored as zeroes. In 5.1 it
    somehow turned into empty string. Which is wrong.

ChangeSet@1.2303.235.1, 2006-12-04 01:48:11+02:00, jani@a88-112-41-254.elisa-laajakaista.fi +1 -0
  Type of last argument was changed in .c file, but not in the
  extern. pchar is dependent on system, so this failed on solaris.

  include/m_ctype.h@1.130.1.1, 2006-12-04 01:48:08+02:00, jani@a88-112-41-254.elisa-laajakaista.fi +1 -1
    Type of last argument was changed in .c file, but not in the
    extern. pchar is dependent on system, so this failed on solaris.

ChangeSet@1.2303.233.1, 2006-12-02 00:30:49-08:00, brian@zim.(none) +4 -0
  Formailized the row buffer structure, implemented new streaming format. 

  mysql-test/r/archive.result@1.25, 2006-12-02 00:30:46-08:00, brian@zim.(none) +1 -1
    Added cleanup for additional tables

  mysql-test/t/archive.test@1.26, 2006-12-02 00:30:46-08:00, brian@zim.(none) +1 -1
    Added cleanup for additional tables.

  storage/archive/ha_archive.cc@1.111.1.1, 2006-12-02 00:30:46-08:00, brian@zim.(none) +225 -75
    Rows are now proceeded with length. Added new record buffer structure and methods. 

  storage/archive/ha_archive.h@1.54, 2006-12-02 00:30:46-08:00, brian@zim.(none) +24 -2
    New structure for buffer

ChangeSet@1.2303.230.1, 2006-12-01 17:26:52-08:00, brian@zim.(none) +32 -0
  This finishes the work (someone) started to remove FIELD_ types and use the Enum MYSQL types. The second part to this is to actually deprecate the FIELD defines in mysql_com.h

  client/mysql.cc@1.244.2.1, 2006-12-01 17:26:44-08:00, brian@zim.(none) +26 -26
    Field update to MYSQL

  client/mysqldump.c@1.252.5.1, 2006-12-01 17:26:44-08:00, brian@zim.(none) +2 -2
    Field -> MySQL

  include/mysql.h@1.170.1.4, 2006-12-01 17:26:45-08:00, brian@zim.(none) +2 -2
    Field -> MySQL

  server-tools/instance-manager/protocol.cc@1.15, 2006-12-01 17:26:45-08:00, brian@zim.(none) +1 -1
    Field -> MySQL

  sql/field.cc@1.355.3.1, 2006-12-01 17:26:45-08:00, brian@zim.(none) +94 -94
    Field -> MySQL

  sql/field.h@1.195.1.1, 2006-12-01 17:26:45-08:00, brian@zim.(none) +24 -24
    Field -> MySQL

  sql/field_conv.cc@1.62.1.1, 2006-12-01 17:26:45-08:00, brian@zim.(none) +24 -24
    Field -> MySQL

  sql/handler.cc@1.234.30.1, 2006-12-01 17:26:45-08:00, brian@zim.(none) +2 -2
    Field -> MySQL

  sql/item.cc@1.220.3.1, 2006-12-01 17:26:45-08:00, brian@zim.(none) +6 -6
    Field -> MYSQL

  sql/item_func.cc@1.335.1.1, 2006-12-01 17:26:45-08:00, brian@zim.(none) +1 -1
    Field -> MySQL

  sql/item_subselect.cc@1.138, 2006-12-01 17:26:45-08:00, brian@zim.(none) +1 -1
    Field -> MySQL

  sql/item_subselect.h@1.82.1.1, 2006-12-01 17:26:45-08:00, brian@zim.(none) +1 -1
    Field -> MySQL

  sql/item_sum.h@1.108.1.1, 2006-12-01 17:26:45-08:00, brian@zim.(none) +2 -2
    Field -> MySQL

  sql/item_timefunc.cc@1.142.2.1, 2006-12-01 17:26:45-08:00, brian@zim.(none) +1 -1
    Field -> MySQL

  sql/log_event.cc@1.252.3.1, 2006-12-01 17:26:45-08:00, brian@zim.(none) +1 -1
    Field -> MySQL

  sql/opt_range.cc@1.248.2.1, 2006-12-01 17:26:46-08:00, brian@zim.(none) +4 -4
    Field -> MySQL

  sql/sp.cc@1.131.2.1, 2006-12-01 17:26:46-08:00, brian@zim.(none) +3 -3
    Field -> MySQL

  sql/sql_acl.cc@1.223.1.1, 2006-12-01 17:26:46-08:00, brian@zim.(none) +2 -2
    Field -> MYSQL

  sql/sql_analyse.cc@1.71, 2006-12-01 17:26:46-08:00, brian@zim.(none) +9 -9
    Field -> MYSQL

  sql/sql_insert.cc@1.234.2.1, 2006-12-01 17:26:46-08:00, brian@zim.(none) +1 -1
    Field -> MySQL

  sql/sql_load.cc@1.109, 2006-12-01 17:26:46-08:00, brian@zim.(none) +1 -1
    Field -> MySQL

  sql/sql_parse.cc@1.600.3.1, 2006-12-01 17:26:46-08:00, brian@zim.(none) +3 -3
    Field -> MySQL

  sql/sql_select.cc@1.470.1.1, 2006-12-01 17:26:46-08:00, brian@zim.(none) +9 -9
    Field -> MySQL

  sql/sql_select.h@1.114, 2006-12-01 17:26:46-08:00, brian@zim.(none) +1 -1
    Field -> MySQL

  sql/sql_show.cc@1.376.2.1, 2006-12-01 17:26:47-08:00, brian@zim.(none) +14 -14
    Field -> MySQL

  sql/sql_table.cc@1.372.6.1, 2006-12-01 17:26:47-08:00, brian@zim.(none) +36 -36
    Field -> MySQL

  sql/sql_yacc.yy@1.519.2.1, 2006-12-01 17:26:47-08:00, brian@zim.(none) +44 -44
    Field -> MySQL

  sql/table.cc@1.257.4.1, 2006-12-01 17:26:47-08:00, brian@zim.(none) +6 -6
    Field -> MySQL

  sql/unireg.cc@1.90, 2006-12-01 17:26:47-08:00, brian@zim.(none) +5 -5
    Field -> MySQL

  storage/innobase/handler/ha_innodb.cc@1.279.23.1, 2006-12-01 17:26:47-08:00, brian@zim.(none) +41 -41
    Field -> MySQL

  storage/myisam/ha_myisam.cc@1.203, 2006-12-01 17:26:47-08:00, brian@zim.(none) +3 -3
    Field -> MySQL

  tests/mysql_client_test.c@1.222.1.1, 2006-12-01 17:26:48-08:00, brian@zim.(none) +2 -2
    Field -> MySQL

ChangeSet@1.2303.229.1, 2006-12-01 19:47:45-05:00, patg@radha.tangent.org +19 -0
  WL# 3031
  
  Backport of functionality in private 5.2 tree. 
  
  Added new language to parser, new mysql.servers table and associated code
  to be used by the federated storage engine to allow central connection information
  per WL entry.

  sql/sql_yacc.yy.bak@1.1, 2006-12-01 19:47:29-05:00, patg@radha.tangent.org +11279 -0
    WL #3031
    
    Added tokens and definitions required for new CREATE/ALTER/DROP SERVER
    for sql_servers functionality. See WL for details.

  sql/sql_yacc.yy.bak@1.0, 2006-12-01 19:47:29-05:00, patg@radha.tangent.org +0 -0

  libmysqld/Makefile.am@1.104, 2006-12-01 19:47:17-05:00, patg@radha.tangent.org +2 -1
    WL# 3031
    
    Added sql_servers.cc to libmysqld Makefile.am

  mysql-test/lib/init_db.sql@1.28.1.1, 2006-12-01 19:47:17-05:00, patg@radha.tangent.org +14 -0
    WL# 3031
    
    Added mysql.servers creation to init_db.sql, which is in turn called by mysql-test-run.pl

  mysql-test/r/federated_server.result@1.1, 2006-12-01 19:47:29-05:00, patg@radha.tangent.org +112 -0
    WL #3031
    
    New test results for testing new connection scheme

  mysql-test/r/federated_server.result@1.0, 2006-12-01 19:47:29-05:00, patg@radha.tangent.org +0 -0

  mysql-test/t/federated_server.test@1.1, 2006-12-01 19:47:30-05:00, patg@radha.tangent.org +103 -0
    WL #3031
    
    New test for testing CREATE/ALTER/DROP SERVER, as well as testing that
    federated works with both tradition connection scheme as well as new
    connection scheme.

  mysql-test/t/federated_server.test@1.0, 2006-12-01 19:47:30-05:00, patg@radha.tangent.org +0 -0

  scripts/mysql_create_system_tables.sh@1.41.1.1, 2006-12-01 19:47:18-05:00, patg@radha.tangent.org +27 -0
    WL# 3031
    
    Added mysql.servers table creation to script called by non-perl mysql-test-run

  sql/Makefile.am@1.168, 2006-12-01 19:47:19-05:00, patg@radha.tangent.org +3 -2
    WL# 3031
    
    Added sql_servers source and headers to Makefile.am to be built

  sql/lex.h@1.167, 2006-12-01 19:47:20-05:00, patg@radha.tangent.org +7 -0
    WL# 3031
    
    Added tokens needed for SERVERS scheme

  sql/mysql_priv.h@1.460.3.1, 2006-12-01 19:47:20-05:00, patg@radha.tangent.org +1 -0
    WL #3031
    
    Added sql_servers.h to mysql_priv.h so mysqld.cc and other code can link with sql_servers code

  sql/mysqld.cc@1.576.23.1, 2006-12-01 19:47:21-05:00, patg@radha.tangent.org +4 -0
    WL# 3031
    
    Added servers_free and servers_init to mysqld

  sql/share/errmsg.txt@1.134.1.1, 2006-12-01 19:47:26-05:00, patg@radha.tangent.org +5 -0
    WL# 3031
    
    Added two new errors to errormsg.sys

  sql/sql_lex.cc@1.211, 2006-12-01 19:47:22-05:00, patg@radha.tangent.org +15 -0
    WL# 3031
    
    Added lex->server_options parameter initialisation

  sql/sql_lex.h@1.249.1.1, 2006-12-01 19:47:23-05:00, patg@radha.tangent.org +10 -0
    WL #3031
    
    Added SQLCOM commands needed for sql_server actions

  sql/sql_parse.cc@1.600.2.1, 2006-12-01 19:47:24-05:00, patg@radha.tangent.org +52 -0
    WL# 3031
    
    Added switch actions for new SQLCOM sql_server actions

  sql/sql_servers.cc@1.1, 2006-12-01 19:47:28-05:00, patg@radha.tangent.org +1238 -0
    WL #3031
    
    sql_servers.cc - all methods required for manipulating mysql.servers table
    to work with federated new connection scheme (CREATE/ALTER/DROP SERVER ...)

  sql/sql_servers.cc@1.0, 2006-12-01 19:47:28-05:00, patg@radha.tangent.org +0 -0

  sql/sql_servers.h@1.1, 2006-12-01 19:47:28-05:00, patg@radha.tangent.org +66 -0
    WL #3031
    
    New header file for sql_servers functionality

  sql/sql_servers.h@1.0, 2006-12-01 19:47:28-05:00, patg@radha.tangent.org +0 -0

  sql/sql_yacc.yy@1.519.1.1, 2006-12-01 19:47:25-05:00, patg@radha.tangent.org +83 -0
    WL #3031
    
    Added tokens needed for sql_servers, CREATE/DROP/ALTER server functionality

  storage/federated/ha_federated.cc@1.89.1.1, 2006-12-01 19:47:26-05:00, patg@radha.tangent.org +215 -85
    WL #3031
    
    Modified federated storage engine to use new connection scheme (servers 
    table) if connection string only specifies connection name vs. complete
    URL

  storage/federated/ha_federated.h@1.42, 2006-12-01 19:47:27-05:00, patg@radha.tangent.org +7 -1
    WL# 3031
    
    Added new share members needed for connection scheme

ChangeSet@1.1616.2892.1, 2006-12-01 19:11:43+04:00, svoj@mysql.com +3 -0
  BUG#23196 - MySQL server does not exit / shutdown when
              storage engine returns errno 12
  
  If there is not enough memory to store or update blob record
  (while allocating record buffer), myisam marks table as crashed.
  
  With this fix myisam attempts to roll an index back and return
  an error, not marking a table as crashed.
  
  Affects myisam tables with blobs only. No test case for this fix.

  myisam/mi_dynrec.c@1.36.1.6, 2006-12-01 19:11:41+04:00, svoj@mysql.com +2 -2
    If there is not enough memory to store or update blob record
    (while allocating record buffer), return HA_ERR_OUT_OF_MEM
    instead of ENOMEM. In this case storage engine can simply
    roll an index back and return an error, not marking table
    as crashed.

  myisam/mi_update.c@1.15.1.3, 2006-12-01 19:11:41+04:00, svoj@mysql.com +2 -1
    In some cases do not mark a table as crashed if we run out of
    memory. Instead roll an index back and return an error. These
    cases are signalled with my_errno set to HA_ERR_OUT_OF_MEM.

  myisam/mi_write.c@1.46.1.5, 2006-12-01 19:11:41+04:00, svoj@mysql.com +1 -1
    In some cases do not mark a table as crashed if we run out of
    memory. Instead roll an index back and return an error. These
    cases are signalled with my_errno set to HA_ERR_OUT_OF_MEM.

ChangeSet@1.1810.2410.1, 2006-12-01 13:25:06+03:00, kostja@bodhi.local +4 -0
  A fix and a test case for Bug#24179 "select b into $var" fails with 
  --cursor_protocol": fix a misleading error message in case of
  SELECT .. INTO.

  sql/sql_class.cc@1.223.1.32, 2006-12-01 13:25:02+03:00, kostja@bodhi.local +14 -0
    Implement select_result::check_simple_select hierarchy to 
    support correct error messages in case of SELECT .. INTO and C API 
    cursors.

  sql/sql_class.h@1.230.45.1, 2006-12-01 13:25:02+03:00, kostja@bodhi.local +10 -2
    Set the error message inside the function that checks for the error
    condition (simple_select, renamed to check_simple_select).

  sql/sql_prepare.cc@1.142.20.1, 2006-12-01 13:25:02+03:00, kostja@bodhi.local +1 -2
    Use a new method that now sets the error.

  tests/mysql_client_test.c@1.167.1.51, 2006-12-01 13:25:02+03:00, kostja@bodhi.local +28 -0
    Add a test case for Bug#24179 "select b into $var" fails with 
    --cursor_protocol" (check for the right error message and error code).

ChangeSet@1.2303.135.25, 2006-11-30 18:43:33-07:00, malff@weblab.(none) +5 -0
  WL#3602
  Post review changes
  the --read-only option is not enforced for the slave thread in replication, or for the SUPER user.

  mysql-test/r/rpl_read_only.result@1.1, 2006-11-30 18:43:30-07:00, malff@weblab.(none) +113 -0
    New test

  mysql-test/r/rpl_read_only.result@1.0, 2006-11-30 18:43:30-07:00, malff@weblab.(none) +0 -0

  mysql-test/t/rpl_read_only-slave.opt@1.1, 2006-11-30 18:43:30-07:00, malff@weblab.(none) +1 -0
    New test

  mysql-test/t/rpl_read_only-slave.opt@1.0, 2006-11-30 18:43:30-07:00, malff@weblab.(none) +0 -0

  mysql-test/t/rpl_read_only.test@1.1, 2006-11-30 18:43:30-07:00, malff@weblab.(none) +105 -0
    New test

  mysql-test/t/rpl_read_only.test@1.0, 2006-11-30 18:43:30-07:00, malff@weblab.(none) +0 -0

  sql/handler.cc@1.234.24.2, 2006-11-30 18:43:30-07:00, malff@weblab.(none) +5 -1
    Post review changes
    Allowing writes for the slave thread or for SUPER, in read-only mode

  sql/lock.cc@1.100, 2006-11-30 18:43:30-07:00, malff@weblab.(none) +5 -1
    Post review changes
    Allowing writes for the slave thread or for SUPER, in read-only mode

ChangeSet@1.2303.182.13, 2006-11-30 12:23:55+03:00, anozdrin@booka. +12 -0
  Fix for the following bugs:
    - BUG#22306: STOP INSTANCE can not be applied for instances in Crashed,
      Failed and Abandoned;
    - BUG#23476: DROP INSTANCE does not work
    - BUG#23215: STOP INSTANCE takes too much time
  
  BUG#22306:
  The problem was that STOP INSTANCE checked that mysqld is up and running.
  If it was not so, STOP INSTANCE reported an error. Now, STOP INSTANCE
  reports an error if the instance has been started (mysqld can be down).
  
  BUG#23476:
  The problem was that DROP INSTANCE tried to stop inactive instance. The fix is
  trivial.
  
  BUG#23215:
  The problem was that locks were not acquired properly, so the
  instance-monitoring thread could not acquire the mutex, holded by the
  query-processing thread.
  
  The fix is to simplify locking scheme by moving instance-related information to
  Instance-class out of Guardian-class. This allows to get rid of storing a
  separate list of Instance-information in Guardian and keeping it synchronized
  with the original list in Instance_map.

  server-tools/instance-manager/commands.cc@1.43, 2006-11-30 12:23:51+03:00, anozdrin@booka. +171 -119
    1. Introduce Instance_cmd class -- base class for the commands
       that deal with the one instance;
    2. Remove Instance_map argument from command constructors;
    3. Ensure, that Instance Map and Instance are locked in the proper order;
    4. Polishing.

  server-tools/instance-manager/commands.h@1.17, 2006-11-30 12:23:51+03:00, anozdrin@booka. +65 -39
    1. Introduce Instance_cmd class -- base class for the commands
       that deal with the one instance;
    2. Remove Instance_map argument from command constructors;
    3. Polishing.

  server-tools/instance-manager/guardian.cc@1.34, 2006-11-30 12:23:51+03:00, anozdrin@booka. +257 -282
    1. Move "extended" instance information to the Instance-class.
       That allows to get rid of storing instance-related container and data in
       Guardian class, that significantly simplifies locking schema.
    2. Polishing.

  server-tools/instance-manager/guardian.h@1.17, 2006-11-30 12:23:51+03:00, anozdrin@booka. +50 -73
    1. Move "extended" instance information to the Instance-class.
       That allows to get rid of storing instance-related container and data in
       Guardian class, that significantly simplifies locking schema.
    2. Polishing.

  server-tools/instance-manager/instance.cc@1.48, 2006-11-30 12:23:51+03:00, anozdrin@booka. +418 -214
    1. Move "extended" instance information to the Instance-class.
    2. Introduce new state STOPPED to mark that guarded instance
       is stopped and should not be restarted by Guardian.
    3. Polishing.

  server-tools/instance-manager/instance.h@1.19, 2006-11-30 12:23:51+03:00, anozdrin@booka. +134 -37
    1. Move "extended" instance information to the Instance-class.
    2. Introduce new state STOPPED to mark that guarded instance
       is stopped and should not be restarted by Guardian.
    3. Polishing.

  server-tools/instance-manager/instance_map.cc@1.35, 2006-11-30 12:23:51+03:00, anozdrin@booka. +120 -97
    1. Move flush_instances() from Instance_map to Manager.
    2. Polishing.

  server-tools/instance-manager/instance_map.h@1.24, 2006-11-30 12:23:51+03:00, anozdrin@booka. +14 -47
    1. Move flush_instances() from Instance_map to Manager.
    2. Polishing.

  server-tools/instance-manager/instance_options.h@1.23, 2006-11-30 12:23:51+03:00, anozdrin@booka. +0 -1
    Polishing.

  server-tools/instance-manager/manager.cc@1.45, 2006-11-30 12:23:51+03:00, anozdrin@booka. +120 -34
    1. Move flush_instances() from Instance_map to Manager.
    2. Polishing.

  server-tools/instance-manager/manager.h@1.11, 2006-11-30 12:23:51+03:00, anozdrin@booka. +7 -1
    1. Move flush_instances() from Instance_map to Manager.
    2. Polishing.

  server-tools/instance-manager/user_map.cc@1.23, 2006-11-30 12:23:51+03:00, anozdrin@booka. +10 -10
    Polishing.

ChangeSet@1.1810.2407.1, 2006-11-30 11:08:23+04:00, bar@mysql.com +3 -0
  Bug#24158 SET PASSWORD in binary log fails under ANSI_QUOTES
  Problem: ``SET PASSWORD FOR foo@localhost'' was written into
  binary log using double quites: ``SET PASSWORD FOR "foo"@"localhost"...''.
  If sql_mode was set to ANSI_QUOTES, parser on slave considered
  "foo" and "localhost" as identifiers instead of strigns constants,
  so it failed to parse, generated syntax error and slave then stopped.
  Fix: changing binary log entries to use single quotes:
  ``SET PASSWORD FOR 'foo'@'localhost'...'' not to depend on ANSI_QUOTES.

  mysql-test/r/rpl_do_grant.result@1.4.1.1, 2006-11-30 11:08:11+04:00, bar@mysql.com +11 -0
    Adding test case

  mysql-test/t/rpl_do_grant.test@1.5.1.1, 2006-11-30 11:08:11+04:00, bar@mysql.com +16 -0
    Adding test case

  sql/sql_acl.cc@1.128.41.1, 2006-11-30 11:08:11+04:00, bar@mysql.com +1 -1
    Using single quotes instead of double quotes,
    not to fails when sql_mode=ANSI_QUOTES.

ChangeSet@1.1810.2405.1, 2006-11-29 13:56:59-05:00, patg@radha.local +2 -0
  federated.test:
    fixed test to replace port to SLAVE_PORT in result file
  federated.result:
    new result file

  mysql-test/r/federated.result@1.25.1.15, 2006-11-29 13:56:41-05:00, patg@radha.local +2 -2
    new result file

  mysql-test/t/federated.test@1.19.1.16, 2006-11-29 13:56:18-05:00, patg@radha.local +3 -2
    fixed test to replace port to SLAVE_PORT in result file

ChangeSet@1.1616.2882.1, 2006-11-28 15:46:01+01:00, istruewing@chilla.local +1 -0
  Bug#23139 - myisamchk and mysqld crash when trying to access table
  
  A corrupted compressed table could crash the server and
  myisamchk.
  
  The data file of an uncompressed table contains just the records.
  There is no header in the data file.
  
  However the data file of a compressed table has a header.
  The header describes how the table was compressed. This
  information is necessary to extract the records from the
  compressed data file.
  
  Part of the compressed data file header are the [de]code tables.
  They are numeric representations of the Huffman trees used for
  coding and decoding. A Huffman tree is a binary tree. Every
  node has two childs. A child can be a leaf or a branch. Leaves
  contain the decoded value. Branches point to another tree node.
  
  Since the [de]code table is represented as an array of childs,
  the branches need to point at a child within the same array.
  The corruption of the compressed data file from the bug report
  was a couple of branches that pointed outside their array.
  This condition had not been correctly checked.
  
  I added some checks for the pointers in the decode tables.
  This type of corruption will no longer crash the server or
  myisamchk.
  
  No test case. A corrupted compressed table is required.

  myisam/mi_packrec.c@1.25.1.6, 2006-11-28 15:46:00+01:00, istruewing@chilla.local +328 -37
    Bug#23139 - myisamchk and mysqld crash when trying to access table
    Added some checks for the pointers in the decode tables.
    Added comments, DBUG prints, style fixes.

ChangeSet@1.1810.2372.2, 2006-11-28 16:26:15+04:00, bar@mysql.com +12 -0
  Bug#20396 Bin Log does not get DELIMETER cmd - Recover StoredProc fails
  Problem: when loading mysqlbinlog dumps, CREATE PROCEDURE having semicolons
  in their bodies failed.
  Fix: Using safe delimiter "/*!*/;" to dump log entries.

  mysql-test/r/ctype_ucs_binlog.result@1.4.3.1, 2006-11-28 16:26:08+04:00, bar@mysql.com +11 -9
    Fixing test results

  client/mysqlbinlog.cc@1.123.3.1, 2006-11-28 16:26:08+04:00, bar@mysql.com +27 -11
    - Adding PRINT_EVENT_INFO argument to dump_xxx_log_entries()
    - Setting delimiter to "/*!*/;" before calling dump functions

  mysql-test/t/mix_innodb_myisam_binlog.test@1.20.4.1, 2006-11-28 16:26:08+04:00, bar@mysql.com +1 -1
    Fixing LIKE expression

  mysql-test/r/mix_innodb_myisam_binlog.result@1.24.6.1, 2006-11-28 16:26:08+04:00, bar@mysql.com +2 -2
    Fixing test results

  mysql-test/r/mysqlbinlog.result@1.25, 2006-11-28 16:26:08+04:00, bar@mysql.com +148 -93
    Fixing test results
    Adding test case

  mysql-test/r/mysqlbinlog2.result@1.10, 2006-11-28 16:26:08+04:00, bar@mysql.com +578 -508
    Fixing test results

  mysql-test/r/rpl_charset.result@1.20.3.1, 2006-11-28 16:26:08+04:00, bar@mysql.com +80 -78
    Fixing test results

  mysql-test/r/rpl_timezone.result@1.12.2.1, 2006-11-28 16:26:08+04:00, bar@mysql.com +23 -21
    Fixing test results

  mysql-test/r/user_var-binlog.result@1.5.1.2, 2006-11-28 16:26:08+04:00, bar@mysql.com +15 -13
    Fixing test results

  mysql-test/t/mysqlbinlog.test@1.21.1.13, 2006-11-28 16:26:08+04:00, bar@mysql.com +24 -0
    Adding test case

  sql/log_event.cc@1.174.1.43, 2006-11-28 16:26:08+04:00, bar@mysql.com +42 -31
    Using print_event_info->delimiter instead of
    hard-coded semicolon as a query end marker.

  sql/log_event.h@1.122.1.5, 2006-11-28 16:26:09+04:00, bar@mysql.com +2 -0
    Adding new member to store delimiter.

ChangeSet@1.1810.2383.1, 2006-11-27 19:12:10+03:00, kaa@polly.local +3 -0
  Fix for bug #24261 "crash when WHERE contains NOT IN ('<negative value>') for unsigned column type"
  
  When calculating a SEL_TREE for the "c_{i-1} < X < c_i" interval, check if the tree returned for the "-inf < X < c_0" interval is NULL

  mysql-test/r/func_in.result@1.28.2.1, 2006-11-27 19:12:07+03:00, kaa@polly.local +4 -0
    Added testcase for bug #24261 "crash when WHERE contains NOT IN ('<negative value>') for unsigned column type"

  mysql-test/t/func_in.test@1.22.2.1, 2006-11-27 19:12:07+03:00, kaa@polly.local +7 -0
    Added testcase for bug #24261 "crash when WHERE contains NOT IN ('<negative value>') for unsigned column type"

  sql/opt_range.cc@1.159.30.1, 2006-11-27 19:12:07+03:00, kaa@polly.local +2 -1
    When calculating a SEL_TREE for the "c_{i-1} < X < c_i" interval, check if the tree returned for the "-inf < X < c_0" interval is NULL

ChangeSet@1.2303.185.3, 2006-11-26 15:55:49+02:00, aelkin@dsl-hkibras-fe30f900-107.dhcp.inet.fi +1 -0
  Bug #24487 Valgrind: uninited byte in table->record[1] in binlog code for rbr + innodb
  
  The reason of this valgrind's compaint is not a bug but rather a feature of bitwise ops:
  for any value of the byte x
  x | 1 -> 1,  and x & 0 -> 0.
  x, being a null_byte part of record[1] can be left unassigned even after
  ha_innobase::index_read_idx because the above and still be correct.
  Addding a check memory upon the invocation of the function can detect this fact
  long before record[1], old record, is eventually passed to my_write.
  
  Fixed with initialization of record[1]'s null_bytes part in open_table_from_share.

  sql/table.cc@1.252.3.1, 2006-11-26 15:55:43+02:00, aelkin@dsl-hkibras-fe30f900-107.dhcp.inet.fi +1 -0
    initializing part of record[1]

ChangeSet@1.2303.156.5, 2006-11-21 12:22:10+04:00, bar@mysql.com +2 -0
  Preparing to merge "backport of bug#13926 into 5.0"
  Moving tests to 4.1 section

  mysql-test/r/mysqldump.result@1.133.1.1, 2006-11-21 12:22:03+04:00, bar@mysql.com +72 -72
    Preparing to merge "backport of bug#13926 into 5.0"
    Moving tests to 4.1 section

  mysql-test/t/mysqldump.test@1.124.1.1, 2006-11-21 12:22:03+04:00, bar@mysql.com +19 -19
    Preparing to merge "backport of bug#13926 into 5.0"
    Moving tests to 4.1 section

ChangeSet@1.1810.2353.4, 2006-11-21 12:09:14+04:00, bar@mysql.com +2 -0
  Prepare to merge "backport of bug#13926 from 5.0 to 4.1" back into 5.0:
  Moving tests into their new place into 4.1 tests section

  mysql-test/r/mysqldump.result@1.83.16.1, 2006-11-21 12:09:10+04:00, bar@mysql.com +72 -72
    Prepare to merge "backport of bug#13926 from 5.0 to 4.1" back into 5.0:
    Moving tests into their new place into 4.1 tests section

  mysql-test/t/mysqldump.test@1.76.16.1, 2006-11-21 12:09:10+04:00, bar@mysql.com +19 -19
    Prepare to merge "backport of bug#13926 from 5.0 to 4.1" back into 5.0:
    Moving tests into their new place into 4.1 tests section

ChangeSet@1.1616.2875.2, 2006-11-21 11:09:33+04:00, bar@mysql.com +3 -0
  BUG#13926: --order-by-primary fails if PKEY contains quote character.
  Backporting from 5.0

  client/mysqldump.c@1.143.13.9, 2006-11-21 11:09:30+04:00, bar@mysql.com +13 -5
    BUG#13926: --order-by-primary fails if PKEY contains quote character.
    Backporting from 5.0

  mysql-test/r/mysqldump.result@1.9.1.47, 2006-11-21 11:09:30+04:00, bar@mysql.com +62 -0
    Adding test case

  mysql-test/t/mysqldump.test@1.19.1.28, 2006-11-21 11:09:31+04:00, bar@mysql.com +15 -0
    Adding test case

ChangeSet@1.2303.178.1, 2006-11-20 20:40:35-07:00, malff@weblab.(none) +8 -0
  WL#3602 (SET GLOBAL READONLY)
  Bug#11733 (COMMITs should not happen if read-only is set)
  Bug#22009 (Can write to a read-only server under some circumstances)
  
  See the work log for details
  
  The change consist of
  a) acquiring the global read lock in SET GLOBAL READONLY
  b) honoring opt_readonly in ha_commit_trans(),
  c) honoring opt_readonly in mysql_lock_tables().
  
  a) takes care of the server stability,
  b) makes the transactional tables safe (Bug 11733)
  c) makes the non transactional tables safe (Bug 22009)

  mysql-test/r/read_only.result@1.3.1.1, 2006-11-20 20:40:31-07:00, malff@weblab.(none) +51 -1
    WL#3602 (SET GLOBAL READONLY)

  mysql-test/r/read_only_innodb.result@1.1, 2006-11-20 20:40:31-07:00, malff@weblab.(none) +18 -0
    WL#3602 (SET GLOBAL READONLY)

  mysql-test/r/read_only_innodb.result@1.0, 2006-11-20 20:40:31-07:00, malff@weblab.(none) +0 -0

  mysql-test/t/read_only.test@1.5, 2006-11-20 20:40:31-07:00, malff@weblab.(none) +108 -2
    WL#3602 (SET GLOBAL READONLY)

  mysql-test/t/read_only_innodb.test@1.1, 2006-11-20 20:40:31-07:00, malff@weblab.(none) +43 -0
    WL#3602 (SET GLOBAL READONLY)

  mysql-test/t/read_only_innodb.test@1.0, 2006-11-20 20:40:31-07:00, malff@weblab.(none) +0 -0

  sql/handler.cc@1.234.24.1, 2006-11-20 20:40:31-07:00, malff@weblab.(none) +9 -0
    WL#3602 (SET GLOBAL READONLY)

  sql/lock.cc@1.99, 2006-11-20 20:40:31-07:00, malff@weblab.(none) +13 -0
    WL#3602 (SET GLOBAL READONLY)

  sql/set_var.cc@1.188.9.1, 2006-11-20 20:40:31-07:00, malff@weblab.(none) +65 -1
    WL#3602 (SET GLOBAL READONLY)

  sql/set_var.h@1.94, 2006-11-20 20:40:31-07:00, malff@weblab.(none) +14 -0
    WL#3602 (SET GLOBAL READONLY)

ChangeSet@1.1346.1.855, 2006-11-20 12:49:52-07:00, tsmith@siva.hindu.god +13 -0
  Backport patch of bugfix for:
  - Bug #15815: Very poor performance with multiple queries running concurrently
  - Bug #22868: 'Thread thrashing' with > 50 concurrent conns under an upd-intensive workloadw
  
  This is a patch from an e-mail; it is not included in an InnoDB snapshot.

  innobase/buf/buf0buf.c@1.17.1.17, 2006-11-20 12:49:51-07:00, tsmith@siva.hindu.god +96 -45
    Backport patch of bugfix for:
    - Bug #15815: Very poor performance with multiple queries running concurrently
    - Bug #22868: 'Thread thrashing' with > 50 concurrent conns under an upd-intensive workloadw
    
    This is a patch from an e-mail; it is not included in an InnoDB snapshot.

  innobase/buf/buf0flu.c@1.14.1.12, 2006-11-20 12:49:51-07:00, tsmith@siva.hindu.god +67 -30
    Backport patch of bugfix for:
    - Bug #15815: Very poor performance with multiple queries running concurrently
    - Bug #22868: 'Thread thrashing' with > 50 concurrent conns under an upd-intensive workloadw
    
    This is a patch from an e-mail; it is not included in an InnoDB snapshot.

  innobase/buf/buf0lru.c@1.9.1.12, 2006-11-20 12:49:51-07:00, tsmith@siva.hindu.god +15 -3
    Backport patch of bugfix for:
    - Bug #15815: Very poor performance with multiple queries running concurrently
    - Bug #22868: 'Thread thrashing' with > 50 concurrent conns under an upd-intensive workloadw
    
    This is a patch from an e-mail; it is not included in an InnoDB snapshot.

  innobase/include/buf0buf.h@1.12.1.7, 2006-11-20 12:49:51-07:00, tsmith@siva.hindu.god +28 -12
    Backport patch of bugfix for:
    - Bug #15815: Very poor performance with multiple queries running concurrently
    - Bug #22868: 'Thread thrashing' with > 50 concurrent conns under an upd-intensive workloadw
    
    This is a patch from an e-mail; it is not included in an InnoDB snapshot.

  innobase/include/buf0buf.ic@1.7.1.7, 2006-11-20 12:49:51-07:00, tsmith@siva.hindu.god +10 -11
    Backport patch of bugfix for:
    - Bug #15815: Very poor performance with multiple queries running concurrently
    - Bug #22868: 'Thread thrashing' with > 50 concurrent conns under an upd-intensive workloadw
    
    This is a patch from an e-mail; it is not included in an InnoDB snapshot.

  innobase/include/sync0arr.h@1.4.1.3, 2006-11-20 12:49:51-07:00, tsmith@siva.hindu.god +4 -9
    Backport patch of bugfix for:
    - Bug #15815: Very poor performance with multiple queries running concurrently
    - Bug #22868: 'Thread thrashing' with > 50 concurrent conns under an upd-intensive workloadw
    
    This is a patch from an e-mail; it is not included in an InnoDB snapshot.

  innobase/include/sync0rw.h@1.6.1.2, 2006-11-20 12:49:51-07:00, tsmith@siva.hindu.god +1 -0
    Backport patch of bugfix for:
    - Bug #15815: Very poor performance with multiple queries running concurrently
    - Bug #22868: 'Thread thrashing' with > 50 concurrent conns under an upd-intensive workloadw
    
    This is a patch from an e-mail; it is not included in an InnoDB snapshot.

  innobase/include/sync0rw.ic@1.7.1.1, 2006-11-20 12:49:51-07:00, tsmith@siva.hindu.god +4 -2
    Backport patch of bugfix for:
    - Bug #15815: Very poor performance with multiple queries running concurrently
    - Bug #22868: 'Thread thrashing' with > 50 concurrent conns under an upd-intensive workloadw
    
    This is a patch from an e-mail; it is not included in an InnoDB snapshot.

  innobase/include/sync0sync.h@1.9.1.9, 2006-11-20 12:49:51-07:00, tsmith@siva.hindu.god +1 -0
    Backport patch of bugfix for:
    - Bug #15815: Very poor performance with multiple queries running concurrently
    - Bug #22868: 'Thread thrashing' with > 50 concurrent conns under an upd-intensive workloadw
    
    This is a patch from an e-mail; it is not included in an InnoDB snapshot.

  innobase/os/os0sync.c@1.21.1.1, 2006-11-20 12:49:51-07:00, tsmith@siva.hindu.god +52 -3
    Backport patch of bugfix for:
    - Bug #15815: Very poor performance with multiple queries running concurrently
    - Bug #22868: 'Thread thrashing' with > 50 concurrent conns under an upd-intensive workloadw
    
    This is a patch from an e-mail; it is not included in an InnoDB snapshot.

  innobase/sync/sync0arr.c@1.11.1.10, 2006-11-20 12:49:51-07:00, tsmith@siva.hindu.god +41 -78
    Backport patch of bugfix for:
    - Bug #15815: Very poor performance with multiple queries running concurrently
    - Bug #22868: 'Thread thrashing' with > 50 concurrent conns under an upd-intensive workloadw
    
    This is a patch from an e-mail; it is not included in an InnoDB snapshot.

  innobase/sync/sync0rw.c@1.7.1.6, 2006-11-20 12:49:51-07:00, tsmith@siva.hindu.god +2 -0
    Backport patch of bugfix for:
    - Bug #15815: Very poor performance with multiple queries running concurrently
    - Bug #22868: 'Thread thrashing' with > 50 concurrent conns under an upd-intensive workloadw
    
    This is a patch from an e-mail; it is not included in an InnoDB snapshot.

  innobase/sync/sync0sync.c@1.16.1.14, 2006-11-20 12:49:51-07:00, tsmith@siva.hindu.god +6 -2
    Backport patch of bugfix for:
    - Bug #15815: Very poor performance with multiple queries running concurrently
    - Bug #22868: 'Thread thrashing' with > 50 concurrent conns under an upd-intensive workloadw
    
    This is a patch from an e-mail; it is not included in an InnoDB snapshot.

ChangeSet@1.2303.156.4, 2006-11-20 18:05:01+04:00, bar@mysql.com +1 -0
  After merge fix

  mysql-test/r/ctype_utf8.result@1.113, 2006-11-20 18:04:57+04:00, bar@mysql.com +1 -1
    After merge fix

ChangeSet@1.1810.2353.3, 2006-11-20 17:57:57+04:00, bar@mysql.com +1 -0
  After merge fix

  mysql-test/r/ctype_utf8.result@1.85.1.18, 2006-11-20 17:57:53+04:00, bar@mysql.com +1 -1
    After merge fix

ChangeSet@1.1810.2362.1, 2006-11-17 12:14:29-07:00, malff@weblab.(none) +10 -0
  Bug#19194 (Right recursion in parser for CASE causes excessive stack usage,
    limitation)
  
  Note to the reviewer
  ====================
  
  Warning: reviewing this patch is somewhat involved.
  Due to the nature of several issues all affecting the same area,
  fixing separately each issue is not practical, since each fix can not be
  implemented and tested independently.
  In particular, the issues with
  - rule recursion
  - nested case statements
  - forward jump resolution (backpatch list)
  are tightly coupled (see below).
  
  Definitions
  ===========
  
  The expression
    CASE expr
    WHEN expr THEN expr
    WHEN expr THEN expr
    ...
    END
  is a "Simple Case Expression".
  
  The expression
    CASE
    WHEN expr THEN expr
    WHEN expr THEN expr
    ...
    END
  is a "Searched Case Expression".
  
  The statement
    CASE expr
    WHEN expr THEN stmts
    WHEN expr THEN stmts
    ...
    END CASE
  is a "Simple Case Statement".
  
  The statement
    CASE
    WHEN expr THEN stmts
    WHEN expr THEN stmts
    ...
    END CASE
  is a "Searched Case Statement".
  
  A "Left Recursive" rule is like
    list:
        element
      | list element
      ;
  
  A "Right Recursive" rule is like
    list:
        element
      | element list
      ;
  
  Left and right recursion produces the same language, the difference only
  affects the *order* in which the text is parsed.
  
  In a descendant parser (usually written manually), right recursion works
  very well, and is typically implemented with a while loop.
  In an ascendant parser (yacc/bison) left recursion works very well,
  and is implemented naturally by the parser stack.
  In both cases, using the wrong type or recursion is very bad and should be
  avoided, as it causes technical issues with the parser implementation.
  
  Before this change
  ==================
  
  The "Simple Case Expression" and "Searched Case Expression" were both
  implemented by the "when_list" and "when_list2" rules, which are left
  recursive (ok).
  
  These rules, however, used lex->when_list instead of using the parser stack,
  which is more complex that necessary, and potentially dangerous because
  of other rules using THD::reset_lex.
  
  The "Simple Case Statement" and "Searched Case Statements" were implemented
  by the "sp_case", "sp_whens" and in part by "sp_proc_stmt" rules.
  Both cases were right recursive (bad).
  
  The grammar involved was convoluted, and is assumed to be the results of
  tweaks to get the code generation to work, but is not what someone would
  naturally write.
  
  In addition, using a common rule for both "Simple" and "Searched" case
  statements was implemented with sp_head::m_flags |= IN_SIMPLE_CASE,
  which is a flag and not a stack, and therefore does not take into account
  *nested* case statements. This leads to incorrect generated code, and either
  a server crash or an incorrect result.
  
  With regards to the backpatch mechanism, a *different* backpatch list was
  created for each jump from "WHEN expr THEN stmt" to "END CASE", which
  relied on the grammar to be right recursive.
  This is a mis-use of the backpatch list, since this list can resolve
  multiple references to the same target at once.
  
  The optimizer algorithm used to detect dead code in the "assembly" SQL
  instructions, implemented by sp_head::opt_mark(uint ip), was recursive
  in some cases (a conditional jump pointing forward to another conditional
  jump).
  In case of specially crafted code, like
  - a long list of "IF expr THEN stmt END IF"
  - a long CASE statement
  this would actually cause a server crash with a stack overflow.
  In general, having a stack that grows proportionally with user data (the
  SQL code given by the client in a CREATE PROCEDURE) is to be avoided.
  
  In debug builds only, creating a SP / SF / Trigger which had a significant
  amount of code would spend --literally-- several minutes in sp_head::create,
  because of the debug code involved with DBUG_PRINT("info", ("Code %s ...
  There are several issues with this code:
  - in a CASE with 5 000 WHEN, there are 15 000 instructions generated,
    which create a sting representation of the code which is 500 000 bytes
    long,
  - using a String instead of an io stream causes performances to degrade
    to a total server freeze, as time is spent doing realloc of a buffer
    always too short,
  - Printing a 500 000 long string in the debug log is too verbose,
  - Generating this string even when DBUG_PRINT is off is useless,
  - Having code that potentially can affect the server behavior, used with
    #ifdef / #endif is useful in some cases, but is also a bad practice.
  
  After this change
  =================
  
  "Case Expressions" (both simple and searched) have been simplified to
  not use LEX::when_list, which has been removed.
  
  Considering all the issues affecting case statements, the grammar for these
  has been totally re written.
  
  The existing actions, used to generate "assembly" sp_inst* code, have been
  preserved but moved in the new grammar, with the following changes:
  
  a) Bison rules are no longer shared between "Simple" and "Searched" case
  statements, because a stack instead of a flag is required to handle them.
  Nested statements are handled naturally by the parser stack, which by
  definition uses the correct rule in the correct context.
  Nested statements of the opposite type (simple vs searched) works correctly.
  The flag sp_head::IN_SIMPLE_CASE is no longer used.
  This is a step towards resolution of WL#2999, which correctly identified
  that temporary parsing flags do not belong to sp_head.
  The code in the action is shared by mean of the case_stmt_action_xxx()
  helpers.
  
  b) The backpatch mechanism, used to resolve forward jumps in the generated
  code, has been changed to:
  - create a label for the instruction following 'END CASE',
  - register each jump at the end of a "WHEN expr THEN stmt" in a *unique*
    backpatch list associated with the 'END CASE' label
  - resolve all the forward jumps for this label at once.
  
  In addition, the code involving backpatch has been commented, so that a
  reader can now understand by reading matching "Registering" and "Resolving"
  comments how the forward jumps are resolved and what target they resolve to,
  as this is far from evident when reading the code alone.
  
  The implementation of sp_head::opt_mark() has been revised to avoid
  recursive calls from jump instructions, and instead add the jump location
  to the list of paths to explore during the flow analysis of the instruction
  graph, with a call to sp_head::add_mark_lead().
  In addition, the flow analysis will stop if an instruction has already
  been marked as reachable, which the previous code failed to do in the
  recursive case.
  sp_head::opt_mark() is now private, to prevent new calls to this method from
  being introduced.
  
  The debug code present in sp_head::create() has been removed.
  Considering that SHOW PROCEDURE CODE is also available in debug builds,
  and can be used anytime regardless of the trace level, as opposed to
  "CREATE PROCEDURE" time and only if the trace was on,
  removing the code actually makes debugging easier (usable trace).
  
  Tests have been written to cover the parser overflow (big CASE),
  and to cover nested CASE statements.

  mysql-test/t/sp_stress_case.sh@1.1, 2006-11-17 12:14:27-07:00, malff@weblab.(none) +68 -0
    New test for massive CASE statements.

  mysql-test/t/sp_stress_case.sh@1.0, 2006-11-17 12:14:27-07:00, malff@weblab.(none) +0 -0

  mysql-test/r/sp-code.result@1.5.1.3, 2006-11-17 12:14:27-07:00, malff@weblab.(none) +415 -0
    Test cases for nested CASE statements.

  mysql-test/r/sp_stress_case.result@1.1, 2006-11-17 12:14:27-07:00, malff@weblab.(none) +42 -0
    New test for massive CASE statements.

  mysql-test/r/sp_stress_case.result@1.0, 2006-11-17 12:14:27-07:00, malff@weblab.(none) +0 -0

  mysql-test/t/sp-code.test@1.6, 2006-11-17 12:14:27-07:00, malff@weblab.(none) +235 -0
    Test cases for nested CASE statements.

  mysql-test/t/sp_stress_case.test@1.1, 2006-11-17 12:14:27-07:00, malff@weblab.(none) +35 -0
    New test for massive CASE statements.

  mysql-test/t/sp_stress_case.test@1.0, 2006-11-17 12:14:27-07:00, malff@weblab.(none) +0 -0

  sql/sp_head.cc@1.200.8.1, 2006-11-17 12:14:27-07:00, malff@weblab.(none) +55 -41
    Re factored opt_mark() to avoid recursion, clean up.

  sql/sp_head.h@1.79.1.10, 2006-11-17 12:14:27-07:00, malff@weblab.(none) +28 -11
    Re factored opt_mark() to avoid recursion, clean up.

  sql/sql_lex.cc@1.142.29.1, 2006-11-17 12:14:27-07:00, malff@weblab.(none) +0 -1
    Removed when_list.

  sql/sql_lex.h@1.175.28.1, 2006-11-17 12:14:27-07:00, malff@weblab.(none) +0 -1
    Removed when_list.

  sql/sql_yacc.yy@1.371.84.3, 2006-11-17 12:14:27-07:00, malff@weblab.(none) +257 -114
    Minor clean up for case expressions,
    Major re write for case statements (Bug#19194).

ChangeSet@1.2303.156.2, 2006-11-16 20:07:46+04:00, bar@mysql.com +1 -0
  After merge fix: modifying test results according to the fix

  mysql-test/r/ctype_cp932_binlog_stm.result@1.3, 2006-11-16 20:07:41+04:00, bar@mysql.com +3 -3
    After merge fix: modifying test results according to the fix

ChangeSet@1.1810.2266.7, 2006-11-15 21:24:58-05:00, patg@radha.local +3 -0
  BUG# 17044 Federated Storage Engine not UTF8 clean
  - Added 'SET NAMES <charset>" upon ::open
  - Added test and results for simple UTF test
  
  federated.test:
    BUG #17044 Federated Storage Engine not UTF8 clean
    New test. Using hex - pasting various charsets in the terminal doesn't work.
  federated.result:
    BUG# 17044 Federated Storage Engine not UTF8 clean
    New test results
  ha_federated.cc:
    BUG# 17044 Federated Storage Engine not UTF8 clean
    Upon ::open, set names to table's charset

  mysql-test/r/federated.result@1.25.1.14, 2006-11-15 21:22:47-05:00, patg@radha.local +28 -0
    BUG# 17044 Federated Storage Engine not UTF8 clean
            New test results

  mysql-test/t/federated.test@1.19.1.15, 2006-11-15 21:22:16-05:00, patg@radha.local +31 -0
     BUG #17044 Federated Storage Engine not UTF8 clean
        New test. Using hex - pasting various charsets in the terminal doesn't work.
      federated.result:
      BUG# 17044 Federated Storage Engine not UTF8 clean
        New test results

  sql/ha_federated.cc@1.24.13.1, 2006-11-15 21:21:44-05:00, patg@radha.local +11 -0
    BUG# 17044 Federated Storage Engine not UTF8 clean
            Upon ::open, set names to table's charset

ChangeSet@1.1810.2312.10, 2006-11-13 20:06:45+04:00, holyfoot@mysql.com +28 -0
  several fixes to make tests pass in embedded-server mode

  mysql-test/r/bdb.result@1.48.2.1, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +0 -34
    part moved to bdb_notembedded as it uses binlog

  mysql-test/t/bdb.test@1.50.1.4, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +0 -35
    part moved to bdb_notembedded as it uses binlog

  libmysqld/lib_sql.cc@1.107.3.3, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +2 -0
    check for bootstrap added

  mysql-test/include/federated.inc@1.2, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +1 -0
    disabled in embedded

  mysql-test/mysql-test-run.pl@1.30.55.1, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +1 -0
    we disable ssh in embedded server

  mysql-test/r/flush_block_commit.result@1.9.2.1, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +0 -15
    part moved to flush_block_commit_notembedded

  mysql-test/r/flush_block_commit_notembedded.result@1.1, 2006-11-13 20:06:42+04:00, holyfoot@mysql.com +15 -0
    added

  mysql-test/r/flush_block_commit_notembedded.result@1.0, 2006-11-13 20:06:42+04:00, holyfoot@mysql.com +0 -0

  mysql-test/r/insert.result@1.22.1.4, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +0 -6
    part moved to insert_notembedded as delayed works differently in embedded server

  mysql-test/r/insert_notembedded.result@1.1, 2006-11-13 20:06:42+04:00, holyfoot@mysql.com +107 -0
    added

  mysql-test/r/insert_notembedded.result@1.0, 2006-11-13 20:06:42+04:00, holyfoot@mysql.com +0 -0

  mysql-test/r/insert_select.result@1.35.1.7, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +0 -100
    part moved to insert_notembedded as GRANTS usually disabled in embedded server

  mysql-test/r/join.result@1.38.1.1, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +2 -2
    access rights hidden in result

  mysql-test/t/backup.test@1.16.2.3, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +0 -3
    now available in embedded server

  mysql-test/t/delayed.test@1.11.1.5, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +0 -3
    code trimmed

  mysql-test/t/execution_constants.test@1.2, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +3 -0
    skipped in embedded-server mode

  mysql-test/t/flush_block_commit.test@1.12, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +0 -21
    moved to flush_block_commit_notembedded

  mysql-test/t/flush_block_commit_notembedded.test@1.1, 2006-11-13 20:06:42+04:00, holyfoot@mysql.com +32 -0
    added

  mysql-test/t/flush_block_commit_notembedded.test@1.0, 2006-11-13 20:06:42+04:00, holyfoot@mysql.com +0 -0

  mysql-test/t/information_schema_db.test@1.7, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +4 -0
    skipped in embedded-server

  mysql-test/t/innodb.test@1.118.2.9, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +1 -0
    directories replaced to be embedded-server compliant

  mysql-test/t/insert.test@1.22.1.2, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +0 -12
    part moved to insert_notembedded

  mysql-test/t/insert_notembedded.test@1.1, 2006-11-13 20:06:42+04:00, holyfoot@mysql.com +154 -0
    added

  mysql-test/t/insert_notembedded.test@1.0, 2006-11-13 20:06:42+04:00, holyfoot@mysql.com +0 -0

  mysql-test/t/insert_select.test@1.34, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +0 -137
    part moved to insert_notembedded

  mysql-test/t/join.test@1.32.1.1, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +2 -0
    access rights hidden

  mysql-test/t/status.test@1.15.1.2, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +3 -0
    skipped in embedded server

  mysql-test/t/trigger.test@1.34.12.1, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +1 -0
    directories replaced to be embedded-server compliant

  sql/item_strfunc.cc@1.261.15.1, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +6 -1
    extra contexts not needed whan access checks disabled

  sql/share/errmsg.txt@1.42.1.33, 2006-11-13 20:06:41+04:00, holyfoot@mysql.com +2 -2
    bigger paths reserved to prevent test's fails

ChangeSet@1.1616.2860.3, 2006-11-13 18:12:15+04:00, holyfoot@mysql.com +1 -0
  delayed.test fixed

  mysql-test/t/delayed.test@1.8.1.2, 2006-11-13 18:12:13+04:00, holyfoot@mysql.com +2 -0
    shouldn't be tested in embedded server

ChangeSet@1.1616.2860.2, 2006-11-13 10:39:15+04:00, holyfoot@mysql.com +4 -0
  embedded-mode tests fixed

  libmysqld/examples/test-run@1.6, 2006-11-13 10:39:13+04:00, holyfoot@mysql.com +1 -1
    mysql_embedded should be run here

  libmysqld/lib_sql.cc@1.75.1.55, 2006-11-13 10:39:13+04:00, holyfoot@mysql.com +4 -0
    thd->real_id setup added
    bootstrap check added

  mysql-test/t/innodb.test@1.62.1.19, 2006-11-13 10:39:13+04:00, holyfoot@mysql.com +3 -0
    paths can be different in embedded server - replace_result added

  sql/item_func.cc@1.124.50.1, 2006-11-13 10:39:13+04:00, holyfoot@mysql.com +4 -0
    we should compare real_id-s in embedded server

ChangeSet@1.1810.2315.4, 2006-11-09 14:27:34+04:00, bar@mysql.com +5 -0
  Bug#23619 Incorrectly escaped multibyte characters in binary log break replication
  Problem: when embedding a character string with introducer with charset X
  into a SQL query which is generally in character set Y, the string constants
  were escaped according to their own character set (i.e.X), then after reading
  such a "mixed" query from binlog, the string constants were unescaped
  using character set of the query (i.e. Y), instead of X, which gave wrong
  results or even syntax errors with tricky charsets (e.g. sjis)
  Fix: when embedding a string constant of charset X into a query of charset Y,
  the string constant is now escaped according to character Y, instead of
  its own character set X.

  mysql-test/r/ctype_cp932_binlog.result@1.2.3.1, 2006-11-09 14:27:12+04:00, bar@mysql.com +3 -3
    Fixing test results.

  mysql-test/r/rpl_charset_sjis.result@1.1, 2006-11-09 14:27:17+04:00, bar@mysql.com +26 -0
    Adding test case

  mysql-test/r/rpl_charset_sjis.result@1.0, 2006-11-09 14:27:17+04:00, bar@mysql.com +0 -0

  mysql-test/t/rpl_charset_sjis.test@1.1, 2006-11-09 14:27:18+04:00, bar@mysql.com +25 -0
    Adding test case

  mysql-test/t/rpl_charset_sjis.test@1.0, 2006-11-09 14:27:18+04:00, bar@mysql.com +0 -0

  sql/log_event.cc@1.174.1.41, 2006-11-09 14:27:13+04:00, bar@mysql.com +1 -1
    Using character set "csinfo" instead of the string character set.

  sql/sp_head.cc@1.200.7.2, 2006-11-09 14:27:16+04:00, bar@mysql.com +6 -5
    - adding "thd" argument to sp_get_item_value()
      to have access to thd->variables.character_set_client
    - using character_set_client for escaping, instead of
      the string character set

ChangeSet@1.1616.2859.1, 2006-11-08 15:37:54+04:00, bar@mysql.com +3 -0
  Bug#22646 LC_TIME_NAMES: Assignment to non-UTF8 target fails
  Problem: After introducing of LC_TIME_NAMES variable,  the 
  function date_format() can return international non-ascii
  characters in month and weekday names. Thus, it cannot return
  a binary string anymore, because inserting a result of date_format()
  into a column with non-utf8 character set produces garbage.
  Fix: date_format() now returns a character string, using
  "collation_connection" to detect character set and collation
  for the returned value. This allows to insert
  results of date_format() properly into columns with
  various character sets.

  mysql-test/r/ctype_utf8.result@1.45.1.30, 2006-11-08 15:37:51+04:00, bar@mysql.com +23 -1
    Adding test case.
    Fixing old result.

  mysql-test/t/ctype_utf8.test@1.57.1.20, 2006-11-08 15:37:51+04:00, bar@mysql.com +20 -0
    Adding test case.

  sql/item_timefunc.cc@1.51.6.6, 2006-11-08 15:37:51+04:00, bar@mysql.com +36 -47
    DATE_FORMAT() now returns a character string
    instead of binary string:
    - make_date_time() now converts localte data from UTF8 to 
    the character set of "str" argument, instead of copying as is.
    - fix_dec_and_length() now uses "collation_connection"
    instead of "binary" for the result, it also now
    multiplies to mbmaxlen when calculating max_length

ChangeSet@1.1616.2845.1, 2006-11-02 00:05:02+04:00, svoj@mysql.com +1 -0
  BUG#23312 - server hangs 'closing tables' with insert delayed,flush
              tables,alter table
  Deadlock could happen if there are delayed insert + flush tables + alter table
  running concurrently.
  
  This is fixed by removing a redundant mutex lock when killing a delayed thread.

  sql/sql_insert.cc@1.86.26.1, 2006-11-02 00:02:40+04:00, svoj@mysql.com +0 -3
    Removed redundant delayed thread mutex lock, that could result in a deadlock.
    LOCK_delayed_insert is sufficient to be sure that no other thread frees delayed
    handler.

ChangeSet@1.1810.2266.5, 2006-10-27 17:40:06+02:00, istruewing@chilla.local +1 -0
  Enterprise numbers, only

  configure.in@1.245.66.1, 2006-10-27 17:40:03+02:00, istruewing@chilla.local +2 -2
    Enterprise numbers, only

ChangeSet@1.2303.62.2, 2006-10-25 17:23:32+02:00, istruewing@chilla.local +2 -0
  Bug#22119 - Changing MI_KEY_BLOCK_LENGTH makes a wrong myisamchk
  
  Added the promised test case.

  mysql-test/r/myisam.result@1.96.1.1, 2006-10-25 17:23:29+02:00, istruewing@chilla.local +45 -0
    Bug#22119 - Changing MI_KEY_BLOCK_LENGTH makes a wrong myisamchk
    Added test result.

  mysql-test/t/myisam.test@1.72, 2006-10-25 17:23:29+02:00, istruewing@chilla.local +43 -0
    Bug#22119 - Changing MI_KEY_BLOCK_LENGTH makes a wrong myisamchk
    Added test case.

ChangeSet@1.1616.2834.1, 2006-10-25 13:39:40+02:00, istruewing@chilla.local +1 -0
  Bug#22119 - Changing MI_KEY_BLOCK_LENGTH makes a wrong myisamchk
  
  When compiling with a default key block size greater than the
  smallest key block size used in a table, checking that table
  failed with bogus errors. The table was marked corrupt. This
  affected myisamchk and the server.
  
  The problem was that the default key block size was used at
  some places where sizes less or equal to the block size of the
  index in check was required.
  
  We do now use the key block size of the particular index
  when checking.
  
  A test case is available for later versions only.

  myisam/mi_check.c@1.105.1.57, 2006-10-25 13:39:38+02:00, istruewing@chilla.local +72 -16
    Bug#22119 - Changing MI_KEY_BLOCK_LENGTH makes a wrong myisamchk
    Changed check_k_link() and chk_index_down() to use the block
    size of the index in check or MI_MIN_KEY_BLOCK_LENGTH where
    required. Formerly myisam_block_size or MYISAM_SHARE::blocksize
    was used wrongly.

ChangeSet@1.1616.2833.1, 2006-10-25 15:40:10+05:00, svoj@mysql.com +1 -0
  BUG#22053 - REPAIR table can crash server for some
              really damaged MyISAM tables
  
  When unpacking a blob column from broken row server crash
  could happen. This could rather happen when trying to repair
  a table using either REPAIR TABLE or myisamchk, though it
  also could happend when trying to access broken row using
  other SQL statements like SELECT if table is not marked as
  crashed.
  
  Fixed ulong overflow when trying to extract blob from
  broken row.
  
  Affects MyISAM only.

  myisam/mi_dynrec.c@1.36.1.5, 2006-10-25 15:38:45+05:00, svoj@mysql.com +5 -3
    Fixed ulong overflow when trying to extract blob from
    broken row. It happens when there are not enough bytes
    to store blob length in `from' buffer. In this case
    (ulong) (from_end - from) - size_length value is huge,
    close to ULONG_MAX.

ChangeSet@1.2303.57.1, 2006-10-24 16:41:13-07:00, acurtis@xiphis.org +1 -0
  Bug#22694
    "function plugin_foreach_with_mask() uses an uninitialized pointer"
    Fix uninitialized memory.

  sql/sql_plugin.cc@1.37, 2006-10-24 16:41:06-07:00, acurtis@xiphis.org +10 -11
    move my_alloca() call out of nested stack frame.
    ensure that every element of array is initialized.

ChangeSet@1.1810.2257.2, 2006-10-18 18:38:58-07:00, malff@weblab.(none) +2 -0
  manual merge

  mysql-test/r/sp.result@1.170.1.46, 2006-10-18 18:38:56-07:00, malff@weblab.(none) +42 -2
    fix merge issues

  mysql-test/r/trigger.result@1.29.1.20, 2006-10-18 18:38:56-07:00, malff@weblab.(none) +12 -0
    fix merge issues

ChangeSet@1.1810.2252.1, 2006-10-17 12:10:51-07:00, malff@weblab.(none) +8 -0
  Bug#20028 (Function with select return no data)
  
  This patch reverts a change introduced by Bug 6951, which incorrectly
  set thd->abort_on_warning for stored procedures.
  
  As per internal discussions about the SQL_MODE=TRADITIONAL,
  the correct behavior is to *not* abort on warnings even inside an INSERT/UPDATE
  trigger.
  
  Tests for Stored Procedures, Stored Functions, Triggers involving SQL_MODE
  have been included or revised, to reflect the intended behavior.

  mysql-test/include/sp-vars.inc@1.2, 2006-10-17 12:10:47-07:00, malff@weblab.(none) +9 -0
    Tests for SQL_MODE='TRADITIONAL'

  mysql-test/r/sp-vars.result@1.1.2.1, 2006-10-17 12:10:47-07:00, malff@weblab.(none) +23 -0
    Tests for SQL_MODE='TRADITIONAL'

  mysql-test/r/sp.result@1.170.26.1, 2006-10-17 12:10:48-07:00, malff@weblab.(none) +130 -0
    Tests for SQL_MODE='TRADITIONAL'

  mysql-test/r/trigger.result@1.29.10.1, 2006-10-17 12:10:48-07:00, malff@weblab.(none) +60 -4
    Tests for SQL_MODE='TRADITIONAL'

  mysql-test/t/sp-vars.test@1.4, 2006-10-17 12:10:48-07:00, malff@weblab.(none) +10 -0
    Tests for SQL_MODE='TRADITIONAL'

  mysql-test/t/sp.test@1.174.24.1, 2006-10-17 12:10:48-07:00, malff@weblab.(none) +134 -0
    Tests for SQL_MODE='TRADITIONAL'

  mysql-test/t/trigger.test@1.34.10.1, 2006-10-17 12:10:48-07:00, malff@weblab.(none) +61 -2
    Tests for SQL_MODE='TRADITIONAL'. Revised the expected behavior for triggers

  sql/sp_head.cc@1.200.1.25, 2006-10-17 12:10:48-07:00, malff@weblab.(none) +1 -2
    For SQL_MODE='TRADITIONAL',
    thd->abort_on_warning should be set only when assigning a *column*

ChangeSet@1.1616.2801.1, 2006-10-08 11:24:53+08:00, gni@dev3-127.(none) +1 -0
  BUG #21858  Make sure retry when EINTR returns, which decreases memory leak chance. 

  ndb/src/common/util/File.cpp@1.8.5.2, 2006-10-08 11:24:50+08:00, gni@dev3-127.(none) +15 -3
    Avoid memory leak when EINTR error returns. Even though a close-error happens, a ERROR message in out file
    is given, and this shouldn't affect the normally running.

ChangeSet@1.1616.2796.1, 2006-10-05 17:29:50+05:00, ramil@mysql.com +3 -0
  Fix for bug #22377: iNCONSISTENCY WITH null
  
  Backport. See #20910: NOT NULL column reported as NULL in SHOW FIELDS or INFORMATION_SCHEMA

  mysql-test/r/type_ranges.result@1.25.1.2, 2006-10-05 17:29:47+05:00, ramil@mysql.com +3 -3
    Fix for bug #22377: iNCONSISTENCY WITH null
      - results adjusted.

  mysql-test/r/type_timestamp.result@1.24.1.3, 2006-10-05 17:29:48+05:00, ramil@mysql.com +9 -9
    Fix for bug #22377: iNCONSISTENCY WITH null
      - results adjusted.

  sql/sql_show.cc@1.122.1.87, 2006-10-05 17:29:48+05:00, ramil@mysql.com +1 -10
    Fix for bug #22377: iNCONSISTENCY WITH null
      - as NULL values cannot be stored in 'timestamp not null' fields,
        don't make an exception for them.

