Commit Graph

5583 Commits

Author SHA1 Message Date
lukaseder
52bd2cff2a Fixed XSD version references 2017-06-23 11:15:27 +02:00
lukaseder
5e5d44b6a6 [#6355] Improve Kotlin example in manual 2017-06-21 17:38:43 +02:00
lukaseder
bc05c60bc0 [#6352] Add Result.formatChart() to produce ASCII text charts 2017-06-21 15:57:11 +02:00
lukaseder
8e23952fc5 [#5955] Correctly implemented INTERSECT operator precedence 2017-06-19 21:03:36 +02:00
lukaseder
18ccbc006b Fixed bad merge output 2017-06-09 22:12:34 +02:00
lukaseder
7860fd302a Fixed bad merge output 2017-06-09 22:09:02 +02:00
lukaseder
2cdbada2ab [#6307] Added useful comment 2017-06-09 21:54:52 +02:00
lukaseder
5ed8e413ca Improved grammar BNF 2017-06-09 21:54:14 +02:00
lukaseder
c99da8d166 [#6307] More index code generation support:
- Added support for PostgreSQL ASC / DESC specification
- Added support for SQLite
2017-06-09 17:31:31 +02:00
lukaseder
f249e07faf [#6307] Added support for PostgreSQL 2017-06-09 17:18:14 +02:00
lukaseder
20cef1d0b2 [#6307] Added support for PostgreSQL 2017-06-09 16:36:51 +02:00
lukaseder
298ca8c5af [#6315] Fixed regressions 2017-06-09 15:33:04 +02:00
lukaseder
f76655a706 [#6213] Document XMLGenerator 2017-06-09 14:24:12 +02:00
lukaseder
546907765a [#6213] Document XMLGenerator 2017-06-09 13:51:39 +02:00
lukaseder
b845bc361d [#6342] No-args call to Field.sortAsc() returns null 2017-06-09 12:11:23 +02:00
lukaseder
178e6216e5 [#6332] [#6339] Recognise H2 system-generated sequences as identities
- [#6332] JPADatabase with GeneratedValue does not account for dialect
- [#6339] Recognise H2 SYSTEM_SEQUENCE in INFORMATION_SCHEMA.COLUMNS.COLUMN_DEFAULT as an Identity column
2017-06-09 11:38:25 +02:00
lukaseder
8a9acbaf41 [#6330] [#6331] DataType should depend on Binding's <T> type
- [#6330] Exception thrown when creating table with converted VARCHAR type
- [#6331] DataType.hasLength(), hasPrecision(), hasScale(), and others should depend on Binding's <T> type
2017-06-09 10:53:50 +02:00
lukaseder
185f7df11b [#6336] Add another Kotlin example using apply 2017-06-09 10:39:35 +02:00
lukaseder
962d7b6341 [#6336] Add another Kotlin example using apply 2017-06-09 10:23:37 +02:00
lukaseder
3a039f6e5f [#6329] Clarify in the manual that INSERT .. SET is emulated for all dialects 2017-06-06 17:41:20 +02:00
lukaseder
7fff157b4c [#6099] Include grammar in public repo 2017-06-06 16:25:08 +02:00
lukaseder
e81203b052 [#6099] Document Parser's BNF 2017-06-06 16:20:29 +02:00
lukaseder
26e43cbe9a [#6327] Add OrderField as a common super type of Field and SortField and accept that in ORDER BY clauses 2017-06-06 14:31:31 +02:00
lukaseder
b8247bb3a3 [#6307] Fixed ScalaGenerator regression 2017-06-06 13:13:15 +02:00
lukaseder
01e0a283b7 [#6315] Add SortField Field.sortDefault() 2017-06-06 12:27:51 +02:00
lukaseder
403fa2d284 [#6307] Support H2 2017-06-06 12:14:41 +02:00
lukaseder
8fa78d72c0 [#6307] Added support for MySQL - fixed some bugs 2017-06-06 11:59:32 +02:00
lukaseder
404fceab60 [#6325] Add ResultQuery.fetchGroups(Field[], Field[]) and similar overloads 2017-06-06 11:04:09 +02:00
lukaseder
879e28dfb7 [#6312] Document DISTINCT predicate emulation using INTERSECT 2017-06-05 21:47:49 +02:00
lukaseder
7c3a77a509 [#5955] Added LEFT SEMI / ANTI JOIN 2017-06-05 21:40:20 +02:00
lukaseder
9341cdc15d [#5955] Support CTE without column list 2017-06-05 21:23:36 +02:00
lukaseder
d2af2cffb6 Scala test regressions 2017-06-05 18:16:10 +02:00
lukaseder
34dcdeca0e [#6322] Import indexes using XMLDatabase 2017-06-05 17:32:18 +02:00
lukaseder
712ab83f4a [#6321] Export indexes using XMLGenerator 2017-06-05 16:41:34 +02:00
lukaseder
33d9adcafc [#6320] Implemented InformationSchema import for Indexes 2017-06-05 16:15:05 +02:00
lukaseder
7bfcb34798 [#6320] Implemented InformationSchema export for Indexes 2017-06-05 15:39:42 +02:00
lukaseder
d939b1cb61 [#6319] Add INDEXES and INDEX_COLUMN_USAGES views to jooq-meta.xsd 2017-06-05 15:09:03 +02:00
lukaseder
ef55ac7436 [#6316] ALTER TABLE .. ADD COLUMN ignores column type's DEFAULT clause 2017-06-05 14:27:14 +02:00
lukaseder
43ff705bbd [#6307] SQL Server support 2017-06-05 13:58:24 +02:00
lukaseder
186ef46795 [#6313] Wrong index column lists created 2017-06-05 12:13:52 +02:00
lukaseder
28e751e5ad [#6307] Generated indexes in new Indexes.java file 2017-06-05 12:11:06 +02:00
lukaseder
1ab49a7928 [#6313] Add MetaTable.getIndexes() support 2017-06-05 11:58:40 +02:00
lukaseder
389b1b17eb [#6313] Add List<Index> Table.getIndexes() 2017-06-05 10:41:32 +02:00
lukaseder
8c656754de [#6307] Add code generation support for indexes (including Oracle impl) 2017-06-05 10:03:10 +02:00
lukaseder
d9a917f4de [#6307] Add code generation support for indexes (including Oracle impl) 2017-06-05 10:03:01 +02:00
lukaseder
43c13ce1d7 [#5638] Forgotten change 2017-06-02 15:03:01 +02:00
lukaseder
a8ee7b4111 [#5638] Add org.jooq.Index 2017-06-02 14:37:04 +02:00
lukaseder
cb0a9249e5 [#6306] Add org.jooq.True and org.jooq.False 2017-06-02 10:36:08 +02:00
lukaseder
97a4cffa8e [#5191] Support multi-row UPDATE and DELETE RETURNING for Oracle using PL/SQL RETURNING .. BULK COLLECT INTO 2017-06-01 17:54:30 +02:00
lukaseder
0fabb6591e [#6297] Add "development versions" link to the manual 2017-06-01 13:30:54 +02:00