diff --git a/jOOQ-test/src/org/jooq/test/_/testcases/PlainSQLTests.java b/jOOQ-test/src/org/jooq/test/_/testcases/PlainSQLTests.java index 7a86f817b7..1294a9c884 100644 --- a/jOOQ-test/src/org/jooq/test/_/testcases/PlainSQLTests.java +++ b/jOOQ-test/src/org/jooq/test/_/testcases/PlainSQLTests.java @@ -40,57 +40,57 @@ */ package org.jooq.test._.testcases; -import static java.util.Arrays.asList; -import static junit.framework.Assert.assertEquals; -import static junit.framework.Assert.assertFalse; -import static junit.framework.Assert.assertNotNull; -import static junit.framework.Assert.assertTrue; -import static org.jooq.SQLDialect.FIREBIRD; -import static org.jooq.SQLDialect.H2; -import static org.jooq.conf.ParamType.INDEXED; -import static org.jooq.conf.ParamType.INLINED; -import static org.jooq.conf.StatementType.STATIC_STATEMENT; -import static org.jooq.impl.DSL.field; -import static org.jooq.impl.DSL.fieldByName; -import static org.jooq.impl.DSL.function; -import static org.jooq.impl.DSL.inline; -import static org.jooq.impl.DSL.name; -import static org.jooq.impl.DSL.param; -import static org.jooq.impl.DSL.table; -import static org.jooq.impl.DSL.tableByName; -import static org.jooq.impl.DSL.val; - -import java.sql.Date; -import java.sql.SQLException; -import java.util.Arrays; -import java.util.List; - -import org.jooq.BindContext; -import org.jooq.Condition; -import org.jooq.Cursor; -import org.jooq.DSLContext; -import org.jooq.Field; -import org.jooq.QueryPart; -import org.jooq.Record; -import org.jooq.Record1; -import org.jooq.Record2; -import org.jooq.Record3; -import org.jooq.Record6; -import org.jooq.RecordHandler; -import org.jooq.RenderContext; -import org.jooq.Result; -import org.jooq.ResultQuery; -import org.jooq.Table; -import org.jooq.TableRecord; -import org.jooq.UpdatableRecord; -import org.jooq.conf.Settings; -import org.jooq.impl.CustomCondition; -import org.jooq.impl.CustomField; -import org.jooq.impl.SQLDataType; -import org.jooq.test.BaseTest; -import org.jooq.test.jOOQAbstractTest; - -import org.junit.Test; +import static java.util.Arrays.asList; +import static junit.framework.Assert.assertEquals; +import static junit.framework.Assert.assertFalse; +import static junit.framework.Assert.assertNotNull; +import static junit.framework.Assert.assertTrue; +import static org.jooq.SQLDialect.FIREBIRD; +import static org.jooq.SQLDialect.H2; +import static org.jooq.conf.ParamType.INDEXED; +import static org.jooq.conf.ParamType.INLINED; +import static org.jooq.conf.StatementType.STATIC_STATEMENT; +import static org.jooq.impl.DSL.field; +import static org.jooq.impl.DSL.fieldByName; +import static org.jooq.impl.DSL.function; +import static org.jooq.impl.DSL.inline; +import static org.jooq.impl.DSL.name; +import static org.jooq.impl.DSL.param; +import static org.jooq.impl.DSL.table; +import static org.jooq.impl.DSL.tableByName; +import static org.jooq.impl.DSL.val; + +import java.sql.Date; +import java.sql.SQLException; +import java.util.Arrays; +import java.util.List; + +import org.jooq.BindContext; +import org.jooq.Condition; +import org.jooq.Cursor; +import org.jooq.DSLContext; +import org.jooq.Field; +import org.jooq.QueryPart; +import org.jooq.Record; +import org.jooq.Record1; +import org.jooq.Record2; +import org.jooq.Record3; +import org.jooq.Record6; +import org.jooq.RecordHandler; +import org.jooq.RenderContext; +import org.jooq.Result; +import org.jooq.ResultQuery; +import org.jooq.Table; +import org.jooq.TableRecord; +import org.jooq.UpdatableRecord; +import org.jooq.conf.Settings; +import org.jooq.impl.CustomCondition; +import org.jooq.impl.CustomField; +import org.jooq.impl.SQLDataType; +import org.jooq.test.BaseTest; +import org.jooq.test.jOOQAbstractTest; + +import org.junit.Test; public class PlainSQLTests< A extends UpdatableRecord & Record6, @@ -605,7 +605,8 @@ extends BaseTest