import "github.com/cockroachdb/cockroach/sql/parser" d := parser.NewDInt(42)
import "github.com/cockroachdb/cockroach/sql/parser" d := parser.NewDString("hello, world")
import "github.com/cockroachdb/cockroach/sql/parser" d := parser.MakeDBool(true)This code creates a new `DBool` with a value of true, and assigns it to a Datum variable `d`. These examples demonstrate the use of the `Datum` interface to create values of various types that can be used in SQL queries. The package library used in these examples is `github.com/cockroachdb/cockroach/sql/parser`.