org.makumba.providers.query.mql
Class NowFunction

java.lang.Object
  extended by org.makumba.providers.query.mql.MQLFunctionDefinition
      extended by org.makumba.providers.query.mql.NowFunction

 class NowFunction
extends MQLFunctionDefinition


Field Summary
 
Fields inherited from class org.makumba.providers.query.mql.MQLFunctionDefinition
argumentCount
 
Constructor Summary
NowFunction()
           
 
Method Summary
 NameResolver.TextList render(List<NameResolver.TextList> args)
          This default implementation just renders the function by concatenating the function name and all arguments; for functions that need to modify the name, the argument order, number of arguments, etc., this method provides an entry point to rewrite it (possibly in a specific SQL dialect).
 
Methods inherited from class org.makumba.providers.query.mql.MQLFunctionDefinition
getArguments, getName, getReturnType, getSQLCommand, throwUnexpectedArguments, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NowFunction

public NowFunction()
Method Detail

render

public NameResolver.TextList render(List<NameResolver.TextList> args)
Description copied from class: MQLFunctionDefinition
This default implementation just renders the function by concatenating the function name and all arguments; for functions that need to modify the name, the argument order, number of arguments, etc., this method provides an entry point to rewrite it (possibly in a specific SQL dialect).

Overrides:
render in class MQLFunctionDefinition