HHH-5594 minor improvement
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20701 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
c31d2b093d
commit
f11f7f28b4
|
@ -464,7 +464,7 @@ public class HSQLDialect extends Dialect {
|
|||
}
|
||||
|
||||
/**
|
||||
* Different behaviour for GLOBAL TEMPORARY (1.8) and LOCAL TEMPORARY (2.0)
|
||||
* Different behavior for GLOBAL TEMPORARY (1.8) and LOCAL TEMPORARY (2.0)
|
||||
* <p/>
|
||||
* Possible return values and their meanings:<ul>
|
||||
* <li>{@link Boolean#TRUE} - Unequivocally, perform the temporary table DDL
|
||||
|
@ -653,7 +653,7 @@ public class HSQLDialect extends Dialect {
|
|||
}
|
||||
|
||||
public String toBooleanValueString(boolean bool) {
|
||||
return bool ? "true" : "false";
|
||||
return String.valueOf( bool );
|
||||
}
|
||||
|
||||
public boolean supportsTupleDistinctCounts() {
|
||||
|
|
Loading…
Reference in New Issue