Versions Compared

Key

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

...

Code Block
themeEclipse
languagesql
titleXLS Protocol Handler
linenumberstrue
CREATE STREAM xls (symbol String, points Double)   
    WRAPPER 'GenericPull'
    PROTOCOL 'XLS'
    TRANSPORT 'File'
    DATAHANDLER 'Tuple'
    OPTIONS ( 'filename' '/home/user/file.xls')

CREATE SINK writeout (symbol STRINGString, points DOUBLEDouble)
    WRAPPER 'GenericPush'
    PROTOCOL 'XLS'
    TRANSPORT 'File'
    DATAHANDLER 'Tuple'
    OPTIONS ( 'filename' '/home/user/file.xls')
STREAM TO writeout SELECT * FROM input