mirror of
https://github.com/postgres/postgres.git
synced 2025-07-15 19:21:59 +03:00
psql: Split up "Modifiers" column in \d and \dD
Make separate columns "Collation", "Nullable", "Default". Reviewed-by: Kuntal Ghosh <kuntalghosh.2007@gmail.com>
This commit is contained in:
@ -113,8 +113,8 @@ int main(void)
|
||||
|
||||
/*
|
||||
Table "public.history"
|
||||
Column | Type | Modifiers
|
||||
--------------+-----------------------------+-----------
|
||||
Column | Type | Nullable
|
||||
--------------+-----------------------------+----------
|
||||
customerid | integer | not null
|
||||
timestamp | timestamp without time zone | not null
|
||||
action_taken | character(5) | not null
|
||||
|
@ -281,8 +281,8 @@ if (sqlca.sqlcode < 0) sqlprint();}
|
||||
|
||||
/*
|
||||
Table "public.history"
|
||||
Column | Type | Modifiers
|
||||
--------------+-----------------------------+-----------
|
||||
Column | Type | Nullable
|
||||
--------------+-----------------------------+----------
|
||||
customerid | integer | not null
|
||||
timestamp | timestamp without time zone | not null
|
||||
action_taken | character(5) | not null
|
||||
|
Reference in New Issue
Block a user