summaryrefslogtreecommitdiff
path: root/libmariadb
Commit message (Collapse)AuthorAgeFilesLines
* MDEV-19129: Xcode compatibility update: update libmariadb submodulebb-10.5-MDEV-19129Sergei Krivonos2021-10-191-0/+0
|
* Update libmariadbMarko Mäkelä2021-10-061-0/+0
|
* MDEV-26761: main.mysql_client_test fails with MemorySanitizerMarko Mäkelä2021-10-051-0/+0
| | | | Updated libmariadb and enable the test.
* Update libmariadbMarko Mäkelä2021-09-241-0/+0
|
* Update libmariadbMarko Mäkelä2021-08-301-0/+0
|
* latest C/CSergei Golubchik2021-07-271-0/+0
|
* Update libmariadbMarko Mäkelä2021-07-221-0/+0
|
* fix libmariadb compilation, on GCC.Vladislav Vaintroub2021-07-201-0/+0
|
* Update libmariadbVladislav Vaintroub2021-07-201-0/+0
|
* update libmariadbVladislav Vaintroub2021-06-141-0/+0
|
* new CCOleksandr Byelkin2021-05-031-0/+0
|
* Revert "update CC"Nikita Malyavin2021-04-301-0/+0
| | | | This reverts commit 8880dff2d90ea8a8279cbcb466f90e0b2fdfcff5.
* update CCNikita Malyavin2021-04-291-0/+0
|
* MDEV-25232 update libmariadbVladislav Vaintroub2021-04-281-0/+0
|
* update C/CSergei Golubchik2021-04-151-0/+0
|
* update libmariadbSergei Golubchik2021-03-191-0/+0
| | | | This partially reverts 66106130a6c
* switch off storage/innobase/.clang-format: InnoDB uses a common formatting ↵Eugene Kosov2021-03-171-0/+0
| | | | style for all new code
* update libmariadbVladislav Vaintroub2021-03-121-0/+0
|
* last CC 3.1Oleksandr Byelkin2021-01-281-0/+0
|
* MDEV-22387: Do not violate __attribute__((nonnull))Marko Mäkelä2020-11-021-0/+0
| | | | | | | | | | | This follows up commit commit 94a520ddbe39ae97de1135d98699cf2674e6b77e and commit 7c5519c12d46ead947d341cbdcbb6fbbe4d4fe1b. After these changes, the default test suites on a cmake -DWITH_UBSAN=ON build no longer fail due to passing null pointers as parameters that are declared to never be null, but plenty of other runtime errors remain.
* Update Connector/CMarko Mäkelä2020-10-301-0/+0
|
* new CCOleksandr Byelkin2020-10-291-0/+0
|
* Do not leak memory in the skipped MDEV-23768 unit testMarko Mäkelä2020-10-241-0/+0
|
* MDEV-23564: CMAKE failing due to deprecated Apple GSS methodDmitry Shulga2020-10-231-0/+0
| | | | | | | | | | | Some GSS-API functions like gss_import_name(), gss_release_buffer() used in plugin/auth_gssapi and libmariadb/plugins/auth are marked as deprecated in MacOS starting from version 10.14+. It results in extra warnings output on server building. To eliminate extra warnings the flag '-Wno-deprecated-declarations' has been added to compiler invocation string for those source files that invoke deprecated GSS-API functions.
* C/C v3.1.9Oleksandr Byelkin2020-08-021-0/+0
|
* update C/CSergei Golubchik2020-05-271-0/+0
|
* Fix GCC -Wstringop-truncationMarko Mäkelä2020-05-141-0/+0
|
* update C/CSergei Golubchik2020-05-081-0/+0
|
* New Connector COleksandr Byelkin2020-05-041-0/+0
|
* new (fixed) version of CC.Oleksandr Byelkin2020-03-181-0/+0
|
* Update libmariadbMarko Mäkelä2020-03-131-0/+0
| | | | This fixes GCC 10.0.1 -Wstringop-truncation and some typos.
* new C/C and --ssl-verify-server-cert testsSergei Golubchik2020-01-231-0/+0
| | | | | tests for --ssl-verify-server-cert with system CA and with incorrect hostname
* new version CC 3.1Oleksandr Byelkin2020-01-201-0/+0
|
* Merge branch '10.1' into 10.2Oleksandr Byelkin2020-01-201-0/+0
|\
* | CONC-447 ERROR 2026 (HY000): SSL connection error: Certificate signature ↵Vladislav Vaintroub2019-12-081-0/+0
| | | | | | | | | | | | | | check failed Enable CRL checking on Windows. Enable certificate verification testing in client testing.
* | vew CC v 3.1Oleksandr Byelkin2019-12-031-0/+0
| |
* | Update libmariadbVladislav Vaintroub2019-11-281-0/+0
| |
* | 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