Streaming in context

By default, the RQL tool will look for a file named .rqlcontext, and will use it as the query context. However, sql also supports streaming in context:

rql --stdin-context

By default, this will accept CSV context.

rql --stdin-context --parse-context=csv

The context will be:

{
    csv: [
    /*CSV elements*/
  ]
}