[jOOQ/jOOQ#14226] Outdated Javadoc on DSL.array() for how jOOQ renders

H2 array constructors
This commit is contained in:
Lukas Eder 2022-11-16 09:51:38 +01:00
parent 0cafd1baa3
commit 2e9e8960e6

View File

@ -26433,25 +26433,6 @@ public class DSL {
/**
* Create an array literal.
* <p>
* This translates to the following databases and syntaxes:
* <table>
* <tr>
* <th><code>SQLDialect</code></th>
* <th>Java</th>
* <th>SQL</th>
* </tr>
* <tr>
* <td>{@link SQLDialect#H2}</td>
* <td>array(1, 2)</td>
* <td>(1, 2)</td>
* </tr>
* <tr>
* <td>{@link SQLDialect#HSQLDB}, {@link SQLDialect#POSTGRES}</td>
* <td>array(1, 2)</td>
* <td>array[1, 2]</td>
* </tr>
* </table>
*/
@NotNull
@Support({ H2, HSQLDB, POSTGRES, YUGABYTEDB })
@ -26461,25 +26442,6 @@ public class DSL {
/**
* Create an array literal.
* <p>
* This translates to the following databases and syntaxes:
* <table>
* <tr>
* <th><code>SQLDialect</code></th>
* <th>Java</th>
* <th>SQL</th>
* </tr>
* <tr>
* <td>{@link SQLDialect#H2}</td>
* <td>array(1, 2)</td>
* <td>(1, 2)</td>
* </tr>
* <tr>
* <td>{@link SQLDialect#HSQLDB}, {@link SQLDialect#POSTGRES}</td>
* <td>array(1, 2)</td>
* <td>array[1, 2]</td>
* </tr>
* </table>
*/
@SafeVarargs
@NotNull
@ -26490,25 +26452,6 @@ public class DSL {
/**
* Create an array literal.
* <p>
* This translates to the following databases and syntaxes:
* <table>
* <tr>
* <th><code>SQLDialect</code></th>
* <th>Java</th>
* <th>SQL</th>
* </tr>
* <tr>
* <td>{@link SQLDialect#H2}</td>
* <td>array(1, 2)</td>
* <td>(1, 2)</td>
* </tr>
* <tr>
* <td>{@link SQLDialect#HSQLDB}, {@link SQLDialect#POSTGRES}</td>
* <td>array(1, 2)</td>
* <td>array[1, 2]</td>
* </tr>
* </table>
*/
@NotNull
@Support({ H2, HSQLDB, POSTGRES, YUGABYTEDB })