diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-12-18 05:25:58 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-12-18 05:25:58 +0000 |
commit | 66807b8cc5d59d9f93aa0759979afb6cf0b4c8be (patch) | |
tree | f7fe707a7cbd8f6227c6636c1061b2a99acba549 /doc/FAQ_DEV | |
parent | 673d7f6b4aa81a8cb57886bee817445a5bed99aa (diff) |
Prepare for 6.4.1.
Diffstat (limited to 'doc/FAQ_DEV')
-rw-r--r-- | doc/FAQ_DEV | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/FAQ_DEV b/doc/FAQ_DEV index 8190358b8e4..2139ff931fb 100644 --- a/doc/FAQ_DEV +++ b/doc/FAQ_DEV @@ -197,7 +197,7 @@ s } NameData; typedef NameData *Name; - Table, column, type, function, and view names that come in to the + Table, column, type, function, and view names that come into the backend via user queries are stored as variable-length, null-terminated character strings. @@ -249,7 +249,7 @@ s should take the HeapTuple pointer, and use the GETSTRUCT() macro to access the table-specific start of the tuple. You then cast the pointer as a Form_pg_proc pointer if you are accessing the pg_proc - table, or TypeTupleForm if you are accessing pg_type. You can then + table, or Form_pg_type if you are accessing pg_type. You can then access the columns by using a structure pointer: ((Form_pg_class) GETSTRUCT(tuple))->relnatts |