460461462463464465466467468469470
dialect, settings.getDefaultCatalogName(), settings.getDefaultSchemaName() ) ); buf.append(" union "); if ( dialect.supportsUnionAll() ) { buf.append("all "); } } }
468469470471472473474475476477478
} } if ( buf.length() > 2 ) { //chop the last union (all) buf.setLength( buf.length() - ( dialect.supportsUnionAll() ? 11 : 7 ) ); } return buf.append(" )").toString(); }
432433434435436437438439440441442
440441442443444445446447448449450
450451452453454455456457458459460
458459460461462463464465466467468
462463464465466467468469470471472
470471472473474475476477478479480