[HACKERS] About the types of fields in a data structure

2010-08-26 Thread Pei He
Hi, When I check the types of fields in a data structure, I found most fields are defined as general types, as List, Node. Then, To know the content inside the List, I need to track the usage of the fields. For example, the fromClause in SelectStmt is defined as List. And, the content in the

Re: [HACKERS] About the types of fields in a data structure

2010-08-26 Thread Tom Lane
Pei He hepeim...@gmail.com writes: When I check the types of fields in a data structure, I found most fields are defined as general types, as List, Node. Then, To know the content inside the List, I need to track the usage of the fields. For example, the fromClause in SelectStmt is defined as