Versions Compared

Key

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

...

Execute the script and show the output as table. After some time, you should see only auctions opened by the seller with the id 1

Image RemovedImage Added

In this script you define a SELECT-Operator. In Procedural Query Language (PQL) each operator is identified by a name. Inside the operator there are two parts. The first part is the configuration inbetween "{" and "}". The seconds part is the source part, i.e. here the sources are listed that should deliver the input.

...

If you look at the query plan, you will see, the following

Image RemovedImage Added

The filter step is done by the top most operator Select.

...

Code Block
out = MAP({EXPRESSIONS=['id',['id+id','DoubleId'],['dolToEur(initialbid)','Bid €']]},nexmark:auction)

...