1. 12 Apr, 2006 3 commits
    • unknown's avatar
      Merge bk-internal:/home/bk/mysql-5.1-new · a032a28d
      unknown authored
      into  neptunus.(none):/home/msvensson/mysql/mysql-5.1
      
      a032a28d
    • unknown's avatar
      Merge neptunus.(none):/home/msvensson/mysql/my51-bug18415 · 60f5cf7b
      unknown authored
      into  neptunus.(none):/home/msvensson/mysql/mysql-5.1
      
      
      mysql-test/lib/mtr_process.pl:
        Auto merged
      60f5cf7b
    • unknown's avatar
      Bug#18415 mysql-test-run.pl does not run on ActiveState perl · ecd75b76
      unknown authored
       - Part 1, better handling of subprocess and stdout to be done
      
      
      mysql-test/lib/mtr_process.pl:
        - Dont redirect stdout if ActiveState perl since fork creates a new thread and not another process.
        - Change waitpid to allow for negative pid as we get on Windows, strange but 
          that is how it is. It should never create a process with pid -1 though.
        - Remove an "if" for cygwin that does not do anything.
        - Add "print" in the potentially hanging while loop in "start_reap_all"
        - Dont use "getpgrp" on windows.
        - Remove "sleep 2" in mtr_exit
        - Remove the initial ping of mysqld's in 'mysql_admin_shutdown', instead just start one 
          mysqladmin for each expected mysqld server and wait for them to return.
          Then perform the ping of the mysqld server's. Those ping's normally return immediately.
      ecd75b76
  2. 11 Apr, 2006 37 commits
    • unknown's avatar
      Merge bk-internal:/home/bk/mysql-5.1-new · b711579f
      unknown authored
      into  mysql.com:/home/jimw/my/mysql-5.1-clean
      
      b711579f
    • unknown's avatar
      Merge c-4908e253.1238-1-64736c10.cust.bredbandsbolaget.se:/home/pappa/clean-mysql-5.1-new · 87b825c5
      unknown authored
      into  c-4908e253.1238-1-64736c10.cust.bredbandsbolaget.se:/home/pappa/bug18750
      
      87b825c5
    • unknown's avatar
      Protect from empty --query argument · dc0e3ebc
      unknown authored
      dc0e3ebc
    • unknown's avatar
      Bug#18012 mysqlslap fails if querystring starts with delimiter · 75478cd9
      unknown authored
      - Terminate loop not only when the limit is met, but alse when there is no more stmts  
      
      
      client/mysqlslap.c:
        Terminate loop not only when the limit is met, but alse when there is no more stmts
      mysql-test/r/mysqlslap.result:
        Remove the extra statmemnt
      75478cd9
    • unknown's avatar
      Fix syntax error · b75fc22a
      unknown authored
      
      client/mysqlslap.c:
        Remove the %s, no string to print
      b75fc22a
    • unknown's avatar
      Bug#17478 mysqlslap not issuing any queries · f32735a3
      unknown authored
       - Add more printouts it depending on verbose level
       - New common function 'run_query' to be used when executing a query
      
      
      client/mysqlslap.c:
        Seed random number generator after options handling
        Make common function 'run_query' to take care of "opt_print_only" and "opt_verbose" level
        Better error message when failing to connect to MySQL Server
        Message when turning off "preserve-schema"
        Print auto generated statmements
        Print queries if verbose >= 2
        Print "connected" if verbose >= 3
      f32735a3
    • unknown's avatar
      Merge mysql.com:/home/jimw/my/mysql-5.1-17139 · 350256bd
      unknown authored
      into  mysql.com:/home/jimw/my/mysql-5.1-clean
      
      
      sql/sql_parse.cc:
        Auto merged
      350256bd
    • unknown's avatar
      Merge mskold@bk-internal.mysql.com:/home/bk/mysql-5.1-new · 8c35dd26
      unknown authored
      into  linux.site:/home/marty/MySQL/mysql-5.1-new
      
      
      sql/ha_partition.cc:
        Auto merged
      8c35dd26
    • unknown's avatar
      Removed test case erroneously merged from 5.0 · 7c5e4e1c
      unknown authored
      7c5e4e1c
    • unknown's avatar
      Merge c-4908e253.1238-1-64736c10.cust.bredbandsbolaget.se:/home/pappa/clean-mysql-5.1-new · dc730040
      unknown authored
      into  c-4908e253.1238-1-64736c10.cust.bredbandsbolaget.se:/home/pappa/bug18750
      
      dc730040
    • unknown's avatar
      Merge mysql.com:/home/alexi/bugs/mysql-5.0-13683 · 049179d6
      unknown authored
      into  mysql.com:/home/alexi/bugs/mysql-5.1-13683
      
      
      mysql-test/r/insert.result:
        Null-merge
      sql/sql_insert.cc:
        Null-merge
      049179d6
    • unknown's avatar
      Don't use the MYSQL* returned from mysql_real_connect to overwrite the already... · ad04c98c
      unknown authored
      Don't use the MYSQL* returned from mysql_real_connect to overwrite the already initalised mysql variable
      
      
      client/mysqlslap.c:
        Only use the MYSQL* returned from mysql_reqal_connect as an indicator wether the connect was successfull or not.
        As the manual says about the return value from mysql_real_connect: "A MYSQL* connection handle if the connection
        was successful, NULL if the connection was unsuccessful. For a successful connection, the 
        return value is the same as the value of the first parameter."
      ad04c98c
    • unknown's avatar
      Merge mronstrom@bk-internal.mysql.com:/home/bk/mysql-5.1-new · 0455ea5e
      unknown authored
      into  c-4908e253.1238-1-64736c10.cust.bredbandsbolaget.se:/home/pappa/bug18750
      
      
      mysql-test/r/partition.result:
        manual merge
      mysql-test/t/partition.test:
        manual merge
      0455ea5e
    • unknown's avatar
    • unknown's avatar
      Merge mskold@bk-internal.mysql.com:/home/bk/mysql-5.1-new · 5ffd52bc
      unknown authored
      into  linux.site:/home/marty/MySQL/mysql-5.1-new
      
      
      sql/ha_ndbcluster.cc:
        Auto merged
      5ffd52bc
    • unknown's avatar
      f2fe6de8
    • unknown's avatar
      Fixes for fast alter table for ndbcluster · e6403c73
      unknown authored
      e6403c73
    • unknown's avatar
      Remove the my_seek calls as we have just opened the file for append with... · 5ef67535
      unknown authored
      Remove the my_seek calls as we have just opened the file for append with O_APPEND and the file pointer should be at end of the file already.
      
      
      storage/csv/ha_tina.cc:
        Remove the my_seek calls as we have just opened the file for append with O_APPEND and the file pointer should be at end of the file already
      5ef67535
    • unknown's avatar
      Merge 192.168.0.10:mysql/mysql-5.1 · 7152e2aa
      unknown authored
      into  shellback.:C:/mysql/my51-bug17368
      
      
      sql/ha_partition.cc:
        Auto merged
      7152e2aa
    • unknown's avatar
      Remove unused variable · 1b8de1e1
      unknown authored
      1b8de1e1
    • unknown's avatar
      Close share->data_file in before renaming in ha_tina::repair · caab082b
      unknown authored
      Open and seek to end of data_file after rename 
      Fix comment for when file does not need repair.
      Set share->mapped_file to NULL always when it's been unmapped 
      Add test to see that file can be used after repair
      
      
      mysql-test/r/csv.result:
        Add more test to see that the table can be used after repair
      mysql-test/t/csv.test:
        Add more test to see that the table can be used after repair
      storage/csv/ha_tina.cc:
        Close share->data_file in before renaming in ha_tina::repair
        Open and seek to end after rename
        Fix comment for when file does not need repair.
        Set share->mapped_file to NULL always when it's been unmapped
      caab082b
    • unknown's avatar
      Merge bk-internal:/home/bk/mysql-5.1-new · 60b62830
      unknown authored
      into  neptunus.(none):/home/msvensson/mysql/mysql-5.1
      
      60b62830
    • unknown's avatar
      Merge abarkov@bk-internal.mysql.com:/home/bk/mysql-5.1-new · 2d818ebf
      unknown authored
      into  mysql.com:/usr/home/bar/mysql-5.1-new
      
      2d818ebf
    • unknown's avatar
      Bug#16233: XML: ExtractValue() fails with special characters · e796a9c8
      unknown authored
      ExtractValue didn't understand tag and attribute names
      consisting of "tricky" national letters (e.g. latin accenter letters).
      It happened because XPath lex parser recognized only basic
      latin letter a..z ad a part of an identifier.
      
      Fixed to recognize all letters by means of new "full ctype" which
      was added recently.
      
      
      mysql-test/r/xml.result:
        Adding test case
      mysql-test/t/xml.test:
        Adding test case
      sql/item_xmlfunc.cc:
        Using recently implemented "true" ctype functionality
            to treat all national letters as valid tag names,
            Only basic latin letters worked so far.
      strings/ctype-simple.c:
        A bug fix: ctype is array of 257 elements,
            adding offset to address correct element.
      e796a9c8
    • unknown's avatar
      Remove extra "," · 44c969dd
      unknown authored
      44c969dd
    • unknown's avatar
      Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0 · 5bcdcdaa
      unknown authored
      into  neptunus.(none):/home/msvensson/mysql/mysql-5.1
      
      
      client/mysqltest.c:
        Auto merged
      libmysql/Makefile.shared:
        Auto merged
      mysql-test/mysql-test-run.pl:
        Auto merged
      sql/ha_ndbcluster.cc:
        Auto merged
      5bcdcdaa
    • unknown's avatar
      Merge bk-internal:/home/bk/mysql-5.1-new · d9ce7774
      unknown authored
      into  neptunus.(none):/home/msvensson/mysql/mysql-5.1
      
      
      sql/ha_ndbcluster.cc:
        Auto merged
      d9ce7774
    • unknown's avatar
      Add surrounding braces, move invalidate dictionary_cace to after declaration... · 816a98f7
      unknown authored
      Add surrounding braces, move invalidate dictionary_cace to after declaration of variable "table_list"
      
      
      816a98f7
    • unknown's avatar
      Merge bk-internal:/home/bk/mysql-5.1-new · 6d40e5db
      unknown authored
      into  neptunus.(none):/home/msvensson/mysql/mysql-5.1
      
      
      Makefile.am:
        Auto merged
      mysql-test/mysql-test-run.sh:
        Auto merged
      mysys/Makefile.am:
        Auto merged
      sql/ha_ndbcluster.cc:
        Auto merged
      sql-common/client.c:
        Auto merged
      6d40e5db
    • unknown's avatar
      Merge bk-internal:/home/bk/mysql-5.0 · a7bf5b50
      unknown authored
      into  neptunus.(none):/home/msvensson/mysql/mysql-5.0
      
      
      mysql-test/mysql-test-run.pl:
        Auto merged
      sql/ha_ndbcluster.cc:
        Auto merged
      a7bf5b50
    • unknown's avatar
      Merge mysql.com:/home/jimw/my/mysql-5.0-clean · 24db4628
      unknown authored
      into  mysql.com:/home/jimw/my/mysql-5.1-clean
      
      
      mysql-test/r/type_bit.result:
        Auto merged
      mysql-test/r/type_bit_innodb.result:
        Auto merged
      sql/field.h:
        Auto merged
      sql/ha_ndbcluster.cc:
        Auto merged
      sql/key.cc:
        Auto merged
      sql/field.cc:
        Resolve merge conflict
      24db4628
    • unknown's avatar
      Merge ibabaev@bk-internal.mysql.com:/home/bk/mysql-5.1-new · acc4b189
      unknown authored
      into  rurik.mysql.com:/home/igor/mysql-5.1
      
      acc4b189
    • unknown's avatar
      Merge baker@bk-internal.mysql.com:/home/bk/mysql-5.1-new · 48384288
      unknown authored
      into  zim.(none):/home/brian/mysql/dep-5.1
      
      48384288
    • unknown's avatar
      Merge ibabaev@bk-internal.mysql.com:/home/bk/mysql-5.1-new · cf96c467
      unknown authored
      into  rurik.mysql.com:/home/igor/mysql-5.1
      
      
      mysql-test/mysql-test-run.pl:
        Auto merged
      cf96c467
    • unknown's avatar
      Drop a number of OS2 specific files. · 561d3b12
      unknown authored
      
      BitKeeper/deleted/.del-BldLevel.cmd~d1a41ef0712190e1:
        Delete: os2/BldLevel.cmd
      BitKeeper/deleted/.del-BldLevelInf.cmd~49e29c82b3527c4a:
        Delete: os2/BldLevelInf.cmd
      BitKeeper/deleted/.del-BldLevel.RES~6701a23a4d0b0f33:
        Delete: os2/BldLevel.RES
      BitKeeper/deleted/.del-BldLevel.rc~fdab305a1b550012:
        Delete: os2/BldLevel.rc
      BitKeeper/deleted/.del-ChangeLog.os2~c473e6f17539eb4:
        Delete: os2/ChangeLog.os2
      BitKeeper/deleted/.del-Makefile.am~e5b911533dad2713:
        Delete: os2/Makefile.am
      BitKeeper/deleted/.del-build-all.cmd~68479264bb9abe:
        Delete: os2/build-all.cmd
      BitKeeper/deleted/.del-MySQL-Client.icc~1d41cb9ed34c28ce:
        Delete: os2/MySQL-Client.icc
      BitKeeper/deleted/.del-mysql-inf.wis~fce577336b6bb0e:
        Delete: os2/mysql-inf.wis
      BitKeeper/deleted/.del-mysqlalt.wis~409d76f4dfd1e4c4:
        Delete: os2/mysqlalt.wis
      BitKeeper/deleted/.del-MySQL-Opt.icc~b9517e18e6cf6c05:
        Delete: os2/MySQL-Opt.icc
      BitKeeper/deleted/.del-MySQL-Source.icc~edded3c3a5cf83b1:
        Delete: os2/MySQL-Source.icc
      BitKeeper/deleted/.del-MySQL-Sql.icc~2ec2a87f4a096d31:
        Delete: os2/MySQL-Sql.icc
      BitKeeper/deleted/.del-MySQL-Sql.irs~266e93e2c9003567:
        Delete: os2/MySQL-Sql.irs
      BitKeeper/deleted/.del-MySQL-Util.icc~e6288097ceb9cbd2:
        Delete: os2/MySQL-Util.icc
      BitKeeper/deleted/.del-MySQL-Util.irs~cc5eb078dbc0605c:
        Delete: os2/MySQL-Util.irs
      BitKeeper/deleted/.del-mysql.wis~95ebdebeb470c823:
        Delete: os2/mysql.wis
      BitKeeper/deleted/.del-ReadMe.txt~573b1e4ebab241e1:
        Delete: os2/ReadMe.txt
      BitKeeper/deleted/.del-rint.cmd~49a7df1e6a4214af:
        Delete: os2/rint.cmd
      BitKeeper/deleted/.del-rint.obj~e6bbb137ffb2f3d1:
        Delete: os2/rint.obj
      BitKeeper/deleted/.del-rint.s~82358ca146718a12:
        Delete: os2/rint.s
      BitKeeper/deleted/.del-config.h~1e58e9b6b3735392:
        Delete: os2/include/config.h
      BitKeeper/deleted/.del-Makefile.am~f87185e232d7c4f:
        Delete: os2/include/Makefile.am
      BitKeeper/deleted/.del-pwd.h~b26f27954da3a1be:
        Delete: os2/include/pwd.h
      BitKeeper/deleted/.del-sgtty.h~4321c310847cb55c:
        Delete: os2/include/sgtty.h
      BitKeeper/deleted/.del-termio.h~b136a899c396cb69:
        Delete: os2/include/termio.h
      BitKeeper/deleted/.del-Makefile.am~ead19441cc5ff35c:
        Delete: os2/include/sys/Makefile.am
      BitKeeper/deleted/.del-file.h~90a5c4f6c7dfb5a:
        Delete: os2/include/sys/file.h
      BitKeeper/deleted/.del-config-os2.h~a16b51851ddd317b:
        Delete: include/config-os2.h
      BitKeeper/deleted/.del-my_os2cond.c~e3b520af1c371bb5:
        Delete: mysys/my_os2cond.c
      BitKeeper/deleted/.del-my_os2dirsrch.c~4e2479b2abb2eb5a:
        Delete: mysys/my_os2dirsrch.c
      BitKeeper/deleted/.del-my_os2dirsrch.h~5011cbc657537d0:
        Delete: mysys/my_os2dirsrch.h
      BitKeeper/deleted/.del-my_os2dlfcn.c~6d94b488717683dd:
        Delete: mysys/my_os2dlfcn.c
      BitKeeper/deleted/.del-my_os2dlfcn.h0~eae8edb8555eff87:
        Delete: mysys/my_os2dlfcn.h0
      BitKeeper/deleted/.del-my_os2file64.c~251fb8a1e950c31b:
        Delete: mysys/my_os2file64.c
      BitKeeper/deleted/.del-my_os2mutex.c~79f7438bfde5132a:
        Delete: mysys/my_os2mutex.c
      BitKeeper/deleted/.del-my_os2thread.c~65dca991548cec2a:
        Delete: mysys/my_os2thread.c
      BitKeeper/deleted/.del-my_os2tls.c~58ade7a0f70ad5ea:
        Delete: mysys/my_os2tls.c
      Makefile.am:
        Removed os2 reference
      configure.in:
        Removed OS2 specific os2 files.
      include/Makefile.am:
        Removed os2 specific config file.
      include/my_global.h:
        Removed OS2 specific files.
      mysys/Makefile.am:
        Removed OS2 specific files.
      561d3b12
    • unknown's avatar
      mysql_upgrade.c: · 86bffb7f
      unknown authored
        No declarations after first expression in block
      
      
      client/mysql_upgrade.c:
        No declarations after first expression in block
      86bffb7f
    • unknown's avatar
      Merge kboortz@bk-internal.mysql.com:/home/bk/mysql-5.1-new · 02f84a6f
      unknown authored
      into mysql.com:/Users/kent/mysql/bk/mysql-5.1-new
      
      02f84a6f