- 12 Dec, 2016 15 commits
-
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-
Sergei Golubchik authored
also, return different values for different errors in my_addr_resolve()
-
Sergei Golubchik authored
-
Marko Mäkelä authored
MDEV-11075: Power - runtime detection of optimized instructions
-
Daniel Black authored
Signed-off-by: Daniel Black <daniel.black@au.ibm.com>
-
- 10 Dec, 2016 1 commit
-
-
Alexey Botchkov authored
The weird logic of json_contains was implemented.
-
- 09 Dec, 2016 10 commits
-
-
Marko Mäkelä authored
WL#7682 in MySQL 5.7 introduced the possibility to create light-weight temporary tables in InnoDB. These are called 'intrinsic temporary tables' in InnoDB, and in MySQL 5.7, they can be created by the optimizer for sorting or buffering data in query processing. In MariaDB 10.2, the optimizer temporary tables cannot be created in InnoDB, so we should remove the dead code and related data structures.
-
Marko Mäkelä authored
This was originally part of MDEV-11487.
-
Marko Mäkelä authored
Adjust some results and error codes.
-
Alexey Botchkov authored
Support for '**' in json path expressions added.
-
Marko Mäkelä authored
-
Marko Mäkelä authored
-
Marko Mäkelä authored
Merge branch '10.2-MDEV-9872-crc32-generic-message' of https://github.com/grooverdan/mariadb-server into grooverdan-10.2-MDEV-9872-crc32-generic-message
-
Jan Lindström authored
MDEV-11075: changing to algorithm innodb from crc32
-
Daniel Black authored
-
Daniel Black authored
With innodb compressed pages formerly as crc32 changing to the innodb checksum, optimize for speed by only calcuating the big endian variant of crc32 after checking that the little endian doesn't validate the page. Signed-off-by: Daniel Black <daniel.black@au.ibm.com>
-
- 08 Dec, 2016 3 commits
-
-
Marko Mäkelä authored
MDEV-11422 rpl.rpl_parallel_optimistic_nobinlog failed in buildbot with "InnoDB: Killing connection failed Deadlock" innobase_kill_query(): Remove the bogus warning message (for the valid outcome err==DB_DEADLOCK) that was added in commit fec844ac Author: Jan Lindström <jan.lindstrom@mariadb.com> Date: Tue Sep 6 09:43:16 2016 +0300 Merge InnoDB 5.7 from mysql-5.7.14. Also, remove some redundant variables and add a debug assertion for enforcing the proper outcome of lock_trx_handle_wait().
-
Vladislav Vaintroub authored
buffer pool size The reason for the exception is previous overflow in multiplication of two 32bit integers (product was 0 rather than expected 8GB, due to truncation)
-
Alexey Botchkov authored
When the json was just a scalar value, json_extract tried to parse after the value ended.
-
- 07 Dec, 2016 2 commits
-
-
Jan Lindström authored
-
-
- 05 Dec, 2016 9 commits
-
-
Alexey Botchkov authored
Test case added.
-
Alexey Botchkov authored
Test case added.
-
Alexey Botchkov authored
Item_func_json_merge fixed.
-
Alexey Botchkov authored
'JSON' made possible identifier.
-
Alexey Botchkov authored
Now return the argument's value when error.
-
Jan Lindström authored
Merge pull request #268 from grooverdan/10.2-MDEV-10651-enable-test-sys_vars.innodb_buffer_pool_dump_pct_basic MDEV-10651: enable test sys_vars.innodb_buffer_pool_dump_pct_basic
-
Marko Mäkelä authored
MDEV-11451: isinf || isnan -> !isfinite
-
Marko Mäkelä authored
crashes server This bug is the result of merging the Oracle MySQL follow-up fix BUG#22963169 MYSQL CRASHES ON CREATE FULLTEXT INDEX without merging the base bug fix: Bug#79475 Insert a token of 84 4-bytes chars into fts index causes server crash. Unlike the above mentioned fixes in MySQL, our fix will not change the storage format of fulltext indexes in InnoDB or XtraDB when a character encoding with mbmaxlen=2 or mbmaxlen=3 and the length of a word is between 128 and 84*mbmaxlen bytes. The Oracle fix would allocate 2 length bytes for these cases. Compatibility with other MySQL and MariaDB releases is ensured by persisting the used maximum length in the SYS_COLUMNS table in the InnoDB data dictionary. This fix also removes some unnecessary strcmp() calls when checking for the legacy default collation my_charset_latin1 (my_charset_latin1.name=="latin1_swedish_ci"). fts_create_one_index_table(): Store the actual length in bytes. This metadata will be written to the SYS_COLUMNS table. fts_zip_initialize(): Initialize only the first byte of the buffer. Actually the code should not even care about this first byte, because the length is set as 0. FTX_MAX_WORD_LEN: Define as HA_FT_MAXCHARLEN * 4 aka 336 bytes, not as 254 bytes. row_merge_create_fts_sort_index(): Set the actual maximum length of the column in bytes, similar to fts_create_one_index_table(). row_merge_fts_doc_tokenize(): Remove the redundant parameter word_dtype. Use the actual maximum length of the column. Calculate the extra_size in the same way as row_merge_buf_encode() does.
-
Alexey Botchkov authored
Item_func_json_extract::val_str fixed.
-