1. 22 Feb, 2005 18 commits
    • unknown's avatar
      row0sel.c: · 2b95e43a
      unknown authored
        Fix bug #8677: if one used LOCK TABLES, created an InnoDB temp table, and did a multi-table update where a MyISAM table was the update table and the temp table was a read table, then InnoDB aserted in row0sel.c because n_mysql_tables_in_use was 0. Also, we remove the assertion altogether and just print an error to the .err log if this important consistency check fails. Then it is up to the user to read the .err log and notice the problem if there still are errors in MySQL's table locking.
      
      
      innobase/row/row0sel.c:
        Fix bug #8677: if one used LOCK TABLES, created an InnoDB temp table, and did a multi-table update where a MyISAM table was the update table and the temp table was a read table, then InnoDB aserted in row0sel.c because n_mysql_tables_in_use was 0. Also, we remove the assertion altogether and just print an error to the .err log if this important consistency check fails. Then it is up to the user to read the .err log and notice the problem if there still are errors in MySQL's table locking.
      2b95e43a
    • unknown's avatar
    • unknown's avatar
      Merge lthalmann@bk-internal.mysql.com:/home/bk/mysql-4.1 · 9d84434d
      unknown authored
      into mysql.com:/home/bkroot/mysql-4.1
      
      9d84434d
    • unknown's avatar
      Merge mysql.com:/home/bkroot/mysql-4.1 into mysql.com:/home/bk/b6676-4.1 · 8dddd058
      unknown authored
      
      sql/log_event.cc:
        Auto merged
      8dddd058
    • unknown's avatar
      Fix errors in my last changeset · fd22b4ed
      unknown authored
      fd22b4ed
    • unknown's avatar
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 1e946545
      unknown authored
      into mysql.com:/home/my/mysql-4.1
      
      1e946545
    • unknown's avatar
    • unknown's avatar
      Merge 51.0.168.192.in-addr.arpa:/Users/bell/mysql/bk/mysql-4.1 · f1986cfa
      unknown authored
      into 51.0.168.192.in-addr.arpa:/Users/bell/mysql/bk/work-4.1
      
      f1986cfa
    • unknown's avatar
    • unknown's avatar
      Merge mysql.com:/home/bkroot/mysql-4.1 into mysql.com:/home/bk/b6662-4.1 · 58c9b293
      unknown authored
      
      sql/mysql_priv.h:
        Auto merged
      sql/mysqld.cc:
        Auto merged
      sql/set_var.cc:
        Auto merged
      58c9b293
    • unknown's avatar
      A user variable are now always have IMPLICIT coercibility, · aa91a063
      unknown authored
      independently from the expression it is initialized from.
      In other words, this change treats a user variable like
      a table with one column and one record. Discussed with 
      PeterG, Serg and Lars. This change also simplifies replication
      allowing not to replicate variables' coercibility.
      
      
      mysql-test/r/user_var.result:
        Test changes accordintly
      mysql-test/t/user_var.test:
        Test changes accordintly
      aa91a063
    • unknown's avatar
      a00fde8a
    • unknown's avatar
      Merge 51.0.168.192.in-addr.arpa:/Users/bell/mysql/bk/mysql-4.1 · 97824f20
      unknown authored
      into 51.0.168.192.in-addr.arpa:/Users/bell/mysql/bk/work-4.1
      
      
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      97824f20
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 20c442fd
      unknown authored
      into mysql.com:/home/my/mysql-4.1
      
      
      sql/field.cc:
        Auto merged
      20c442fd
    • unknown's avatar
      Backport my_strntod() from 5.0 · 60c20fd3
      unknown authored
      Change string->float conversion to delay division as long as possible.
      This gives us more exact integer->float conversion for numbers of type '123.45E+02' (Bug #7740)
      
      
      
      
      client/mysql.cc:
        Fix wront usage of charset (found during review of pushed code)
      include/m_string.h:
        Backported my_strtod() from 5.0
      mysql-test/mysql-test-run.sh:
        Run also mysql_client_test with --debug
      mysql-test/r/ps_1general.result:
        Safety fix (if mysql_client_test.test fails)
      mysql-test/r/type_float.result:
        More test
      mysql-test/t/mysql_client_test.test:
        Comments for what to do if this test fails
      mysql-test/t/ps_1general.test:
        Safety fix (if mysql_client_test.test fails)
      mysql-test/t/type_float.test:
        More test to better test new strtod() function
        Test also bug #7740 (wrong comparsion between integer and float-in-integer-range)
      sql/field.cc:
        Backport my_strntod() from 5.0
      sql/item.cc:
        Backport my_strntod() from 5.0
      sql/item.h:
        Backport my_strntod() from 5.0
      sql/item_func.h:
        Backport my_strntod() from 5.0
      sql/item_strfunc.cc:
        Backport my_strntod() from 5.0
      sql/item_sum.cc:
        Backport my_strntod() from 5.0
      sql/item_sum.h:
        Backport my_strntod() from 5.0
      sql/procedure.h:
        Backport my_strntod() from 5.0
      strings/ctype-simple.c:
        Backport my_strntod() from 5.0
      strings/ctype-ucs2.c:
        Backport my_strntod() from 5.0
      strings/strtod.c:
        Backport my_strntod() from 5.0
        Change conversion to delay division as long as possible.
        This gives us more exact integer-> float conversion for numbers of type '123.45E+02'
      60c20fd3
    • unknown's avatar
      ctype_latin1.result, ctype_latin1.test, charset.c: · 00fc868a
      unknown authored
        Treat unknown characters straight in a query as syntax error, rather skipping it as a space character.
      
      
      mysys/charset.c:
        Treat unknown characters straight in a query as syntax error, rather skipping it as a space character.
      mysql-test/t/ctype_latin1.test:
        Treat unknown characters straight in a query as syntax error, rather skipping it as a space character.
      mysql-test/r/ctype_latin1.result:
        Treat unknown characters straight in a query as syntax error, rather skipping it as a space character.
      00fc868a
    • unknown's avatar
      field.cc: · ed894231
      unknown authored
        optimize test_if_minus() when not UCS2 support is compiled.
      
      
      sql/field.cc:
        optimize test_if_minus() when not UCS2 support is compiled.
      ed894231
  2. 21 Feb, 2005 10 commits
  3. 19 Feb, 2005 1 commit
  4. 18 Feb, 2005 6 commits
  5. 17 Feb, 2005 5 commits