I’m applying:
where schema.sql contains:
/* Some multiline comment. */
CREATE TABLE user (
id BIGINT NOT NULL AUTO_INCREMENT,
PRIMARY KEY (id)
);
/* Some multiline comment end. */
And as result table user is not created.
Seems SQL statement gets eaten by the surrounding multiline comments as if I remove last comment it works.
Is it known issue?