SQLFunctionTemplate不应用查询参数的顺序

时间:2014-07-30 12:54:21

标签: java hibernate jpa

我将问题简化为这个简单的模板:

//I extend the PostgreSQL dialect because I need a non-standard feature.
public class MyDialect extends PostgreSQL82Dialect {

  public MyDialect() {
    //With PostgreSQL, "date2 - date1" returns the number of days between the 2 given dates.
    registerFunction("date_diff", new SQLFunctionTemplate(StandardBasicTypes.LONG, " ((?2) - (?1)) "));
  }
}

在此请求中,我注意到Hibernate不关心?((?2) - (?1))之后的数字

因此,如果我使用:

Expression<Date> date1 = ...
Expression<Date> date2 = ...
em.getCriteriaBuilder().function("date_diff", Integer.class, date1, date2);

调用将返回(date1 - date2)的结果,但我原本预计会(date2 - date1)

是错误还是功能?给参数一个数字有什么意义?

1 个答案:

答案 0 :(得分:1)

我认为问题在于参数绑定。尝试使用SQL Server注册DATE_ADD的函数时,我遇到了类似的问题。这是我的方法调用:

registerFunction("addminutes", new TestSqlFunctionTemplate(TimeMillisType.INSTANCE, "DATEADD(MINUTE, ?2, ?1)"));

在挖掘source code for TemplateRenderer之后,我发现问题在于如何呈现SQL字符串。 render函数传递一个要发送的参数列表,但由于参数被绑定,因此会发送一个List的“?”。表示绑定参数的字符串。在我的示例中使用带有绑定参数的查询时,render函数的输出是:

DATEADD(MINUTE, ?, ?)

没有给出订单的指示。我正在寻找一种替代解决方案,但我还没有遇到任何问题。