-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HHH-18728 - Allow mixed discriminator-value mappings for ANY
HHH-18729 - Allow custom strategy for implicit discriminator-value determination for ANY
- Loading branch information
Showing
36 changed files
with
976 additions
and
684 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 0 additions & 6 deletions
6
.../main/asciidoc/userguide/chapters/domain/extras/associations/associations-any-example.sql
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
...ciidoc/userguide/chapters/domain/extras/associations/associations-any-persist-example.sql
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
...asciidoc/userguide/chapters/domain/extras/associations/associations-any-query-example.sql
This file was deleted.
Oops, something went wrong.
11 changes: 6 additions & 5 deletions
11
...ciidoc/userguide/chapters/domain/extras/associations/associations-many-to-any-example.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
CREATE TABLE property_repository ( | ||
CREATE TABLE loans ( | ||
id BIGINT NOT NULL, | ||
..., | ||
PRIMARY KEY ( id ) | ||
) | ||
|
||
CREATE TABLE repository_properties ( | ||
repository_id BIGINT NOT NULL, | ||
property_type VARCHAR(255), | ||
property_id BIGINT NOT NULL | ||
CREATE TABLE loan_payments ( | ||
loan_fk BIGINT NOT NULL, | ||
payment_type VARCHAR(255), | ||
payment_fk BIGINT NOT NULL | ||
) |
15 changes: 0 additions & 15 deletions
15
...serguide/chapters/domain/extras/associations/associations-many-to-any-persist-example.sql
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
.../userguide/chapters/domain/extras/associations/associations-many-to-any-query-example.sql
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.