mirror of
https://github.com/apache/nifi.git
synced 2025-03-03 07:59:15 +00:00
NIFI-13418 Updated ExcelReader to handle spreadsheets with shared formulas
This closes #9063 Signed-off-by: David Handermann <exceptionfactory@apache.org>
This commit is contained in:
parent
3f6eb6ff63
commit
90c58a88a7
@ -47,6 +47,7 @@ class RowIterator implements Iterator<Row>, Closeable {
|
||||
.bufferSize(4096)
|
||||
.password(configuration.getPassword())
|
||||
.setAvoidTempFiles(configuration.isAvoidTempFiles())
|
||||
.setReadSharedFormulas(true) // NOTE: If not set to true, then data with shared formulas fail.
|
||||
.open(in);
|
||||
|
||||
final List<String> requiredSheets = configuration.getRequiredSheets();
|
||||
|
Loading…
x
Reference in New Issue
Block a user