typlen field in the pg_type table - Mailing list pgsql-interfaces

From Paul Tilles
Subject typlen field in the pg_type table
Date
Msg-id 40ED9295.8C83980A@noaa.gov
Whole thread Raw
List pgsql-interfaces
For each table in my database, I am trying to extract the column name,
column type and column length from the system catalog tables.  I am able
to get the column name from the pg_attribute table and the column type
from the pg_type table.  However, I am having a problem extracting the
length of character columns from the typlen field of the pg_type table.

For example, I have a column defined as a char(20).  The column type is
set to "bpchar" but the typlen value for this column is -1.  The
documentation says that a value of -1 indicates "... has a length
word".  Can I extract the length of the field (in this case 20) from any
field in the system catalog tables?

In the documentation (Section 43.29) for the typlen field, it says "...
for a variable-length type, typlen is negative".  In Section 10.4, Item
3 says "... fixed-length type(e.g., char ...".  All of the char columns
in my database have typlen = -1.  IS A CHAR FIELD CONSIDERED A
FIXED-LENGTH OR VARIABLE-LENGTH TYPE BY POSTGRESQL?

Paul Tilles



pgsql-interfaces by date:

Previous
From: jason_e_stewart@users.sourceforge.net
Date:
Subject: DBD::Pg and $sth->{ParamValues}
Next
From: Paul Tilles
Date:
Subject: [Fwd: typlen field in the pg_type table]