mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#2367 - Modify ebean-ddl-generator to not have a dependency on ImportedId
Effectively remove the import io.ebeaninternal.server.deploy.id.ImportedId; dependency
This commit is contained in:
@@ -545,6 +545,13 @@ public class BeanPropertyAssocOne<T> extends BeanPropertyAssoc<T> implements STr
|
||||
return importedId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Find and return a matching imported id property.
|
||||
*/
|
||||
public BeanProperty findMatchImport(String dbCol) {
|
||||
return importedId.findMatchImport(dbCol);
|
||||
}
|
||||
|
||||
private String deriveWhereParentIdSql(boolean inClause) {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
for (int i = 0; i < exportedProperties.length; i++) {
|
||||
|
||||
Reference in New Issue
Block a user