Andrew Dunstan wrote:
> . table_to_xml_and_xmlschema  seems like a mouthful - can we shorten
> it a bit?

Well, it gives you back a mouthful of data, too. :)

> . what are the two ways of representing data that tableforest
> distinguishes?

tableforest = false gives you something like

<tablename>
 <row> <!-- where "row" is constant -->
  <col1name>data</col1name>
  <col2name>data</col2name>
 </row>
 <row>
  ...
 </row>
 ...
</tablename>

tableforest = true gives you something like

<tablename>
 <col1name>data</col1name>
 <col2name>data</col2name>
</tablename>

<tablename>
 ...
</tablename>

...

> . can we have versions that supply defaults for params after the
> first?

I would like that, but I don't know what the defaults should be.

-- 
Peter Eisentraut
http://developer.postgresql.org/~petere/

---------------------------(end of broadcast)---------------------------
TIP 2: Don't 'kill -9' the postmaster

Reply via email to