Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
4ad9fe4c
Commit
4ad9fe4c
authored
Oct 25, 2000
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Teach psql about new relkind for views.
parent
0a63b6d0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
20 deletions
+17
-20
src/bin/psql/describe.c
src/bin/psql/describe.c
+15
-18
src/bin/psql/tab-complete.c
src/bin/psql/tab-complete.c
+2
-2
No files found.
src/bin/psql/describe.c
View file @
4ad9fe4c
...
...
@@ -3,7 +3,7 @@
*
* Copyright 2000 by PostgreSQL Global Development Group
*
* $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.2
5 2000/10/24 01:38:38
tgl Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.2
6 2000/10/25 20:36:52
tgl Exp $
*/
#include "postgres.h"
#include "describe.h"
...
...
@@ -336,7 +336,7 @@ permissionsList(const char *name)
strcat
(
descbuf
,
"SELECT relname as
\"
Relation
\"
,
\n
"
" relacl as
\"
Access permissions
\"\n
"
"FROM pg_class
\n
"
"WHERE
( relkind = 'r' OR relkind =
'S') AND
\n
"
"WHERE
relkind in ('r', 'v',
'S') AND
\n
"
" relname !~ '^pg_'
\n
"
);
if
(
name
)
{
...
...
@@ -570,7 +570,7 @@ describeTableDetails(const char *name, bool desc)
headers
[
1
]
=
"Type"
;
cols
=
2
;
if
(
tableinfo
.
relkind
==
'r'
)
if
(
tableinfo
.
relkind
==
'r'
||
tableinfo
.
relkind
==
'v'
)
{
cols
++
;
headers
[
cols
-
1
]
=
"Modifier"
;
...
...
@@ -634,7 +634,7 @@ describeTableDetails(const char *name, bool desc)
/* Extra: not null and default */
/* (I'm cutting off the 'default' string at 128) */
if
(
tableinfo
.
relkind
==
'r'
)
if
(
tableinfo
.
relkind
==
'r'
||
tableinfo
.
relkind
==
'v'
)
{
cells
[
i
*
cols
+
2
]
=
xmalloc
(
128
+
128
);
cells
[
i
*
cols
+
2
][
0
]
=
'\0'
;
...
...
@@ -677,10 +677,10 @@ describeTableDetails(const char *name, bool desc)
switch
(
tableinfo
.
relkind
)
{
case
'r'
:
if
(
view_def
)
sprintf
(
title
,
"View
\"
%s
\"
"
,
name
)
;
else
sprintf
(
title
,
"Table
\"
%s
\"
"
,
name
);
sprintf
(
title
,
"Table
\"
%s
\"
"
,
name
);
break
;
case
'v'
:
sprintf
(
title
,
"View
\"
%s
\"
"
,
name
);
break
;
case
'S'
:
sprintf
(
title
,
"Sequence
\"
%s
\"
"
,
name
);
...
...
@@ -692,7 +692,8 @@ describeTableDetails(const char *name, bool desc)
sprintf
(
title
,
"Special relation
\"
%s
\"
"
,
name
);
break
;
default:
sprintf
(
title
,
"?%c?"
,
tableinfo
.
relkind
);
sprintf
(
title
,
"?%c?
\"
%s
\"
"
,
tableinfo
.
relkind
,
name
);
break
;
}
/* Make footers */
...
...
@@ -723,7 +724,7 @@ describeTableDetails(const char *name, bool desc)
}
}
/* Information about the view */
else
if
(
tableinfo
.
relkind
==
'r'
&&
view_def
)
else
if
(
view_def
)
{
footers
=
xmalloc
(
2
*
sizeof
(
*
footers
));
footers
[
0
]
=
xmalloc
(
20
+
strlen
(
view_def
));
...
...
@@ -874,7 +875,7 @@ describeTableDetails(const char *name, bool desc)
for
(
i
=
0
;
i
<
PQntuples
(
res
);
i
++
)
{
if
(
tableinfo
.
relkind
==
'r'
)
if
(
tableinfo
.
relkind
==
'r'
||
tableinfo
.
relkind
==
'v'
)
free
(
cells
[
i
*
cols
+
2
]);
}
free
(
cells
);
...
...
@@ -933,8 +934,7 @@ listTables(const char *infotype, const char *name, bool desc)
if
(
desc
)
strcat
(
buf
,
", obj_description(c.oid) as
\"
Description
\"
"
);
strcat
(
buf
,
"
\n
FROM pg_class c, pg_user u
\n
"
"WHERE c.relowner = u.usesysid AND c.relkind = 'r'
\n
"
" AND not exists (select 1 from pg_views where viewname = c.relname)
\n
"
);
"WHERE c.relowner = u.usesysid AND c.relkind = 'r'
\n
"
);
strcat
(
buf
,
showSystem
?
" AND c.relname ~ '^pg_'
\n
"
:
" AND c.relname !~ '^pg_'
\n
"
);
if
(
name
)
{
...
...
@@ -949,7 +949,6 @@ listTables(const char *infotype, const char *name, bool desc)
strcat
(
buf
,
", obj_description(c.oid) as
\"
Description
\"
"
);
strcat
(
buf
,
"
\n
FROM pg_class c
\n
"
"WHERE c.relkind = 'r'
\n
"
" AND not exists (select 1 from pg_views where viewname = c.relname)
\n
"
" AND not exists (select 1 from pg_user where usesysid = c.relowner)
\n
"
);
strcat
(
buf
,
showSystem
?
" AND c.relname ~ '^pg_'
\n
"
:
" AND c.relname !~ '^pg_'
\n
"
);
if
(
name
)
...
...
@@ -970,8 +969,7 @@ listTables(const char *infotype, const char *name, bool desc)
if
(
desc
)
strcat
(
buf
,
", obj_description(c.oid) as
\"
Description
\"
"
);
strcat
(
buf
,
"
\n
FROM pg_class c, pg_user u
\n
"
"WHERE c.relowner = u.usesysid AND c.relkind = 'r'
\n
"
" AND exists (select 1 from pg_views where viewname = c.relname)
\n
"
);
"WHERE c.relowner = u.usesysid AND c.relkind = 'v'
\n
"
);
strcat
(
buf
,
showSystem
?
" AND c.relname ~ '^pg_'
\n
"
:
" AND c.relname !~ '^pg_'
\n
"
);
if
(
name
)
{
...
...
@@ -985,8 +983,7 @@ listTables(const char *infotype, const char *name, bool desc)
if
(
desc
)
strcat
(
buf
,
", obj_description(c.oid) as
\"
Description
\"
"
);
strcat
(
buf
,
"
\n
FROM pg_class c
\n
"
"WHERE c.relkind = 'r'
\n
"
" AND exists (select 1 from pg_views where viewname = c.relname)
\n
"
"WHERE c.relkind = 'v'
\n
"
" AND not exists (select 1 from pg_user where usesysid = c.relowner)
\n
"
);
strcat
(
buf
,
showSystem
?
" AND c.relname ~ '^pg_'
\n
"
:
" AND c.relname !~ '^pg_'
\n
"
);
if
(
name
)
...
...
src/bin/psql/tab-complete.c
View file @
4ad9fe4c
...
...
@@ -3,7 +3,7 @@
*
* Copyright 2000 by PostgreSQL Global Development Group
*
* $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.2
1 2000/10/03 19:50:20 petere
Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.2
2 2000/10/25 20:36:52 tgl
Exp $
*/
/*----------------------------------------------------------------------
...
...
@@ -519,7 +519,7 @@ psql_completion(char *text, int start, int end)
*/
else
if
((
strcasecmp
(
prev3_wd
,
"GRANT"
)
==
0
||
strcasecmp
(
prev3_wd
,
"REVOKE"
)
==
0
)
&&
strcasecmp
(
prev_wd
,
"ON"
)
==
0
)
COMPLETE_WITH_QUERY
(
"SELECT relname FROM pg_class WHERE relkind in ('r','i','
s
') and substr(relname,1,%d)='%s'"
);
COMPLETE_WITH_QUERY
(
"SELECT relname FROM pg_class WHERE relkind in ('r','i','
S','v
') and substr(relname,1,%d)='%s'"
);
/* Complete "GRANT * ON * " with "TO" */
else
if
(
strcasecmp
(
prev4_wd
,
"GRANT"
)
==
0
&&
strcasecmp
(
prev2_wd
,
"ON"
)
==
0
)
COMPLETE_WITH_CONST
(
"TO"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment