agora inbox for pgsql-hackers@postgresql.org
help / color / mirror / Atom feed[PATCH v1] psql: Fix \df tab completion for procedures
333+ messages / 4 participants
[nested] [flat]
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v1] psql: Fix \df tab completion for procedures
@ 2025-11-22 14:42 Erik Wienhold <ewie@ewie.name>
0 siblings, 0 replies; 333+ messages in thread
From: Erik Wienhold @ 2025-11-22 14:42 UTC (permalink / raw)
\df also covers procedures since fb421231daa. But the tab completion
logic was never changed to align with that. Fix this along the lines of
05e85d35afb.
---
src/bin/psql/tab-complete.in.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/psql/tab-complete.in.c b/src/bin/psql/tab-complete.in.c
index 072b98bea08..8f81f5bf035 100644
--- a/src/bin/psql/tab-complete.in.c
+++ b/src/bin/psql/tab-complete.in.c
@@ -5669,7 +5669,7 @@ match_previous_words(int pattern_id,
else if (TailMatchesCS("\\dew*"))
COMPLETE_WITH_QUERY(Query_for_list_of_fdws);
else if (TailMatchesCS("\\df*"))
- COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions);
+ COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines);
else if (HeadMatchesCS("\\df*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);
--
2.55.0
--5rsvev5qaoortkiw--
^ permalink raw reply [nested|flat] 333+ messages in thread
* [PATCH v4 6/6] Handle pg_get_triggerdef default args in system_functions.sql
@ 2025-12-09 19:51 Mark Wong <markwkm@gmail.com>
0 siblings, 0 replies; 333+ messages in thread
From: Mark Wong @ 2025-12-09 19:51 UTC (permalink / raw)
Modernize pg_get_triggerdef to use proargdefaults to handle the optional
pretty argument.
---
src/backend/utils/adt/ruleutils.c | 14 --------------
src/include/catalog/pg_proc.dat | 6 ++----
2 files changed, 2 insertions(+), 18 deletions(-)
diff --git a/src/backend/utils/adt/ruleutils.c b/src/backend/utils/adt/ruleutils.c
index a70807e84ca..27be4501e12 100644
--- a/src/backend/utils/adt/ruleutils.c
+++ b/src/backend/utils/adt/ruleutils.c
@@ -808,20 +808,6 @@ pg_get_viewdef_worker(Oid viewoid, int prettyFlags, int wrapColumn)
*/
Datum
pg_get_triggerdef(PG_FUNCTION_ARGS)
-{
- Oid trigid = PG_GETARG_OID(0);
- char *res;
-
- res = pg_get_triggerdef_worker(trigid, false);
-
- if (res == NULL)
- PG_RETURN_NULL();
-
- PG_RETURN_TEXT_P(string_to_text(res));
-}
-
-Datum
-pg_get_triggerdef_ext(PG_FUNCTION_ARGS)
{
Oid trigid = PG_GETARG_OID(0);
bool pretty = PG_GETARG_BOOL(1);
diff --git a/src/include/catalog/pg_proc.dat b/src/include/catalog/pg_proc.dat
index 69c1e5bb264..b43cbb62b82 100644
--- a/src/include/catalog/pg_proc.dat
+++ b/src/include/catalog/pg_proc.dat
@@ -3984,9 +3984,6 @@
proname => 'pg_get_partition_constraintdef', provolatile => 's',
prorettype => 'text', proargtypes => 'oid',
prosrc => 'pg_get_partition_constraintdef' },
-{ oid => '1662', descr => 'trigger description',
- proname => 'pg_get_triggerdef', provolatile => 's', prorettype => 'text',
- proargtypes => 'oid', prosrc => 'pg_get_triggerdef' },
{ oid => '1665', descr => 'name of sequence for a serial column',
proname => 'pg_get_serial_sequence', provolatile => 's', prorettype => 'text',
proargtypes => 'text text', prosrc => 'pg_get_serial_sequence' },
@@ -8566,7 +8563,8 @@
prosrc => 'pg_timezone_names' },
{ oid => '2730', descr => 'trigger description with pretty-print option',
proname => 'pg_get_triggerdef', provolatile => 's', prorettype => 'text',
- proargtypes => 'oid bool', prosrc => 'pg_get_triggerdef_ext' },
+ proargtypes => 'oid bool', proargnames => '{trigger,pretty}',
+ proargdefaults => '{false}', prosrc => 'pg_get_triggerdef' },
# asynchronous notifications
{ oid => '3035',
--
2.43.0
--eEEy3EHc57lA8spa--
^ permalink raw reply [nested|flat] 333+ messages in thread
* psql: Fix \df tab completion for procedures
@ 2026-07-01 19:36 Erik Wienhold <ewie@ewie.name>
2026-07-02 01:05 ` Re: psql: Fix \df tab completion for procedures Fujii Masao <masao.fujii@gmail.com>
2026-07-02 18:09 ` Re: psql: Fix \df tab completion for procedures surya poondla <suryapoondla4@gmail.com>
0 siblings, 2 replies; 333+ messages in thread
From: Erik Wienhold @ 2026-07-01 19:36 UTC (permalink / raw)
To: pgsql-hackers@lists.postgresql.org
Here's a patch that fixes the tab completion for \df to also consider
procedures, in effect every kind of routine.
I guess this was just missed in commits fb421231daa and 05e85d35afb.
--
Erik Wienhold
^ permalink raw reply [nested|flat] 333+ messages in thread
* Re: psql: Fix \df tab completion for procedures
2026-07-01 19:36 psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
@ 2026-07-02 01:05 ` Fujii Masao <masao.fujii@gmail.com>
2026-07-03 04:57 ` Re: psql: Fix \df tab completion for procedures Fujii Masao <masao.fujii@gmail.com>
1 sibling, 1 reply; 333+ messages in thread
From: Fujii Masao @ 2026-07-02 01:05 UTC (permalink / raw)
To: Erik Wienhold <ewie@ewie.name>; +Cc: pgsql-hackers@lists.postgresql.org
On Thu, Jul 2, 2026 at 4:36 AM Erik Wienhold <ewie@ewie.name> wrote:
>
> Here's a patch that fixes the tab completion for \df to also consider
> procedures, in effect every kind of routine.
>
> I guess this was just missed in commits fb421231daa and 05e85d35afb.
Thanks for the patch! LGTM.
This looks like an oversight, so the fix seems to need to be backpatched to v14.
Regards,
--
Fujii Masao
^ permalink raw reply [nested|flat] 333+ messages in thread
* Re: psql: Fix \df tab completion for procedures
2026-07-01 19:36 psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2026-07-02 01:05 ` Re: psql: Fix \df tab completion for procedures Fujii Masao <masao.fujii@gmail.com>
@ 2026-07-03 04:57 ` Fujii Masao <masao.fujii@gmail.com>
0 siblings, 0 replies; 333+ messages in thread
From: Fujii Masao @ 2026-07-03 04:57 UTC (permalink / raw)
To: Erik Wienhold <ewie@ewie.name>; +Cc: pgsql-hackers@lists.postgresql.org
On Thu, Jul 2, 2026 at 10:05 AM Fujii Masao <masao.fujii@gmail.com> wrote:
>
> On Thu, Jul 2, 2026 at 4:36 AM Erik Wienhold <ewie@ewie.name> wrote:
> >
> > Here's a patch that fixes the tab completion for \df to also consider
> > procedures, in effect every kind of routine.
> >
> > I guess this was just missed in commits fb421231daa and 05e85d35afb.
>
> Thanks for the patch! LGTM.
>
> This looks like an oversight, so the fix seems to need to be backpatched to v14.
I've pushed the patch. Thanks!
Regards,
--
Fujii Masao
^ permalink raw reply [nested|flat] 333+ messages in thread
* Re: psql: Fix \df tab completion for procedures
2026-07-01 19:36 psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
@ 2026-07-02 18:09 ` surya poondla <suryapoondla4@gmail.com>
1 sibling, 0 replies; 333+ messages in thread
From: surya poondla @ 2026-07-02 18:09 UTC (permalink / raw)
To: Erik Wienhold <ewie@ewie.name>; +Cc: pgsql-hackers@lists.postgresql.org
Hi Erik,
Thanks for reporting and fixing the auto-complete option.
The patch looks good.
Regards,
Surya Poondla
^ permalink raw reply [nested|flat] 333+ messages in thread
end of thread, other threads:[~2026-07-03 04:57 UTC | newest]
Thread overview: 333+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-11-22 14:42 [PATCH v1] psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2025-12-09 19:51 [PATCH v4 6/6] Handle pg_get_triggerdef default args in system_functions.sql Mark Wong <markwkm@gmail.com>
2026-07-01 19:36 psql: Fix \df tab completion for procedures Erik Wienhold <ewie@ewie.name>
2026-07-02 01:05 ` Fujii Masao <masao.fujii@gmail.com>
2026-07-03 04:57 ` Fujii Masao <masao.fujii@gmail.com>
2026-07-02 18:09 ` surya poondla <suryapoondla4@gmail.com>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox