summaryrefslogtreecommitdiff
path: root/mysql-test/r/compound.result
Commit message (Collapse)AuthorAgeFilesLines
* Create 'main' test directory and move 't' and 'r' thereMichael Widenius2018-03-291-172/+0
|
* (Part#2) MDEV-13049 Querying INFORMATION_SCHEMA becomes slow in MariaDB 10.1Alexander Barkov2017-10-311-1/+2
| | | | | | | This is a 10.3 specific part of MDEV-13049. It disables automatic sorting for "SELECT .. FROM INFORMATION_SCHEMA.{SCHEMATA|TABLES}" and adjusts the affected tests accordingly.
* MDEV-7635: Update tests to adapt to the new default sql_modeNirbhay Choubey2017-02-101-1/+1
|
* MDEV-8615: Assertion `m_cpp_buf <= begin_ptr && begin_ptr <= m_cpp_buf + ↵Oleksandr Byelkin2016-01-271-0/+7
| | | | | | m_buf_length' failed in Lex_input_stream::body_utf8_start Nothing should be done before any keyword recognized.
* MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be ↵Oleksandr Byelkin2015-09-041-1/+1
| | | | stopped with no-zero size)
* MDEV-6980 OUT parameters in PREPARESergei Golubchik2014-12-041-10/+0
| | | | revert the patch for "out parameters in prepare"
* MDEV-6609 SQL inside an anonymous block is executed with wrong SQL_MODESergei Golubchik2014-10-101-2/+11
| | | | MDEV-6606 Server crashes in String::append on selecting sql_mode inside anonymous block
* MDEV-6603 SBR failure upon executing a prepared statement with input ↵Sergei Golubchik2014-10-101-0/+44
| | | | | | | | | | | | | | placeholder under anonymous block Normally, Prepared_statement object rewrites the query on execution to replace ?-placeholders with values. The rewritten query may be written to logs (including binlog) or stored in the query cache. But for compound statements, the whole block is prepared and executed, while contained statements are logged individually. So it doesn't make sense to rewrite the original statement block. Instead, we need to rewrite every contained statement. SP is already doing it to replace SP variables with values. Let it rewrite PS parameters too in the same loop.
* MDEV-5317 Compound statement / anonymous blocksSergei Golubchik2014-10-101-0/+121
originally based on the patch by Antony T Curtis