Skip to content

sqlc-dev/null

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tested

Starting with drivers that pass go-sql-test.

Design doc

pgx

jackc/pgx#1169 (comment)

type Status byte

const (
	Undefined Status = iota
	Null
	Present
)

type ACLItem struct {
	String string
	Status Status
}

stdlib

type NullString struct {
    String string
    Valid  bool // Valid is true if String is not NULL
}
  • Have another null type for pgtype?

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages