Versions Compared

Key

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

...

  • schema: The list of requested attributes and their data type.
  • type: The type of the output tuple
  • keepInput: If set to true, the key-value is stored in the additional content container of the output tuple.
  • dateFormat: Can be used to format the timestamp. To create a timestamp an attribute of data type STARTTIMESTAMP or ENDTIMESTAMP has to be added to schema.

Example

Code Block
languagepql
titleExample
out = KEYVALUETOTUPLE({
          schema=[['Name', 'Double']],
          type='Measurement',
          keepinput='false' 
        },
        in
      )