querydsl/querydsl-sql/src/main/java/com/mysema/query/sql/DerbyTemplates.java
2012-06-29 14:45:28 +03:00

79 lines
2.6 KiB
Java

/*
* Copyright 2011, Mysema Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.mysema.query.sql;
import com.mysema.query.QueryMetadata;
import com.mysema.query.QueryModifiers;
import com.mysema.query.types.Ops;
/**
* DerbyTemplates is an SQL dialect for Derby
*
* @author tiwe
*
*/
public class DerbyTemplates extends SQLTemplates {
private String limitOffsetTemplate = "\noffset {1s} rows fetch next {0s} rows only";
private String limitTemplate = "\nfetch first {0s} rows only";
private String offsetTemplate = "\noffset {0s} rows";
public DerbyTemplates() {
this('\\',false);
}
public DerbyTemplates(boolean quote) {
this('\\',quote);
}
public DerbyTemplates(char escape, boolean quote) {
super("\"", escape, quote);
setDummyTable("sysibm.sysdummy1");
addClass2TypeMappings("smallint", Byte.class);
setAutoIncrement(" generated always as identity");
add(Ops.CONCAT, "varchar({0} || {1})");
add(Ops.DateTimeOps.DAY_OF_MONTH, "day({0})");
add(NEXTVAL, "next value for {0s}");
// case for eq
add(Ops.CASE_EQ, "case {1} end");
add(Ops.CASE_EQ_WHEN, "when {0} = {1} then {2} {3}");
add(Ops.CASE_EQ_ELSE, "else {0}");
add(Ops.MathOps.ROUND, "floor({0})"); // FIXME
add(Ops.MathOps.POWER, "exp({1} * log({0}))");
add(Ops.MathOps.LN, "log({0})");
add(Ops.MathOps.LOG, "(log({0}) / log({1}))");
add(Ops.MathOps.COTH, "(exp({0} * 2) + 1) / (exp({0} * 2) - 1)");
// add(Ops.DateTimeOps.DATE_ADD, "date_add({0}, INTERVAL {1} {2s})");
}
protected void serializeModifiers(QueryMetadata metadata, SerializationContext context) {
QueryModifiers mod = metadata.getModifiers();
if (mod.getLimit() == null) {
context.handle(offsetTemplate, mod.getOffset());
}else if (mod.getOffset() == null) {
context.handle(limitTemplate, mod.getLimit());
} else {
context.handle(limitOffsetTemplate, mod.getLimit(), mod.getOffset());
}
}
}