-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix tests on Travis CI * Enable local-infile for the ODBC client Due to security restrictions in MySQL the [LOAD DATA LOCAL](https://dev.mysql.com/doc/refman/5.7/en/load-data-local.html) statement will only work if it is enabled on both the server and the client. To check if the settings is enabled on the server you can run: SHOW GLOBAL VARIABLES LIKE 'local_infile'; To enable the setting on the client for ODBC we need to have the ODBC DSN use the ["my.cnf"](https://dev.mysql.com/doc/refman/5.7/en/option-files.html) files via the ["Option" parameter](https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-connection-parameters.html#codbc-dsn-option-flags) being set to 65536 ("USE_MYCNF"). * Allow failures on Julia nightly Note: Travis requires "env" to be defined before the allow_failures for things to work correctly.
- Loading branch information
Showing
3 changed files
with
18 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ Database = mysql | |
Server = localhost | ||
Port = 3306 | ||
Socket = | ||
Option = 65536 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters