1. 25 Mar, 2003 7 commits
    • unknown's avatar
      SHOW CHARACTER SET now can display comments · 22530fd8
      unknown authored
      Low case letters are used in charset names
      
      
      BitKeeper/deleted/.del-MacRoman.xml~f890bce37d31d382:
        Delete: sql/share/charsets/MacRoman.xml
      BitKeeper/deleted/.del-MacCE.xml~fca413f3126f6189:
        Delete: sql/share/charsets/MacCE.xml
      mysys/charset.c:
        SHOW CHARACTER SET now can display comments
      sql/share/charsets/Index.xml:
        SHOW CHARACTER SET now can display comments
      sql/sql_show.cc:
        SHOW CHARACTER SET now can display comments
      strings/ctype.c:
        SHOW CHARACTER SET now can display comments
      22530fd8
    • unknown's avatar
      sql_string.cc: · 3cded4c9
      unknown authored
        NATIONAL CHARACTER() has latin1 charset now.
        Reasons are (by Monty):
        I think we should keepy having latin1 (default configure option)
        as the national character set.  The reason for this is simple that:
      
      - This is ok for a large part of the world.
      - It's faster and takes less space than utf8.
      
      
      sql/sql_string.cc:
        NATIONAL CHARACTER() has latin1 charset now.
        Reasons are (by Monty):
        I think we should keepy having latin1 (default configure option)
        as the national character set.  The reason for this is simple that:
      3cded4c9
    • unknown's avatar
      sql_show.cc: · 14cde8c8
      unknown authored
        LIKE was used against wrong name
      
      
      sql/sql_show.cc:
        LIKE was used against wrong name
      14cde8c8
    • unknown's avatar
      4be0d863
    • unknown's avatar
      21c894f9
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · d835f4ef
      unknown authored
      into narttu.mysql.fi:/my/mysql-4.1
      
      d835f4ef
    • unknown's avatar
      Fixed bug in allocation memory in key cache. (Memory was not properly aligned... · 1c6e45ef
      unknown authored
      Fixed bug in allocation memory in key cache. (Memory was not properly aligned which cased core dumps on sparc CPU's)
      Changed keycache variables to start with my_ instead of _my_
      
      
      include/my_sys.h:
        Changed keycache variables to start with my_ instead of _my_
      myisam/mi_test2.c:
        Changed keycache variables to start with my_ instead of _my_
        Removed compiler warnings
      myisam/sp_test.c:
        Removed compiler warning
      mysys/mf_keycache.c:
        Fixed bug in allocation memory (Memory was not properly aligned which cased core dumps on sparc CPU's)
        Changed keycache variables to start with my_ instead of _my_
        Fixed indentation and comment syntax.
        Removed end space.
      sql/mysqld.cc:
        Changed keycache variables to start with my_ instead of _my_
      sql/sql_test.cc:
        Changed keycache variables to start with my_ instead of _my_
      1c6e45ef
  2. 24 Mar, 2003 3 commits
    • unknown's avatar
      item_strfunc.cc: · b137dfca
      unknown authored
        Fixed that concat() didn't set character set in val_str
        concat_ws() now honors coercibility
      
      
      sql/item_strfunc.cc:
        Fixed that concat() didn't set character set in val_str
        concat_ws() now honors coercibility
      b137dfca
    • unknown's avatar
      item_strfunc.cc: · 86d0e8d7
      unknown authored
        The result didn't return proper collation
      
      
      sql/item_strfunc.cc:
        The result didn't return proper collation
      86d0e8d7
    • unknown's avatar
      item_strfunc.cc: · 9f1d8f9b
      unknown authored
        A bug has been fixed. ELT() didn't honor the second argument.
        Coercibility support has been added.
      
      
      sql/item_strfunc.cc:
        A bug has been fixed. ELT() didn't honor the second argument.
        Coercibility support has been added.
      9f1d8f9b
  3. 21 Mar, 2003 17 commits
  4. 20 Mar, 2003 13 commits
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · ae18d013
      unknown authored
      into narttu.mysql.fi:/my/mysql-4.1
      
      
      sql/password.c:
        Auto merged
      sql/sql_update.cc:
        Auto merged
      ae18d013
    • unknown's avatar
      After merge fixes · 275e6c35
      unknown authored
      Fixed bug in Item::set_name()
      Fix for memory leak with geometry type
      
      
      mysql-test/r/create.result:
        Fixed results after merge
      mysql-test/r/innodb.result:
        Hack to make test repeatable
        (InnoDB's cardinality numbers varies a bit between tests)
      mysql-test/r/rpl_relayspace.result:
        After merge fix
      mysql-test/t/innodb.test:
        Hack to make test repeatable
        (InnoDB's cardinality numbers varies a bit between tests)
      sql/ha_myisam.cc:
        Indentation cleanup
      sql/item.cc:
        Fixed bug in Item::set_name()
      sql/password.c:
        After merge fix
      sql/sql_update.cc:
        After merge fix
      sql/table.cc:
        Fix for memory leak with geometry type
      275e6c35
    • unknown's avatar
      item_cmpfunc.cc: · 79e9917a
      unknown authored
        cmp_charset was not initialized
        valgrind fix
        LIKE now works according to coercibility rules
      
      
      sql/item_cmpfunc.cc:
        cmp_charset was not initialized
        valgrind fix
        LIKE now works according to coercibility rules
      79e9917a
    • unknown's avatar
      SELECT N'string' · 0b7cb903
      unknown authored
      0b7cb903
    • unknown's avatar
      Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-4.1 · 5f1f522f
      unknown authored
      into mysql.r18.ru:/usr/home/ram/work/mysql-4.1.sp
      
      
      sql/field.cc:
        Auto merged
      5f1f522f
    • unknown's avatar
      R-tree bug fixes. · 913cd2e4
      unknown authored
      
      myisam/rt_index.c:
        Should call find_first() instead of find_next() after key deletion.
        Fixed type cast.
      myisam/sp_key.c:
        Fixed spatial key creation.
      sql/field.cc:
        To get rid of warning.
      913cd2e4
    • unknown's avatar
      NATIONAL CHARACTER VARYING(n) · 475cf8b6
      unknown authored
      NATIONAL CHAR VARYING(n)
      NCHAR VARYING(n)
      
      are now aliases for
      
      VARCHAR(n) CHARACTER SET utf8
      
      475cf8b6
    • unknown's avatar
      · d87e00b3
      unknown authored
      NCHAR(n) and NATIONAL CHARACTER(n)
      is now synonim for
      CHARACTER(n) CHARACTER SET utf8
      
      d87e00b3
    • unknown's avatar
      New syntax for character strings: · 42f156c7
      unknown authored
      SELECT _latin1 0x345678;
      SELECT _latin x'345678';
      
      42f156c7
    • unknown's avatar
      another bad merge fixed · 9c6873a9
      unknown authored
      9c6873a9
    • unknown's avatar
      fixed bad merge (s/rnd/my_rnd/) · 08ad35d2
      unknown authored
      08ad35d2
    • unknown's avatar
      Merge pmartin@bk-internal.mysql.com:/home/bk/mysql-4.1 · baae4251
      unknown authored
      into mysql.com:/home/pem/work/mysql-4.1
      
      baae4251
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 9082877c
      unknown authored
      into narttu.mysql.fi:/my/mysql-4.1
      
      
      configure.in:
        Auto merged
      libmysqld/lib_sql.cc:
        Auto merged
      sql/field.cc:
        Auto merged
      sql/field.h:
        Auto merged
      sql/item.cc:
        Auto merged
      sql/item.h:
        Auto merged
      sql/item_cmpfunc.cc:
        Auto merged
      sql/item_func.cc:
        Auto merged
      sql/lex.h:
        Auto merged
      sql/log.cc:
        Auto merged
      sql/log_event.cc:
        Auto merged
      sql/mysqld.cc:
        Auto merged
      sql/repl_failsafe.cc:
        Auto merged
      sql/set_var.cc:
        Auto merged
      sql/slave.cc:
        Auto merged
      sql/sql_class.h:
        Auto merged
      sql/sql_repl.cc:
        Auto merged
      sql/sql_show.cc:
        Auto merged
      sql/sql_yacc.yy:
        Auto merged
      9082877c