1. 02 Nov, 2004 14 commits
  2. 01 Nov, 2004 19 commits
  3. 31 Oct, 2004 2 commits
  4. 30 Oct, 2004 1 commit
  5. 29 Oct, 2004 4 commits
    • tomas@poseidon.ndb.mysql.com's avatar
      Merge tulin@bk-internal.mysql.com:/home/bk/mysql-4.1 · 475aaac8
      tomas@poseidon.ndb.mysql.com authored
      into poseidon.ndb.mysql.com:/home/tomas/mysql-4.1
      475aaac8
    • tomas@poseidon.ndb.mysql.com's avatar
      Merge tulin@bk-internal.mysql.com:/home/bk/mysql-4.1 · dfe8b2ec
      tomas@poseidon.ndb.mysql.com authored
      into poseidon.ndb.mysql.com:/home/tomas/mysql-4.1
      dfe8b2ec
    • tomas@poseidon.ndb.mysql.com's avatar
      added define flag SNPRINTF_RETURN_ZERO to indicate that snprintf returns... · 24d38aea
      tomas@poseidon.ndb.mysql.com authored
          added define flag SNPRINTF_RETURN_ZERO to indicate that snprintf returns zero if buffer too small
          use flag SNPRINTF_RETURN_ZERO
          emulate snprintf behavior by writing to _big_ buffer if set
          use my_vsnprintf if HAVE_SNPRINTF is not set and set SNPRINTF_RETURN_ZERO in that case
      24d38aea
    • mleich@mysql.com's avatar
      These modifications are the result of · 86143bc8
      mleich@mysql.com authored
      WL#2067 add features to mysqltest: "disable_error_abort" + "$mysql_errno"
      
      $mysql_errno is a new builtin variable of mysqltest and contains the
      return code of the last command send to the server.
      
      "--disable_abort_on_error" switches the abort of mysqltest
      after "unmasked" failing statements off.
      "--enable_abort_on_error" switches the abort of mysqltest
      after "unmasked" failing statements on. (default)
      
      "Maskings" are
          !$<error number>  and  --error <error number>
      in the line before the statement to be checked.
      
      The benefit of the option "--disable_abort_on_error" is that
      - all statements after the failing statement are executed
      - a r/<test>.reject will be produced
      - it is possible to write test cases, which perform
        code sequences depending on the return code of a single
        statement
      86143bc8