summaryrefslogtreecommitdiff
path: root/libmariadb
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade accidentally downgraded libmariadbMarko Mäkelä2019-11-211-0/+0
| | | | | | In commit daabc5cc68440fe7871b7c570e114a6a0d119bfb the libmariadb component was accidentally downgraded. Restore the latest libmariadb release, v3.1.5.
* MDEV-20729 Fix REFERENCES constraint in column definitionAleksey Midenkov2019-11-201-0/+0
| | | | | | | | | | | | | | | | | | | Add support of referential constraints directly in column defininions: create table t1 (id1 int primary key); create table t2 (id2 int references t1(id1)); Referenced field name can be omitted if equal to foreign field name: create table t1 (id int primary key); create table t2 (id int references t1); Until 10.5 this syntax was understood by the parser but was silently ignored. In case of generated columns this syntax is disabled at parser level by ER_PARSE_ERROR. Note that separate FOREIGN KEY clause for generated columns is disabled at storage engine level.
* new CC 3.1 due to typo in itOleksandr Byelkin2019-10-311-0/+0
|
* new CC 3.1Oleksandr Byelkin2019-10-301-0/+0
|
* Fix problem with warnings of new compilers.Oleksandr Byelkin2019-10-041-0/+0
|
* C/CSergei Golubchik2019-09-031-0/+0
|
* C/CSergei Golubchik2019-09-011-0/+0
|
* MDEV-20377: Introduce cmake -DWITH_MSAN:BOOL=ONMarko Mäkelä2019-08-191-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | MemorySanitizer is a compile-time instrumentation layer in clang and GCC. Together with AddressSanitizer mostly makes the run-time instrumentation of Valgrind redundant. It is a little more tricky to set up, because running with uninstrumented libraries will lead into false positives. You will need an instrumented libc++, and you should use -stdlib=libc++ instead of the default libstdc++. To build the instrumented library, you can refer to https://github.com/google/sanitizers/wiki/MemorySanitizerLibcxxHowTo or you can adapt these steps that worked for me, for clang-8 version 8.0.1: cd /mariadb sudo apt source libc++-8-dev cd llvm-toolchain-8-8.0.1 mkdir libc++msan; cd libc++msan cmake ../libcxx -DCMAKE_BUILD_TYPE=Release -DLLVM_USE_SANITIZER=Memory \ -DCMAKE_C_COMPILER=clang-8 -DCMAKE_CXX_COMPILER=clang++-8 Then, in your MariaDB build directory, you have to compile with libc++ and bundled libraries, such as WITH_SSL=bundled, WITH_ZLIB=bundled. For uninstrumented system libraries, you will get false positives for uninitialized values. Like this: cmake -DWITH_MSAN=ON -DWITH_SSL=bundled -DWITH_ZLIB=bundled \ -DCMAKE_CXX_FLAGS='-stdlib=libc++' .. Note: you should also add -O2 to the compiler options, or you may get crashes due to stack overflow. Finally, to run tests, you must replace libc++ with the instrumented one: LD_LIBRARY_PATH=/mariadb/llvm-toolchain-8-8.0.1/libc++msan/lib \ MSAN_OPTIONS=abort_on_error=1 \ ./mtr --big-test --parallel=auto --force --retry=0 Failure to do so will report numerous false positives related to operations on std::string and the like. This is work in progress. Some issues will still have to be fixed for WITH_MSAN to be usable. See MDEV-20377 for details.
* revert accidental libmariadb changeEugene Kosov2019-08-081-0/+0
|
* fix build (-Werror + -Wignored-qualifiers)Eugene Kosov2019-08-061-0/+0
|
* Merge branch '10.1' into 10.2Oleksandr Byelkin2019-07-261-0/+0
|\
* | switch to CC 3.1Oleksandr Byelkin2019-07-201-0/+0
| |
* | update Connector COleksandr Byelkin2019-05-041-0/+0
| |
* | MDEV-18131 : Update C/C to fix IP address SAN verification in 10.2+Vladislav Vaintroub2019-04-291-0/+0
| |
* | C/C againSergei Golubchik2019-02-081-0/+0
| | | | | | | | fixes memory leaks in restart_mysqld.inc tests
* | C/C againSergei Golubchik2019-02-071-0/+0
| |
* | update C/C to get latest PS fixesSergei Golubchik2019-02-071-0/+0
| |
* | C/C 3.0.9Sergei Golubchik2019-02-061-0/+0
| |
* | update C/C to v3.0.8Sergei Golubchik2018-12-201-0/+0
| |
* | C/C 3.0.7Sergei Golubchik2018-11-121-0/+0
| |
* | Update libmariadbVladislav Vaintroub2018-10-031-0/+0
| |
* | update libmariadbSergei Golubchik2018-09-241-0/+0
| |
* | SLES11 OpenSSL 0.9.8 supportSergei Golubchik2018-08-091-0/+0
| |
* | update C/C up to v3.0.6 tagSergei Golubchik2018-08-091-0/+0
| | | | | | | | update the test to the new (correct) result
* | update C/CSergei Golubchik2018-06-241-0/+0
| |
* | update C/CSergei Golubchik2018-05-151-0/+0
| |
* | Update Connector/CVicențiu Ciorbaru2018-03-181-0/+0
| |
* | Update C/CVladislav Vaintroub2018-02-141-0/+0
| |
* | Update Connector/CVicențiu Ciorbaru2018-02-071-0/+0
| |
* | update C/CVladislav Vaintroub2018-01-261-0/+0
| |
* | Fix and reenable Windows compiler warning C4800 (size_t conversion).Vladislav Vaintroub2018-01-261-0/+0
| |
* | Fix compilation warnings for libmariadbMarko Mäkelä2018-01-111-0/+0
| |
* | Update CONCVladislav Vaintroub2018-01-101-0/+0
| |
* | update libmariadbVladislav Vaintroub2018-01-041-0/+0
| |
* | Update Connector/CVicențiu Ciorbaru2017-12-281-0/+0
| |
* | Update C/C to fix unit tests with clangVladislav Vaintroub2017-11-241-0/+0
| |
* | MDEV-14483 Export _mysl_client_plugin_declaration from auth_gssapi_client.soVladislav Vaintroub2017-11-241-0/+0
| | | | | | | | Update C/C to include fix for this bug.
* | update C/CVladislav Vaintroub2017-11-131-0/+0
| |
* | update C/CSergei Golubchik2017-10-261-0/+0
| |
* | Update C/CVladislav Vaintroub2017-10-031-0/+0
| | | | | | | | Fixes some warnings.
* | Update libmariadb submoduleVicențiu Ciorbaru2017-09-201-0/+0
| |
* | MDEV-13370 Ambiguous behaviour regarding installation of header filesSergei Golubchik2017-08-141-0/+0
| | | | | | | | | | install all server includes under /usr/include/mysql/server/ and C/C includes under /usr/include/mysql/
* | Merge branch '10.1' into 10.2Sergei Golubchik2017-07-051-0/+0
|\ \ | |/
| * Remove accidentally added directory.Jan Lindström2016-10-291-0/+0
| |
| * A few fixes for VATS in 10.1sensssz2016-10-251-0/+0
|
* update libmariadbSergei Golubchik2017-07-051-0/+0
|
* new connector version which correspond BULK commandOleksandr Byelkin2017-06-141-0/+0
|
* update to the latest C/C to fix failures on WindowsSergei Golubchik2017-05-101-0/+0
|
* Update C/C (fix build on Windows)Vladislav Vaintroub2017-05-101-0/+0
|
* update C/CSergei Golubchik2017-05-091-0/+0
|