mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-13 21:01:01 +08:00
Add schema name
This commit is contained in:
parent
58d4da9b8f
commit
e38b972d84
@ -47,7 +47,7 @@ public class TypesBase extends AbstractBaseTest {
|
||||
c.size(256);
|
||||
}
|
||||
c.execute();
|
||||
RelationalPath<Object> entityPath = new RelationalPathBase<Object>(Object.class, tableName, "", tableName);
|
||||
RelationalPath<Object> entityPath = new RelationalPathBase<Object>(Object.class, tableName, "PUBLIC", tableName);
|
||||
Path<?> columnPath = Expressions.path(entry.getKey(), entityPath, "col");
|
||||
insert(entityPath).set((Path)columnPath, entry.getValue()).execute();
|
||||
new DropTableClause(connection, configuration, tableName).execute();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user