diff --git a/jOOQ-manual/src/main/resources/org/jooq/web/manual-2.6.xml b/jOOQ-manual/src/main/resources/org/jooq/web/manual-2.6.xml
index 7113d6f207..e0c098fb08 100644
--- a/jOOQ-manual/src/main/resources/org/jooq/web/manual-2.6.xml
+++ b/jOOQ-manual/src/main/resources/org/jooq/web/manual-2.6.xml
@@ -3057,7 +3057,7 @@ SELECT CAST(AUTHOR.LAST_NAME AS TEXT) FROM DUAL
create.select(AUTHOR.LAST_NAME.cast(SQLDataType.VARCHAR(100)));
- The same thing can be achieved by casting a Field directly to String.class, as TEXT is the default data type in Postgres to map to Java's String
+ The same thing can be achieved by casting a Field directly to String.class, as VARCHAR is the default SQLDataType to map to Java's String
create.select(AUTHOR.LAST_NAME.cast(String.class));
diff --git a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.10.xml b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.10.xml
index d4cedd1e81..6b86b1d844 100644
--- a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.10.xml
+++ b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.10.xml
@@ -7386,7 +7386,7 @@ SELECT CAST(AUTHOR.LAST_NAME AS TEXT) FROM DUAL
create.select(AUTHOR.LAST_NAME.cast(SQLDataType.VARCHAR(100))).fetch();
- The same thing can be achieved by casting a Field directly to String.class, as TEXT is the default data type in Postgres to map to Java's String
+ The same thing can be achieved by casting a Field directly to String.class, as VARCHAR is the default SQLDataType to map to Java's String
create.select(AUTHOR.LAST_NAME.cast(String.class)).fetch();
diff --git a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.11.xml b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.11.xml
index a827bc7211..93c711f7da 100644
--- a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.11.xml
+++ b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.11.xml
@@ -7562,7 +7562,7 @@ SELECT CAST(AUTHOR.LAST_NAME AS TEXT) FROM DUAL
create.select(AUTHOR.LAST_NAME.cast(SQLDataType.VARCHAR(100))).fetch();
- The same thing can be achieved by casting a Field directly to String.class, as TEXT is the default data type in Postgres to map to Java's String
+ The same thing can be achieved by casting a Field directly to String.class, as VARCHAR is the default SQLDataType to map to Java's String
create.select(AUTHOR.LAST_NAME.cast(String.class)).fetch();
diff --git a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.12.xml b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.12.xml
index 7223aa184c..a6287ac042 100644
--- a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.12.xml
+++ b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.12.xml
@@ -7731,7 +7731,7 @@ SELECT CAST(AUTHOR.LAST_NAME AS TEXT) FROM DUAL
create.select(AUTHOR.LAST_NAME.cast(SQLDataType.VARCHAR(100))).fetch();
- The same thing can be achieved by casting a Field directly to String.class, as TEXT is the default data type in Postgres to map to Java's String
+ The same thing can be achieved by casting a Field directly to String.class, as VARCHAR is the default SQLDataType to map to Java's String
create.select(AUTHOR.LAST_NAME.cast(String.class)).fetch();
diff --git a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.2.xml b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.2.xml
index 81822db391..85bcb40601 100644
--- a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.2.xml
+++ b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.2.xml
@@ -4678,7 +4678,7 @@ SELECT CAST(AUTHOR.LAST_NAME AS TEXT) FROM DUAL
create.select(AUTHOR.LAST_NAME.cast(SQLDataType.VARCHAR(100)));
- The same thing can be achieved by casting a Field directly to String.class, as TEXT is the default data type in Postgres to map to Java's String
+ The same thing can be achieved by casting a Field directly to String.class, as VARCHAR is the default SQLDataType to map to Java's String
create.select(AUTHOR.LAST_NAME.cast(String.class));
diff --git a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.3.xml b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.3.xml
index 4fffe8e314..17934d949a 100644
--- a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.3.xml
+++ b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.3.xml
@@ -5363,7 +5363,7 @@ SELECT CAST(AUTHOR.LAST_NAME AS TEXT) FROM DUAL
create.select(AUTHOR.LAST_NAME.cast(SQLDataType.VARCHAR(100)));
- The same thing can be achieved by casting a Field directly to String.class, as TEXT is the default data type in Postgres to map to Java's String
+ The same thing can be achieved by casting a Field directly to String.class, as VARCHAR is the default SQLDataType to map to Java's String
create.select(AUTHOR.LAST_NAME.cast(String.class));
diff --git a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.4.xml b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.4.xml
index 39cf4c1280..4ad0529e33 100644
--- a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.4.xml
+++ b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.4.xml
@@ -6259,7 +6259,7 @@ SELECT CAST(AUTHOR.LAST_NAME AS TEXT) FROM DUAL
create.select(AUTHOR.LAST_NAME.cast(SQLDataType.VARCHAR(100))).fetch();
- The same thing can be achieved by casting a Field directly to String.class, as TEXT is the default data type in Postgres to map to Java's String
+ The same thing can be achieved by casting a Field directly to String.class, as VARCHAR is the default SQLDataType to map to Java's String
create.select(AUTHOR.LAST_NAME.cast(String.class)).fetch();
diff --git a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.5.xml b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.5.xml
index cd8e4dc3c0..ef706243ce 100644
--- a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.5.xml
+++ b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.5.xml
@@ -6643,7 +6643,7 @@ SELECT CAST(AUTHOR.LAST_NAME AS TEXT) FROM DUAL
create.select(AUTHOR.LAST_NAME.cast(SQLDataType.VARCHAR(100))).fetch();
- The same thing can be achieved by casting a Field directly to String.class, as TEXT is the default data type in Postgres to map to Java's String
+ The same thing can be achieved by casting a Field directly to String.class, as VARCHAR is the default SQLDataType to map to Java's String
create.select(AUTHOR.LAST_NAME.cast(String.class)).fetch();
diff --git a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.6.xml b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.6.xml
index efc174e8e7..a8f06333fc 100644
--- a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.6.xml
+++ b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.6.xml
@@ -6763,7 +6763,7 @@ SELECT CAST(AUTHOR.LAST_NAME AS TEXT) FROM DUAL
create.select(AUTHOR.LAST_NAME.cast(SQLDataType.VARCHAR(100))).fetch();
- The same thing can be achieved by casting a Field directly to String.class, as TEXT is the default data type in Postgres to map to Java's String
+ The same thing can be achieved by casting a Field directly to String.class, as VARCHAR is the default SQLDataType to map to Java's String
create.select(AUTHOR.LAST_NAME.cast(String.class)).fetch();
diff --git a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.7.xml b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.7.xml
index 1f9f6b2e46..7f55352a2f 100644
--- a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.7.xml
+++ b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.7.xml
@@ -7027,7 +7027,7 @@ SELECT CAST(AUTHOR.LAST_NAME AS TEXT) FROM DUAL
create.select(AUTHOR.LAST_NAME.cast(SQLDataType.VARCHAR(100))).fetch();
- The same thing can be achieved by casting a Field directly to String.class, as TEXT is the default data type in Postgres to map to Java's String
+ The same thing can be achieved by casting a Field directly to String.class, as VARCHAR is the default SQLDataType to map to Java's String
create.select(AUTHOR.LAST_NAME.cast(String.class)).fetch();
diff --git a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.8.xml b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.8.xml
index 428ab73148..7f98c1d0bf 100644
--- a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.8.xml
+++ b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.8.xml
@@ -7203,7 +7203,7 @@ SELECT CAST(AUTHOR.LAST_NAME AS TEXT) FROM DUAL
create.select(AUTHOR.LAST_NAME.cast(SQLDataType.VARCHAR(100))).fetch();
- The same thing can be achieved by casting a Field directly to String.class, as TEXT is the default data type in Postgres to map to Java's String
+ The same thing can be achieved by casting a Field directly to String.class, as VARCHAR is the default SQLDataType to map to Java's String
create.select(AUTHOR.LAST_NAME.cast(String.class)).fetch();
diff --git a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.9.xml b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.9.xml
index bddb105511..419830798a 100644
--- a/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.9.xml
+++ b/jOOQ-manual/src/main/resources/org/jooq/web/manual-3.9.xml
@@ -7338,7 +7338,7 @@ SELECT CAST(AUTHOR.LAST_NAME AS TEXT) FROM DUAL
create.select(AUTHOR.LAST_NAME.cast(SQLDataType.VARCHAR(100))).fetch();
- The same thing can be achieved by casting a Field directly to String.class, as TEXT is the default data type in Postgres to map to Java's String
+ The same thing can be achieved by casting a Field directly to String.class, as VARCHAR is the default SQLDataType to map to Java's String
create.select(AUTHOR.LAST_NAME.cast(String.class)).fetch();