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

Warning not raised inside Trigger

    XMLWordPrintable

Details

    • Bug
    • Status: Open (View Workflow)
    • Major
    • Resolution: Unresolved
    • 10.4, 10.5, 10.6, 10.10, 10.11, 11.0, 11.1, 11.2, 11.0.3
    • 10.4, 10.5, 10.6, 10.11, 11.1
    • Triggers
    • None

    Description

      This issue was found and reported by ndiamond on stackoverflow.

      According to the SQL Standard SQLSTATE codes beginning with 01 are treated as warnings instead of errors.

      SIGNAL SQLSTATE '01000';
      Query OK, 0 rows affected, 1 warning (0.000 sec)
       
      SHOW WARNINGS;
      +---------+------+------------------------------------------+
      | Level   | Code | Message                                  |
      +---------+------+------------------------------------------+
      | Warning | 1642 | Unhandled user-defined warning condition |
      +---------+------+------------------------------------------+ 
      

      While the example above works as expected, the same SIGNAL inside a trigger has no effect:

      DDL:

      CREATE OR REPLACE TABLE t1 (a int);
      CREATE OR REPLACE TRIGGER test_warning
      BEFORE INSERT ON t1
      FOR EACH ROW
      BEGIN
          IF NEW.a < 0
          THEN
              SIGNAL SQLSTATE '01000' SET MESSAGE_TEXT = 'Negative value inserted';
          END IF;
      END
      

      Test:

      insert into t1 values (-1);
      Query OK, 1 row affected (0.001 sec)
       
      show warnings;
      Empty set (0.000 sec)
      

      Attachments

        Activity

          People

            rucha174 Rucha Deodhar
            georg Georg Richter
            Votes:
            0 Vote for this issue
            Watchers:
            3 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.