1. 29 Aug, 2003 4 commits
  2. 28 Aug, 2003 13 commits
    • unknown's avatar
      Fixed problem with absence of gmtime_r under Windows. · 630d3b85
      unknown authored
      
      include/my_pthread.h:
        HAVE_GMTIME_R should not be defined under Windows
        (it is ok for HAVE_LOCALTIME_R since there additional implementation 
        in my_windcond.c.
      630d3b85
    • unknown's avatar
      Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1 · b7dd355f
      unknown authored
      into sanja.is.com.ua:/home/bell/mysql/bk/work-enum-4.1
      
      
      sql/sql_select.cc:
        Auto merged
      b7dd355f
    • unknown's avatar
      fixed typo · dd516b2c
      unknown authored
      dd516b2c
    • unknown's avatar
      Merge abelkin@bk-internal.mysql.com:/home/bk/mysql-4.1 · e1c08d40
      unknown authored
      into laptop.sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1
      
      e1c08d40
    • unknown's avatar
      Merge laptop.sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1 · 0b9293ce
      unknown authored
      into laptop.sanja.is.com.ua:/home/bell/mysql/bk/work-aggregate-4.1
      
      0b9293ce
    • unknown's avatar
      Merge abotchkov@bk-internal.mysql.com:/home/bk/mysql-4.1 · 60fc1e89
      unknown authored
      into deer.(none):/home/hf/work/mysql-4.1.clean
      
      60fc1e89
    • unknown's avatar
      Merge vvagin@bk-internal.mysql.com:/home/bk/mysql-4.1 · bbdb77fc
      unknown authored
      into eagle.mysql.r18.ru:/home/vva/work/BUG_910/mysql-4.1
      
      bbdb77fc
    • unknown's avatar
      fixed merge mistake · bf207d03
      unknown authored
      bf207d03
    • unknown's avatar
      Fix for bug #799 FLUSH TABLES WITH READ LOCK does not block CREATE TABLE · eef558dd
      unknown authored
      This commit is related to my previos one(ChangeSet 1.1583 03/08/27 18:03:39).
      Note about COMMIT&ROLLBACK:
        Only 'COMMIT' statement updates the binary log. 
        'ROLLBACK' statement doesn't update the binlog.
      
      
      mysql-test/r/drop.result:
        Fix for bug #799 FLUSH TABLES WITH READ LOCK does not block CREATE TABLE
      mysql-test/r/innodb.result:
        Fix for bug #799 FLUSH TABLES WITH READ LOCK does not block CREATE TABLE
      mysql-test/t/drop.test:
        Fix for bug #799 FLUSH TABLES WITH READ LOCK does not block CREATE TABLE
      mysql-test/t/innodb.test:
        Fix for bug #799 FLUSH TABLES WITH READ LOCK does not block CREATE TABLE
      sql/handler.cc:
        Fix for bug #799 FLUSH TABLES WITH READ LOCK does not block CREATE TABLE
      sql/sql_table.cc:
        Fix for bug #799 FLUSH TABLES WITH READ LOCK does not block CREATE TABLE
      eef558dd
    • unknown's avatar
      e79ab57f
    • unknown's avatar
      SCRUM: · 54f5d4bb
      unknown authored
      Fixed some mess with STDCALL in function's declarations
      
      
      include/mysql.h:
        That definitions are more correct
      libmysqld/lib_sql.cc:
        should be declared as STDCALL
      libmysqld/libmysqld.c:
        should be declared as STDCALL
      sql-common/client.c:
        should be declared as STDCALL
      54f5d4bb
    • unknown's avatar
      Merge · 92856648
      unknown authored
      
      sql/field.h:
        Auto merged
      sql/item.cc:
        Auto merged
      sql/item.h:
        Auto merged
      sql/item_cmpfunc.cc:
        Auto merged
      mysql-test/r/create.result:
        merge
      mysql-test/t/create.test:
        merge
      sql/item_cmpfunc.h:
        SCCS merged
      92856648
    • unknown's avatar
      reset() split in 2 function clear() & add() · 0eeb472c
      unknown authored
      aggregate function reinitialization (if no rows was found) made with help of clear()
      (fixed BUG#860)
      
      
      mysql-test/r/subselect.result:
        test for BUG#860
      mysql-test/t/subselect.test:
        test for BUG#860
      sql/item_sum.cc:
        reset() replaced with clear()
      sql/item_sum.h:
        reset() replaced with clear()
        (reset now is just composition of clear() and add())
      sql/item_uniq.h:
        reset() replaced with clear()
      sql/sql_select.cc:
        removed NULL value assigment, now it will be done by clear() call
        function for clearing if there was not found any row in group
      sql/sql_select.h:
        function for clearing if there was not found any row in group
      0eeb472c
  3. 27 Aug, 2003 8 commits
    • unknown's avatar
      Merge eagle.mysql.r18.ru:/home/vva/work/mysql.orig/clear/mysql-4.1 · 808e1afc
      unknown authored
      into eagle.mysql.r18.ru:/home/vva/work/BUG_910/mysql-4.1
      
      
      sql/field.h:
        Auto merged
      sql/item.h:
        Auto merged
      sql/item_cmpfunc.cc:
        Auto merged
      808e1afc
    • unknown's avatar
      fixed bug #910 (right type of ifnull function) · f6f23208
      unknown authored
      
      mysql-test/r/create.result:
        added test for bug #910 (right type of ifnull function)
      mysql-test/t/create.test:
        added test for bug #910 (right type of ifnull function)
      sql/field.h:
        added new constructors of Field_decimal, Field_tiny, Field_short, Field_float,
        Field_null, Field_year
        for using in Item::tmp_table_field_from_field_type
      sql/item.cc:
        added Item::tmp_table_field_from_field_type
      sql/item.h:
        added Item::tmp_table_field_from_field_type
      f6f23208
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 0acca0ab
      unknown authored
      into narttu.mysql.fi:/my/mysql-4.1
      
      0acca0ab
    • unknown's avatar
      hanged UDF interface to use clear() instead of reset() · 29e3c42a
      unknown authored
      
      BUILD/FINISH.sh:
        Add just_clean option (for cleanup script)
      scripts/mysql_fix_privilege_tables.sql:
        Added 'USE mysql' for easer use on windows
      sql/item_sum.cc:
        Changed UDF interface to use clear() instead of reset()
      sql/item_sum.h:
        Changed UDF interface to use clear() instead of reset()
      sql/slave.cc:
        Fixed checking of eof for slave/master protocol. (Bug #887)
      sql/sql_udf.cc:
        Changed UDF interface to use clear() instead of reset()
      sql/sql_udf.h:
        Changed UDF interface to use clear() instead of reset()
      sql/sql_yacc.yy:
        ERRORS and WARNINGS should not be reserved words
      sql/udf_example.cc:
        Changed UDF interface to use clear() instead of reset()
      29e3c42a
    • unknown's avatar
    • unknown's avatar
      Merge fixes · 6e2da8d1
      unknown authored
      
      sql/sql_union.cc:
        Some further merge fixes
      6e2da8d1
    • unknown's avatar
      sql_union.cc: · d59c4576
      unknown authored
        Post merge fixes
      
      
      sql/sql_union.cc:
        Post merge fixes
      d59c4576
    • unknown's avatar
      merge fixes · 844ac5fe
      unknown authored
      
      sql/sql_lex.h:
        Auto merged
      sql/sql_select.cc:
        Auto merged
      844ac5fe
  4. 26 Aug, 2003 5 commits
  5. 25 Aug, 2003 2 commits
  6. 23 Aug, 2003 1 commit
    • unknown's avatar
      union.result: · 5a08e6cf
      unknown authored
        same as above
      sql_lex.h:
        same as above 
      sql_union.cc:
        same as aobve
      sql_select.cc:
        Fixing that SQL_CALC_FOUND_ROWS work properly in UNION's in 4.1
        Plus updating some fields in THD in the proper places 
        plus fixing a wrong result
      
      
      sql/sql_select.cc:
        Fixing that SQL_CALC_FOUND_ROWS work properly in UNION's in 4.1
        Plus updating some fields in THD in the proper places 
        plus fixing a wrong result
      sql/sql_union.cc:
        same as aobve
      sql/sql_lex.h:
        same as above
      mysql-test/r/union.result:
        same as above
      5a08e6cf
  7. 21 Aug, 2003 1 commit
  8. 20 Aug, 2003 6 commits
    • unknown's avatar
      merge · 0bd2c7e2
      unknown authored
      
      mysql-test/r/subselect.result:
        correct result after merging with fixed Item_in_optimiser::fix_left()
      mysql-test/t/subselect.test:
        error code changed
      0bd2c7e2
    • unknown's avatar
      merge · 472e7c15
      unknown authored
      
      sql/item.cc:
        Auto merged
      sql/item.h:
        Auto merged
      472e7c15
    • unknown's avatar
      Merge laptop.sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1 · f4838ab9
      unknown authored
      into laptop.sanja.is.com.ua:/home/bell/mysql/bk/work-simple_in-4.1
      
      f4838ab9
    • unknown's avatar
      quick fix for found row counter · 499061ef
      unknown authored
      code cleunup
      
      
      sql/sql_class.h:
        removed unused variables
      sql/sql_union.cc:
        quick fix for found row counter
        layout fixed
      sql/sql_update.cc:
        lelect_limit in THD is not used
      499061ef
    • unknown's avatar
      Merge · c4d972ed
      unknown authored
      
      sql/sql_parse.cc:
        Auto merged
      sql/sql_union.cc:
        SCCS merged
      c4d972ed
    • unknown's avatar
      - make sure that both libedit and readline are added to the source · d349384f
      unknown authored
         distribution. libedit is used by default, one needs to use
         "--with-readline" when compiling with readline instead.
      
      
      cmd-line-utils/Makefile.am:
         - add both libedit and readline to the source distribution
      configure.in:
         - create both Makefiles for libedit and libedit
      d349384f