1. 19 Apr, 2017 1 commit
    • Jacob Mathew's avatar
      MDEV-10355 Weird error message upon CREATE TABLE with DEFAULT · 0b52b28b
      Jacob Mathew authored
      Fixed handling of default values with cached temporal functions so that the
      CREATE TABLE statement now succeeds.
      Fixed virtual column session cleanup.
      Fixed the error message.
      Added quoting of date/time values in cases when this was omitted.
      Added a test case in default.test.
      Updated test result files.
      0b52b28b
  2. 17 Apr, 2017 6 commits
  3. 11 Apr, 2017 1 commit
    • Daniel Black's avatar
      Travis: Test more suites, latest OSX · eecce3d7
      Daniel Black authored
      Remove clang-3.8 which doesn't have a repository on apt.llvm.org any
      more.
      
      For OSX, xcode8.3 is explicitly specified.
      
      /usr/local/Cellar is used as a cache repository to save brew install
      time on OSX (and /usr/local was too big).
      
      Debian autobake.sh is moved to a matrix include.
      
      Other branches of the matrix build test other test suites.
      An Ubuntu galera is downloaded and used in the test suite.
      
      TYPE=RelWithDebInfo used with the test to provide backtraces with line
      numbers when crashes occur.
      
      Build of PLUGIN_AWS_KEY_MANAGEMENT enabled in build.
      
      Code supporting TYPE=Debug and -DWITH_ASAN=ON included by not enabled
      due to large numbers of errors.
      
      Running more tests in parallel (6) as container based builds seem to
      support them. The test case timeout has been set to 2 minutes as large
      stalls will put test cases over 50 minute interval.
      
      ccache enabled where possible. Linux clang builds don't use them as the
      minimum CMake version isn't there.
      eecce3d7
  4. 09 Apr, 2017 1 commit
  5. 07 Apr, 2017 11 commits
  6. 06 Apr, 2017 17 commits
  7. 05 Apr, 2017 3 commits
    • Oleksandr Byelkin's avatar
      MDEV-8642: WHERE Clause not applied on View - Empty result set returned · 57a699b0
      Oleksandr Byelkin authored
      An attempt to mark reference as dependent lead to transfering this property to
      original view field and through it to other references of this field which
      can't be dependent.
      57a699b0
    • Daniel Bartholomew's avatar
      bump the VERSION · d528fd72
      Daniel Bartholomew authored
      d528fd72
    • Marko Mäkelä's avatar
      Make InnoDB doublewrite buffer creation more robust. · 8423294a
      Marko Mäkelä authored
      buf_dblwr_create(): Remove a bogus check for the buffer pool size.
      Theoretically, there is no problem if the doublewrite buffer is
      larger than the buffer pool. It could only cause trouble on crash
      recovery, and on recovery the doublewrite buffer is read to a buffer
      that is allocated outside of the buffer pool. Moreover, this check
      was only performed when the database was initialized for the first
      time.
      
      On a normal startup, buf_dblwr_init() would not enforce any
      rule on the innodb_buffer_pool_size.
      
      Furthermore, in case of an error, commit the mini-transaction in order
      to avoid an assertion failure on shutdown. Yes, this will leave the
      doublewrite buffer in a corrupted stage, but the doublewrite buffer
      should only be initialized when the data files are being initialized
      from the scratch in the first place.
      8423294a