1. 09 2月, 2017 2 次提交
  2. 06 2月, 2017 2 次提交
  3. 02 2月, 2017 1 次提交
  4. 30 1月, 2017 1 次提交
  5. 26 1月, 2017 1 次提交
    • Ulrich Wielant's avatar
      Use System.nanoTime() to check timeouts · f3a1598b
      Ulrich Wielant 提交于
      System.currentTimeMillis() is influenced by system time corrections
      whereas System.nanoTime() is strongly sequential. So it is better to use
      System.nanoTime() when checking for timeouts and elapsed time.
      f3a1598b
  6. 23 1月, 2017 1 次提交
  7. 22 1月, 2017 1 次提交
  8. 21 1月, 2017 1 次提交
  9. 20 1月, 2017 7 次提交
  10. 19 1月, 2017 4 次提交
  11. 18 1月, 2017 3 次提交
  12. 17 1月, 2017 5 次提交
  13. 16 1月, 2017 2 次提交
  14. 15 1月, 2017 1 次提交
  15. 13 1月, 2017 1 次提交
  16. 12 1月, 2017 3 次提交
    • Philippe Marschall's avatar
      Implement createArrayOf and setArray (#418) · 790cf87b
      Philippe Marschall 提交于
      Currently java.sql.Array is only supported when returned from the
      database. Passing arrays to the database is not supported.
      Connection#createArrayOf, PreparedStatement#setArray and
      PreparedStatement#setObject with a java.sql.Array are not supported.
      
      This pull requests implements passing java.sql.Array objects to the
      database and includes the following changes:
      
       - implement Connection#createArrayOf
       - implement PreparedStatement#setArray
       - implement array support in ResultSet#getObject
       - implement conversion from java.sql.Array to Value
       - update DataType#convertTo to support arrays as well
       - add tests for #createArrayOf, #setArray and #setObject
       - add tests for #getObject with an array argument
       - remove the test for Connection#createArrayOf being unsupported
       - remove the test for PreparedStatement#setArray being unsupported
      
      The typeName passed to #createArrayOf is ignored, this is in accordance
      with JdbcArray#getBaseTypeName returning "NULL" and
      JdbcArray#getBaseType returning Types.NULL even if the backing array is
      homogeneous.
      790cf87b
    • Noel Grandin's avatar
      remove files accidentally committed · b7cd026b
      Noel Grandin 提交于
      b7cd026b
    • Noel Grandin's avatar
      Fixed bug in metadata locking · 6b8fc09d
      Noel Grandin 提交于
      6b8fc09d
  17. 09 1月, 2017 2 次提交
    • Don McNamara's avatar
      move mysql functions back to main directory. (#427) · 193ce910
      Don McNamara 提交于
      193ce910
    • 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
  18. 31 12月, 2016 1 次提交
  19. 29 12月, 2016 1 次提交