1. 24 Jan, 2005 2 commits
    • unknown's avatar
      check that row elements have the same dimention that SELECT list elements in... · 91827869
      unknown authored
      check that row elements have the same dimention that SELECT list elements in comporison between rows and subqueries added (BUG#8022)
      
      
      mysql-test/r/subselect.result:
        Comparison subquery and row with nested rows
      mysql-test/t/subselect.test:
        Comparison subquery and row with nested rows
      sql/item_subselect.cc:
        check that row elements have the same dimention that SELECT list elements
      91827869
    • unknown's avatar
      fixed column number fetchinmg for subqueries. (BUG#8020) · d514a06a
      unknown authored
      fixed cols() method call (it have to be called only after fix_fields())
      
      
      mysql-test/r/subselect.result:
        Comparison subquery with * and row
      mysql-test/t/subselect.test:
        Comparison subquery with * and row
      sql/item_cmpfunc.h:
        initialization allowed_arg_cols for autodetection
      sql/item_func.cc:
        support of allowed_arg_cols autodetection by first argument
      sql/item_func.h:
        commant
      sql/item_subselect.cc:
        correct column number fetching for subqueries
      sql/sql_lex.h:
        method to check that UNION is prepared
      d514a06a
  2. 23 Jan, 2005 2 commits
  3. 22 Jan, 2005 3 commits
    • unknown's avatar
      Merge rurik.mysql.com:/home/igor/dev/mysql-4.0-0 · d3db70de
      unknown authored
      into rurik.mysql.com:/home/igor/dev/mysql-4.1-0
      
      
      mysql-test/r/select_found.result:
        Auto merged
      mysql-test/t/select_found.test:
        Auto merged
      sql/sql_select.cc:
        Auto merged
      d3db70de
    • unknown's avatar
      select_found.result, select_found.test: · 25c2d1ad
      unknown authored
        Added a test case for bug #7945.
      sql_select.cc:
        Fixed bug #7945. If DISTINCT is used only with constants
        in a query with GROUP BY, we can apply an optimization
        that set LIMIT to 1 only in the case when there is 
        no SQL_CALC_FOUND_ROWS.
      
      
      sql/sql_select.cc:
        Fixed bug #7945. If DISTINCT is used only with constants
        in a query with GROUP BY, we can apply an optimization
        that set LIMIT to 1 only in the case when there is 
        no SQL_CALC_FOUND_ROWS.
      mysql-test/t/select_found.test:
        Added a test case for bug #7945.
      mysql-test/r/select_found.result:
        Added a test case for bug #7945.
      25c2d1ad
    • unknown's avatar
      fil0fil.c: · c695ccd2
      unknown authored
        Fix a race condition that could cause the assertion space->n_pending_flushes == 0 to fail in fil0fil.c, in fil_space_free(), in DROP TABLE or in ALTER TABLE
      
      
      innobase/fil/fil0fil.c:
        Fix a race condition that could cause the assertion space->n_pending_flushes == 0 to fail in fil0fil.c, in fil_space_free()
      c695ccd2
  4. 21 Jan, 2005 11 commits
  5. 20 Jan, 2005 15 commits
  6. 19 Jan, 2005 7 commits
    • unknown's avatar
      Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-4.1 · c8343423
      unknown authored
      into mysql.com:/dbdata/psergey/mysql-4.1-bug7885
      
      
      c8343423
    • unknown's avatar
      Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1 · 0a8852c3
      unknown authored
      into sanja.is.com.ua:/home/bell/mysql/bk/work-4.1
      
      
      0a8852c3
    • unknown's avatar
      Merge mysql.com:/home/jimw/my/mysql-4.1-build · fa0935de
      unknown authored
      into mysql.com:/home/jimw/my/mysql-4.1-clean
      
      
      fa0935de
    • unknown's avatar
      Fix all BUILD/*max* scripts to use -DBIG_TABLES, like our real Max builds do. · 98713d64
      unknown authored
      (Simpler fix than last commit -- no need to mess with base_cxxflags.)
      
      
      BUILD/compile-amd64-max:
        use $max_cflags
      BUILD/compile-pentium-debug-max:
        use $max_cflags
      BUILD/compile-pentium-debug-max-no-embedded:
        use $max_cflags
      BUILD/compile-pentium-max:
        use $max_cflags
      BUILD/compile-pentium-valgrind-max:
        use $max_cflags
      BUILD/compile-ppc-debug-max:
        use $max_cflags
      BUILD/compile-ppc-max:
        use $max_cflags
      BUILD/compile-amd64-debug-max:
        use $max_cflags, remove unnecessary base_cxxflags stuff
      98713d64
    • unknown's avatar
      ndb - make sure scan recevier pointers are aligned · 4bd96dd1
      unknown authored
      
      ndb/src/ndbapi/NdbScanOperation.cpp:
        align pointers
      4bd96dd1
    • unknown's avatar
      Merge lgrimmer@bk-internal.mysql.com:/home/bk/mysql-4.1 · f321a60b
      unknown authored
      into mysql.com:/space/my/mysql-4.1
      
      
      f321a60b
    • unknown's avatar
      Final patch for BUG#4285. · 8e1e1e73
      unknown authored
      This patch collects all previous patches into one.
      
      The main problem was due to that there is are two variables -
      dflt_key_cache and sql_key_cache with have more or less duplicate
      function. The reson for the bug was that the default value in the key
      cache hash was set to dflt_key_cache, then sql_key_cache was set to a
      new key cache object, and then dflt_key_cache was set to sql_key_cache
      which was different from the dflt_key_cache_var. After sending SIGHUP,
      the server was using the original default value for the key cache hash,
      which was different from the actual key cache object used for the
      default key cache.
      
      
      include/keycache.h:
        Import patch 4285.diff
      mysys/mf_keycache.c:
        Import patch 4285.diff
      sql/mysql_priv.h:
        Import patch 4285.diff
      sql/mysqld.cc:
        Import patch 4285.diff
      sql/set_var.cc:
        Import patch 4285.diff
      sql/sql_parse.cc:
        Import patch 4285.diff
      sql/sql_show.cc:
        Import patch 4285.diff
      8e1e1e73