[jOOQ/jOOQ#7120] SQL Server fix
This commit is contained in:
parent
712b4afad7
commit
6c5bc13cc1
@ -37,17 +37,30 @@
|
||||
*/
|
||||
package org.jooq.impl;
|
||||
|
||||
// ...
|
||||
// ...
|
||||
|
||||
import java.util.EnumSet;
|
||||
|
||||
import org.jooq.Collation;
|
||||
import org.jooq.Context;
|
||||
import org.jooq.Name;
|
||||
// ...
|
||||
import org.jooq.SQLDialect;
|
||||
|
||||
/**
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
final class CollationImpl extends AbstractQueryPart implements Collation {
|
||||
|
||||
private static final long serialVersionUID = 21679143762776222L;
|
||||
private final Name name;
|
||||
private static final long serialVersionUID = 21679143762776222L;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
private final Name name;
|
||||
|
||||
CollationImpl(Name name) {
|
||||
this.name = name;
|
||||
@ -55,6 +68,12 @@ final class CollationImpl extends AbstractQueryPart implements Collation {
|
||||
|
||||
@Override
|
||||
public final void accept(Context<?> ctx) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
ctx.visit(name);
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user