1. 17 10月, 2019 2 次提交
  2. 08 10月, 2019 2 次提交
  3. 25 9月, 2019 1 次提交
  4. 23 9月, 2019 3 次提交
  5. 17 9月, 2019 1 次提交
  6. 16 9月, 2019 3 次提交
  7. 06 9月, 2019 1 次提交
    • martianzhang's avatar
      fix #226 · fedefa55
      martianzhang 提交于
        update table1 set a = ( select a from table2 where b=1 and c=2) and b=1 where d=2
        update table1 set a = ( select a from table2 where b=1 and c=2), b=1, c=2 where d=2
      
        replace test-cli percent number with n% for CI
      fedefa55
  8. 02 9月, 2019 1 次提交
  9. 30 8月, 2019 1 次提交
  10. 29 8月, 2019 1 次提交
  11. 28 8月, 2019 2 次提交
  12. 27 8月, 2019 1 次提交
  13. 22 8月, 2019 1 次提交
  14. 19 8月, 2019 1 次提交
  15. 14 8月, 2019 1 次提交
    • martianzhang's avatar
      Fix ARG.003 suggest bug · b4744acf
      martianzhang 提交于
      - Fix RuleImplicitConversion(ARG.003) with INT and DECIMAL
      - Fix RuleImplicitConversion duplicate suggest when use IN () operator
      b4744acf
  16. 31 7月, 2019 2 次提交
    • martianzhang's avatar
      update vendor · ed7d982a
      martianzhang 提交于
      ed7d982a
    • martianzhang's avatar
      fix #213 · 441b0e88
      martianzhang 提交于
        fix #213 CLA.001 NO WHERE CONDITION
        fix PRIMARY key append to multi column index
      441b0e88
  17. 03 7月, 2019 1 次提交
  18. 12 6月, 2019 1 次提交
  19. 30 5月, 2019 1 次提交
  20. 28 5月, 2019 4 次提交
  21. 24 5月, 2019 1 次提交
  22. 20 5月, 2019 2 次提交
  23. 25 4月, 2019 1 次提交
  24. 22 4月, 2019 1 次提交
  25. 18 4月, 2019 2 次提交
  26. 16 4月, 2019 2 次提交
    • martianzhang's avatar
      fix test-cli golden diff · ba20f34c
      martianzhang 提交于
      ba20f34c
    • 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