- 01 Dec, 2014 6 commits
-
-
Sergei Petrunia authored
- Do set nest_level and nest_level_base for fake_select_lex objects.
-
Sergei Golubchik authored
local function variable was overwriting the global one. also remove unused variable expansion.
-
Sergei Golubchik authored
control scripts (mysqld_safe for example) want to know whether a recovery was successful or not. total silence is too suspicious to be trusted.
-
Sergei Golubchik authored
-
Sergei Golubchik authored
MDEV-7188 main.signal_demo3 and sys_vars.max_sp_recursion_depth_func fail in biuldbot on labrador with Thread stack overrun reduce stack requirememnts for CALL by just a little bit
-
Nirbhay Choubey authored
Added Rows_affected to slow query log & mysql.slow_log table.
-
- 30 Nov, 2014 4 commits
-
-
Sergei Golubchik authored
(just like in the test below)
-
Sergei Golubchik authored
-
Nirbhay Choubey authored
Updated MDL_context's lock methods to accept double precision lock_wait_timeout.
-
Nirbhay Choubey authored
Fixed the condition to make sure mysqld process terminates when started with wsrep-recover.
-
- 29 Nov, 2014 1 commit
-
-
Sergei Golubchik authored
-
- 27 Nov, 2014 2 commits
-
-
Alexey Botchkov authored
Missing GIS functions added: IsRing() PointOnSurface PointOnSurface Relate Distance Intersection ConvexHull Other old OpenGis standard inconsistencies fixed.
-
Jan Lindström authored
MDEV-7228: innodb.innodb-page_compression_tables, innodb.innodb-page_compression_zip, innodb.innodb_stats_create_on_corrupted fail with embedded server Problem is that tests restart the server and "shutdown_server" looks for pid file # which is not there with embedded mode. Fix tests so that they are not run with embedded mode.
-
- 26 Nov, 2014 1 commit
-
-
Alexander Barkov authored
-
- 25 Nov, 2014 1 commit
-
-
Jan Lindström authored
Problem was that test tried to calculate number of pages on buffer pool and operations done to them. This is not realible way on buildbot.
-
- 24 Nov, 2014 6 commits
-
-
Jan Lindström authored
Problem is that there is additional error message from function that is not really needed now.
-
Jan Lindström authored
Problem is that test could open Microsoft C++ Client Debugger windows with abort exceptin. Lets not try to test this on windows.
-
Jan Lindström authored
innodb.innodb_stats_drop_locked fail and innodb.innodb_stats_fetch_nonexistent fails in buildbot on Windows Analysis: Problem is that innodb_stats_create_on_corrupted test renames mysql.innodb.index_stats and all the rest are dependend on this table. Fix: After rename back to original, restart mysqld to make sure that table is correct.
-
Jan Lindström authored
Analysis: Test case uses Linux specific error codes. Fix: Can't run test case with Windows currently because requires to inject error to system.
-
Alexey Botchkov authored
test results updated with the new GIS-related IS tables.
-
Jan Lindström authored
Analysis: If innodb_use_trim is not enabled or system does not support fallocate to make persistent trim, we should always write full page not only partial pages.
-
- 23 Nov, 2014 1 commit
-
-
Nirbhay Choubey authored
Fix for embedded build failure. Also added wsrep_info plugin library to server debian package.
-
- 22 Nov, 2014 1 commit
-
-
Nirbhay Choubey authored
wsrep_info INFORMATION_SCHEMA plugin to provide WSREP_STATUS and WSREP_MEMBERSHIP tables.
-
- 20 Nov, 2014 3 commits
-
-
Alexander Barkov authored
-
Alexander Barkov authored
-
Alexander Barkov authored
MDEV-7146 NULLIF returns unexpected result with a YEAR field
-
- 19 Nov, 2014 2 commits
-
-
Alexander Barkov authored
-
Jan Lindström authored
Problem is that page compressed tables currently require atomic_blobs and that feature is not availabe currently for row_format=redundant. Fix: Disallow page compressed create option if table row_format=redundant.
-
- 17 Nov, 2014 1 commit
-
-
Jan Lindström authored
Merge Facebook commit https://github.com/facebook/mysql-5.6/commit/cd063ab930f05efdba39d504543998512d1bd71f authored by Peng Tian from https://github.com/facebook/mysql-5.6 Introduced a new configuration variable innodb_fatal_semaphore_wait_threshold, it makes the fatal semaphore timeout configurable. Modified original commit so that no MariaDB server files are changed, instead introduced a new InnoDB/XtraDB configuration variable. Its default/min/max vlaues are 600/1/2^32-1 in seconds (it was hardcoded as 600, now its default value is 600, so the default behavior of this diff should be no change).
-
- 12 Nov, 2014 1 commit
-
-
Jan Lindström authored
Analysis: Status variables were missing from innodb_status_variables array. Fix: Add missing status variables to the array.
-
- 11 Nov, 2014 1 commit
-
-
Oleksandr Byelkin authored
-
- 06 Nov, 2014 1 commit
-
-
Jan Lindström authored
Merged Facebook commit 617aef9f911d825e9053f3d611d0389e02031225 authored by Inaam Rana to InnoDB storage engine (not XtraDB) from https://github.com/facebook/mysql-5.6 WL#7047 - Optimize buffer pool list scans and related batch processing Reduce excessive scanning of pages when doing flush list batches. The fix is to introduce the concept of "Hazard Pointer", this reduces the time complexity of the scan from O(n*n) to O. The concept of hazard pointer is reversed in this work. Academically hazard pointer is a pointer that the thread working on it will declar such and as long as that thread is not done no other thread is allowe do anything with it. In this WL we declare the pointer as a hazard pointer and then if any thread attempts to work on it, it is allowed to do so but it has to a the hazard pointer to the next valid value. We use hazard pointer sol reverse traversal of lists within a buffer pool instance. Add an event to control the background flush thread. The background f thread wait has been converted to an os event timed wait so that it c signalled by threads that want to kick start a background flush when buffer pool is running low on free/dirty pages.
-
- 05 Nov, 2014 1 commit
-
-
Jan Lindström authored
-
- 04 Nov, 2014 3 commits
-
-
Jan Lindström authored
-
Alexander Barkov authored
(forgot to do "git add" for two files in the previous commit for MDEV-5528)
-
Jan Lindström authored
we do not return simulated out of file space on read operation, that would cause crash.
-
- 03 Nov, 2014 3 commits
-
-
Alexander Barkov authored
-
Alexander Barkov authored
Merging from 10.0 (pre-requisite for MDEV-5528)
-
Jan Lindström authored
Merge Facebook commit 154c579b828a60722a7d9477fc61868c07453d08 and e8f0052f9b112dc786bf9b957ed5b16a5749f7fd authored by Steaphan Greene from https://github.com/facebook/mysql-5.6 Optimize prefix index queries to skip cluster index lookup when possible. Currently InnoDB will always fetch the clustered index (primary key index) for all prefix columns in an index, even when the value of a particular record is smaller than the prefix length. This change optimizes that case to use the record from the secondary index and avoid the extra lookup. Also adds two status vars that track how effective this is: innodb_secondary_index_triggered_cluster_reads: Times secondary index lookup triggered cluster lookup. innodb_secondary_index_triggered_cluster_reads_avoided: Times prefix optimization avoided triggering cluster lookup.
-
- 30 Oct, 2014 1 commit
-
-
Nirbhay Choubey authored
Use fn_ext2() to get the file extension from last occurrence of FN_EXTCHAR ('.') instead.
-