Fix OPENDJ-469 - LDIFReader has code duplication and suffer from poor performance with highly multi-valued attributes.
Previous commit demonstrates an issue with the LDIFImportConfig, the validateSchema flag was not set in constructor.
| | |
| | | * |
| | | * |
| | | * Copyright 2006-2009 Sun Microsystems, Inc. |
| | | * Portions Copyright 2012 ForgeRock AS |
| | | */ |
| | | package org.opends.server.types; |
| | | |
| | |
| | | invokeImportPlugins = false; |
| | | isCompressed = false; |
| | | isEncrypted = false; |
| | | validateSchema = true; |
| | | reader = null; |
| | | rejectWriter = null; |
| | | skipWriter = null; |
| | |
| | | invokeImportPlugins = false; |
| | | isCompressed = false; |
| | | isEncrypted = false; |
| | | validateSchema = true; |
| | | reader = getBufferedReader(ldifInputReader); |
| | | rejectWriter = null; |
| | | skipWriter = null; |