Class Mod3Operation
- java.lang.Object
-
- org.datanucleus.store.rdbms.sql.operation.Mod3Operation
-
- All Implemented Interfaces:
SQLOperation
public class Mod3Operation extends Object implements SQLOperation
Implementation of MOD, using SQL MOD function. Results inMOD(expr1, expr2)
with some casts.
-
-
Constructor Summary
Constructors Constructor Description Mod3Operation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SQLExpression
getExpression(SQLExpression expr, SQLExpression expr2)
Return the expression for this SQL function.
-
-
-
Method Detail
-
getExpression
public SQLExpression getExpression(SQLExpression expr, SQLExpression expr2)
Description copied from interface:SQLOperation
Return the expression for this SQL function.- Specified by:
getExpression
in interfaceSQLOperation
- Parameters:
expr
- Left hand expressionexpr2
- Right hand expression- Returns:
- The SQL expression for the operation
-
-