1. 31 Jan, 2005 1 commit
    • unknown's avatar
      WL#964 · 5ebe0dd2
      unknown authored
          added client_test.dsp in project
          added CHARACTER SET in tables
          added 5th time zone
          included lstat in if()
          expanded ignore list for windows
          added directory slave1 and slave2
          added options for mysqld and mysqltest
          fixed error in read_option()
          fixed and added enviroment variables for Linux and Windows
          rewrote str_tok()
          added replacment 3th column
          New BitKeeper file ``VC++Files/tests/client_test.dsp''
      
      
      
      VC++Files/mysql.dsw:
        added client_test.dsp in project
      mysql-test/my_create_tables.c:
        added CHARACTER SET in tables
        added 5th time zone
      mysql-test/my_manage.c:
        included lstat in if()
      mysql-test/mysql_test_run_new.c:
        expanded ignore list for windows
        added directory slave1 and slave2
        added options for mysqld and mysqltest
        fixed error in read_option()
        fixed and added enviroment variables for Linux and Windows
        rewrote str_tok()
      mysql-test/t/ps_1general.test:
        added replacment 3th column
      5ebe0dd2
  2. 26 Jan, 2005 10 commits
  3. 25 Jan, 2005 22 commits
  4. 24 Jan, 2005 7 commits
    • unknown's avatar
      Merge bk-internal:/home/bk/mysql-4.1 · 4bb1c716
      unknown authored
      into mysql.com:/home/jimw/my/mysql-4.1-clean
      
      
      4bb1c716
    • unknown's avatar
      A fix for Bug#5787 "mysql_stmt_prepare is upto 8 times slower": · dc43c6ea
      unknown authored
      it's crucial to disable Nagle algorithm on client for no-reply commands
      (like mysql_stmt_free) to always work fast.
      Nagle algorithm instructs the sender to buffer (store) data if any 
      unacknowledged data is outstanding and the size of to-send data is less than
      the network segment. It was exactly the case with COM_STMT_CLOSE after 
      COM_STMT_PREPARE, so the client was waiting for Nagle timer to expire or
       for ACK from the server, while the server was holding up ACK because of 
      delayed acknowledgement algorithm.
      The tricky part is that we have been already disabling Nagle 
      algorithm (by setting TCP_NODELAY)
      almost everywhere except Windows (and maybe Netware).
      It is the reason why the bug was repeatable only with Windows client.
      
      
      vio/viosocket.c:
        A fix for Bug#5787 "mysql_stmt_prepare is upto 8 times slower":
        if we disable Nagle algorithm, do it everywhere.
      dc43c6ea
    • unknown's avatar
      Merge mysql.com:/home/jimw/my/mysql-4.1-7887 · 844fe1ea
      unknown authored
      into mysql.com:/home/jimw/my/mysql-4.1-clean
      
      
      sql/mysqld.cc:
        Auto merged
      844fe1ea
    • unknown's avatar
      Set lower_case_file_system when it is being tested to check if · 15f37ac2
      unknown authored
      lower_case_tables_names=2 is sensible. Related to Bug #7887.
      
      
      sql/mysqld.cc:
        Set lower_case_file_system when it is being tested to check
        if lower_case_tables_names=2 is sensible.
      15f37ac2
    • unknown's avatar
      Merge serg@bk-internal.mysql.com:/home/bk/mysql-4.1/ · 4332ac91
      unknown authored
      into serg.mylan:/usr/home/serg/Abk/mysql-4.1
      
      
      tests/mysql_client_test.c:
        Auto merged
      4332ac91
    • unknown's avatar
      Merge tulin@bk-internal.mysql.com:/home/bk/mysql-4.1 · ccbc6f05
      unknown authored
      into poseidon.ndb.mysql.com:/home/tomas/mysql-4.1
      
      
      mysql-test/mysql-test-run.sh:
        Auto merged
      ccbc6f05
    • unknown's avatar
      remove the entry from the list, before freeing · 7109999b
      unknown authored
      7109999b