1. 20 Feb, 2013 7 commits
  2. 19 Feb, 2013 5 commits
  3. 18 Feb, 2013 3 commits
  4. 17 Feb, 2013 2 commits
  5. 15 Feb, 2013 7 commits
  6. 14 Feb, 2013 5 commits
  7. 13 Feb, 2013 4 commits
  8. 12 Feb, 2013 5 commits
    • Olivier Bertrand's avatar
      Fix bug on readonly table option not recognized · c5233703
      Olivier Bertrand authored
      in TABDEF::Define line 104
      
      Modified:
      reldef.cpp
      
      Add a warning on alter in check_if_incompatible_data.
      
      Modified:
      ha_connect.cc
      
      c5233703
    • Olivier Bertrand's avatar
      Add a test on table types in ha_connect::create · 5fc2a7da
      Olivier Bertrand authored
      - The plan was to provide a default type (DOS) when the table type
      was unspecified, wring, or not supported.
      - However, this is not possible here because create is called after
      the FRM file was generated.
      - Currently, this is flagged as an error and the create aborts.
      
      Modified:
      ha_connect.cc
      
      5fc2a7da
    • Olivier Bertrand's avatar
      Fix a bug causing all tests to fail. · 83b7fb0f
      Olivier Bertrand authored
      In mycat.cc line 308
      + correc typo in plgdbsem
      
      Modified:
      mycat.cc
      plgdbsem.h
      
      83b7fb0f
    • Olivier Bertrand's avatar
      All use of a character to represent table types or · 88c76f3b
      Olivier Bertrand authored
      catalog functions have been changed:
      
      Table_types are now internally represented be enum TABTYPE.
      Catalog function names are internally translated to a uint.
      
      The function GetTypeID was modified accordingly and a new
      function GetFuncID was implemented in mycat.cc.
      
      Modified:
      ha_connect.cc
      odbccat.h
      odbconn.cpp
      tabodbc.cpp
      tabfmt.cpp
      tabmysql.h
      tabmysql.cpp
      tabwmi.cpp
      mycat.h
      mycat.cc
      plgdbsem.h
      reldef.h
      tabdos.cpp
      rcmsg.h
      
      88c76f3b
    • Alexander Barkov's avatar
      Changing maximum possible column length for DBF tables from 11 to 10. · b91386c2
      Alexander Barkov authored
      There is actually one extra byte for the 11th character, however it seems
      to be meant for the '\0' terminating byte in the DBF specifications.
      Also, the third party software (e.g. OpenOffice) do not correctly open
      tables with column length=11.
      
      modified:
        mysql-test/suite/connect/r/dbf.result
        mysql-test/suite/connect/t/dbf.test
        storage/connect/ha_connect.cc
      b91386c2
  9. 11 Feb, 2013 2 commits
    • Alexander Barkov's avatar
      Fixing ini.test failure on Linux: · 2adf52b8
      Alexander Barkov authored
      No need to print "\n" before the very first section.
      
      modified:
        storage/connect/inihandl.c
      2adf52b8
    • Alexander Barkov's avatar
      Fixing vec.test failure on Windows. · 237eda72
      Alexander Barkov authored
         
      - The "spath" column does not get replaces with $MYSQLD_DATADIR,
      because it does not include the drive letter part, e.g. C:\.
      Removing excluding spath from the "SELECT ... FROM dir1" query
      
      - Warnings return slightly different text on Linux and Windows.
        Linux has extra "/./" part:
          DATADIR/./test/t1vec1
      
      "--replace_result $MYSQLD_DATADIR DATADIR/" does not help.
      
      Using --replace_regex instead.
      
      modified:
        mysql-test/suite/connect/r/vec.result
        mysql-test/suite/connect/t/vec.test
      237eda72