469470471472473474475476477478479
dialect, settings.getDefaultCatalogName(), settings.getDefaultSchemaName() ) ); buf.append(" union "); if ( dialect.supportsUnionAll() ) { buf.append("all "); } } }
477478479480481482483484485486487
} } if ( buf.length() > 2 ) { //chop the last union (all) buf.setLength( buf.length() - ( dialect.supportsUnionAll() ? 11 : 7 ) ); } return buf.append(" )").toString(); }
433434435436437438439440441442443
441442443444445446447448449450451