Posted by Vadim |

No, this is not about Sun and IBM :) This is about MySQL. If you download latest 5.1.33 source code you may find there storage/ibmdb2i directory, which obviously is IBM DB2 related. Interesting that there is no mentioning of new engine in Announcement http://dev.mysql.com/doc/refman/5.1/en/news-5-1-33.html.
Quick look into source code says

CODE:
  1. MYSQL_STORAGE_ENGINE([ibmdb2i], [], [IBM DB2 for i Storage Engine],                                                               
  2.         [IBM DB2 for i Storage Engine], [max,max-no-ndb])                                                                         
  3. MYSQL_PLUGIN_DYNAMIC([ibmdb2i], [ha_ibmdb2i.la])

Also interesting that license of added files is not GPL, but

CODE:
  1. /*
  2. Licensed Materials - Property of IBM
  3. DB2 Storage Engine Enablement
  4. Copyright IBM Corporation 2007,2008
  5. All rights reserved
  6. Redistribution and use in source and binary forms, with or without modification,
  7. are permitted provided that the following conditions are met:
  8. (a) Redistributions of source code must retain this list of conditions, the
  9.      copyright notice in section {d} below, and the disclaimer following this
  10.      list of conditions.
  11. (b) Redistributions in binary form must reproduce this list of conditions, the
  12.      copyright notice in section (d) below, and the disclaimer following this
  13.      list of conditions, in the documentation and/or other materials provided
  14.      with the distribution.
  15. (c) The name of IBM may not be used to endorse or promote products derived from
  16.      this software without specific prior written permission.
  17. (d) The text of the required copyright notice is:
  18.        Licensed Materials - Property of IBM
  19.        DB2 Storage Engine Enablement
  20.        Copyright IBM Corporation 2007,2008
  21.        All rights reserved
  22. THIS SOFTWARE IS PROVIDED BY IBM CORPORATION "AS IS" AND ANY EXPRESS OR IMPLIED
  23. WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  24. MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
  25. SHALL IBM CORPORATION BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  26. EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
  27. OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  28. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  29. CONTRACT, STRICT LIABILITY, OR TORT INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  30. IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
  31. OF SUCH DAMAGE.
  32. */

I think this is outcome of 2-year old press release
"MySQL AB and IBM Announce Open Source Database Support for the IBM System i Platform", it just took a bit a while to put it into source tree. I wonder what happened with policy not accept significant changes into production release.