This change fixes syntax errors output by parsing/deparsing ALTER TABLE table_name ENABLE TRIGGER ALL statements. Previously the deparsed statement would be missing the ALL keyword.
Looks like the bug was a typo in the deparse logic that caused the ALL keyword to be left off.
This change adds the ALL keyword to the output string when ENABLE TRIGGER ALL is used. This change also adds coverage for other forms of ALTER TABLE statments that use ENABLE/DISABLETRIGGER, but the other cases look to already be handled correctly.
This change fixes syntax errors output by parsing/deparsing
ALTER TABLE table_name ENABLE TRIGGER ALL
statements. Previously the deparsed statement would be missing theALL
keyword.Looks like the bug was a typo in the deparse logic that caused the
ALL
keyword to be left off.This change adds the
ALL
keyword to the output string whenENABLE TRIGGER ALL
is used. This change also adds coverage for other forms ofALTER TABLE
statments that useENABLE
/DISABLE
TRIGGER
, but the other cases look to already be handled correctly.