1. 11 Sep, 2018 1 commit
  2. 10 Sep, 2018 2 commits
  3. 09 Sep, 2018 2 commits
    • Sergey Vojtovich's avatar
      Fixed c++11 narrowing error · a0dfefb0
      Sergey Vojtovich authored
      sql/table.cc:8561:42: error: non-constant-expression cannot be narrowed
                                   from type 'uint' (aka 'unsigned int') to
                                   '__darwin_suseconds_t' (aka 'int') in
                                   initializer list [-Wc++11-narrowing]
        timeval end_time= {thd->query_start(), uint(thd->query_start_sec_part())};
                                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      sql/table.cc:8561:42: note: insert an explicit cast to silence this issue
        timeval end_time= {thd->query_start(), uint(thd->query_start_sec_part())};
                                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                                               static_cast<__darwin_suseconds_t>( )
      a0dfefb0
    • Sergey Vojtovich's avatar
      Enable C++11 · d9613b75
      Sergey Vojtovich authored
      d9613b75
  4. 07 Sep, 2018 9 commits
  5. 06 Sep, 2018 6 commits
  6. 05 Sep, 2018 2 commits
  7. 04 Sep, 2018 1 commit
  8. 03 Sep, 2018 1 commit
  9. 02 Sep, 2018 2 commits
  10. 01 Sep, 2018 2 commits
  11. 31 Aug, 2018 12 commits