[jOOQ/jOOQ#11161] Add formal support for SQL Server PIVOT clause
This commit is contained in:
parent
60a18e6fdc
commit
7b8c525470
@ -93,5 +93,6 @@ import org.jetbrains.annotations.*;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -98,13 +98,6 @@ import org.jetbrains.annotations.*;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -2927,6 +2927,8 @@ public interface Table<R extends Record> extends TableLike<R>, Qualified {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -217,7 +217,7 @@ abstract class AbstractTable<R extends Record> extends AbstractNamed implements
|
||||
public Row fieldsRow() {
|
||||
if (fieldsRow == null)
|
||||
fieldsRow = Tools.row0(fields0());
|
||||
|
||||
|
||||
return fieldsRow;
|
||||
}
|
||||
|
||||
@ -1155,6 +1155,12 @@ abstract class AbstractTable<R extends Record> extends AbstractNamed implements
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -39,6 +39,10 @@ package org.jooq.impl;
|
||||
|
||||
// ...
|
||||
// ...
|
||||
// ...
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user