mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-03-01 17:57:00 +08:00
Add sortsupport routines for text.
This provides a small but worthwhile speedup when sorting text, at least in cases to which the sortsupport machinery applies. Robert Haas and Peter Geoghegan
This commit is contained in:
@ -53,6 +53,6 @@
|
||||
*/
|
||||
|
||||
/* yyyymmddN */
|
||||
#define CATALOG_VERSION_NO 201407151
|
||||
#define CATALOG_VERSION_NO 201408141
|
||||
|
||||
#endif
|
||||
|
||||
@ -122,6 +122,7 @@ DATA(insert ( 1989 26 26 1 356 ));
|
||||
DATA(insert ( 1989 26 26 2 3134 ));
|
||||
DATA(insert ( 1991 30 30 1 404 ));
|
||||
DATA(insert ( 1994 25 25 1 360 ));
|
||||
DATA(insert ( 1994 25 25 2 3255 ));
|
||||
DATA(insert ( 1996 1083 1083 1 1107 ));
|
||||
DATA(insert ( 2000 1266 1266 1 1358 ));
|
||||
DATA(insert ( 2002 1562 1562 1 1672 ));
|
||||
|
||||
@ -614,6 +614,8 @@ DATA(insert OID = 3135 ( btnamesortsupport PGNSP PGUID 12 1 0 0 0 f f f f t f i
|
||||
DESCR("sort support");
|
||||
DATA(insert OID = 360 ( bttextcmp PGNSP PGUID 12 1 0 0 0 f f f f t f i 2 0 23 "25 25" _null_ _null_ _null_ _null_ bttextcmp _null_ _null_ _null_ ));
|
||||
DESCR("less-equal-greater");
|
||||
DATA(insert OID = 3255 ( bttextsortsupport PGNSP PGUID 12 1 0 0 0 f f f f t f i 1 0 2278 "2281" _null_ _null_ _null_ _null_ bttextsortsupport _null_ _null_ _null_ ));
|
||||
DESCR("sort support");
|
||||
DATA(insert OID = 377 ( cash_cmp PGNSP PGUID 12 1 0 0 0 f f f f t f i 2 0 23 "790 790" _null_ _null_ _null_ _null_ cash_cmp _null_ _null_ _null_ ));
|
||||
DESCR("less-equal-greater");
|
||||
DATA(insert OID = 380 ( btreltimecmp PGNSP PGUID 12 1 0 0 0 f f f f t f i 2 0 23 "703 703" _null_ _null_ _null_ _null_ btreltimecmp _null_ _null_ _null_ ));
|
||||
|
||||
@ -316,6 +316,7 @@ extern Datum bttintervalcmp(PG_FUNCTION_ARGS);
|
||||
extern Datum btcharcmp(PG_FUNCTION_ARGS);
|
||||
extern Datum btnamecmp(PG_FUNCTION_ARGS);
|
||||
extern Datum bttextcmp(PG_FUNCTION_ARGS);
|
||||
extern Datum bttextsortsupport(PG_FUNCTION_ARGS);
|
||||
|
||||
/*
|
||||
* Per-opclass sort support functions for new btrees. Like the
|
||||
|
||||
Reference in New Issue
Block a user