Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-26447

mysqldump creates temporary MyISAM table for each VIEW

Details

    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");
      

      Github

      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

          Hipska Thomas Casteleyn created issue -
          Hipska Thomas Casteleyn made changes -
          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

          Hipska Thomas Casteleyn made changes -
          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}
          Hipska Thomas Casteleyn made changes -
          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..
          Hipska Thomas Casteleyn made changes -
          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..
          Hipska Thomas Casteleyn made changes -
          Labels mysqldump
          serg Sergei Golubchik made changes -
          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 ]
          serg Sergei Golubchik made changes -
          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 ]
          serg Sergei Golubchik made changes -
          Labels mysqldump beginner-friendly mysqldump
          serg Sergei Golubchik made changes -
          Component/s Scripts & Clients [ 11002 ]
          Component/s Backup [ 13902 ]
          Hipska Thomas Casteleyn made changes -
          Component/s Backup [ 13902 ]
          Hipska Thomas Casteleyn made changes -
          Affects Version/s 10.7 [ 24805 ]
          serg Sergei Golubchik made changes -
          Workflow MariaDB v3 [ 124485 ] MariaDB v4 [ 143106 ]
          Hipska Thomas Casteleyn made changes -
          Affects Version/s 10.8 [ 26121 ]
          Hipska Thomas Casteleyn made changes -
          Affects Version/s 10.9 [ 26905 ]
          danblack Daniel Black made changes -
          Assignee Daniel Black [ danblack ]
          danblack Daniel Black made changes -
          Fix Version/s 10.2 [ 14601 ]
          Fix Version/s 10.3 [ 22126 ]
          danblack Daniel Black made changes -
          Status Open [ 1 ] In Progress [ 3 ]
          danblack Daniel Black made changes -
          Assignee Daniel Black [ danblack ] Vicențiu Ciorbaru [ cvicentiu ]
          Status In Progress [ 3 ] In Review [ 10002 ]
          danblack Daniel Black made changes -
          Assignee Vicențiu Ciorbaru [ cvicentiu ] Anel Husakovic [ anel ]
          danblack Daniel Black made changes -
          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 ]

          People

            danblack Daniel Black
            Hipska Thomas Casteleyn
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Git Integration

                Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.