1. 30 May, 2006 4 commits
    • ramil@mysql.com's avatar
      Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-5.0 · d402c3d4
      ramil@mysql.com authored
      into  mysql.com:/usr/home/ram/work/mysql-5.0
      d402c3d4
    • anozdrin@mysql.com's avatar
      Merge mysql.com:/home/alik/MySQL/devel/5.0-rt · 11fcbaf1
      anozdrin@mysql.com authored
      into  mysql.com:/home/alik/MySQL/devel/5.0-tree
      11fcbaf1
    • ramil@mysql.com's avatar
      Merge mysql.com:/usr/home/ram/work/mysql-4.1 · 4df24774
      ramil@mysql.com authored
      into  mysql.com:/usr/home/ram/work/mysql-5.0
      4df24774
    • gluh@eagle.intranet.mysql.r18.ru's avatar
      Bug#17204 "second CALL to procedure crashes Server" · ae72df07
      gluh@eagle.intranet.mysql.r18.ru authored
      Bug#18282 "INFORMATION_SCHEMA.TABLES provides inconsistent info about invalid views"
      This bug caused crashes or resulted in wrong data being returned
      when one tried to obtain information from I_S tables about views
      using stored functions.
      
      It was caused by the fact that we were using LEX representing
      statement which were doing select from I_S tables as active LEX
      when contents of I_S table were built. So state of this LEX both
      affected and was affected by open_tables() calls which happened
      during this process. This resulted in wrong behavior and in
      violations of some of invariants which caused crashes.
      
      This fix tries to solve this problem by properly saving/resetting
      and restoring part of LEX which affects and is affected by the
      process of opening tables and views in get_all_tables() routine.
      To simplify things we separated this part of LEX in a new class
      and made LEX its descendant.
      ae72df07
  2. 29 May, 2006 18 commits
  3. 26 May, 2006 7 commits
  4. 25 May, 2006 8 commits
  5. 24 May, 2006 3 commits
    • monty@mysql.com's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.0 · 4064f11a
      monty@mysql.com authored
      into  mysql.com:/home/my/mysql-5.0
      4064f11a
    • monty@mysql.com's avatar
      Merge monty@192.168.0.9:/my/mysql-5.0 · 7cb3df01
      monty@mysql.com authored
      into  mysql.com:/home/my/mysql-5.0
      7cb3df01
    • monty@mysql.com's avatar
      More DBUG statements · 9e9ca8b6
      monty@mysql.com authored
      Replaced COND_refresh with COND_global_read_lock becasue of a bug in NTPL threads when using different mutexes as arguments to pthread_cond_wait()
      The original code caused a hang in FLUSH TABLES WITH READ LOCK in some circumstances because pthread_cond_broadcast() was not delivered to other threads.
      This fixes:
      Bug#16986: Deadlock condition with MyISAM tables
      Bug#20048: FLUSH TABLES WITH READ LOCK causes a deadlock
      9e9ca8b6