Commit 965ecc0b authored by Paul Asmuth's avatar Paul Asmuth
Browse files

fixes

parent 92a673b3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -120,6 +120,7 @@ MmapPageManager::~MmapPageManager() {

void MmapPageManager::shrinkFile() {
  FileUtil::truncate(filename_, used_bytes_);
  file_size_ = used_bytes_;
}

std::unique_ptr<PageManager::PageRef> MmapPageManager::getPage(
+2 −2
Original line number Diff line number Diff line
@@ -20,11 +20,10 @@
    - no more "UNKNOWN TOKEN"
    - match function names case-insensitively
    - sql time helpers (1hour, etc)
    ---
    - support red/green/blue/hex colors
    - round fn
    - functions: round, mean, max/min, percentile, delta,  
    - better handling of missing/NULL values! in seriesadapter
    - FROM_TIMESTAMP fix in syntax ref

[ frontend ]
    - clean up sql result view
@@ -67,6 +66,7 @@
    - SQL: having
    - SQL: cross joins
    - SQL: subqueries
    - better handling of missing/NULL values! in seriesadapter
    - mysql: re-serialize where condition
    - mysql backend
    - hbase backend
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ Examples:
        select_expr [, select_expr ...]
        [FROM table_references
        [WHERE where_condition]
        [GROUP [OVER TIMEWINDOW(window_expr [, step_expr]) ]
        [GROUP [OVER TIMEWINDOW(time_column, window_expr [, step_expr]) ]
            [ BY {col_name | expr | position} ]
            [ASC | DESC], ...]
        [HAVING where_condition]