Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • predicate: The predicate to evaluate over each incoming tuple
  • heartbeatrate: The operator can send a heart beat for filtered element. Use this value to set the rate at which elements are send (1 means: Send a heartbeat for every element that is removed from the stream, i.e. the predicate is false)

Example

PQL
Code Block
languagejavascript
themeEclipse
languagejavascript
titleSelect Operator
linenumberstrue
output = SELECT({ 
                 predicate='price > 100' 
                }, input)
CQL
Code Block
languagesql
themeEclipselanguagesql
titleSelect Operator
linenumberstrue
SELECT * FROM input WHERE price > 100