Commit Graph

2333 Commits

Author SHA1 Message Date
John Tims
ea3efae5d5 Querydsl 4.4.0-SNAPSHOT 2020-06-03 06:45:31 -06:00
John Tims
700333a904
Merge pull request #1590 from querydsl/i1411-oracle-datediff
Fix Oracle datediff
2020-05-31 16:46:17 -06:00
John Tims
63a8237474 Exclude addMonths test for Oracle 2020-05-31 08:49:45 -06:00
John Tims
4c6aa2b21f Run tests against firebird 2020-05-31 08:48:51 -06:00
John Tims
d0c7dec53b Add cubrid health check 2020-05-31 07:26:36 -06:00
John Tims
633286b712 Fix datediff for Oracle 2020-05-29 05:59:33 -06:00
John Tims
83c5a09459 Run tests against oracle 2020-05-28 12:19:13 -06:00
John Tims
58cb9561f4
Merge pull request #2597 from querydsl/pr-2419
fix for mssql table hints on joins
2020-05-28 08:12:44 -06:00
frkator
19dfa725d4 fix for mssql table hints on joins 2020-05-28 06:14:15 -06:00
John Tims
47b488f1e8 Run tests against sqlserver 2020-05-27 15:27:51 -06:00
John Tims
f2dc9582bd Ignore failing db2 tests 2020-05-19 17:49:12 -06:00
John Tims
dcab849c24 Use official db2 artifact 2020-05-19 17:48:07 -06:00
John Tims
aee2f56adb Querydsl 4.3.2-SNAPSHOT 2020-03-26 16:12:09 -06:00
John Tims
d514fd024f Querydsl 4.3.1 2020-03-26 12:54:48 -06:00
Balázs Zsoldos
f095bf0863
[SQL] Apply column name override in executeWithKey call (#2280)
* fix(SQL): Apply column name override in executeWithKey call
2020-03-23 09:56:34 +02:00
John Tims
a8b2f49535 Bump version to 4.3.1-SNAPSHOT 2020-03-15 17:55:55 -06:00
John Tims
043a871638 Querydsl 4.3.0 2020-03-13 12:08:27 -06:00
Ido Salomon
c1dc00ca66 Revert "issue-2303: Consider optimising AbstractSQL::newInstance (becomes a bottleneck for small queries)"
This reverts commit 1b2af5510d.
2020-03-02 23:28:19 +02:00
Rajesh Balamohan
1b2af5510d issue-2303: Consider optimising AbstractSQL::newInstance (becomes a bottleneck for small queries) 2020-03-02 18:42:27 +02:00
John Tims
a221cd4d34 Querydsl 4.2.3-SNAPSHOT 2019-11-24 09:45:17 -07:00
John Tims
f2107a8242 Querydsl 4.2.2 2019-11-23 12:20:24 +02:00
Timo Westkämper
8321eeab36 Querydsl 4.2.1 2018-03-20 19:04:55 +02:00
Timo Westkämper
5f67540035 Add missing casts 2018-03-18 21:45:49 +02:00
Timo Westkämper
e709bf6334
Merge pull request #2269 from querydsl/querydsl-4.2.0
Querydsl 4.2.0
2018-03-17 19:03:36 +02:00
Ruben Dijkstra
62d0ad4d76
Merge pull request #2241 from reegnz/fix-throws-javadoc
Explicitly declare NonUniqueResultException for fetchOne
2018-03-14 13:50:41 +01:00
Timo Westkämper
964d6ce769 Querydsl 4.2.0 2018-03-13 18:54:25 +02:00
Timo Westkämper
ad14e400ac
Merge pull request #2263 from querydsl/improvement/sql-backwards-compat
Improve backwards compatibility
2018-03-13 18:53:19 +02:00
Timo Westkämper
0c3cb1323e Improve backwards compatibility 2018-03-06 22:15:26 +02:00
Timo Westkämper
721af2b801
Revert "Querydsl 4.2.0" 2018-03-04 22:17:43 +02:00
Timo Westkämper
f732b3ed92 Querydsl 4.2.0 2018-03-04 21:57:19 +02:00
Timo Westkämper
fe956ad812
Merge pull request #2236 from querydsl/i2225
Update oracle keywords list
2018-03-04 21:56:33 +02:00
Timo Westkämper
c46afd6433
Merge pull request #2253 from rdnetto4/update_from
Expose fields needed for dialect-specific SQL syntax
2018-03-04 21:56:02 +02:00
Ruben Dijkstra
2468042ed7
Merge pull request #2016 from balazs-zsoldos/i2007_Programmatic_Name_Mapping
Adding dynamic name mapping functionality (#2007)
2018-02-25 12:33:57 +01:00
Balazs Zsoldos
a996862c59 Changing years in license headers of new files of #i2007 2018-02-25 11:00:52 +01:00
Reuben D'Netto
669cd57e85 Fix imports 2018-02-12 13:15:57 +11:00
Reuben D'Netto
2b746f75ee Refactored AbstractSQLQuery subtypes to support generic return types, to facilitate subtyping. 2018-02-12 11:40:26 +11:00
Reuben D'Netto
ad35e9d946 Factored out base class for SQLInsertClause, SQLUpdateClause, SQLDeleteClause 2018-02-09 15:42:32 +11:00
Reuben D'Netto
280a8945a4 Loosened visibility on SQLSerializer 2018-02-09 15:42:32 +11:00
Reuben D'Netto
dd95ac3ced Loosened visibility on AbstractSQLClause subtypes 2018-02-09 15:42:32 +11:00
Yuri Orlov
b7759422ac simplify array creation 2018-02-08 17:29:21 +03:00
Zoltán Reegn
3a74aaeabc Explicitly declare NonUniqueResultException for fetchOne
Fetchable.fetchOne() declares in it's javadoc that it throws
NonUniqueResultException. It should therefore be explicitly declared in
the method signature as well.
All implementations must also declare in their signature that they throw.

This also has the desirable side-effect of the javadoc of all of the
implementors inheriting the @throws section from the javadoc of the
interface as well.

Fixes #2232
2018-01-16 14:03:05 +01:00
Timo Westkämper
215a56b627
Merge pull request #2211 from lpandzic/sql-server-2016-support
added SQL Server 2016 support to SQLTemplatesRegistry
2018-01-12 20:31:23 +02:00
Timo Westkämper
a8452ec2cb
Merge pull request #2172 from tpuica/master
Fixed NEXTVAL Operator for MS SQLServer (starting with 2012)
2018-01-12 20:29:44 +02:00
Timo Westkämper
17fd2c073c
Merge pull request #2093 from atlassian/i1839
Adds methods to SQLListenerContext to retrieve SQLBindings.
2018-01-12 20:28:34 +02:00
Timo Westkämper
74ccec396f
Merge pull request #2103 from gordski/dml-with-schema
Store original state of dmlWithSchema
2018-01-12 20:27:33 +02:00
Timo Westkämper
0c8b61db8c
Merge pull request #2234 from querydsl/oracle-travis
Dockerize oracle, mysql, postgres, cubrid, firebird, db2, and mongo
2018-01-12 20:26:43 +02:00
Ruben Dijkstra
eb3c220b72
Merge pull request #2104 from atlassian/i2098
Explicitly sets a timezone for querydsl-sql tests.
2018-01-09 20:11:11 +01:00
Ruben Dijkstra
5f8490adc2 Update oracle keywords list 2018-01-04 18:45:49 +01:00
John Tims
0f86f68619 Dockerize oracle, mysql, postgres, cubrid, firebird, db2, and mongo 2017-12-29 15:39:42 -07:00
lpandzic
51e471432e added SQL Server 2016 support to SQLTemplatesRegistry 2017-10-10 15:33:19 +02:00