1. 24 11月, 2017 1 次提交
  2. 23 11月, 2017 14 次提交
  3. 22 11月, 2017 17 次提交
  4. 21 11月, 2017 5 次提交
  5. 20 11月, 2017 3 次提交
    • A
      Fixes StorageJoin's sample block order. · dc6847d5
      Amos Bird 提交于
      Here is a reproducible test case.
      ```
      create table e (s UInt64, t UInt64) Engine = Memory;
      create table v (s UInt64, w Float64, c UInt64) Engine = Join(Any, Inner, s);
      insert into e values (1, 2), (1, 3), (1, 4), (2, 1), (2, 4), (3, 1), (4, 2), (4, 3);
      insert into v values (1, 0.5, 3), (2, 0.5, 2), (3, 1, 1), (4, 0.5, 2);
      select *, w, c from e any inner join v using (s);
      ```
      
      # before this patch
      ```
      ┌─s─┬─t─┬─────w─┬──────────c─┐
      │ 1 │ 2 │ 4e-45 │ 1051372192 │
      │ 1 │ 3 │ 4e-45 │ 1051372192 │
      │ 1 │ 4 │ 4e-45 │ 1051372192 │
      │ 2 │ 1 │ 3e-45 │ 1056964608 │
      │ 2 │ 4 │ 3e-45 │ 1056964608 │
      │ 3 │ 1 │ 1e-45 │ 1065353216 │
      │ 4 │ 2 │ 3e-45 │ 1056964608 │
      │ 4 │ 3 │ 3e-45 │ 1056964608 │
      └───┴───┴───────┴────────────┘
      ```
      # after this patch
      ```
      ┌─s─┬─t─┬───w─┬─c─┐
      │ 1 │ 2 │ 0.5 │ 3 │
      │ 1 │ 3 │ 0.5 │ 3 │
      │ 1 │ 4 │ 0.5 │ 3 │
      │ 2 │ 1 │ 0.5 │ 2 │
      │ 2 │ 4 │ 0.5 │ 2 │
      │ 3 │ 1 │   1 │ 1 │
      │ 4 │ 2 │ 0.5 │ 2 │
      │ 4 │ 3 │ 0.5 │ 2 │
      └───┴───┴─────┴───┘
      ```
      dc6847d5
    • A
      09eed1b2
    • A
      Fixed linking [#CLICKHOUSE-2]. · 07d594c5
      Alexey Milovidov 提交于
      07d594c5