Table<?> table = new TableImpl<Record>("T", schema);
DSLContext create0 = DSL.using(SQLDialect.POSTGRES);
assertEquals("\"S\".\"T\"", create0.render(table));
DSLContext create1 = DSL.using(SQLDialect.POSTGRES, new Settings().withRenderSchema(false));
assertEquals("\"T\"", create1.render(table));
DSLContext create2 = DSL.using(SQLDialect.POSTGRES);
create2.configuration().settings().setRenderSchema(false);
assertEquals("\"T\"", create2.render(table));