In Golang, database/sql package, there is a constant such as LevelWriteCommitted for the IsolationLevel type
https://pkg.go.dev/database/sql#IsolationLevel
What is the purpose of this level? There is no such level among well-known ones.
Googling and searching through the docs didn’t turn up any clear explanation.
The source code in the package
https://cs.opensource.google/go/go/+/refs/tags/go1.25.3:src/database/sql/sql.go;l=131
refers to the wikipeadia https://en.wikipedia.org/wiki/Isolation_%28database_systems%29#Isolation_levels
but that article doesn’t mention anything called "Write Committed".
Can anyone give any description/example of usage?