Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-10764 PL/SQL parser - Phase 2
  3. MDEV-12087

sql_mode=ORACLE: a new option to make dash-dash to start a comment

Details

    Description

      Oracle uses the SQL standard syntax for simple comments: dash-dash starts a comment, the rest of the line is a comment.

      DROP PROCEDURE p1;
      CREATE PROCEDURE p1 AS
      BEGIN
        --This is a comment
        NULL;
      END;
      /
      

      MariaDB uses non-standard syntaxt: dash-dash-space starts a comment. This is an example of a valid script:

      SET sql_mode=DEFAULT;
      DROP PROCEDURE p1;
      DELIMITER /
      CREATE PROCEDURE p1()
      BEGIN
        -- This is a comment
      END;
      /
      DELIMITER ;
      

      If I remove the space character after "--", it returns a syntax error:

      SET sql_mode=DEFAULT;
      DROP PROCEDURE p1;
      DELIMITER /
      CREATE PROCEDURE p1()
      BEGIN
        --This is a comment
      END;
      /
      DELIMITER ;
      

      ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '--This is a comment
      END' at line 3
      

      That was an intentional design in early MySQL versions:
      https://dev.mysql.com/doc/refman/5.7/en/ansi-diff-comments.html

      We should add an option to make dash-dash without an extra space start a comment, as it makes migration from Oracle difficult.

      Perhaps, a new flag in sql_mode or old_mode can solve the issue.

      Attachments

        Issue Links

          Activity

            bar Alexander Barkov created issue -
            bar Alexander Barkov made changes -
            Field Original Value New Value
            Description Oracle uses the SQL standard syntax for simple comments: dash-dash starts a comment, the rest of the line is a comment.
            {code:sql}
            DROP PROCEDURE p1;
            CREATE PROCEDURE p1 AS
            BEGIN
              --This is a comment
              NULL;
            END;
            /
            {code}


            MariaDB uses non-standard syntaxt: dash-dash-space starts a comment. This is an example of a valid script:
            {code:sql}
            SET sql_mode=DEFAULT;
            DROP PROCEDURE p1;
            DELIMITER /
            CREATE PROCEDURE p1()
            BEGIN
              -- This is a comment
            END;
            /
            DELIMITER ;
            {code}


            If I remove the space character after "--", it returns a syntax error:
            {code:sql}
            SET sql_mode=DEFAULT;
            DROP PROCEDURE p1;
            DELIMITER /
            CREATE PROCEDURE p1()
            BEGIN
              --This is a comment
            END;
            /
            DELIMITER ;
            {code}

            {noformat}
            ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '--This is a comment
            END' at line 3
            {noformat}

            That was an intentional design in early MySQL versions:
            https://dev.mysql.com/doc/refman/5.7/en/ansi-diff-comments.html

            We should add an option to make dash-dash without an extra space start a comment.

            Perhaps, a new flag in {{sql_mode}} or {{old_mode}} can solve the issue.

            Oracle uses the SQL standard syntax for simple comments: dash-dash starts a comment, the rest of the line is a comment.
            {code:sql}
            DROP PROCEDURE p1;
            CREATE PROCEDURE p1 AS
            BEGIN
              --This is a comment
              NULL;
            END;
            /
            {code}


            MariaDB uses non-standard syntaxt: dash-dash-space starts a comment. This is an example of a valid script:
            {code:sql}
            SET sql_mode=DEFAULT;
            DROP PROCEDURE p1;
            DELIMITER /
            CREATE PROCEDURE p1()
            BEGIN
              -- This is a comment
            END;
            /
            DELIMITER ;
            {code}


            If I remove the space character after "--", it returns a syntax error:
            {code:sql}
            SET sql_mode=DEFAULT;
            DROP PROCEDURE p1;
            DELIMITER /
            CREATE PROCEDURE p1()
            BEGIN
              --This is a comment
            END;
            /
            DELIMITER ;
            {code}

            {noformat}
            ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '--This is a comment
            END' at line 3
            {noformat}

            That was an intentional design in early MySQL versions:
            https://dev.mysql.com/doc/refman/5.7/en/ansi-diff-comments.html

            We should add an option to make dash-dash without an extra space start a comment, as it makes migration from Oracle difficult.

            Perhaps, a new flag in {{sql_mode}} or {{old_mode}} can solve the issue.
            bar Alexander Barkov made changes -
            Fix Version/s 10.3 [ 22126 ]
            abienemann Alexander Bienemann (Inactive) made changes -
            Priority Major [ 3 ] Minor [ 4 ]
            bar Alexander Barkov made changes -
            bar Alexander Barkov made changes -
            Component/s Parser [ 10201 ]
            bar Alexander Barkov made changes -
            Labels Compatibility
            serg Sergei Golubchik made changes -
            Fix Version/s 10.4 [ 22408 ]

            dash-dash with no space is the sql standard syntax, MariaDB should support it not only in the ORACLE mode.

            serg Sergei Golubchik added a comment - dash-dash with no space is the sql standard syntax, MariaDB should support it not only in the ORACLE mode.
            alice Alice Sherepa made changes -
            serg Sergei Golubchik added a comment - - edited

            The problem comes from the syntax like SELECT --1 — this is valid both in MariaDB and Oracle, and means SELECT 1. But in the standard SQL -- starts a comment, the standard does not allow more than one <minus sign> before a number (so it seems).

            I don't think we can implement the standard behavior, it'll be a pretty serious compatibility break.

            serg Sergei Golubchik added a comment - - edited The problem comes from the syntax like SELECT --1 — this is valid both in MariaDB and Oracle, and means SELECT 1 . But in the standard SQL -- starts a comment, the standard does not allow more than one <minus sign> before a number (so it seems). I don't think we can implement the standard behavior, it'll be a pretty serious compatibility break.
            ralf.gebhardt Ralf Gebhardt made changes -
            Fix Version/s 10.3 [ 22126 ]
            Fix Version/s 10.4 [ 22408 ]
            Assignee Alexander Barkov [ bar ]
            Labels Compatibility Compatibility Oracle
            serg Sergei Golubchik made changes -
            Workflow MariaDB v3 [ 79688 ] MariaDB v4 [ 140223 ]

            People

              Unassigned Unassigned
              bar Alexander Barkov
              Votes:
              2 Vote for this issue
              Watchers:
              5 Start watching this issue

              Dates

                Created:
                Updated:

                Git Integration

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