catap / jaql

Jaql is a query language designed for Javascript Object Notation (JSON), a data format that has become popular because of its simplicity and modeling flexibility. Jaql is primarily used to analyze large-scale semi-structured data. Core features include user extensibility and parallelism. In addition to modeling semi-structured data, JSON simplifies extensibility. Hadoop's Map-Reduce is used for parallelism.
2 stars 0 forks source link

Output format difference between jaql shell and write function #63

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Launch jaql shell. Input "[[1,2]];". The output for jaql shell is as:
[
  [
    1,
    2
  ]
]

Input "[[1,2]]->write(file("f"));". The content of file "f" is as:
[[
  1,
  2
]]

We should have a consistent output format for both jaql shell and write
function.

Original issue reported on code.google.com by yaojingguo@gmail.com on 14 Oct 2009 at 2:38

GoogleCodeExporter commented 8 years ago

Original comment by vuk.erce...@gmail.com on 25 Sep 2010 at 6:39