Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Left join returns incorrect number of records #2965

Merged
merged 8 commits into from
Jun 4, 2024
Prev Previous commit
Next Next commit
Fixed one more test for H2
radovanradic committed Jun 3, 2024
commit d18ce519f5b2a102a3b0fd0af47da9209ba2a048
Original file line number Diff line number Diff line change
@@ -423,9 +423,9 @@ class Emb {
def employeeGroupSql = builder.buildCreateTableStatements(employeeGroupEntity)
then:"No join table is created"
employeeSql.length == 1
employeeSql[0] == 'CREATE TABLE `employee` (`id` BIGINT AUTO_INCREMENT PRIMARY KEY,`name` VARCHAR(255) NOT NULL,`category_id` BIGINT NOT NULL,`employer_id` BIGINT NOT NULL);'
employeeSql[0] == 'CREATE TABLE `employee` (`id` BIGINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,`name` VARCHAR(255) NOT NULL,`category_id` BIGINT NOT NULL,`employer_id` BIGINT NOT NULL);'
employeeGroupSql.length == 1
employeeGroupSql[0] == 'CREATE TABLE `employee_group` (`id` BIGINT AUTO_INCREMENT PRIMARY KEY,`name` VARCHAR(255) NOT NULL,`category_id` BIGINT NOT NULL,`employer_id` BIGINT NOT NULL);'
employeeGroupSql[0] == 'CREATE TABLE `employee_group` (`id` BIGINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,`name` VARCHAR(255) NOT NULL,`category_id` BIGINT NOT NULL,`employer_id` BIGINT NOT NULL);'
}

