Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
10.2(EOL), 10.3(EOL), 10.4(EOL), 10.5, 10.6, 10.7(EOL), 10.8(EOL), 10.9(EOL)
Description
The mysqldump tool included with MariaDB client generates SQL for creating a temporary table with the MyISAM engine.
client/mysqldump.c#L3283-L3292 |
/* |
Stand-in tables are always MyISAM tables as the default
|
engine might have a column-limit that's lower than the
|
number of columns in the view, and MyISAM support is
|
guaranteed to be in the server anyway.
|
*/
|
fprintf(sql_file, |
"\n) ENGINE=MyISAM */;\n" |
"SET character_set_client = @saved_cs_client;\n"); |
This is problematic when trying to import this into Azure MariaDB service, since that doesn't support MyISAM.
I have seen that MySQL's mysqldump produces temporary VIEWs with SELECT 1 AS fieldname, that might be a better option to consider as well..
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Description |
The mysqldump tool included with MariaDB client generates SQL for creating a temporary table with the MyISAM engine.
|
The mysqldump tool included with MariaDB client generates SQL for creating a temporary table with the MyISAM engine.
https://github.com/MariaDB/server/blob/3bf42eb21bb8744b12b2b5ddb4f87425e328c36f/client/mysqldump.c#L3283-L3292 |
Description |
The mysqldump tool included with MariaDB client generates SQL for creating a temporary table with the MyISAM engine.
https://github.com/MariaDB/server/blob/3bf42eb21bb8744b12b2b5ddb4f87425e328c36f/client/mysqldump.c#L3283-L3292 |
The mysqldump tool included with MariaDB client generates SQL for creating a temporary table with the MyISAM engine.
[client/mysqldump.c#L3283-L3292|https://github.com/MariaDB/server/blob/3bf42eb21bb8744b12b2b5ddb4f87425e328c36f/client/mysqldump.c#L3283-L3292] {code:c} /* Stand-in tables are always MyISAM tables as the default engine might have a column-limit that's lower than the number of columns in the view, and MyISAM support is guaranteed to be in the server anyway. */ fprintf(sql_file, "\n) ENGINE=MyISAM */;\n" "SET character_set_client = @saved_cs_client;\n"); {code} |
Description |
The mysqldump tool included with MariaDB client generates SQL for creating a temporary table with the MyISAM engine.
[client/mysqldump.c#L3283-L3292|https://github.com/MariaDB/server/blob/3bf42eb21bb8744b12b2b5ddb4f87425e328c36f/client/mysqldump.c#L3283-L3292] {code:c} /* Stand-in tables are always MyISAM tables as the default engine might have a column-limit that's lower than the number of columns in the view, and MyISAM support is guaranteed to be in the server anyway. */ fprintf(sql_file, "\n) ENGINE=MyISAM */;\n" "SET character_set_client = @saved_cs_client;\n"); {code} |
The mysqldump tool included with MariaDB client generates SQL for creating a temporary table with the MyISAM engine.
{code:c|title=client/mysqldump.c#L3283-L3292} /* Stand-in tables are always MyISAM tables as the default engine might have a column-limit that's lower than the number of columns in the view, and MyISAM support is guaranteed to be in the server anyway. */ fprintf(sql_file, "\n) ENGINE=MyISAM */;\n" "SET character_set_client = @saved_cs_client;\n"); {code} [Github|https://github.com/MariaDB/server/blob/3bf42eb21bb8744b12b2b5ddb4f87425e328c36f/client/mysqldump.c#L3283-L3292] This is problematic when trying to import this into Azure MariaDB service, since that [doesn't support MyISAM|https://docs.microsoft.com/en-us/azure/mysql/concepts-limits]. I have seen that MySQL's mysqldump produces temporary VIEWs with {{SELECT 1 AS fieldname}}, that might be a better option to consider as well.. |
Description |
The mysqldump tool included with MariaDB client generates SQL for creating a temporary table with the MyISAM engine.
{code:c|title=client/mysqldump.c#L3283-L3292} /* Stand-in tables are always MyISAM tables as the default engine might have a column-limit that's lower than the number of columns in the view, and MyISAM support is guaranteed to be in the server anyway. */ fprintf(sql_file, "\n) ENGINE=MyISAM */;\n" "SET character_set_client = @saved_cs_client;\n"); {code} [Github|https://github.com/MariaDB/server/blob/3bf42eb21bb8744b12b2b5ddb4f87425e328c36f/client/mysqldump.c#L3283-L3292] This is problematic when trying to import this into Azure MariaDB service, since that [doesn't support MyISAM|https://docs.microsoft.com/en-us/azure/mysql/concepts-limits]. I have seen that MySQL's mysqldump produces temporary VIEWs with {{SELECT 1 AS fieldname}}, that might be a better option to consider as well.. |
The mysqldump tool included with MariaDB client generates SQL for creating a temporary table with the MyISAM engine.
{code:c|title=client/mysqldump.c#L3283-L3292} /* Stand-in tables are always MyISAM tables as the default engine might have a column-limit that's lower than the number of columns in the view, and MyISAM support is guaranteed to be in the server anyway. */ fprintf(sql_file, "\n) ENGINE=MyISAM */;\n" "SET character_set_client = @saved_cs_client;\n"); {code} [Github|https://github.com/MariaDB/server/blob/3bf42eb21bb8744b12b2b5ddb4f87425e328c36f/client/mysqldump.c#L3283-L3292] This is problematic when trying to import this into Azure MariaDB service, since that [doesn't support MyISAM|https://docs.microsoft.com/en-us/azure/mariadb/concepts-limits]. I have seen that MySQL's mysqldump produces temporary VIEWs with {{SELECT 1 AS fieldname}}, that might be a better option to consider as well.. |
Labels | mysqldump |
Affects Version/s | 10.2 [ 14601 ] | |
Affects Version/s | 10.3 [ 22126 ] | |
Affects Version/s | 10.4 [ 22408 ] | |
Affects Version/s | 10.5 [ 23123 ] | |
Affects Version/s | 10.6 [ 24028 ] |
Fix Version/s | 10.2 [ 14601 ] | |
Fix Version/s | 10.3 [ 22126 ] | |
Fix Version/s | 10.4 [ 22408 ] | |
Fix Version/s | 10.5 [ 23123 ] | |
Fix Version/s | 10.6 [ 24028 ] |
Labels | mysqldump | beginner-friendly mysqldump |
Component/s | Scripts & Clients [ 11002 ] | |
Component/s | Backup [ 13902 ] |
Component/s | Backup [ 13902 ] |
Affects Version/s | 10.7 [ 24805 ] |
Workflow | MariaDB v3 [ 124485 ] | MariaDB v4 [ 143106 ] |
Affects Version/s | 10.8 [ 26121 ] |
Affects Version/s | 10.9 [ 26905 ] |
Assignee | Daniel Black [ danblack ] |
Fix Version/s | 10.2 [ 14601 ] | |
Fix Version/s | 10.3 [ 22126 ] |
Status | Open [ 1 ] | In Progress [ 3 ] |
Assignee | Daniel Black [ danblack ] | Vicențiu Ciorbaru [ cvicentiu ] |
Status | In Progress [ 3 ] | In Review [ 10002 ] |
Assignee | Vicențiu Ciorbaru [ cvicentiu ] | Anel Husakovic [ anel ] |
Fix Version/s | 10.3.36 [ 27513 ] | |
Fix Version/s | 10.4.26 [ 27511 ] | |
Fix Version/s | 10.5.17 [ 27509 ] | |
Fix Version/s | 10.6.9 [ 27507 ] | |
Fix Version/s | 10.7.5 [ 27505 ] | |
Fix Version/s | 10.8.4 [ 27503 ] | |
Fix Version/s | 10.9.2 [ 27115 ] | |
Fix Version/s | 10.10.1 [ 27913 ] | |
Fix Version/s | 10.4 [ 22408 ] | |
Fix Version/s | 10.5 [ 23123 ] | |
Fix Version/s | 10.6 [ 24028 ] | |
Assignee | Anel Husakovic [ anel ] | Daniel Black [ danblack ] |
Resolution | Fixed [ 1 ] | |
Status | In Review [ 10002 ] | Closed [ 6 ] |