Hi, I did a pt-osc for a table, as pre check I can confirm that there no triggers on table using
SELECT TRIGGER_NAME FROM INFORMATION_SCHEMA.TRIGGERS WHERE TRIGGER_SCHEMA=‘’ AND event_object_table=‘
However, after executing I found the message in the end showing as
2023-07-21T23:41:44 Dropping triggers…
2023-07-21T23:41:44 Dropped triggers OK.
Is this expected even when there are no triggers on the given table?
2023-07-21T23:41:44 Creating triggers…
2023-07-21T23:41:44 Created triggers OK.
2023-07-21T23:41:44 Copying approximately 43 rows…
2023-07-21T23:41:44 Copied rows OK.
2023-07-21T23:41:44 Analyzing new table…
2023-07-21T23:41:44 Swapping tables…
2023-07-21T23:41:44 Swapped original and new tables OK.
Not dropping old table because --no-drop-old-table was specified.
2023-07-21T23:41:44 Dropping triggers…
2023-07-21T23:41:44 Dropped triggers OK.