Skip to content

Jakarta Data

Jakarta Data #6836

Triggered via pull request February 21, 2025 13:54
Status Failure
Total duration 39m 48s
Artifacts

gradle.yml

on: pull_request
Matrix: build
Fit to window
Zoom out
Zoom in

Annotations

103 errors and 2 warnings
OracleRepositorySetClientInfoSpec.order by joined collection: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/oraclexe/OracleRepositorySetClientInfoSpec.groovy#L1
io.micronaut.data.exceptions.DataAccessException: Error executing SQL Query: SELECT book_."ID",book_."AUTHOR_ID",book_."GENRE_ID",book_."TITLE",book_."TOTAL_PAGES",book_."PUBLISHER_ID",book_."LAST_UPDATED",book_author_."NAME" AS author_name,book_author_."NICK_NAME" AS author_nick_name FROM "BOOK" book_ INNER JOIN "AUTHOR" book_author_ ON book_."AUTHOR_ID"=book_author_."ID" WHERE (book_."ID" IN (SELECT book_book_."ID" FROM "BOOK" book_book_ WHERE (book_book_."ID" IN (SELECT book_book_book_."ID" FROM "BOOK" book_book_book_ INNER JOIN "AUTHOR" book_book_book_author_ ON book_book_book_."AUTHOR_ID"=book_book_book_author_."ID" ORDER BY book_book_book_author_."NAME" ASC,book_book_book_."TITLE" ASC)) ORDER BY book_author_.name ASC,book_book_.title ASC,book_author_.name ASC,book_book_.title ASC FETCH NEXT 10 ROWS ONLY)) ORDER BY book_author_.name ASC,book_.title ASC,book_author_.name ASC,book_.title ASC ORA-00907: missing right parenthesis https://docs.oracle.com/error-help/db/ora-00907/
OracleXERepositorySpec.order by joined collection: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/oraclexe/OracleXERepositorySpec.groovy#L1
io.micronaut.data.exceptions.DataAccessException: Error executing SQL Query: SELECT book_."ID",book_."AUTHOR_ID",book_."GENRE_ID",book_."TITLE",book_."TOTAL_PAGES",book_."PUBLISHER_ID",book_."LAST_UPDATED",book_author_."NAME" AS author_name,book_author_."NICK_NAME" AS author_nick_name FROM "BOOK" book_ INNER JOIN "AUTHOR" book_author_ ON book_."AUTHOR_ID"=book_author_."ID" WHERE (book_."ID" IN (SELECT book_book_."ID" FROM "BOOK" book_book_ WHERE (book_book_."ID" IN (SELECT book_book_book_."ID" FROM "BOOK" book_book_book_ INNER JOIN "AUTHOR" book_book_book_author_ ON book_book_book_."AUTHOR_ID"=book_book_book_author_."ID" ORDER BY book_book_book_author_."NAME" ASC,book_book_book_."TITLE" ASC)) ORDER BY book_author_.name ASC,book_book_.title ASC,book_author_.name ASC,book_book_.title ASC FETCH NEXT 10 ROWS ONLY)) ORDER BY book_author_.name ASC,book_.title ASC,book_author_.name ASC,book_.title ASC ORA-00907: missing right parenthesis https://docs.oracle.com/error-help/db/ora-00907/
SqlServerRepositorySpec.order by joined collection: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/sqlserver/SqlServerRepositorySpec.groovy#L1
io.micronaut.data.exceptions.DataAccessException: Error executing SQL Query: SELECT book_.[id],book_.[author_id],book_.[genre_id],book_.[title],book_.[total_pages],book_.[publisher_id],book_.[last_updated],book_author_.[name] AS author_name,book_author_.[nick_name] AS author_nick_name FROM [book] book_ INNER JOIN [author] book_author_ ON book_.[author_id]=book_author_.[id] WHERE (book_.[id] IN (SELECT book_book_.[id] FROM [book] book_book_ WHERE (book_book_.[id] IN (SELECT book_book_book_.[id] FROM [book] book_book_book_ INNER JOIN [author] book_book_book_author_ ON book_book_book_.[author_id]=book_book_book_author_.[id] ORDER BY book_book_book_author_.[name] ASC,book_book_book_.[title] ASC)) ORDER BY book_author_.name ASC,book_book_.title ASC,book_author_.name ASC,book_book_.title ASC OFFSET 0 ROWS FETCH NEXT 10 ROWS ONLY)) ORDER BY book_author_.name ASC,book_.title ASC,book_author_.name ASC,book_.title ASC The ORDER BY clause is invalid in views, inline functions, derived tables, subqueries, and common table expressions, unless TOP, OFFSET or FOR XML is also specified.
PageSpec.test serialization and deserialization of a page: data-hibernate-jpa/src/test/groovy/io/micronaut/data/hibernate/PageSpec.groovy#L94
com.fasterxml.jackson.databind.JsonMappingException: Page does not contain total count. It is likely that the Pageable needs to be modified to request this information. (through reference chain: io.micronaut.data.model.DefaultPage["totalSize"])
PageSpec.test serialization and deserialization of a page - serde: data-hibernate-jpa/src/test/groovy/io/micronaut/data/hibernate/PageSpec.groovy#L117
io.micronaut.serde.exceptions.SerdeException: No serializable introspection present for type DefaultLimit. Consider adding Serdeable. Serializable annotate to type DefaultLimit. Alternatively if you are not in control of the project's source code, you can use @SerdeImport(DefaultLimit.class) to enable serialization of this type.
PageSpec.test serialization and deserialization of a pageable - serde: data-hibernate-jpa/src/test/groovy/io/micronaut/data/hibernate/PageSpec.groovy#L117
io.micronaut.serde.exceptions.SerdeException: No serializable introspection present for type DefaultLimit. Consider adding Serdeable. Serializable annotate to type DefaultLimit. Alternatively if you are not in control of the project's source code, you can use @SerdeImport(DefaultLimit.class) to enable serialization of this type.
PageSpec.empty page can be mapped : data-hibernate-jpa/src/test/groovy/io/micronaut/data/hibernate/PageSpec.groovy#L206
Expected no exception of type 'java.lang.Throwable' to be thrown, but got it nevertheless
BuildQuerySpec.test JOIN query method: data-processor/src/test/groovy/io/micronaut/data/processor/sql/BuildQuerySpec.groovy#L2142
Condition not satisfied: getParameterRoles(findAll) == ["querylimit", "sort"] | | | | | false | Page findAll(Pageable pageable) [pageableRequired, sort]
JpaOrderBySpec.test order by errors for method listOrderByJunk: data-processor/src/test/groovy/io/micronaut/data/processor/visitors/JpaOrderBySpec.groovy#L102
Condition not satisfied: e.message.contains(message) | | | | | | false Cannot order by non-existent property: junk | test/MyInterface$Intercepted.java:12: error: Unable to implement Repository method: MyInterface.listOrderByJunk(). Cannot query entity [Person] on non-existent property: junk | List<Person> listOrderByJunk(); | ^ java.lang.RuntimeException: test/MyInterface$Intercepted.java:12: error: Unable to implement Repository method: MyInterface.listOrderByJunk(). Cannot query entity [Person] on non-existent property: junk List<Person> listOrderByJunk(); ^ at io.micronaut.annotation.processing.test.JavaParser.generate(JavaParser.java:285) at io.micronaut.annotation.processing.test.JavaParser.generate(JavaParser.java:237) at io.micronaut.annotation.processing.test.AbstractTypeElementSpec.buildClassLoader(AbstractTypeElementSpec.groovy:535) at io.micronaut.annotation.processing.test.AbstractTypeElementSpec.buildBeanDefinition(AbstractTypeElementSpec.groovy:422) at io.micronaut.data.processor.visitors.JpaOrderBySpec.compileListRepository(JpaOrderBySpec.groovy:123) at io.micronaut.data.processor.visitors.JpaOrderBySpec.$spock_feature_1_1(JpaOrderBySpec.groovy:94)
H2CursoredPaginationSpec.test cursored pageable list for sorting null: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2CursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA00), Person(AAAAA01), Person(AAAAA02), Person(AAAAA03), Person(AAAAA04), Person(AAAAA05), Person(AAAAA06), Person(AAAAA07), Person(AAAAA08), Person(AAAAA09)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[]}}}
H2CursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{id, DESC)]}: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2CursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(ZZZZZ09), Person(ZZZZZ08), Person(ZZZZZ07), Person(ZZZZZ06), Person(ZZZZZ05), Person(ZZZZZ04), Person(ZZZZZ03), Person(ZZZZZ02), Person(ZZZZZ01), Person(ZZZZZ00)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{id, DESC)]}}}
H2CursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{name, ASC)]}: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2CursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA00), Person(AAAAA00), Person(AAAAA00), Person(AAAAA01), Person(AAAAA01), Person(AAAAA01), Person(AAAAA02), Person(AAAAA02), Person(AAAAA02), Person(AAAAA03)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{name, ASC)]}}}
H2CursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{name, DESC)]}: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2CursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(ZZZZZ09), Person(ZZZZZ09), Person(ZZZZZ09), Person(ZZZZZ08), Person(ZZZZZ08), Person(ZZZZZ08), Person(ZZZZZ07), Person(ZZZZZ07), Person(ZZZZZ07), Person(ZZZZZ06)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{name, DESC)]}}}
H2CursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{age, ASC), SORT{name, ASC)]}: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2CursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA00), Person(BBBBB00), Person(CCCCC00), Person(DDDDD00), Person(EEEEE00), Person(FFFFF00), Person(GGGGG00), Person(HHHHH00), Person(IIIII00), Person(JJJJJ00)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{age, ASC), SORT{name, ASC)]}}}
H2CursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{age, DESC), SORT{name, ASC)]}: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2CursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA09), Person(BBBBB09), Person(CCCCC09), Person(DDDDD09), Person(EEEEE09), Person(FFFFF09), Person(GGGGG09), Person(HHHHH09), Person(IIIII09), Person(JJJJJ09)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{age, DESC), SORT{name, ASC)]}}}
H2RepositorySpec.test JOIN cursor pagination: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2RepositorySpec.groovy#L1
java.lang.UnsupportedOperationException: To get next pageable results must be retrieved. Use page.nextPageable() to retrieve the next pageable.
H2RepositorySpec.test @Query with DTO: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2RepositorySpec.groovy#L1
Expected exception of type 'java.lang.IllegalStateException', but no exception was thrown
H2RepositorySpec.test pageable with join criteria: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2RepositorySpec.groovy#L1
java.lang.IllegalStateException: Unsupported page interface type interface io.micronaut.data.model.CursoredPage
MariaDbRepositoryPoolSpec.test @Query with DTO: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mariadb/MariaDbRepositoryPoolSpec.groovy#L1
Expected exception of type 'java.lang.IllegalStateException', but no exception was thrown
MariaDbRepositoryPoolSpec.test pageable with join criteria: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mariadb/MariaDbRepositoryPoolSpec.groovy#L1
java.lang.IllegalStateException: Unsupported page interface type interface io.micronaut.data.model.CursoredPage
MariaDbRepositorySpec.test @Query with DTO: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mariadb/MariaDbRepositorySpec.groovy#L1
Expected exception of type 'java.lang.IllegalStateException', but no exception was thrown
MariaDbRepositorySpec.test pageable with join criteria: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mariadb/MariaDbRepositorySpec.groovy#L1
java.lang.IllegalStateException: Unsupported page interface type interface io.micronaut.data.model.CursoredPage
MySqlCursoredPaginationSpec.test cursored pageable list for sorting null: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mysql/MySqlCursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA00), Person(AAAAA01), Person(AAAAA02), Person(AAAAA03), Person(AAAAA04), Person(AAAAA05), Person(AAAAA06), Person(AAAAA07), Person(AAAAA08), Person(AAAAA09)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[]}}}
MySqlCursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{id, DESC)]}: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mysql/MySqlCursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(ZZZZZ09), Person(ZZZZZ08), Person(ZZZZZ07), Person(ZZZZZ06), Person(ZZZZZ05), Person(ZZZZZ04), Person(ZZZZZ03), Person(ZZZZZ02), Person(ZZZZZ01), Person(ZZZZZ00)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{id, DESC)]}}}
MySqlCursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{name, ASC)]}: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mysql/MySqlCursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA00), Person(AAAAA00), Person(AAAAA00), Person(AAAAA01), Person(AAAAA01), Person(AAAAA01), Person(AAAAA02), Person(AAAAA02), Person(AAAAA02), Person(AAAAA03)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{name, ASC)]}}}
MySqlCursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{name, DESC)]}: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mysql/MySqlCursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(ZZZZZ09), Person(ZZZZZ09), Person(ZZZZZ09), Person(ZZZZZ08), Person(ZZZZZ08), Person(ZZZZZ08), Person(ZZZZZ07), Person(ZZZZZ07), Person(ZZZZZ07), Person(ZZZZZ06)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{name, DESC)]}}}
MySqlCursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{age, ASC), SORT{name, ASC)]}: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mysql/MySqlCursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA00), Person(BBBBB00), Person(CCCCC00), Person(DDDDD00), Person(EEEEE00), Person(FFFFF00), Person(GGGGG00), Person(HHHHH00), Person(IIIII00), Person(JJJJJ00)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{age, ASC), SORT{name, ASC)]}}}
MySqlCursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{age, DESC), SORT{name, ASC)]}: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mysql/MySqlCursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA09), Person(BBBBB09), Person(CCCCC09), Person(DDDDD09), Person(EEEEE09), Person(FFFFF09), Person(GGGGG09), Person(HHHHH09), Person(IIIII09), Person(JJJJJ09)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{age, DESC), SORT{name, ASC)]}}}
MySqlRepositoryPoolSpec.test @Query with DTO: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mysql/MySqlRepositoryPoolSpec.groovy#L1
Expected exception of type 'java.lang.IllegalStateException', but no exception was thrown
MySqlRepositoryPoolSpec.test pageable with join criteria: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mysql/MySqlRepositoryPoolSpec.groovy#L1
java.lang.IllegalStateException: Unsupported page interface type interface io.micronaut.data.model.CursoredPage
MySqlRepositorySpec.test @Query with DTO: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/mysql/MySqlRepositorySpec.groovy#L1
Expected exception of type 'java.lang.IllegalStateException', but no exception was thrown
MySqlRepositorySpec.test pageable with join criteria: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/mysql/MySqlRepositorySpec.groovy#L1
java.lang.IllegalStateException: Unsupported page interface type interface io.micronaut.data.model.CursoredPage
OracleXECursoredPaginationSpec.test cursored pageable list for sorting null: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/oraclexe/OracleXECursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA00), Person(AAAAA01), Person(AAAAA02), Person(AAAAA03), Person(AAAAA04), Person(AAAAA05), Person(AAAAA06), Person(AAAAA07), Person(AAAAA08), Person(AAAAA09)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[]}}}
OracleXECursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{id, DESC)]}: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/oraclexe/OracleXECursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(ZZZZZ09), Person(ZZZZZ08), Person(ZZZZZ07), Person(ZZZZZ06), Person(ZZZZZ05), Person(ZZZZZ04), Person(ZZZZZ03), Person(ZZZZZ02), Person(ZZZZZ01), Person(ZZZZZ00)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{id, DESC)]}}}
OracleXECursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{name, ASC)]}: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/oraclexe/OracleXECursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA00), Person(AAAAA00), Person(AAAAA00), Person(AAAAA01), Person(AAAAA01), Person(AAAAA01), Person(AAAAA02), Person(AAAAA02), Person(AAAAA02), Person(AAAAA03)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{name, ASC)]}}}
OracleXECursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{name, DESC)]}: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/oraclexe/OracleXECursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(ZZZZZ09), Person(ZZZZZ09), Person(ZZZZZ09), Person(ZZZZZ08), Person(ZZZZZ08), Person(ZZZZZ08), Person(ZZZZZ07), Person(ZZZZZ07), Person(ZZZZZ07), Person(ZZZZZ06)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{name, DESC)]}}}
build (17)
Process completed with exit code 1.
OracleRepositorySetClientInfoSpec.order by joined collection: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/oraclexe/OracleRepositorySetClientInfoSpec.groovy#L1
io.micronaut.data.exceptions.DataAccessException: Error executing SQL Query: SELECT book_."ID",book_."AUTHOR_ID",book_."GENRE_ID",book_."TITLE",book_."TOTAL_PAGES",book_."PUBLISHER_ID",book_."LAST_UPDATED",book_author_."NAME" AS author_name,book_author_."NICK_NAME" AS author_nick_name FROM "BOOK" book_ INNER JOIN "AUTHOR" book_author_ ON book_."AUTHOR_ID"=book_author_."ID" WHERE (book_."ID" IN (SELECT book_book_."ID" FROM "BOOK" book_book_ WHERE (book_book_."ID" IN (SELECT book_book_book_."ID" FROM "BOOK" book_book_book_ INNER JOIN "AUTHOR" book_book_book_author_ ON book_book_book_."AUTHOR_ID"=book_book_book_author_."ID" ORDER BY book_book_book_author_."NAME" ASC,book_book_book_."TITLE" ASC)) ORDER BY book_author_.name ASC,book_book_.title ASC,book_author_.name ASC,book_book_.title ASC FETCH NEXT 10 ROWS ONLY)) ORDER BY book_author_.name ASC,book_.title ASC,book_author_.name ASC,book_.title ASC ORA-00907: missing right parenthesis https://docs.oracle.com/error-help/db/ora-00907/
OracleXERepositorySpec.order by joined collection: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/oraclexe/OracleXERepositorySpec.groovy#L1
io.micronaut.data.exceptions.DataAccessException: Error executing SQL Query: SELECT book_."ID",book_."AUTHOR_ID",book_."GENRE_ID",book_."TITLE",book_."TOTAL_PAGES",book_."PUBLISHER_ID",book_."LAST_UPDATED",book_author_."NAME" AS author_name,book_author_."NICK_NAME" AS author_nick_name FROM "BOOK" book_ INNER JOIN "AUTHOR" book_author_ ON book_."AUTHOR_ID"=book_author_."ID" WHERE (book_."ID" IN (SELECT book_book_."ID" FROM "BOOK" book_book_ WHERE (book_book_."ID" IN (SELECT book_book_book_."ID" FROM "BOOK" book_book_book_ INNER JOIN "AUTHOR" book_book_book_author_ ON book_book_book_."AUTHOR_ID"=book_book_book_author_."ID" ORDER BY book_book_book_author_."NAME" ASC,book_book_book_."TITLE" ASC)) ORDER BY book_author_.name ASC,book_book_.title ASC,book_author_.name ASC,book_book_.title ASC FETCH NEXT 10 ROWS ONLY)) ORDER BY book_author_.name ASC,book_.title ASC,book_author_.name ASC,book_.title ASC ORA-00907: missing right parenthesis https://docs.oracle.com/error-help/db/ora-00907/
SqlServerRepositorySpec.order by joined collection: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/sqlserver/SqlServerRepositorySpec.groovy#L1
io.micronaut.data.exceptions.DataAccessException: Error executing SQL Query: SELECT book_.[id],book_.[author_id],book_.[genre_id],book_.[title],book_.[total_pages],book_.[publisher_id],book_.[last_updated],book_author_.[name] AS author_name,book_author_.[nick_name] AS author_nick_name FROM [book] book_ INNER JOIN [author] book_author_ ON book_.[author_id]=book_author_.[id] WHERE (book_.[id] IN (SELECT book_book_.[id] FROM [book] book_book_ WHERE (book_book_.[id] IN (SELECT book_book_book_.[id] FROM [book] book_book_book_ INNER JOIN [author] book_book_book_author_ ON book_book_book_.[author_id]=book_book_book_author_.[id] ORDER BY book_book_book_author_.[name] ASC,book_book_book_.[title] ASC)) ORDER BY book_author_.name ASC,book_book_.title ASC,book_author_.name ASC,book_book_.title ASC OFFSET 0 ROWS FETCH NEXT 10 ROWS ONLY)) ORDER BY book_author_.name ASC,book_.title ASC,book_author_.name ASC,book_.title ASC The ORDER BY clause is invalid in views, inline functions, derived tables, subqueries, and common table expressions, unless TOP, OFFSET or FOR XML is also specified.
PageSpec.test serialization and deserialization of a page: data-hibernate-jpa/src/test/groovy/io/micronaut/data/hibernate/PageSpec.groovy#L94
com.fasterxml.jackson.databind.JsonMappingException: Page does not contain total count. It is likely that the Pageable needs to be modified to request this information. (through reference chain: io.micronaut.data.model.DefaultPage["totalSize"])
PageSpec.test serialization and deserialization of a page - serde: data-hibernate-jpa/src/test/groovy/io/micronaut/data/hibernate/PageSpec.groovy#L117
io.micronaut.serde.exceptions.SerdeException: No serializable introspection present for type DefaultLimit. Consider adding Serdeable. Serializable annotate to type DefaultLimit. Alternatively if you are not in control of the project's source code, you can use @SerdeImport(DefaultLimit.class) to enable serialization of this type.
PageSpec.test serialization and deserialization of a pageable - serde: data-hibernate-jpa/src/test/groovy/io/micronaut/data/hibernate/PageSpec.groovy#L117
io.micronaut.serde.exceptions.SerdeException: No serializable introspection present for type DefaultLimit. Consider adding Serdeable. Serializable annotate to type DefaultLimit. Alternatively if you are not in control of the project's source code, you can use @SerdeImport(DefaultLimit.class) to enable serialization of this type.
PageSpec.empty page can be mapped : data-hibernate-jpa/src/test/groovy/io/micronaut/data/hibernate/PageSpec.groovy#L206
Expected no exception of type 'java.lang.Throwable' to be thrown, but got it nevertheless
BuildQuerySpec.test JOIN query method: data-processor/src/test/groovy/io/micronaut/data/processor/sql/BuildQuerySpec.groovy#L2142
Condition not satisfied: getParameterRoles(findAll) == ["querylimit", "sort"] | | | | | false | Page findAll(Pageable pageable) [pageableRequired, sort]
JpaOrderBySpec.test order by errors for method listOrderByJunk: data-processor/src/test/groovy/io/micronaut/data/processor/visitors/JpaOrderBySpec.groovy#L102
Condition not satisfied: e.message.contains(message) | | | | | | false Cannot order by non-existent property: junk | test/MyInterface$Intercepted.java:12: error: Unable to implement Repository method: MyInterface.listOrderByJunk(). Cannot query entity [Person] on non-existent property: junk | List<Person> listOrderByJunk(); | ^ java.lang.RuntimeException: test/MyInterface$Intercepted.java:12: error: Unable to implement Repository method: MyInterface.listOrderByJunk(). Cannot query entity [Person] on non-existent property: junk List<Person> listOrderByJunk(); ^ at io.micronaut.annotation.processing.test.JavaParser.generate(JavaParser.java:285) at io.micronaut.annotation.processing.test.JavaParser.generate(JavaParser.java:237) at io.micronaut.annotation.processing.test.AbstractTypeElementSpec.buildClassLoader(AbstractTypeElementSpec.groovy:535) at io.micronaut.annotation.processing.test.AbstractTypeElementSpec.buildBeanDefinition(AbstractTypeElementSpec.groovy:422) at io.micronaut.data.processor.visitors.JpaOrderBySpec.compileListRepository(JpaOrderBySpec.groovy:123) at io.micronaut.data.processor.visitors.JpaOrderBySpec.$spock_feature_1_1(JpaOrderBySpec.groovy:94)
H2CursoredPaginationSpec.test cursored pageable list for sorting null: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2CursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA00), Person(AAAAA01), Person(AAAAA02), Person(AAAAA03), Person(AAAAA04), Person(AAAAA05), Person(AAAAA06), Person(AAAAA07), Person(AAAAA08), Person(AAAAA09)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[]}}}
H2CursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{id, DESC)]}: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2CursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(ZZZZZ09), Person(ZZZZZ08), Person(ZZZZZ07), Person(ZZZZZ06), Person(ZZZZZ05), Person(ZZZZZ04), Person(ZZZZZ03), Person(ZZZZZ02), Person(ZZZZZ01), Person(ZZZZZ00)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{id, DESC)]}}}
H2CursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{name, ASC)]}: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2CursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA00), Person(AAAAA00), Person(AAAAA00), Person(AAAAA01), Person(AAAAA01), Person(AAAAA01), Person(AAAAA02), Person(AAAAA02), Person(AAAAA02), Person(AAAAA03)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{name, ASC)]}}}
H2CursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{name, DESC)]}: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2CursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(ZZZZZ09), Person(ZZZZZ09), Person(ZZZZZ09), Person(ZZZZZ08), Person(ZZZZZ08), Person(ZZZZZ08), Person(ZZZZZ07), Person(ZZZZZ07), Person(ZZZZZ07), Person(ZZZZZ06)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{name, DESC)]}}}
H2CursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{age, ASC), SORT{name, ASC)]}: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2CursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA00), Person(BBBBB00), Person(CCCCC00), Person(DDDDD00), Person(EEEEE00), Person(FFFFF00), Person(GGGGG00), Person(HHHHH00), Person(IIIII00), Person(JJJJJ00)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{age, ASC), SORT{name, ASC)]}}}
H2CursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{age, DESC), SORT{name, ASC)]}: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2CursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA09), Person(BBBBB09), Person(CCCCC09), Person(DDDDD09), Person(EEEEE09), Person(FFFFF09), Person(GGGGG09), Person(HHHHH09), Person(IIIII09), Person(JJJJJ09)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{age, DESC), SORT{name, ASC)]}}}
H2RepositorySpec.test JOIN cursor pagination: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2RepositorySpec.groovy#L1
java.lang.UnsupportedOperationException: To get next pageable results must be retrieved. Use page.nextPageable() to retrieve the next pageable.
H2RepositorySpec.test @Query with DTO: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2RepositorySpec.groovy#L1
Expected exception of type 'java.lang.IllegalStateException', but no exception was thrown
H2RepositorySpec.test pageable with join criteria: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2RepositorySpec.groovy#L1
java.lang.IllegalStateException: Unsupported page interface type interface io.micronaut.data.model.CursoredPage
MariaDbRepositoryPoolSpec.test @Query with DTO: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mariadb/MariaDbRepositoryPoolSpec.groovy#L1
Expected exception of type 'java.lang.IllegalStateException', but no exception was thrown
MariaDbRepositoryPoolSpec.test pageable with join criteria: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mariadb/MariaDbRepositoryPoolSpec.groovy#L1
java.lang.IllegalStateException: Unsupported page interface type interface io.micronaut.data.model.CursoredPage
MariaDbRepositorySpec.test @Query with DTO: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mariadb/MariaDbRepositorySpec.groovy#L1
Expected exception of type 'java.lang.IllegalStateException', but no exception was thrown
MariaDbRepositorySpec.test pageable with join criteria: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mariadb/MariaDbRepositorySpec.groovy#L1
java.lang.IllegalStateException: Unsupported page interface type interface io.micronaut.data.model.CursoredPage
MySqlCursoredPaginationSpec.test cursored pageable list for sorting null: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mysql/MySqlCursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA00), Person(AAAAA01), Person(AAAAA02), Person(AAAAA03), Person(AAAAA04), Person(AAAAA05), Person(AAAAA06), Person(AAAAA07), Person(AAAAA08), Person(AAAAA09)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[]}}}
MySqlCursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{id, DESC)]}: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mysql/MySqlCursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(ZZZZZ09), Person(ZZZZZ08), Person(ZZZZZ07), Person(ZZZZZ06), Person(ZZZZZ05), Person(ZZZZZ04), Person(ZZZZZ03), Person(ZZZZZ02), Person(ZZZZZ01), Person(ZZZZZ00)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{id, DESC)]}}}
MySqlCursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{name, ASC)]}: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mysql/MySqlCursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA00), Person(AAAAA00), Person(AAAAA00), Person(AAAAA01), Person(AAAAA01), Person(AAAAA01), Person(AAAAA02), Person(AAAAA02), Person(AAAAA02), Person(AAAAA03)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{name, ASC)]}}}
MySqlCursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{name, DESC)]}: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mysql/MySqlCursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(ZZZZZ09), Person(ZZZZZ09), Person(ZZZZZ09), Person(ZZZZZ08), Person(ZZZZZ08), Person(ZZZZZ08), Person(ZZZZZ07), Person(ZZZZZ07), Person(ZZZZZ07), Person(ZZZZZ06)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{name, DESC)]}}}
MySqlCursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{age, ASC), SORT{name, ASC)]}: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mysql/MySqlCursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA00), Person(BBBBB00), Person(CCCCC00), Person(DDDDD00), Person(EEEEE00), Person(FFFFF00), Person(GGGGG00), Person(HHHHH00), Person(IIIII00), Person(JJJJJ00)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{age, ASC), SORT{name, ASC)]}}}
MySqlCursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{age, DESC), SORT{name, ASC)]}: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mysql/MySqlCursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA09), Person(BBBBB09), Person(CCCCC09), Person(DDDDD09), Person(EEEEE09), Person(FFFFF09), Person(GGGGG09), Person(HHHHH09), Person(IIIII09), Person(JJJJJ09)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{age, DESC), SORT{name, ASC)]}}}
MySqlRepositoryPoolSpec.test @Query with DTO: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mysql/MySqlRepositoryPoolSpec.groovy#L1
Expected exception of type 'java.lang.IllegalStateException', but no exception was thrown
MySqlRepositoryPoolSpec.test pageable with join criteria: data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mysql/MySqlRepositoryPoolSpec.groovy#L1
java.lang.IllegalStateException: Unsupported page interface type interface io.micronaut.data.model.CursoredPage
MySqlRepositorySpec.test @Query with DTO: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/mysql/MySqlRepositorySpec.groovy#L1
Expected exception of type 'java.lang.IllegalStateException', but no exception was thrown
MySqlRepositorySpec.test pageable with join criteria: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/mysql/MySqlRepositorySpec.groovy#L1
java.lang.IllegalStateException: Unsupported page interface type interface io.micronaut.data.model.CursoredPage
OracleXECursoredPaginationSpec.test cursored pageable list for sorting null: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/oraclexe/OracleXECursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA00), Person(AAAAA01), Person(AAAAA02), Person(AAAAA03), Person(AAAAA04), Person(AAAAA05), Person(AAAAA06), Person(AAAAA07), Person(AAAAA08), Person(AAAAA09)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[]}}}
OracleXECursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{id, DESC)]}: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/oraclexe/OracleXECursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(ZZZZZ09), Person(ZZZZZ08), Person(ZZZZZ07), Person(ZZZZZ06), Person(ZZZZZ05), Person(ZZZZZ04), Person(ZZZZZ03), Person(ZZZZZ02), Person(ZZZZZ01), Person(ZZZZZ00)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{id, DESC)]}}}
OracleXECursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{name, ASC)]}: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/oraclexe/OracleXECursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(AAAAA00), Person(AAAAA00), Person(AAAAA00), Person(AAAAA01), Person(AAAAA01), Person(AAAAA01), Person(AAAAA02), Person(AAAAA02), Person(AAAAA02), Person(AAAAA03)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{name, ASC)]}}}
OracleXECursoredPaginationSpec.test cursored pageable list for sorting DefaultSort{orderBy=[SORT{name, DESC)]}: data-jdbc/src/test/groovy/io/micronaut/data/jdbc/oraclexe/OracleXECursoredPaginationSpec.groovy#L1
Condition failed with Exception: page.getCursor(0).isPresent() | | | groovy.lang.MissingMethodException: No signature of method: io.micronaut.data.model.DefaultPage.getCursor() is applicable for argument types: (Integer) values: [0] | Possible solutions: getClass() | at io.micronaut.data.tck.tests.AbstractCursoredPageSpec.test cursored pageable list for sorting #sorting(AbstractCursoredPageSpec.groovy:85) DefaultPage{totalSize=780,content=[Person(ZZZZZ09), Person(ZZZZZ09), Person(ZZZZZ09), Person(ZZZZZ08), Person(ZZZZZ08), Person(ZZZZZ08), Person(ZZZZZ07), Person(ZZZZZ07), Person(ZZZZZ07), Person(ZZZZZ06)],pageable=DefaultCursoredPageable{size=10, page=0, currentCursor=null, mode=CURSOR_NEXT, sort=DefaultSort{orderBy=[SORT{name, DESC)]}}}
build (21)
The job was canceled because "_17" failed.
build (21)
The operation was canceled.
build (17)
This job uses deprecated functionality from the 'gradle/gradle-build-action' action. Consult the Job Summary for more details.
build (17)
This build uses the last update of Oracle GraalVM for JDK 17 under the GFTC. More details: https://github.com/marketplace/actions/github-action-for-graalvm#notes-on-oracle-graalvm-for-jdk-17