1. 18 Apr, 2006 1 commit
    • msvensson@neptunus.(none)'s avatar
      Bug#17208 SSL: client does not verify server certificate · a51668c7
      msvensson@neptunus.(none) authored
       - Add new function 'ssl_verify_server_cert' which is used if we are 
         connecting to the server with SSL. It will compare the hostname in 
         the server's cert against the hostname that we used when connecting 
         to the server. Will reject the connection if hostname does not match.
       - Add new option "OPT_SSL_VERIFY_SERVER_CERT" to be passed to mysql_options
         which will turn on checking of servers cert.
       - Add new argument "ssl-verify-server-cert" to all mysql* clients which 
         will activate the above option.
       - Generate a new server cert with 1024 bits that has "localhost" as the server name.
      a51668c7
  2. 12 Apr, 2006 3 commits
  3. 11 Apr, 2006 10 commits
  4. 10 Apr, 2006 20 commits
  5. 09 Apr, 2006 4 commits
  6. 08 Apr, 2006 2 commits
    • knielsen@mysql.com's avatar
      4d5ab7a9
    • igor@rurik.mysql.com's avatar
      Fixed bug #16069. · 17141582
      igor@rurik.mysql.com authored
      The function agg_cmp_type in item_cmpfunc.cc neglected the fact that 
      the first argument in a BETWEEN/IN predicate could be a field of a view.
      As a result in the case when the retrieved table was hidden by a view 
      over it and the arguments in the BETWEEN/IN predicates are of 
      the date/time type the function did not perform conversion of 
      the constant arguments to the same format as the first field argument.
      If formats of the arguments differed it caused wrong a evaluation of
      the predicates.
      17141582