testGetSQL0(q, "select 1, 'A' from dual");
}
@Test
public void testKeywords() {
Keyword keyword = DSL.keyword("Abc");
Field<?> f = DSL.field("{0} Untouched {Xx} Untouched {1}", keyword, keyword);
DSLContext def = DSL.using(MYSQL);
DSLContext lower = DSL.using(MYSQL, new Settings().withRenderKeywordStyle(LOWER));
DSLContext upper = DSL.using(MYSQL, new Settings().withRenderKeywordStyle(UPPER));