mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Bug#15690 mysqlimport tries to set options the server doesn't understand
- "set @@character_set_database" should be ignored by servers prior to 4.1.1
This commit is contained in:
parent
cb23cd759e
commit
dbb5a408ea
1 changed files with 1 additions and 1 deletions
|
@ -521,7 +521,7 @@ int main(int argc, char **argv)
|
|||
return(1); /* purecov: deadcode */
|
||||
}
|
||||
|
||||
if (mysql_query(sock, "set @@character_set_database=binary;"))
|
||||
if (mysql_query(sock, "/*!40101 set @@character_set_database=binary */;"))
|
||||
{
|
||||
db_error(sock); /* We shall countinue here, if --force was given */
|
||||
return(1);
|
||||
|
|
Loading…
Reference in a new issue