Обсуждение: pgsql/src/bin/psql describe.c

Поиск
Список
Период
Сортировка

pgsql/src/bin/psql describe.c

От
Bruce Momjian - CVS
Дата:
CVSROOT:    /home/projects/pgsql/cvsroot
Module name:    pgsql
Changes by:    momjian@hub.org    01/05/27 22:01:22

Modified files:
    src/bin/psql   : describe.c

Log message:
    This just breaks down the indices in to three groups:

    non-unique: stay as they were
    unique and primary: become listed as primary keys
    unique and non-primary: become listed as unique keys

    I also made it so that it shows the names of check constraints ie:

    Check: "$1" (a > 5)

    Christopher Kings