Alan D. Cabrera

Results 23 issues of Alan D. Cabrera

### Expected behavior I have a SQL query that has three CTEs that is essentially SELECT EXISTS ( WITH ... (..) SELECT 1 FROM .. WHERE ... ) The jOOQ...

T: Defect
C: Functionality
P: High
E: All Editions

So builds will work under JDK11.

``` private static boolean hasTestAnnotation(Method method) { return method.isAnnotationPresent(Test.class) || method.isAnnotationPresent(BeforeClass.class) || method.isAnnotationPresent(org.junit.jupiter.api.Test.class) || method.isAnnotationPresent(BeforeAll.class); } ``` does not allow for meta annotations annotated with`@Test`.