1. 31 Oct, 2004 2 commits
    • unknown's avatar
      Merge pnousiainen@bk-internal.mysql.com:/home/bk/mysql-4.1 · b1b3a8b9
      unknown authored
      into mysql.com:/space/pekka/ndb/version/my41
      
      
      ndb/include/ndbapi/NdbBlob.hpp:
        Auto merged
      b1b3a8b9
    • unknown's avatar
      NDB bug-6018 support writeTuple with blobs · e4f0614c
      unknown authored
      
      mysql-test/r/ndb_blob.result:
        bug-6018
      mysql-test/t/ndb_blob.test:
        bug-6018
      ndb/include/ndbapi/NdbBlob.hpp:
        bug-6018
      ndb/include/ndbapi/NdbConnection.hpp:
        bug-6018
      ndb/include/ndbapi/NdbIndexOperation.hpp:
        bug-6018
      ndb/include/ndbapi/NdbOperation.hpp:
        bug-6018
      ndb/src/ndbapi/NdbBlob.cpp:
        bug-6018
      ndb/src/ndbapi/NdbConnection.cpp:
        bug-6018
      ndb/src/ndbapi/NdbDictionaryImpl.cpp:
        bug-6018
      ndb/src/ndbapi/NdbIndexOperation.cpp:
        bug-6018
      ndb/src/ndbapi/NdbOperation.cpp:
        bug-6018
      ndb/src/ndbapi/NdbOperationExec.cpp:
        bug-6018
      ndb/test/ndbapi/testBlobs.cpp:
        bug-6018
      e4f0614c
  2. 30 Oct, 2004 1 commit
    • unknown's avatar
      Enable REPLACE ... SELECT in prepared statements. · d46c7366
      unknown authored
      
      mysql-test/include/ps_modify.inc:
        replace ... select now works.
      mysql-test/r/ps_2myisam.result:
        replace ... select now works.
      mysql-test/r/ps_3innodb.result:
        replace ... select now works.
      mysql-test/r/ps_4heap.result:
        replace ... select now works.
      mysql-test/r/ps_5merge.result:
        replace ... select now works.
      mysql-test/r/ps_6bdb.result:
        replace ... select now works.
      mysql-test/r/ps_7ndb.result:
        replace ... select now works.
      mysql-test/t/ps_7ndb.test:
        replace ... select now works.
      sql/sql_prepare.cc:
        Enable SQLCOM_REPLACE_SELECT: no need for any code changes but
        enable this SQLCOM in the switch.
      d46c7366
  3. 29 Oct, 2004 16 commits
  4. 28 Oct, 2004 17 commits
  5. 27 Oct, 2004 4 commits
    • unknown's avatar
      Making the latest fix for Bug#6166 (key.test) work in prepared statements. · b9704849
      unknown authored
      
      sql/sql_prepare.cc:
        Catch another class of errors possible during yyparse:
        if thd->net.report_error is set, we need to send the message and 
        abort.
      b9704849
    • unknown's avatar
      Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1 · fbabd085
      unknown authored
      into sanja.is.com.ua:/home/bell/mysql/bk/work-ps-4.1
      
      
      fbabd085
    • unknown's avatar
      Fix for bug#5385 ("Text files have unix line break"): · 616b7460
      unknown authored
      Windows style line end \r\n on README, license, and similar essential plaintext files.
      
      
      scripts/make_win_src_distribution.sh:
        Some plain text files (which a Windows user might view in any editor) should have 
        Windows style line end \r\n (bug#5385). The tool is changed to do a systematic pass 
        over all files, find all relevant ones (especially "README*", "ChangeLog", "INSTALL*", 
        license text), and adapt them.
        Included are two minor cleanups ("useless use of cat" avoided, variable setting 
        moved to more sensible place).
      616b7460
    • unknown's avatar
      A fix and test case for Bug#6096 "field.max_length is always zero for · 447fef48
      unknown authored
      numeric columns (stmt_resultset_metadata)"
      
      
      libmysql/libmysql.c:
        A fix for Bug#6096 "field.max_length is always zero for numeric columns
         (stmt_resultset_metadata)": set field->max_lenght for numeric
        columns when we set up skip_result functions. A minor drawback for this 
        approach is that field->max_length  can be not zero even if 
        STMT_ATTR_UPDATE_MAX_LENGTH is not set.
      sql-common/my_time.c:
        Fix valgrind warning.
      tests/client_test.c:
        A test case for Bug#6096 "field.max_length is always zero for numeric 
        columns (stmt_resultset_metadata)
      447fef48