I have sql file with this content :
CREATE TABLE test1 (
id serial NOT NULL
, CONSTRAINT test1_PKC PRIMARY KEY (id)
) ;/*
CREATE SEQUENCE IF NOT EXISTS test_id_seq;
*/
;
CREATE TABLE test2 (
id serial NOT NULL
, CONSTRAINT test2_PKC PRIMARY KEY (id)
) ;
Using a5m2cmd, it will only create the “test1” table.
It will not create “test2” table because of the multi line comment /**/
Can you please check?