1. 03 Feb, 2004 4 commits
  2. 30 Jan, 2004 4 commits
  3. 29 Jan, 2004 1 commit
  4. 26 Jan, 2004 2 commits
  5. 21 Jan, 2004 2 commits
    • unknown's avatar
      Merge lgrimmer@build.mysql.com:/home/bk/mysql-5.0 · 7a5befb3
      unknown authored
      into mysql.com:/space/my/mysql-5.0
      
      
      7a5befb3
    • unknown's avatar
      Fixed BUG#2227: Server crash with stored procedure call. · 219f51b4
      unknown authored
      (Meaning "... with SELECT v", where v is a local variable.)
      
      
      mysql-test/r/sp.result:
        Test case for BUG#2227
      mysql-test/t/sp.test:
        Test case for BUG#2227
      sql/item.h:
        Item_splocal::send() needed for "SELEC v", where "v" is a local variable.
        Also set the field name.
      sql/sp_head.cc:
        Have to get decimals and max_length right for reals, when SELECT of local variables.
      219f51b4
  6. 20 Jan, 2004 1 commit
  7. 19 Jan, 2004 2 commits
  8. 14 Jan, 2004 5 commits
    • unknown's avatar
      Merge lgrimmer@build.mysql.com:/home/bk/mysql-5.0 · f69ee8d2
      unknown authored
      into mysql.com:/space/my/mysql-5.0
      
      
      f69ee8d2
    • unknown's avatar
      Merge mysql.com:/usr/local/bk/mysql-5.0 · 95a34bd8
      unknown authored
      into mysql.com:/home/pem/work/mysql-5.0
      
      
      mysql-test/r/sp.result:
        Auto merged
      mysql-test/t/sp.test:
        Auto merged
      sql/sql_yacc.yy:
        Auto merged
      95a34bd8
    • unknown's avatar
      Fixed BUG#2267: Lost connect if stored procedure has SHOW FUNCTION STATUS. · b6b947d6
      unknown authored
      (This might not be enough, could be more statements that must be detected...)
      
      
      mysql-test/r/sp.result:
        Test case for BUG#2267
      mysql-test/t/sp.test:
        Test case for BUG#2267
      sql/sp.cc:
        Code clean-up: Get the correct order of print-outs in debug trace.
      sql/sql_yacc.yy:
        Detect "select-like" statements so that the multi result flag is set correctly.
      b6b947d6
    • unknown's avatar
      Merge lgrimmer@build.mysql.com:/home/bk/mysql-5.0 · 07ba5a0f
      unknown authored
      into mysql.com:/space/my/mysql-5.0
      
      
      07ba5a0f
    • unknown's avatar
      Fixed BUG#2329: Crash if insert with variable name in stored procedure. · 61207881
      unknown authored
      Found a few more places in the parser (insert, replace and update) where
      local stored procedure variables should not be recognized.
      
      
      mysql-test/r/sp-error.result:
        Test cases for BUG#2329
      mysql-test/r/sp.result:
        New test case for certain context dependencies for symbols.
      mysql-test/t/sp-error.test:
        Test cases for BUG#2329
      mysql-test/t/sp.test:
        New test case for certain context dependencies for symbols.
      sql/sql_yacc.yy:
        Found a few more places where local SP variables should not be recognized.
      61207881
  9. 09 Jan, 2004 2 commits
  10. 08 Jan, 2004 4 commits
  11. 23 Dec, 2003 1 commit
  12. 22 Dec, 2003 1 commit
  13. 21 Dec, 2003 8 commits
    • unknown's avatar
      Merge mysql.com:/my/mysql-4.1 into mysql.com:/my/mysql-5.0 · 9385323d
      unknown authored
      
      client/mysqltest.c:
        Auto merged
      sql/filesort.cc:
        Auto merged
      sql/item.h:
        Auto merged
      sql/item_func.cc:
        Auto merged
      sql/log_event.cc:
        Auto merged
      sql/sql_class.h:
        Auto merged
      sql/sql_prepare.cc:
        Auto merged
      9385323d
    • unknown's avatar
      Fixed bug in replacation for not x86 platforms · 46a9b87a
      unknown authored
      Portability fixes
      
      
      mysql-test/r/rpl_relayrotate.result:
        Portability fix
      mysql-test/t/rpl_relayrotate.test:
        Portability fix.
      sql/log_event.cc:
        Removed ++ from uint4korr() becasue this caused side effects
      sql/uniques.cc:
        Removed not used argument to get_merge_buffers_cost()
        Removed wrong cast which caused compiler failures
        Cast arguments to ceil() to double (portability problem)
      46a9b87a
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 73846938
      unknown authored
      into mysql.com:/my/mysql-4.1
      
      
      73846938
    • unknown's avatar
      Portability fixes found during 5.0 test compilation · d31c6628
      unknown authored
      Fixed bug in ORDER BY on a small column (Bug #2147)
      Fixed error from pthread_mutex_destroy() when one had wrong errmsg file
      
      
      
      client/mysqltest.c:
        Added handling of error on query send
        (Needed for init_connection.test)
      mysql-test/mysql-test-run.sh:
        Added tracing of mysqldump and mysqlbinlog
      mysql-test/r/init_connect.result:
        Updated tests
      mysql-test/r/order_by.result:
        Added test for bug filesort bug
      mysql-test/t/init_connect-master.opt:
        Added proper quoting (for Solaris and OSF)
      mysql-test/t/init_connect.test:
        Portability fix
      mysql-test/t/order_by.test:
        Added test for bug #2147 (bug in filesort)
      sql/filesort.cc:
        Fixed bug in filesort (Bug #2147)
      sql/item.h:
        Clear 'fixed' on cleanup (For prepared statements)
      sql/item_func.cc:
        Protect mutex destroy.
        (Fixed error from pthread_mutex_destroy() when one had wrong errmsg file)
      sql/log_event.cc:
        Portability fix
      sql/sql_class.h:
        Fixed compiler warning
      sql/sql_prepare.cc:
        Portability fix. (Some compilers doesn't support jump over variables declared in for())
      d31c6628
    • unknown's avatar
      Portability fix · 92339e10
      unknown authored
      92339e10
    • unknown's avatar
      Fixed memory leaks in SP · c466a191
      unknown authored
      Some code cleanup
      
      
      mysql-test/r/sp.result:
        Update results after adding quotes around function/procedure names
      sql/sp.cc:
        Moved DBUG_ENTER after all variable declarations
        Eliminated some variables.
        Added more DBUG_ENTER commands.
        Added memory allocation checking in create_string()
        Fixed memory leak in sp_show_create_function()
        Removed usage of sprintf
      sql/sql_parse.cc:
        Simple cleanup
        Fixed memory leaks for mailformed SP definitions
      c466a191
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.0 · 292bb8cb
      unknown authored
      into mysql.com:/my/mysql-5.0
      
      
      sql/sql_class.cc:
        Auto merged
      sql/sql_delete.cc:
        Auto merged
      292bb8cb
    • unknown's avatar
      Update for VC++ · 4f72061f
      unknown authored
      (Fixed project files, compiler warnings etc..)
      
      
      BitKeeper/etc/ignore:
        added mysql_priv.h
      VC++Files/libmysqld/libmysqld.dsp:
        Update for VC++to
      VC++Files/sql/mysqld.dsp:
        Update for VC++
      client/mysqlbinlog.cc:
        Remove not used variable
      sql-common/client.c:
        Fix for compilation with VC++
      sql/filesort.cc:
        Remove not used variable
      sql/item_timefunc.cc:
        Fixed compiler warnings
      sql/log_event.cc:
        Fixed compiler warnings
        - One can't portable allocate an stack-array dynamicly
        - Changed sql_mode to ulong to match THD.variables.sql_mode (If they are not the same we get a lot of compiler warnings)
      sql/log_event.h:
        Changed sql_mode to ulong to match THD.variables.sql_mode (If they are not the same we get a lot of compiler warnings)
      sql/sp.cc:
        sql_mode to ulong
        Don't use strcpy
        Replaced sprintf() with strmov
      sql/sp_cache.cc:
        Fixed compiler warning
      sql/sp_head.cc:
        Removed not used variable
      sql/sp_rcontext.cc:
        Removed not used variable
      sql/sp_rcontext.h:
        Fixed compiler warning
      sql/sql_class.cc:
        Portability fix
      sql/sql_delete.cc:
        Fixed compiler warning
      sql/sql_insert.cc:
        Fixed compiler warning
      sql/sql_update.cc:
        Fixed compiler warning
      4f72061f
  14. 20 Dec, 2003 3 commits