1. 02 Dec, 2005 1 commit
    • unknown's avatar
      Now we shall store only position (index of first character) · d65c5f10
      unknown authored
      of SELECT from query begining, to be independet of query buffer
      allocation.
      Correct procedure used to find beginning of the current statement
      during parsing (BUG#14885).
      
      
      mysql-test/r/view.result:
        BUG#14885 test suite.
      mysql-test/t/view.test:
        BUG#14885 test suite.
      sql/sp_head.cc:
        The debug print statement fixed to prevent crash in case of NULL
        in m_next_cached_sp.
      sql/sql_lex.h:
        Now we shall store only position (index of first character)
        of SELECT from query beginning.
      sql/sql_view.cc:
        Position of the SELECT used to output it to .frm.
      sql/sql_yacc.yy:
        Now we shall store only position (index of first character)
        of SELECT from query beginning.
        Correct procedure used to find beginning of the current statement
        during parsing.
      d65c5f10
  2. 27 Nov, 2005 1 commit
  3. 26 Nov, 2005 9 commits
  4. 25 Nov, 2005 12 commits
  5. 24 Nov, 2005 17 commits
    • unknown's avatar
      Merge epotemkin@bk-internal.mysql.com:/home/bk/mysql-5.0 · d5ca5572
      unknown authored
      into moonbone.local:/work/13293-bug-5.0-mysql
      
      d5ca5572
    • unknown's avatar
      Remove t3 in join_nested.test · 56450769
      unknown authored
      
      mysql-test/r/join_nested.result:
        Remove t3 too.
      mysql-test/t/join_nested.test:
        Remove t3 too.
      56450769
    • unknown's avatar
      Merge mysql.com:/usr/local/bk/mysql-5.0 · 7450e7af
      unknown authored
      into  mysql.com:/usr/home/pem/bug13729/mysql-5.0
      
      7450e7af
    • unknown's avatar
      Merge mysql.com:/usr/local/bk/mysql-5.0 · 8557b98f
      unknown authored
      into  mysql.com:/usr/home/pem/bug13729/mysql-5.0
      
      8557b98f
    • unknown's avatar
      Some post-merge cleaning, and made assert THD::store_globals() work at all times. · 9a6a557b
      unknown authored
      
      mysql-test/t/sp.test:
        Tidying up after merge.
      sql/mysqld.cc:
        Make sure we have thd->thread_stack set before calling store_globals().
        (And fixed compiler warning.)
      sql/sql_class.cc:
        Init THD::tread_stack in constructor.
      9a6a557b
    • unknown's avatar
      don't call handler::info() in SHOW CREATE TABLE · 4185f2b9
      unknown authored
      4185f2b9
    • unknown's avatar
      Fix bug#13293 Wrongly used index results in endless loop. · 5f120f6b
      unknown authored
      Loose index scan using only second part of multipart index was choosen, which
      results in creating wrong keys and endless loop.
      
      get_best_group_min_max() now allows loose index scan for distinct only if used
      keyparts forms a prefix of the index.
      
      
      mysql-test/t/group_min_max.test:
        Test case for bug #13293 Wrongly used index results in endless loop.
      mysql-test/r/group_min_max.result:
        Test case for bug #13293 Wrongly used index results in endless loop.
      sql/opt_range.cc:
        Fix bug #13293 Wrongly used index results in endless loop.
        get_best_group_min_max() now allows loose index scan for distinct only if used keyparts forms a prefix of the index.
      5f120f6b
    • unknown's avatar
      Bug #15168 yassl failure on amd64 · df1a6e0f
      unknown authored
       - Use libtool to build libraries
      
      
      config/ac-macros/yassl.m4:
        If necessary, disable inlining for all files in libtaocrypt not only integer.cpp
        Remove ver yassl_libs_with_path, not used anymore
      extra/yassl/src/Makefile.am:
        Let libtool build libraries
      extra/yassl/taocrypt/src/Makefile.am:
        Let libtool build libraries
        Only build one lib
      libmysqld/Makefile.am:
        Dont include yassl libs in libmysqld
      libmysqld/examples/Makefile.am:
        Add yassl includes and libs when linking examples with libmysqld
      df1a6e0f
    • unknown's avatar
      Merge epotemkin@bk-internal.mysql.com:/home/bk/mysql-4.1 · 0541f87d
      unknown authored
      into moonbone.local:/work/14482-bug-4.1-mysql
      
      0541f87d
    • unknown's avatar
      Fix bug #14482 Wrongly applied optimization in resolve_const_item() caused · 76fb5711
      unknown authored
      crash
      
      resolve_const_item() substitutes item which will evaluate to constant with
      equvalent constant item, basing on the item's result type. In this case
      subselect was resolved as constant, and resolve_const_item() was substituting
      it's result's Item_caches to Item_null. Later Item_cache's function was called
      for Item_null object, which caused server crash.
      
      resolve_const_item() now substitutes constants for items with 
      result_type == ROW_RESULT only for Item_rows.
      
      
      sql/item.cc:
        Fix bug #14482 Wrongly applied optimization in resolve_const_item() caused
        crash
        
        resolve_const_item() now applies optimization for items with
        result_type == ROW_RESULT only to Item_rows.
      mysql-test/t/select.test:
        Test case for bug #14482 Wrongly applied optimization in resolve_const_item() caused crash
      mysql-test/r/select.result:
        Test case for bug #14482 Wrongly applied optimization in resolve_const_item() caused crash
      76fb5711
    • unknown's avatar
      Make it buildable with -ansi flag on some platforms. · 9c287ff6
      unknown authored
      
      extra/innochecksum.c:
        Define _XOPEN_SOURCE in order to include getopt.h when needed.
        
        The problem is that some platforms (for instance,
        SuSE 9.1/gcc-3.3.3) do not include getopt.h unless _XOPEN_SOURCE
        is defined, so optarg is undefined and the compiler complains.
      9c287ff6
    • unknown's avatar
      Polishing: get rid of C++-style comments. · 410c1e3a
      unknown authored
      
      mysys/my_open.c:
        Get rid of C++-style comments.
      410c1e3a
    • unknown's avatar
      Merge mskold@bk-internal.mysql.com:/home/bk/mysql-4.1 · 1724f2fa
      unknown authored
      into  mysql.com:/usr/local/home/marty/MySQL/mysql-4.1
      
      
      sql/ha_ndbcluster.cc:
        Auto merged
      1724f2fa
    • unknown's avatar
      Moved check of wrong schema version earlier · 314d9a06
      unknown authored
      314d9a06
    • unknown's avatar
      Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-5.0 · 40524854
      unknown authored
      into  mysql.com:/usr/home/ram/work/5.0.b15047
      
      40524854
    • unknown's avatar
      table t7 was not dropped at the end · 0d41550e
      unknown authored
      
      mysql-test/r/join_nested.result:
        drop t7
      mysql-test/t/join_nested.test:
        drop t7
      0d41550e
    • unknown's avatar
      Merge mysql.com:/usr/local/bk/mysql-5.0 · 48c75428
      unknown authored
      into  mysql.com:/usr/home/pem/bug13729/mysql-5.0
      
      48c75428