From a9b62b059946929f13a29de45afd9dd6fab6c1cf Mon Sep 17 00:00:00 2001 From: eolivelli Date: Tue, 13 Feb 2018 10:30:58 +0100 Subject: [PATCH] fix javadocs --- .../java/herddb/sql/expressions/CompiledSQLExpression.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/herddb-core/src/main/java/herddb/sql/expressions/CompiledSQLExpression.java b/herddb-core/src/main/java/herddb/sql/expressions/CompiledSQLExpression.java index b013f26fc..7489889cb 100644 --- a/herddb-core/src/main/java/herddb/sql/expressions/CompiledSQLExpression.java +++ b/herddb-core/src/main/java/herddb/sql/expressions/CompiledSQLExpression.java @@ -19,6 +19,7 @@ */ package herddb.sql.expressions; +import herddb.model.Predicate; import herddb.model.StatementEvaluationContext; import herddb.model.StatementExecutionException; import java.util.Collections; @@ -72,8 +73,7 @@ public default CompiledSQLExpression cast(int type) { } /** - * the function {@link Predicate#matchesRawPrimaryKey(herddb.utils.Bytes, herddb.model.StatementEvaluationContext) - * } + * the function {@link Predicate#matchesRawPrimaryKey(herddb.utils.Bytes, herddb.model.StatementEvaluationContext)} * works on a projection of the table wich contains only the pk fields of * the table for instance if the predicate wants to access first element of * the pk, and this field is the 3rd in the column list then you will find