- 21 Jul, 2017 3 commits
-
-
Alexander Barkov authored
-
Sergei Petrunia authored
Add a testcase
-
Sergei Petrunia authored
Do not run the window function computation step when the select produces no rows (zero_result_cause!=NULL). This may cause reads from uninitialized memory. We still need to run the window function computation step when the output includes just one row (for example SELECT MAX(col), RANK() OVER (...) FROM t1 WHERE 1=0). This fix also resolves an issue with queries with window functions producing an output row where should be none, like in SELECT ROW_NUMBER() FROM t1 WHERE 1=0. Updated a few test results in the existing tests to reflect this.
-
- 19 Jul, 2017 1 commit
-
-
Alexander Barkov authored
-
- 18 Jul, 2017 2 commits
-
-
Elena Stepanova authored
-
Elena Stepanova authored
-
- 17 Jul, 2017 2 commits
-
-
Alexander Kuleshov authored
during build on 10.2 following files are generated: * scripts/galera_new_cluster * scripts/galera_recovery * support-files/mariadb.service * support-files/mariadb.pp and they are untracked for git. Let's add them to .gitignore
-
Vladislav Vaintroub authored
Fixed null pointer dereference in parsing "show full processlist" output with atoi(). Some Innodb background thread has NULL in 'Time' column, thus backup would crash with when atoi is applied to null pointer.
-
- 15 Jul, 2017 1 commit
-
-
Sergei Golubchik authored
this failed json.test on fulltest2 builder
-
- 13 Jul, 2017 4 commits
-
-
Sergei Golubchik authored
because they compile with -Werror=format-security
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-
- 12 Jul, 2017 6 commits
-
-
Alexander Barkov authored
-
Alexander Barkov authored
-
Vicențiu Ciorbaru authored
.files extension is not used by debian packaging, .install is.
-
Varun Gupta authored
Whenever Filesort_tracker has r_loops=0, r_ouptut_rows would be 0, so we should add the value zero to the member "r_output_rows" explicitly
-
Daniel Bartholomew authored
-
Alexander Barkov authored
-
- 11 Jul, 2017 3 commits
-
-
Alexander Barkov authored
The warning was introduced by the patch that added the keyword_sp_verb_clause rule.
-
Alexander Barkov authored
-
Daniel Black authored
-
- 10 Jul, 2017 2 commits
-
-
Alexander Barkov authored
Adding keyword_sp_verb_clause into sql_yacc.yy and sql_yacc_ora.yy
-
Alexander Barkov authored
This is a partial patch for MDEV-12518 unifying: - Data types: row_type_body vs field_type_row Fixing sql_yacc_ora.yy: removing field_type_row adding row_type_body instead
-
- 09 Jul, 2017 6 commits
-
-
Elena Stepanova authored
Adjust results for storage_engine tests
-
Elena Stepanova authored
-
Elena Stepanova authored
-
Elena Stepanova authored
Adjust results for tests in non-default suites
-
Elena Stepanova authored
Adjust search paths for mariadb_config and make further assignment conditional
-
Sergei Golubchik authored
-
- 08 Jul, 2017 1 commit
-
-
Sergei Golubchik authored
-
- 07 Jul, 2017 9 commits
-
-
Sergei Golubchik authored
this fixes vcol.upgrade failure
-
Sergei Golubchik authored
* various cleanups (mostly cosmetic) * remove useless tests (that were tesing the error condition) * optimize delete_use_source test (from 6 mins to 50 seconds, mainly by removing two huge rollbacks at the end).
-
halfspawn authored
single-table deletes only
-
Sergei Golubchik authored
-
Alexander Barkov authored
-
Marko Mäkelä authored
MDEV-13267 At startup with crash recovery: mtr_t::commit_checkpoint(lsn_t, bool): Assertion `!recv_no_log_write' failed This is a bogus debug assertion failure that should be possible starting with MariaDB 10.2.2 (which merged WL#7142 via MySQL 5.7.9). While generating page-change redo log records is strictly out of the question during tat certain parts of crash recovery, the fil_names_clear() is only emitting informational MLOG_FILE_NAME and MLOG_CHECKPOINT records to guarantee that if the server is killed during or soon after the crash recovery, subsequent crash recovery will be possible. The metadata buffer that fil_names_clear() is flushing to the redo log is being filled by recv_init_crash_recovery_spaces(), right before starting to apply redo log, by invoking fil_names_dirty() on every discovered tablespace for which there are changes to apply. When it comes to Mariabackup (xtrabackup --prepare), it is strictly out of the question to generate any redo log whatsoever, because that could break the restore of incremental backups by causing LSN deviation. So, the fil_names_dirty() call must be skipped when restoring backups. recv_recovery_from_checkpoint_start(): Do not invoke fil_names_clear() when restoring a backup. mtr_t::commit_checkpoint(): Remove the failing assertion. The only caller is fil_names_clear(), and it must be called by recv_recovery_from_checkpoint_start() for normal server startup to be crash-safe. The debug assertion in mtr_t::commit() will still catch rogue redo log writes.
-
Alexander Barkov authored
-
Sergei Golubchik authored
-
Marko Mäkelä authored
-