Description
When I execute this sql script in ij
------
create table t (x int);
/*
insert into t values 1, 2, 3;
insert into t values 4, 5, 6;
*/
------
the first INSERT statement in the comment is correctly ignored, but the second one is executed. So after running the script, table T contains these rows:
ij> select * from t;
X
-----------
4
5
6
3 rows selected
Attachments
Attachments
Issue Links
- is blocked by
-
DERBY-3626 Issue with bracketed SQL comments on a remote database connection from ij
- Closed
- is depended upon by
-
DERBY-3289 Bracketed comments should be documented in the Derby Tools and Utilities Guide
- Closed
- relates to
-
DERBY-1749 Implement Bracketed SQL comments (/*...*/ comments)
- Closed