1. 20 1月, 2017 6 次提交
  2. 19 1月, 2017 3 次提交
  3. 18 1月, 2017 3 次提交
  4. 17 1月, 2017 5 次提交
  5. 16 1月, 2017 2 次提交
  6. 15 1月, 2017 1 次提交
  7. 13 1月, 2017 1 次提交
  8. 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
  9. 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
  10. 31 12月, 2016 1 次提交
  11. 29 12月, 2016 1 次提交
  12. 26 12月, 2016 1 次提交
    • Alexey Kuznetsov's avatar
      ISSUE-404 EXPLAIN should process statements with params placeholders. (#405) · 2696d563
      Alexey Kuznetsov 提交于
      * ISSUE-404 EXPLAIN should process statements with params placeholders.
      
      * ISSUE-404 Fixed CommandRemote to support EXPLAIN with params placeholder.
      
      * ISSUE-404 Fixed CommandRemote to support EXPLAIN with params placeholder.
      
      * ISSUE-404 Support EXPLAIN with params placeholder WIP.
      
      * ISSUE-404 Support EXPLAIN with params placeholder WIP.
      
      * ISSUE-404 Support EXPLAIN with params placeholder WIP.
      
      * ISSUE-404 Support EXPLAIN with params placeholder WIP.
      
      * ISSUE-404 Muted tests.
      
      * ISSUE-404 Fixed review notes.
      
      * ISSUE-404 Un-muted tests.
      2696d563
  13. 23 12月, 2016 1 次提交
  14. 22 12月, 2016 1 次提交
  15. 21 12月, 2016 8 次提交
  16. 20 12月, 2016 1 次提交