diff options
| author | Robert Haas <rhaas@postgresql.org> | 2015-04-02 14:02:55 -0400 |
|---|---|---|
| committer | Robert Haas <rhaas@postgresql.org> | 2015-04-02 14:04:26 -0400 |
| commit | abd94bcac4582903765be7be959d1dbc121df0d0 (patch) | |
| tree | ef51fb2bf55601b3775a6478a276d638ccb4d762 /src/include/utils/guc.h | |
| parent | 00ee6c7672fe0bf9448bc744b5e3408f5ebffc2e (diff) | |
| download | postgresql-abd94bcac4582903765be7be959d1dbc121df0d0.tar.gz | |
Use abbreviated keys for faster sorting of numeric datums.
Andrew Gierth, reviewed by Peter Geoghegan, with further tweaks by me.
Diffstat (limited to 'src/include/utils/guc.h')
| -rw-r--r-- | src/include/utils/guc.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/utils/guc.h b/src/include/utils/guc.h index d3100d1781..ff78b70b96 100644 --- a/src/include/utils/guc.h +++ b/src/include/utils/guc.h @@ -258,6 +258,10 @@ extern int tcp_keepalives_idle; extern int tcp_keepalives_interval; extern int tcp_keepalives_count; +#ifdef TRACE_SORT +extern bool trace_sort; +#endif + /* * Functions exported by guc.c */ |