void "test create ManyToMany table with schema"() {

Unchanged files with check annotations Beta

/*

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2NoTxOpsRepositorySpec.groovy

GitHub Actions / Java CI / Test Report (17)

H2NoTxOpsRepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@60706f6d, io.micronaut.data.tck.entities.Student@c68a9eb]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@60706f6d, io.micronaut.data.tck.entities.Student@c68a9eb]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2NoTxOpsRepositorySpec.groovy

GitHub Actions / Java CI / Test Report (21)

H2NoTxOpsRepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@6b347c96, io.micronaut.data.tck.entities.Student@801fd06]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@6b347c96, io.micronaut.data.tck.entities.Student@801fd06]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
/*

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2RepositorySpec.groovy

GitHub Actions / Java CI / Test Report (17)

H2RepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@3eec1f7a, io.micronaut.data.tck.entities.Student@6a51a15f]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@3eec1f7a, io.micronaut.data.tck.entities.Student@6a51a15f]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2RepositorySpec.groovy

GitHub Actions / Java CI / Test Report (17)

H2RepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@51498122, io.micronaut.data.tck.entities.Student@3583c919]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@51498122, io.micronaut.data.tck.entities.Student@3583c919]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2RepositorySpec.groovy

GitHub Actions / Java CI / Test Report (21)

H2RepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@14f3eba1, io.micronaut.data.tck.entities.Student@69718b8c]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@14f3eba1, io.micronaut.data.tck.entities.Student@69718b8c]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/h2/H2RepositorySpec.groovy

GitHub Actions / Java CI / Test Report (21)

H2RepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@474008aa, io.micronaut.data.tck.entities.Student@35e68221]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@474008aa, io.micronaut.data.tck.entities.Student@35e68221]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
/*

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/mariadb/MariaRepositorySpec.groovy

GitHub Actions / Java CI / Test Report (17)

MariaRepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@6e85f4cf, io.micronaut.data.tck.entities.Student@1c20832e]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@6e85f4cf, io.micronaut.data.tck.entities.Student@1c20832e]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/mariadb/MariaRepositorySpec.groovy

GitHub Actions / Java CI / Test Report (21)

MariaRepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@7a915d9f, io.micronaut.data.tck.entities.Student@12e7543c]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@7a915d9f, io.micronaut.data.tck.entities.Student@12e7543c]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
/*

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/mysql/MySqlRepositorySpec.groovy

GitHub Actions / Java CI / Test Report (17)

MySqlRepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@337fb3e7, io.micronaut.data.tck.entities.Student@5fbae6f3]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@337fb3e7, io.micronaut.data.tck.entities.Student@5fbae6f3]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/mysql/MySqlRepositorySpec.groovy

GitHub Actions / Java CI / Test Report (17)

MySqlRepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@61fc848c, io.micronaut.data.tck.entities.Student@32a806ef]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@61fc848c, io.micronaut.data.tck.entities.Student@32a806ef]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/mysql/MySqlRepositorySpec.groovy

GitHub Actions / Java CI / Test Report (21)

MySqlRepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@6830b8eb, io.micronaut.data.tck.entities.Student@4f852ab3]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@6830b8eb, io.micronaut.data.tck.entities.Student@4f852ab3]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/mysql/MySqlRepositorySpec.groovy

GitHub Actions / Java CI / Test Report (21)

MySqlRepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@7edb44de, io.micronaut.data.tck.entities.Student@12955510]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@7edb44de, io.micronaut.data.tck.entities.Student@12955510]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
/*

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/oraclexe/OracleXERepositorySpec.groovy

GitHub Actions / Java CI / Test Report (17)

OracleXERepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@5e6b637f, io.micronaut.data.tck.entities.Student@59143fac]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@5e6b637f, io.micronaut.data.tck.entities.Student@59143fac]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/oraclexe/OracleXERepositorySpec.groovy

GitHub Actions / Java CI / Test Report (17)

OracleXERepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@53e1f9fd, io.micronaut.data.tck.entities.Student@6e6fc466]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@53e1f9fd, io.micronaut.data.tck.entities.Student@6e6fc466]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/oraclexe/OracleXERepositorySpec.groovy

GitHub Actions / Java CI / Test Report (21)

OracleXERepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@bafc178, io.micronaut.data.tck.entities.Student@f06fc86]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@bafc178, io.micronaut.data.tck.entities.Student@f06fc86]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/oraclexe/OracleXERepositorySpec.groovy

GitHub Actions / Java CI / Test Report (21)

OracleXERepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@6debf9fd, io.micronaut.data.tck.entities.Student@e5c5dc8]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@6debf9fd, io.micronaut.data.tck.entities.Student@e5c5dc8]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
/*

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/postgres/PostgresRepositorySpec.groovy

GitHub Actions / Java CI / Test Report (17)

PostgresRepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@6913c271, io.micronaut.data.tck.entities.Student@40e6a92a]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@6913c271, io.micronaut.data.tck.entities.Student@40e6a92a]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/postgres/PostgresRepositorySpec.groovy

GitHub Actions / Java CI / Test Report (17)

PostgresRepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@6048d75, io.micronaut.data.tck.entities.Student@34c7f7aa]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@6048d75, io.micronaut.data.tck.entities.Student@34c7f7aa]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/postgres/PostgresRepositorySpec.groovy

GitHub Actions / Java CI / Test Report (21)

PostgresRepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@7ace9990, io.micronaut.data.tck.entities.Student@407552d5]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@7ace9990, io.micronaut.data.tck.entities.Student@407552d5]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/postgres/PostgresRepositorySpec.groovy

GitHub Actions / Java CI / Test Report (21)

PostgresRepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@699e31fc, io.micronaut.data.tck.entities.Student@533a3425]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@699e31fc, io.micronaut.data.tck.entities.Student@533a3425]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
/*

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/sqlserver/SqlServerRepositorySpec.groovy

GitHub Actions / Java CI / Test Report (17)

SqlServerRepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@65434ab7, io.micronaut.data.tck.entities.Student@4aa48bdb]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@65434ab7, io.micronaut.data.tck.entities.Student@4aa48bdb]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/sqlserver/SqlServerRepositorySpec.groovy

GitHub Actions / Java CI / Test Report (17)

SqlServerRepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@5453f37a, io.micronaut.data.tck.entities.Student@7cf03fbf]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@5453f37a, io.micronaut.data.tck.entities.Student@7cf03fbf]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/sqlserver/SqlServerRepositorySpec.groovy

GitHub Actions / Java CI / Test Report (21)

SqlServerRepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@6f51e2d3, io.micronaut.data.tck.entities.Student@7e0a76c]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@6f51e2d3, io.micronaut.data.tck.entities.Student@7e0a76c]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-jdbc/src/test/groovy/io/micronaut/data/jdbc/sqlserver/SqlServerRepositorySpec.groovy

GitHub Actions / Java CI / Test Report (21)

SqlServerRepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@b1f12c7, io.micronaut.data.tck.entities.Student@77529f2b]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@b1f12c7, io.micronaut.data.tck.entities.Student@77529f2b]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
/*

Check failure on line 1 in data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mariadb/MariaDbRepositoryPoolSpec.groovy

GitHub Actions / Java CI / Test Report (17)

MariaDbRepositoryPoolSpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@7f80e4ba, io.micronaut.data.tck.entities.Student@42d28509]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@7f80e4ba, io.micronaut.data.tck.entities.Student@42d28509]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mariadb/MariaDbRepositoryPoolSpec.groovy

GitHub Actions / Java CI / Test Report (21)

MariaDbRepositoryPoolSpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@6984e354, io.micronaut.data.tck.entities.Student@1c226852]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@6984e354, io.micronaut.data.tck.entities.Student@1c226852]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
/*

Check failure on line 1 in data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mariadb/MariaDbRepositorySpec.groovy

GitHub Actions / Java CI / Test Report (17)

MariaDbRepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@46aa2d50, io.micronaut.data.tck.entities.Student@496e5abb]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@46aa2d50, io.micronaut.data.tck.entities.Student@496e5abb]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mariadb/MariaDbRepositorySpec.groovy

GitHub Actions / Java CI / Test Report (21)

MariaDbRepositorySpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@721582a2, io.micronaut.data.tck.entities.Student@412fcb5e]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@721582a2, io.micronaut.data.tck.entities.Student@412fcb5e]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
/*

Check failure on line 1 in data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mysql/MySqlRepositoryPoolSpec.groovy

GitHub Actions / Java CI / Test Report (17)

MySqlRepositoryPoolSpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@4cbcd6ef, io.micronaut.data.tck.entities.Student@51cb5c85]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@4cbcd6ef, io.micronaut.data.tck.entities.Student@51cb5c85]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/mysql/MySqlRepositoryPoolSpec.groovy

GitHub Actions / Java CI / Test Report (21)

MySqlRepositoryPoolSpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@61f87f52, io.micronaut.data.tck.entities.Student@2b99fa9f]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@61f87f52, io.micronaut.data.tck.entities.Student@2b99fa9f]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
/*

Check failure on line 1 in data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/oraclexe/OracleXERepositoryPoolSpec.groovy

GitHub Actions / Java CI / Test Report (17)

OracleXERepositoryPoolSpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@7beafda7, io.micronaut.data.tck.entities.Student@64b1f582]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@7beafda7, io.micronaut.data.tck.entities.Student@64b1f582]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/oraclexe/OracleXERepositoryPoolSpec.groovy

GitHub Actions / Java CI / Test Report (21)

OracleXERepositoryPoolSpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@7f35d5b0, io.micronaut.data.tck.entities.Student@364532b3]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@7f35d5b0, io.micronaut.data.tck.entities.Student@364532b3]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
/*

Check failure on line 1 in data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/postgres/PostgresRepositoryPoolSpec.groovy

GitHub Actions / Java CI / Test Report (17)

PostgresRepositoryPoolSpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@4f07d298, io.micronaut.data.tck.entities.Student@1b3ceb6c]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@4f07d298, io.micronaut.data.tck.entities.Student@1b3ceb6c]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/postgres/PostgresRepositoryPoolSpec.groovy

GitHub Actions / Java CI / Test Report (21)

PostgresRepositoryPoolSpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@3d9aff8a, io.micronaut.data.tck.entities.Student@4fea68ec]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@3d9aff8a, io.micronaut.data.tck.entities.Student@4fea68ec]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
/*

Check failure on line 1 in data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/sqlserver/SqlServerRepositoryPoolSpec.groovy

GitHub Actions / Java CI / Test Report (17)

SqlServerRepositoryPoolSpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@2f1b66b3, io.micronaut.data.tck.entities.Student@4ddeea05]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@2f1b66b3, io.micronaut.data.tck.entities.Student@4ddeea05]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)

Check failure on line 1 in data-r2dbc/src/test/groovy/io/micronaut/data/r2dbc/sqlserver/SqlServerRepositoryPoolSpec.groovy

GitHub Actions / Java CI / Test Report (21)

SqlServerRepositoryPoolSpec.test ManyToMany join table with mappedBy

Condition not satisfied: students.size() == 1 | | | | 2 false [io.micronaut.data.tck.entities.Student@15577658, io.micronaut.data.tck.entities.Student@13d8ae40]
Raw output
Condition not satisfied:

students.size() == 1
|        |      |
|        2      false
[io.micronaut.data.tck.entities.Student@15577658, io.micronaut.data.tck.entities.Student@13d8ae40]

	at io.micronaut.data.tck.tests.AbstractRepositorySpec.test ManyToMany join table with mappedBy(AbstractRepositorySpec.groovy:2566)
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");