diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-05-18 21:38:41 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-05-18 21:38:41 +0000 |
commit | dd9af92c413827404e87d479a48c5eb696857423 (patch) | |
tree | 987bfef5b84bde26f7f358852b1071c2660cc83b /src/include/utils/builtins.h | |
parent | a5b370943e1a7936e0118641f16acf6dbcc829cc (diff) | |
download | postgresql-dd9af92c413827404e87d479a48c5eb696857423.tar.gz postgresql-dd9af92c413827404e87d479a48c5eb696857423.zip |
Add display of sort keys to the default EXPLAIN output.
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 7a8d1fb3873..6340aa22540 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.181 2002/05/12 20:10:05 tgl Exp $ + * $Id: builtins.h,v 1.182 2002/05/18 21:38:41 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -357,6 +357,7 @@ extern List *deparse_context_for_plan(int outer_varno, Node *outercontext, extern Node *deparse_context_for_rte(RangeTblEntry *rte); extern Node *deparse_context_for_subplan(const char *name, List *tlist, List *rtable); +extern List *deparse_context_from_rtable(List *rtable); extern const char *quote_identifier(const char *ident); extern char *quote_qualified_identifier(const char *namespace, const char *ident); |