diff --git a/jOOQ/src/main/java/org/jooq/InsertReturningStep.java b/jOOQ/src/main/java/org/jooq/InsertReturningStep.java
index 574717d2bb..4392716529 100644
--- a/jOOQ/src/main/java/org/jooq/InsertReturningStep.java
+++ b/jOOQ/src/main/java/org/jooq/InsertReturningStep.java
@@ -55,16 +55,15 @@ import java.util.Collection;
*
Postgres has native support for INSERT .. RETURNING clauses
* HSQLDB, Oracle, and DB2 JDBC drivers allow for retrieving any table
* column as "generated key" in one statement
- * Derby, H2, MySQL, SQL Server only allow for retrieving IDENTITY column
- * values as "generated key". If other fields are requested, a second statement
- * is issued. Client code must assure transactional integrity between the two
- * statements.
+ * Derby, H2, Ingres, MySQL, SQL Server only allow for retrieving IDENTITY
+ * column values as "generated key". If other fields are requested, a second
+ * statement is issued. Client code must assure transactional integrity between
+ * the two statements.
* Sybase and SQLite allow for retrieving IDENTITY values as
* @@identity or last_inserted_rowid() values. Those
* values are fetched in a separate SELECT statement. If other
* fields are requested, a second statement is issued. Client code must assure
* transactional integrity between the two statements.
- * Ingres support will be added with #808
*
*
* @author Lukas Eder