Add schema name

This commit is contained in:
Timo Westkämper 2015-01-09 23:32:43 +02:00
parent 58d4da9b8f
commit e38b972d84

View File

@ -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();