1. 25 9月, 2013 2 次提交
    • J
      Removed S0 from BadSqlGrammarException codes · d9b62038
      Juergen Hoeller 提交于
      S0 doesn't seem to be universally used for SQL grammar problems: see MS SQL Server's RAISERROR. This was reported years back; not sure why the fix didn't actually appear in the codebase back then.
      
      Issue: SPR-10902
      d9b62038
    • F
      Allow cursor returns from SQL functions · dac6aaec
      Fedor Bobin 提交于
      Update CallMetaDataContext to use the metaDataProvider
      createDefaultOutParameter method when creating a SqlOutParameter as
      a result of a SQL function call.
      
      This change allows Spring to support Oracle cursor types when returned
      from functions.
      
      Issue: SPR-10606
      dac6aaec
  2. 23 8月, 2013 3 次提交
  3. 07 8月, 2013 1 次提交
  4. 24 7月, 2013 1 次提交
  5. 26 6月, 2013 2 次提交
  6. 16 5月, 2013 1 次提交
  7. 14 5月, 2013 1 次提交
  8. 08 5月, 2013 1 次提交
  9. 02 5月, 2013 1 次提交
  10. 19 3月, 2013 4 次提交
  11. 07 3月, 2013 1 次提交
  12. 02 3月, 2013 3 次提交
  13. 01 3月, 2013 2 次提交
  14. 22 2月, 2013 1 次提交
  15. 16 2月, 2013 1 次提交
  16. 10 2月, 2013 1 次提交
  17. 09 2月, 2013 1 次提交
  18. 07 2月, 2013 1 次提交
  19. 05 2月, 2013 1 次提交
    • P
      Polish formatting · f464a45b
      Phillip Webb 提交于
      Minor formatting polish across that codebase. Primarily fixing
      whitespace issues.
      f464a45b
  20. 30 1月, 2013 1 次提交
  21. 26 1月, 2013 2 次提交
  22. 24 1月, 2013 1 次提交
  23. 19 1月, 2013 1 次提交
  24. 18 1月, 2013 1 次提交
  25. 12 1月, 2013 1 次提交
  26. 04 1月, 2013 4 次提交
    • C
      Remove duplicate test resources · 15e9fe63
      Chris Beams 提交于
      The files deleted in this commit existed in identical form in two places
      within a given module; typically in src/test/java and
      src/test/resources. The version within src/test/resources has been
      favored in all cases.
      
      This change was prompted by associated Eclipse warnings, which have now
      been quelled.
      
      Issue: SPR-9431
      15e9fe63
    • C
      Fix warnings due to unused import statements · 51b30768
      Chris Beams 提交于
      Issue: SPR-9431
      51b30768
    • P
      Remove duplicate test classes · 42b5d6dd
      Phillip Webb 提交于
      Prior to this commit many test utility classes and sample beans were
      duplicated across projects. This was previously necessary due to the
      fact that dependent test sources were not shared during a gradle
      build. Since the introduction of the 'test-source-set-dependencies'
      gradle plugin this is no longer the case.
      
      This commit attempts to remove as much duplicate code as possible,
      co-locating test utilities and beans in the most suitable project.
      For example, test beans are now located in the 'spring-beans'
      project.
      
      Some of the duplicated code had started to drift apart when
      modifications made in one project where not ported to others. All
      changes have now been consolidated and when necessary existing tests
      have been refactored to account for the differences.
      
      Conflicts:
      	spring-beans/src/test/java/org/springframework/beans/factory/ConcurrentBeanFactoryTests.java
      	spring-beans/src/test/java/org/springframework/beans/factory/support/BeanFactoryGenericsTests.java
      	spring-beans/src/test/java/org/springframework/beans/support/PagedListHolderTests.java
      42b5d6dd
    • C
      Segregate add'l long-running and performance tests · 68e3b777
      Chris Beams 提交于
       - Add TestGroup#LONG_RUNNING to distinguish from #PERFORMANCE, the
         former being tests that simply take a long time vs the latter being
         tests that are actually dependent on certain actions happening within
         a given time window and are thefore CPU-dependent.
      
      Issue: SPR-9984
      68e3b777