}
@Test public void testInsertWithoutColumns() {
Insert insert = new Insert();
insert.setGroup(new GroupSymbol("m.g")); //$NON-NLS-1$
insert.addValue(new Constant("a")); //$NON-NLS-1$
insert.addValue(new Constant("b")); //$NON-NLS-1$
helpTest("INSERT INTO m.g VALUES ('a', 'b')", //$NON-NLS-1$
"INSERT INTO m.g VALUES ('a', 'b')", //$NON-NLS-1$
insert);
}