From be8b373977da18c3eb6658da88f06e27c319f78c Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Thu, 24 Jan 2008 22:43:53 +1300 Subject: [PATCH] Note $c->strict_result_ordering configuration option. --- config/other-config.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/config/other-config.php b/config/other-config.php index 1cc92414..c0b45fd7 100644 --- a/config/other-config.php +++ b/config/other-config.php @@ -84,3 +84,10 @@ // $c->schema_patch // $c->schema_version +/** +* This property is used to enforce regular ordering of query results so +* that the regression test output is deterministically ordered. In +* real life this is not important, and it is a performance hit, so it +* should not usually be enabled anywhere else. +*/ +// $c->strict_result_ordering = boolean;