From 256cbf0010ae83c21449f2600d1ecb29e7694496 Mon Sep 17 00:00:00 2001 From: Manni Wood Date: Mon, 19 Sep 2016 20:48:31 -0400 Subject: [PATCH] Adds example column to pgx.Char doc --- values.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/values.go b/values.go index 859d79a1..f8991f88 100644 --- a/values.go +++ b/values.go @@ -263,7 +263,7 @@ func (n NullString) Encode(w *WriteBuf, oid Oid) error { // "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", in double-quotes, // and not char.) It gets used a lot in PostgreSQL's system tables to hold -// a single ASCII character value. +// a single ASCII character value (eg pg_class.relkind). type Char byte // NullChar represents a pgx.Char that may be null. NullChar implements the