From 2f100187f6c4e279f4916cb25c58f33ff85ffaaf Mon Sep 17 00:00:00 2001
From: Inada Naoki
Date: Tue, 15 Aug 2023 04:33:37 +0000
Subject: [PATCH] doc/go1.22: mention new sql.Null[T]
For #60370.
Change-Id: Idae906ec7027be6d95f78bf43f7ce8f9d07e6c00
GitHub-Last-Rev: c645f0cf82ac595855fa154ce342869262932770
GitHub-Pull-Request: golang/go#62033
Reviewed-on: https://go-review.googlesource.com/c/go/+/519555
TryBot-Bypass: Ian Lance Taylor
Reviewed-by: Ian Lance Taylor
Reviewed-by: Dmitri Shuralyov
Auto-Submit: Ian Lance Taylor
---
doc/go1.22.html | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/doc/go1.22.html b/doc/go1.22.html
index 5534a3fbad3..1bf759a9a64 100644
--- a/doc/go1.22.html
+++ b/doc/go1.22.html
@@ -70,6 +70,15 @@ Do not send CLs removing the interior tags from such phrases.
TODO: complete this section
+- database/sql
+ -
+
+ The new Null[T]
type
+ provide a way to scan nullable columns for any column types.
+
+
+
+
Ports