- 05 May, 2015 11 commits
-
-
Vicențiu Ciorbaru authored
Gave priority to password field when using a native authentication plugin. Also, prevented a user from setting an invalid auth_string, when using native authentication.
-
Sergei Golubchik authored
-
Sergei Golubchik authored
specify RECOMPILE_FOR_EMBEDDED and disable tests in suite.pm
-
Sergei Golubchik authored
including the big commit commit 305130361bf72726de220f3d2b2787395e10be61 Author: Marc Alff <marc.alff@oracle.com> Date: Tue Feb 10 11:31:32 2015 +0100 WL#8354 BACKPORT DIGEST IMPROVEMENTS TO MYSQL 5.6 (with the following commits) and related changes in sql/
-
Alexander Barkov authored
(See MDEV-7440 Build fails in libgroonga on Solaris)
-
Alexander Barkov authored
MDEV-8082 ON UPDATE is not preserved by CREATE TABLE .. SELECT
-
Sergei Golubchik authored
and remove duplicates
-
Sergei Golubchik authored
-
Kentoku SHIBA authored
-
Sergei Golubchik authored
-
Kentoku SHIBA authored
-
- 04 May, 2015 18 commits
-
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-
Kentoku SHIBA 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
-
Kentoku SHIBA authored
-
Kentoku SHIBA authored
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-LONGLONG_MIN is the undefined behavior in C. longlong2decimal() used to do this: int longlong2decimal(longlong from, decimal_t *to) { if ((to->sign= from < 0)) return ull2dec(-from, to); return ull2dec(from, to); and later in ull2dec() (DIG_BASE is 1000000000): static int ull2dec(ulonglong from, decimal_t *to) { for (intg1=1; from >= DIG_BASE; intg1++, from/=DIG_BASE) {} this breaks in gcc-5 at -O3. Here ull2dec is inlined into longlong2decimal. And gcc-5 believes that 'from' in the inlined ull2dec is always a positive integer (indeed, if it was negative, then -from was used instead). So gcc-5 uses *signed* comparison with DIG_BASE. Fix: make a special case for LONGLONG_MIN, don't negate it
-
- 03 May, 2015 11 commits
-
-
Sergei Golubchik authored
MDEV-8045 Assertion `0' fails in Protocol::end_statement on CREATE VIEW after another connection aborted 0 is a valid value for a file descriptor
-
Sergei Golubchik authored
On EOF vio_read returns 0, it's not an error so the errno is not reset. If the previous error was EINTR the client will loop forever. See also man recv.
-
Sergei Golubchik authored
Merge branch 'openquery:mdev-7781-allow-install-uninstall-plugins-during-bootstrap' into 10.0 Undo MySQL fix for bug#46261
-
Sergei Golubchik authored
-
Sergei Golubchik authored
Merge branch 'openquery:mdev-7390-alter-online-table-xx-possible-10.0' into 10.0
-
Sergei Golubchik authored
-
Sergei Golubchik authored
Merge branch 'pastcomputer:10.0-oqgraph-6282-6345-6784-test' into 10.0
-
Sergei Golubchik authored
And don't ignore SSL_CTX_set_tmp_dh() failures
-
Sergei Golubchik authored
change openssl_1 test not to use non-FIPS ciphers
-
Sergei Golubchik authored
MDEV-7695 MariaDB - ssl - fips: can not connect with --ssl-cipher=DHE-RSA-AES256-SHA - handshake failure Change 512bit DH key to 1024bit to meet FIPS requirements
-
Sergei Golubchik authored
-