Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Documentation for the (now workling) left join

Works basically as a normal Join operator with one exception: elements on the left input will be transfered even if there is no join partner. In this case the schema will be filled with null values.

Parameter

See Join operator.

Example

Code Block
languagejs
themeEclipse
titlePQL
linenumberstrue
bidWnd = ELEMENTWINDOW({SIZE = 1}, bid)
auctionWnd = ELEMENTWINDOW({SIZE = 1}, auction)
out = LEFTJOIN({predicate='id=auction'}, auctionWnd, bidWnd)

Currently not working. Do not use this operator.

Parameter

...