1. 28 10月, 2022 1 次提交
  2. 06 4月, 2022 1 次提交
  3. 18 4月, 2019 1 次提交
  4. 16 4月, 2019 1 次提交
    • martianzhang's avatar
      fix index col compare case sensitive bug · c2299c3f
      martianzhang 提交于
        CREATE TABLE test_id (
          ID int,
          PRIMARY KEY (`ID`)
        )
        SELECT * FROM test_id WHERE id=1;
      
        fix explain NULL able column bug
      
        +----+-------------+-------+------------+------+---------------+------+---------+------+------+----------+--------------------------------+
        | id | select_type | table | partitions | type | possible_keys | key  | key_len | ref  | rows | filtered | Extra                          |
        +----+-------------+-------+------------+------+---------------+------+---------+------+------+----------+--------------------------------+
        |  1 | SIMPLE      | NULL  | NULL       | NULL | NULL          | NULL | NULL    | NULL | NULL |     NULL | no matching row in const table |
        +----+-------------+-------+------------+------+---------------+------+---------+------+------+----------+--------------------------------+
      c2299c3f
  5. 15 2月, 2019 1 次提交
  6. 14 2月, 2019 1 次提交
  7. 22 1月, 2019 1 次提交
  8. 16 1月, 2019 1 次提交
  9. 10 1月, 2019 2 次提交
  10. 28 12月, 2018 2 次提交
  11. 25 12月, 2018 1 次提交
  12. 24 12月, 2018 3 次提交
  13. 22 12月, 2018 1 次提交
  14. 19 12月, 2018 1 次提交
  15. 18 12月, 2018 1 次提交
    • martianzhang's avatar
      try to fix #169 · b1c977b1
      martianzhang 提交于
        RES.009 not consider about "and", "or"... Operator in
        BinaryOperationExpr
      b1c977b1
  16. 17 12月, 2018 3 次提交
  17. 14 12月, 2018 1 次提交
    • L
      fix #155 · 87dbcaf3
      liipx 提交于
      a new config arg 'min-cardinality' for index column selection
      87dbcaf3
  18. 12 12月, 2018 1 次提交
    • martianzhang's avatar
      fix #151 · ccdfcb81
      martianzhang 提交于
        bit type not config as int, when two columns compare will
        give ARG.003 suggestion.
      
        fix #154, #157 by the way
      ccdfcb81
  19. 06 12月, 2018 1 次提交
  20. 05 12月, 2018 8 次提交
  21. 04 12月, 2018 1 次提交
  22. 26 11月, 2018 1 次提交
  23. 24 11月, 2018 1 次提交
    • martianzhang's avatar
      fix mac os stdout print buffer truncate · c944ccd0
      martianzhang 提交于
        When set log to console, if fmt.Print larger than 1K
        the output buffer will be truncate. This problem will be
        trigger when set log to stdout, beego and soar both print their
        output into stdout, and this may come into confusing status in
        mac os.
      
        For fixing this problem, we only allow set log to file not.
        SOAR never write SQL suggest into log. Only developer should be
        concern about log, common user have no need of looking up log.
      c944ccd0
  24. 20 11月, 2018 2 次提交
  25. 19 11月, 2018 1 次提交
  26. 14 11月, 2018 1 次提交