1. 12 1月, 2018 1 次提交
  2. 09 1月, 2018 2 次提交
  3. 08 1月, 2018 1 次提交
  4. 05 1月, 2018 2 次提交
  5. 04 1月, 2018 2 次提交
  6. 02 1月, 2018 1 次提交
  7. 21 11月, 2017 1 次提交
  8. 21 10月, 2017 5 次提交
  9. 17 10月, 2017 1 次提交
  10. 08 10月, 2017 1 次提交
  11. 07 10月, 2017 2 次提交
  12. 05 10月, 2017 1 次提交
  13. 10 8月, 2017 1 次提交
  14. 25 7月, 2017 1 次提交
  15. 22 7月, 2017 1 次提交
  16. 16 7月, 2017 1 次提交
  17. 08 6月, 2017 1 次提交
  18. 06 6月, 2017 1 次提交
  19. 04 6月, 2017 1 次提交
  20. 01 6月, 2017 2 次提交
  21. 28 4月, 2017 1 次提交
  22. 30 3月, 2017 1 次提交
  23. 27 3月, 2017 1 次提交
    • Philippe Marschall's avatar
      Document recursive common table expressions · aafd35c1
      Philippe Marschall 提交于
      H2 supports recursive common table expressions. Unfortunately they are
      not covered in the official grammar documentation so some people don't
      know about it.
      
      I had to reverse engineer the syntax by looking at the parser source so
      it may contain errors. This commit does contain maybe not the greatest
      documentation ever but I feel it's an improvement over the current
      situation.
      aafd35c1
  24. 26 3月, 2017 1 次提交
    • Philippe Marschall's avatar
      Fix fetch first rows only grammar · b229c223
      Philippe Marschall 提交于
      After some additional test for #476 and more checking with the source
      code I found out that I make a mistake in the grammar. The
      MySQL/Postgres and the Derby/Oracle syntax should be different
      productions.
      b229c223
  25. 25 3月, 2017 1 次提交
    • Philippe Marschall's avatar
      Document fetch first row(s) only · b2cdf84e
      Philippe Marschall 提交于
      Since 1.4.177 H2 supports FETCH FIRST x ROW ONLY however this is not
      reflected in the grammar documentation. This covers all the variations
      of the syntax.
      
      There are 3 `help.csv` but I believe I got the right one. Some of the
      checked in files seem to have been automatically changed and I don't
      know if I should have committed those as well.
      
      Fixes #475
      b2cdf84e
  26. 23 3月, 2017 1 次提交
  27. 15 3月, 2017 1 次提交
  28. 20 1月, 2017 1 次提交
  29. 18 1月, 2017 1 次提交
  30. 17 1月, 2017 1 次提交
  31. 09 1月, 2017 1 次提交
    • Steve McLeod's avatar
      Add index hints (#425) · b2ef093c
      Steve McLeod 提交于
      * Added parsing of table hints
      
      * Implemented USE INDEX hints
      
      * Added docs, tidied up code for submission
      
      * Added docs, tidied up code for submission
      
      * Removed used of final static field that would cause problems with Tomcat class unloading
      
      * Removed used of final static field that would cause problems with Tomcat class unloading
      
      * A table with no index hints now has indexHints == null, instead of an employ instance of IndexHints. For the common case of no index hints, this will prevent some unnecessary object creation.
      
      * Index Hints now is backward compatible with using the "USE" as a table alias
      
      * Added TestIndexHints to list of all tests
      
      * Added index hints to text generated by TableFilter.getPlanSQL();
      
      * Improved field names (a field called indexList was actually a set);
      Added test for ensuring getPlanSQL lists index hints in correct order
      
      * Improved unit test for making sure getPlanSQL renders index hints list in correct order
      b2ef093c