I'm using javax.persistence.sql-load-script-source
for my unit testing.
Is there any standard way to put comments on the script?
The file contains insert statements for my entities.
INSERT INTO ... (...) VALUES (...) -- 1
INSERT INTO ... (...) VALUES (...) -- 2
I want to comment the generated id value for myself.
P.S. I'm using H2, Derby, and HSQLDB as in-memory databases and EclipseLink and Hibernate as JPA implementations.