aboutsummaryrefslogtreecommitdiff
path: root/src/include/utils/builtins.h
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2015-04-02 14:02:55 -0400
committerRobert Haas <rhaas@postgresql.org>2015-04-02 14:04:26 -0400
commitabd94bcac4582903765be7be959d1dbc121df0d0 (patch)
treeef51fb2bf55601b3775a6478a276d638ccb4d762 /src/include/utils/builtins.h
parent00ee6c7672fe0bf9448bc744b5e3408f5ebffc2e (diff)
downloadpostgresql-abd94bcac4582903765be7be959d1dbc121df0d0.tar.gz
postgresql-abd94bcac4582903765be7be959d1dbc121df0d0.zip
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/builtins.h')
-rw-r--r--src/include/utils/builtins.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h
index 631064158a2..33a453f6020 100644
--- a/src/include/utils/builtins.h
+++ b/src/include/utils/builtins.h
@@ -978,6 +978,7 @@ extern Datum numeric_round(PG_FUNCTION_ARGS);
extern Datum numeric_trunc(PG_FUNCTION_ARGS);
extern Datum numeric_ceil(PG_FUNCTION_ARGS);
extern Datum numeric_floor(PG_FUNCTION_ARGS);
+extern Datum numeric_sortsupport(PG_FUNCTION_ARGS);
extern Datum numeric_cmp(PG_FUNCTION_ARGS);
extern Datum numeric_eq(PG_FUNCTION_ARGS);
extern Datum numeric_ne(PG_FUNCTION_ARGS);