1. 30 Oct, 2017 1 commit
  2. 29 Oct, 2017 1 commit
  3. 28 Oct, 2017 2 commits
  4. 04 Sep, 2017 1 commit
  5. 02 Sep, 2017 1 commit
  6. 01 Sep, 2017 2 commits
  7. 29 Aug, 2017 4 commits
  8. 25 Aug, 2017 1 commit
    • Galina Shalygina's avatar
      Optimization that transforms IN-predicate in IN-subselect made. · 3310076d
      Galina Shalygina authored
      Trasformation goes that way:
      a in (1,2) ->
      a in (select * from (values ((1),(2))) as new_tvc)
      
      Special variable that controlls optimization added.
      Now optimization works only in several cases.
      New tests added.
      
      Old tests corrected. Now with TVC explain can be used. TVC also can be used in recursive CTEs.
      3310076d
  9. 26 Jul, 2017 1 commit
  10. 30 Jun, 2017 1 commit
  11. 29 Jun, 2017 1 commit
  12. 13 Jun, 2017 5 commits
  13. 06 Jun, 2017 1 commit
  14. 02 Jun, 2017 2 commits
    • Marko Mäkelä's avatar
      Remove deprecated InnoDB file format parameters · 0c92794d
      Marko Mäkelä authored
      The following options will be removed:
      
      innodb_file_format
      innodb_file_format_check
      innodb_file_format_max
      innodb_large_prefix
      
      They have been deprecated in MySQL 5.7.7 (and MariaDB 10.2.2) in WL#7703.
      
      The file_format column in two INFORMATION_SCHEMA tables will be removed:
      
      innodb_sys_tablespaces
      innodb_sys_tables
      
      Code to update the file format tag at the end of page 0:5
      (TRX_SYS_PAGE in the InnoDB system tablespace) will be removed.
      When initializing a new database, the bytes will remain 0.
      
      All references to the Barracuda file format will be removed.
      Some references to the Antelope file format (meaning
      ROW_FORMAT=REDUNDANT or ROW_FORMAT=COMPACT) will remain.
      
      This basically ports WL#7704 from MySQL 8.0.0 to MariaDB 10.3.1:
      
      commit 4a69dc2a95995501ed92d59a1de74414a38540c6
      Author: Marko Mäkelä <marko.makela@oracle.com>
      Date:   Wed Mar 11 22:19:49 2015 +0200
      0c92794d
    • Marko Mäkelä's avatar
      Merge branch 'bb-10.2-ext' into 10.3 · 3d615e4b
      Marko Mäkelä authored
      This excludes MDEV-12472 (InnoDB should accept XtraDB parameters,
      warning that they are ignored). In other words, MariaDB 10.3 will not
      recognize any XtraDB-specific parameters.
      3d615e4b
  15. 30 May, 2017 2 commits
    • Monty's avatar
      MDEV-12930 Testing SEQUENCE object · 95989166
      Monty authored
      Fixed the following things from the above MDEV:
      - Ensure the user has INSERT privilege when generating new sequence values
        with NEXT VALUE FOR or SETVAL()
      - Fixed bug in InnoDB when generating several sequence values in one statement
      - Ensure that read_set is up to date before calling ha_sequence::ha_write_row()
        - This is only a potential bug with storage engines that trusts the column maps completely
      95989166
    • Monty's avatar
      Updated test case · d5d8fa6e
      Monty authored
      d5d8fa6e
  16. 29 May, 2017 4 commits
  17. 27 May, 2017 7 commits
  18. 26 May, 2017 2 commits
  19. 25 May, 2017 1 commit