HHH-6096 - H2Dialect should use CACHED option for temporary table creation

This commit is contained in:
Steve Ebersole 2011-04-08 10:25:02 -05:00
parent 38068e1495
commit dfcdab4a33
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ public class H2Dialect extends Dialect {
@Override
public String getCreateTemporaryTableString() {
return "create local temporary table if not exists";
return "create cached local temporary table if not exists";
}
@Override