mirror of https://github.com/jackc/pgx.git
Reformats "char" comment a bit
parent
94203a55ad
commit
88ac6ff200
|
@ -261,9 +261,9 @@ func (n NullString) Encode(w *WriteBuf, oid Oid) error {
|
||||||
|
|
||||||
// The pgx.Char type is for PostgreSQL's special 8-bit-only
|
// The pgx.Char type is for PostgreSQL's special 8-bit-only
|
||||||
// "char" type more akin to the C language's char type, or Go's byte type.
|
// "char" type more akin to the C language's char type, or Go's byte type.
|
||||||
// (Note that the name in PostgreSQL itself is "char" and not char.)
|
// (Note that the name in PostgreSQL itself is "char", in double-quotes,
|
||||||
// It gets used a lot
|
// and not char.) It gets used a lot in PostgreSQL's system tables to hold
|
||||||
// in PostgreSQL's system tables to hold a single ASCII character value.
|
// a single ASCII character value.
|
||||||
type Char byte
|
type Char byte
|
||||||
|
|
||||||
// NullChar represents a pgx.Char that may be null. NullChar implements the
|
// NullChar represents a pgx.Char that may be null. NullChar implements the
|
||||||
|
|
Loading…
Reference in New Issue