[#430] Add support for the Firebird database - Fixed UNION and UNION ALL

This commit is contained in:
Lukas Eder 2012-08-19 14:22:08 +02:00
parent 1684e58107
commit e5e453464b

View File

@ -94,11 +94,12 @@ class Union<R extends Record> extends AbstractSelect<R> {
private final void wrappingParenthesis(RenderContext context, String parenthesis) {
switch (context.getDialect()) {
// Sybase ASE, SQLite and DERBY have some syntax issues with unions.
// Sybase ASE, Derby, Firebird and SQLite have some syntax issues with unions.
// Check out https://issues.apache.org/jira/browse/DERBY-2374
case SQLITE:
case DERBY:
case ASE:
case DERBY:
case FIREBIRD:
case SQLITE:
// [#288] MySQL has a very special way of dealing with UNION's
// So include it as well