From: Inada Naoki
Date: Tue, 15 Aug 2023 04:33:37 +0000 (+0000)
Subject: doc/go1.22: mention new sql.Null[T]
X-Git-Tag: go1.22rc1~1279
X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2f100187f6c4e279f4916cb25c58f33ff85ffaaf;p=gostls13.git
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
---
diff --git a/doc/go1.22.html b/doc/go1.22.html
index 5534a3fbad..1bf759a9a6 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