Commit 168a809d authored by Robert Haas's avatar Robert Haas

Re-enable abbreviated keys on Windows.

Commit 1be4eb1b disabled this, but I
think the real problem here was fixed by commit
b181a919 and commit
d060e07f.  So let's try re-enabling
it now and see what happens.
parent 599d00aa
...@@ -1817,13 +1817,7 @@ btsortsupport_worker(SortSupport ssup, Oid collid) ...@@ -1817,13 +1817,7 @@ btsortsupport_worker(SortSupport ssup, Oid collid)
* keys optimization may win, and if it doesn't, the "abort abbreviation" * keys optimization may win, and if it doesn't, the "abort abbreviation"
* code may rescue us. So, for now, we don't disable this anywhere on the * code may rescue us. So, for now, we don't disable this anywhere on the
* basis of performance. * basis of performance.
*
* On Windows, however, strxfrm() seems to be unreliable on some machines,
* so we categorically disable this optimization there.
*/ */
#ifdef WIN32
abbreviate = false;
#endif
/* /*
* If we're using abbreviated keys, or if we're using a locale-aware * If we're using abbreviated keys, or if we're using a locale-aware
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment