]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-mdb/idl.c
ITS#8868 don't convert IDL to range needlessly
[openldap] / servers / slapd / back-mdb / idl.c
index 3455fe2d60a2c9ea085ab11cc8bd61c60a37ab86..b297ec8a13cb9c2eb0eac0e7bac489466aa89cba 100644 (file)
@@ -711,18 +711,11 @@ mdb_idl_intersection(
        }
 
        /* If a range completely covers the list, the result is
-        * just the list. If idmin to idmax is contiguous, just
-        * turn it into a range.
+        * just the list.
         */
        if ( MDB_IDL_IS_RANGE( b )
                && MDB_IDL_RANGE_FIRST( b ) <= MDB_IDL_FIRST( a )
                && MDB_IDL_RANGE_LAST( b ) >= MDB_IDL_LLAST( a ) ) {
-               if (idmax - idmin + 1 == a[0])
-               {
-                       a[0] = NOID;
-                       a[1] = idmin;
-                       a[2] = idmax;
-               }
                goto done;
        }