Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mysql/mysql-server
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 153abc2
Choose a base ref
...
head repository: woudX/mysql-server
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 77306a4
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jul 12, 2019

  1. Bug#30031130: MYSQL SERVER SEGFAULTS AT

    STD::CONDITION_VARIABLE::WAIT_FOR IN SOLARIS/X86
    
    When a MySQL Server built with ndbcluster engine is run in a
    Solaris/x86 platform, it crashes everytime when
    NDB_SCHEMA_OBJECT::client_wait_completed() method is called. The
    segfault happens when this method calls the
    std::condition_variable::wait_for() method. This particular crash
    happens only in the release builds. The reason seems to be an issue with
    the compiler used in Solaris. When the optimization level -xO2 is used,
    it fills the wait_for() call with a bogus code that triggers this
    segfault during runtime.
    
    Fixed the issue by making the release builds use optimization
    level -xO1 for ndbcluster instead.
    
    Change-Id: I8471970169cd971958ac2f5aa6dcb0ccd8d083a3
    lkshminarayanan authored and Piotr Obrzut committed Jul 12, 2019
    Configuration menu
    Copy the full SHA
    77306a4 View commit details
    Browse the repository at this point in the history
Loading