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
029722ac
Commit
029722ac
authored
Aug 20, 2012
by
Robert Haas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved tab completion for CLUSTER VERBOSE.
Jeff Janes
parent
68386fc1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
2 deletions
+28
-2
src/bin/psql/tab-complete.c
src/bin/psql/tab-complete.c
+28
-2
No files found.
src/bin/psql/tab-complete.c
View file @
029722ac
...
...
@@ -1661,14 +1661,29 @@ psql_completion(char *text, int start, int end)
/* CLUSTER */
/*
* If the previous word is CLUSTER and not
without
produce list of tables
* If the previous word is CLUSTER and not
WITHOUT
produce list of tables
*/
else
if
(
pg_strcasecmp
(
prev_wd
,
"CLUSTER"
)
==
0
&&
pg_strcasecmp
(
prev2_wd
,
"WITHOUT"
)
!=
0
)
COMPLETE_WITH_SCHEMA_QUERY
(
Query_for_list_of_tables
,
"UNION SELECT 'VERBOSE'"
);
/*
* If the previous words are CLUSTER VERBOSE produce list of tables
*/
else
if
(
pg_strcasecmp
(
prev_wd
,
"VERBOSE"
)
==
0
&&
pg_strcasecmp
(
prev2_wd
,
"CLUSTER"
)
==
0
)
COMPLETE_WITH_SCHEMA_QUERY
(
Query_for_list_of_tables
,
NULL
);
/* If we have CLUSTER <sth>, then add "USING" */
else
if
(
pg_strcasecmp
(
prev2_wd
,
"CLUSTER"
)
==
0
&&
pg_strcasecmp
(
prev_wd
,
"ON"
)
!=
0
)
pg_strcasecmp
(
prev_wd
,
"ON"
)
!=
0
&&
pg_strcasecmp
(
prev_wd
,
"VERBOSE"
)
!=
0
)
{
COMPLETE_WITH_CONST
(
"USING"
);
}
/* If we have CLUSTER VERBOSE <sth>, then add "USING" */
else
if
(
pg_strcasecmp
(
prev3_wd
,
"CLUSTER"
)
==
0
&&
pg_strcasecmp
(
prev2_wd
,
"VERBOSE"
)
==
0
)
{
COMPLETE_WITH_CONST
(
"USING"
);
}
...
...
@@ -1683,6 +1698,17 @@ psql_completion(char *text, int start, int end)
COMPLETE_WITH_QUERY
(
Query_for_index_of_table
);
}
/*
* If we have CLUSTER VERBOSE <sth> USING, then add the index as well.
*/
else
if
(
pg_strcasecmp
(
prev4_wd
,
"CLUSTER"
)
==
0
&&
pg_strcasecmp
(
prev3_wd
,
"VERBOSE"
)
==
0
&&
pg_strcasecmp
(
prev_wd
,
"USING"
)
==
0
)
{
completion_info_charp
=
prev2_wd
;
COMPLETE_WITH_QUERY
(
Query_for_index_of_table
);
}
/* COMMENT */
else
if
(
pg_strcasecmp
(
prev_wd
,
"COMMENT"
)
==
0
)
COMPLETE_WITH_CONST
(
"ON"
);
...
...
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