Commit c3387c99 authored by Paul Asmuth's avatar Paul Asmuth
Browse files

fixes

parent 2ee72d6f
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -132,11 +132,12 @@ void QueryService::renderJSON(
        const auto& row = result_list->getRow(j);

        target->beginArray();
        for (const auto& col : row) {
          target->addString(col);
          if (col != row.back()) {
        for (int i = 0; i < row.size(); ++i) {
          if (i > 0) {
            target->addComma();
          }

          target->addString(row[i]);
        }
        target->endArray();

+0 −1
Original line number Diff line number Diff line
@@ -10,7 +10,6 @@
[ frontend ]
    - embed popup
    - onunload in query editor
    - execution info fix
    - hover flyoouts for button bar in sql editor "Refresh, Change View and use CTRL+enter"

[ release ]
+2 −2
Original line number Diff line number Diff line
@@ -8,8 +8,8 @@ general syntax of the DRAW statement is:
    DRAW <charttype> [ WITH ] <options>;

All SELECT statements that follow a DRAW statement are interpreted as chart data.
The currently implemented charttypes are `AREACHART`, `BARCHART`, `HEATMAP`, 
`HISTOGRAM`, `LINECHART` and `POINTCHART`;
The currently implemented charttypes are `AREACHART`, `BARCHART`, `LINECHART`
and `POINTCHART`;

For example, a simple draw statement to draw a line chart looks like this:

+5 −5
Original line number Diff line number Diff line
@@ -5,10 +5,6 @@ FnordMetric is written in C++. You can either install a binary release or compil
from source. Fnordmetric will install two binaries into your system: `fnordmetric-cli`
and `fnordmetric-server`.

### Binary Releases

Binary Release will be published 2014-12-01

### Compile from source

You need cmake and a modern c++ compiler. Optional dependencies are libmysqlclient.
@@ -16,9 +12,13 @@ You can find the complete [source code on Github](http://github.com/paulasmuth/f

To compile fnordmetric

    $ git clone https://github.com/paulasmuth/fnordmetric.git && cd fnordmetric
    $ git clone https://github.com/paulasmuth/fnordmetric.git && cd fnordmetric/fnordmetric-core
    $ make install

To run the tests

    $ make test

### Binary Releases

_The first binary release will be published 2014-12-01_