summaryrefslogtreecommitdiff
path: root/mysql-test/suite/maria/max_length.test
Commit message (Collapse)AuthorAgeFilesLines
* MDEV-20279 Increase Aria index length limitMonty2019-08-231-2/+4
| | | | | | | | | | | | | | Limit increased from 1000 to 2000. Avoiding stack overflow by only storing keys and pages on the stack in recursive functions if there is plenty of space on it. Other things: - Use less stack space for b-tree operations as we now only allocate as much space as needed instead of always allocating HA_MAX_KEY_LENGTH. - Replaced most usage of my_safe_alloca() in Aria with the stack_alloc interface. - Moved my_setstacksize() to mysys/my_pthread.c
* Added Max_index_length and Temporary to SHOW TABLE STATUSMonty2018-02-121-0/+5
| | | | | | | | | - Max_index_length is supported by MyISAM and Aria tables. - Temporary is a placeholder to signal that a table is a temporary table. For the moment this is always "N", except "Y" for generated information_schema tables and NULL for views. Full temporary table support will be done in another task. (No reason to have to update a lot of result files twice in a row)
* Fixed MDEV-14326 engine ARIA with row_format=FIXED is brokenMonty2018-01-181-0/+72
| | | | | | | | | | The problem was that max_size was acciently set to 1 in some cases. Other things: - Adjust max_rows if min_rows > max_rows. - Removed not used variable varchar_length - Adjusted max_pack_length (safety fix)
* Created suites for heap, archive and csv.Michael Widenius2012-04-041-0/+52
Moved test from main suite to the new suites. Move tests from maria/t and maria/r to maria mysql-test/mysql-test-run.pl: Added support for the new suites