Re: Adjacency List or Nested Sets to model file system hierarchy? - Mailing list pgsql-general

From Richard Broersma Jr
Subject Re: Adjacency List or Nested Sets to model file system hierarchy?
Date
Msg-id 26708.16338.qm@web31806.mail.mud.yahoo.com
Whole thread Raw
In response to Re: Adjacency List or Nested Sets to model file system hierarchy?  ("Merlin Moncure" <mmoncure@gmail.com>)
Responses Re: Adjacency List or Nested Sets to model file system hierarchy?  ("Merlin Moncure" <mmoncure@gmail.com>)
List pgsql-general
> Can you describe in a little bit more detail about what you mean by
> 'Adjaceny LIst'?

Adjaceny list is the term used in the celko book to refer to a table that is recurively related to
itself.

create table foo (
id        integer  primary key,
parentid  integer references foo (id),
name      varchar not null,
);


pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: 8.2.3 initdb fails - invalid value for parameter "timezone_abbreviations": "Default"
Next
From: "Merlin Moncure"
Date:
Subject: Re: Adjacency List or Nested Sets to model file system hierarchy?