| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
| |
m_buf_length' failed in Lex_input_stream::body_utf8_start
Nothing should be done before any keyword recognized.
|
|
|
|
| |
stopped with no-zero size)
|
|
|
|
| |
revert the patch for "out parameters in prepare"
|
|
|
|
| |
MDEV-6606 Server crashes in String::append on selecting sql_mode inside anonymous block
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
originally based on the patch by Antony T Curtis
|