1. 20 Aug, 2007 4 commits
  2. 17 Aug, 2007 2 commits
  3. 16 Aug, 2007 1 commit
  4. 15 Aug, 2007 7 commits
    • lzhou/zhl@dev3-63.(none)'s avatar
      Merge lzhou@bk-internal.mysql.com:/home/bk/mysql-5.1-new-ndb-bj · 34523272
      lzhou/zhl@dev3-63.(none) authored
      into  dev3-63.(none):/home/zhl/mysql/mysql-5.1/bug30134
      34523272
    • lzhou/zhl@dev3-63.(none)'s avatar
    • lzhou/zhl@dev3-63.(none)'s avatar
      Merge dev3-63.(none):/home/zhl/mysql/mysql-5.0/bug29674 · 4b46e545
      lzhou/zhl@dev3-63.(none) authored
      into  dev3-63.(none):/home/zhl/mysql/mysql-5.1/bug29674
      4b46e545
    • stewart@flamingspork.com[stewart]'s avatar
      [PATCH] BUG#28253 ndb_size.pl: cannot set socket · 0532a625
      stewart@flamingspork.com[stewart] authored
      Index: ndb-work/storage/ndb/tools/ndb_size.pl
      ===================================================================
      0532a625
    • stewart@flamingspork.com[stewart]'s avatar
      [PATCH] Bug#29228 ndb_size.pl borks on float columns with comma in () · f788d0d8
      stewart@flamingspork.com[stewart] authored
      Index: ndb-work/storage/ndb/tools/ndb_size.pl
      ===================================================================
      f788d0d8
    • stewart@flamingspork.com[stewart]'s avatar
      [PATCH] BUG#28683 - ndb_size.pl should support more than one database · 74b475e2
      stewart@flamingspork.com[stewart] authored
      Patch by: Monty Taylor <mtaylor@mysql.com>
      Fixes by: Stewart Smith
      
        Added the ability to run ndb_size.pl on mulitple databases and also to exclude lists of databases and tables from analysis.
        ---
        Added schema name information to index table calculations as well.
        ---
        Made database an optional parameter, the exclusion of which causes all databases to be examined.
        If selecting from information_schema fails, attempt to fall back to show tables from
        ---
        Added support for setting an optional "real_table_name" for a table to deal with unique indexe size calcs.
        ---
        Fixed report title for the case where we are using operating on more than one database.
        ---
        Fixed some perl style concerns timothy had.
        Cull the list of databases in perl rather than passing both an in and a not in list to MySQL
        Get this full list of databases from show databases if needed.
      
        storage/ndb/tools/ndb_size.pl@stripped, 2007-05-25 13:45:44-07:00, mtaylor@qualinost.(none) +102 -28
          Added the ability to run ndb_size.pl on mulitple databases and also to exclude lists of databases and tables from analysis.
          ---
          Added schema name information to index table calculations as well.
          ---
          Made database an optional parameter, the exclusion of which causes all databases to be examined.
          If selecting from information_schema fails, attempt to fall back to show tables from
          ---
          Added support for setting an optional "real_table_name" for a table to deal with unique indexe size calcs.
          ---
          Fixed report title for the case where we are using operating on more than one database.
          ---
          Fixed some perl style concerns timothy had. 
          Cull the list of databases in perl rather than passing both an in and a not in list to MySQL
          Get this full list of databases from show databases if needed.
      
      Index: ndb-work/storage/ndb/tools/ndb_size.pl
      ===================================================================
      74b475e2
    • stewart@willster.(none)'s avatar
      Merge ssmith@bk-internal.mysql.com:/home/bk/mysql-5.1-new-ndb · 67510ed2
      stewart@willster.(none) authored
      into  willster.(none):/home/stewart/Documents/MySQL/5.1/ndb
      67510ed2
  5. 14 Aug, 2007 3 commits
  6. 13 Aug, 2007 3 commits
  7. 08 Aug, 2007 5 commits
  8. 07 Aug, 2007 2 commits
  9. 31 Jul, 2007 1 commit
  10. 30 Jul, 2007 1 commit
  11. 29 Jul, 2007 1 commit
  12. 28 Jul, 2007 3 commits
  13. 27 Jul, 2007 7 commits
    • cbell/Chuck@mysql_cab_desk.'s avatar
      WL#3915 : (NDB) master's cols > slave · b87fc5c5
      cbell/Chuck@mysql_cab_desk. authored
      Minor change to fix compile problems on 64-bit.
      b87fc5c5
    • cbell/Chuck@mysql_cab_desk.'s avatar
      Merge mysql_cab_desk.:C:/source/c++/mysql-5.1_WL_3228_ndb · b373c3e9
      cbell/Chuck@mysql_cab_desk. authored
      into  mysql_cab_desk.:C:/source/c++/mysql-5.1-new-ndb-push
      b373c3e9
    • cbell/Chuck@mysql_cab_desk.'s avatar
      Merge mysql_cab_desk.:C:/source/c++/mysql-5.1_WL_3228_ndb · b02302f8
      cbell/Chuck@mysql_cab_desk. authored
      into  mysql_cab_desk.:C:/source/c++/mysql-5.1_WL_3915_ndb
      b02302f8
    • cbell/Chuck@mysql_cab_desk.'s avatar
      WL#3915 : (NDB) master's cols > slave · 6509b5b4
      cbell/Chuck@mysql_cab_desk. authored
      Slave starts accepting and handling rows of master's tables which have more columns.
      The most important part of implementation is how to caclulate the amount of bytes to
      skip for unknown by slave column.
      
      To solve that issue this WL adopts results of WL#3228 which introduces an addon to
      table_map event that carries the necessary part of information about sizes of data of columns.
      
      mysql-test/extra/rpl_tests/rpl_extraMaster_Col.test@stripped, 2007-07-26 21:31:54-04:00, cbell@mysql_cab_desk. +393 -0
      WL#3915  master's cols > slave
      
      basic tests checking altering and skipping extra fields by slave.
      The fields can be of any possible types.
      6509b5b4
    • cbell/Chuck@mysql_cab_desk.'s avatar
      WL#3228 (NDB) : RBR using different table defs on slave/master · 17c2da8c
      cbell/Chuck@mysql_cab_desk. authored
      This patch adds the ability to store extra field metadata in the table
      map event. This data can include pack_length() or field_lenght() for
      fields such as CHAR or VARCHAR enabling developers to add code that
      can check for compatibilty between master and slave columns. More 
      importantly, the extra field metadata can be used to store data from the
      master correctly should a VARCHAR field on the master be <= 255 bytes 
      while the same field on the slave is > 255 bytes. '
      
      The patch also includes the needed changes to unpack to ensure that data
      which is smaller on the master can be unpacked correctly on the slave.
      17c2da8c
    • cbell/Chuck@mysql_cab_desk.'s avatar
      WL#3228 (NDB) : RBR using different table defs on slave/master · 74e4da48
      cbell/Chuck@mysql_cab_desk. authored
      This patch adds the ability to store extra field metadata in the table
      map event. This data can include pack_length() or field_lenght() for
      fields such as CHAR or VARCHAR enabling developers to add code that
      can check for compatibilty between master and slave columns. More 
      importantly, the extra field metadata can be used to store data from the
      master correctly should a VARCHAR field on the master be <= 255 bytes 
      while the same field on the slave is > 255 bytes. '
      
      The patch also includes the needed changes to unpack to ensure that data
      which is smaller on the master can be unpacked correctly on the slave.
      74e4da48
    • stewart@willster.(none)'s avatar
      Merge willster.(none):/home/stewart/Documents/MySQL/5.0/ndb-work · 5b992bf8
      stewart@willster.(none) authored
      into  willster.(none):/home/stewart/Documents/MySQL/5.1/ndb-merge
      5b992bf8