mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 23:25:34 +02:00
tokudb buildbot fixes
BUILD/compile-solaris-amd64:
* call cmake directly, don't go through three layers of wrappers
(but preserve the compile-solaris-amd64 file - buildbot uses it for 5.1 and 5.5)
* disable jemalloc, it doesn't compile on our sol10-64 box
storage/federated/ha_federated.cc:
clang warning
storage/tokudb/CMakeLists.txt:
* require cmake-2.8.9, because 2.8.8 doesn't add -fPIC for POSITION_INDEPENDENT_CODE
property that ft-index CMakeLists.txt files are using
This commit is contained in:
parent
6ee207a515
commit
adf637dff6
3 changed files with 9 additions and 33 deletions
|
|
@ -828,7 +828,7 @@ static int parse_url(MEM_ROOT *mem_root, FEDERATED_SHARE *share, TABLE *table,
|
|||
user:@hostname:port/db/table
|
||||
Then password is a null string, so set to NULL
|
||||
*/
|
||||
if ((share->password[0] == '\0'))
|
||||
if (share->password[0] == '\0')
|
||||
share->password= NULL;
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue