Merge branch '5.3.x'

This commit is contained in:
Sam Brannen
2022-05-24 17:16:58 +02:00

View File

@@ -50,8 +50,8 @@ import org.springframework.util.Assert;
*
* DatabaseClient client = DatabaseClient.create(factory);
* Mono<Actor> actor = client.sql("select first_name, last_name from t_actor")
* .map(row -> new Actor(row.get("first_name, String.class"),
* row.get("last_name, String.class")))
* .map(row -> new Actor(row.get("first_name", String.class),
* row.get("last_name", String.class)))
* .first();
* </pre>
*