Starting in etlunit 3.2.0, assertions have changed a bit in nature in order to make them work better and more consistently across both files and databases.
What's Changed
Prior to 3.2.0, the source file type drove the operation. For example, in this assertion:
assert(source-table: 'TABLE', target: 'MASTER');
The reference file type is the relational definition of the TABLE table, and the target file is opened using that definition. Even if you specify file types for both the source and the target, the source is still the driver:
assert( source-table: 'TABLE', source-reference-file-type: 'T', target: 'MASTER', target-reference-file-type: 'M' );
In this case, since etlunit has been given enough information to interpret the file types on both sides, etlunit will use the source file type to extract data from the source table, and the target file type to open the local data file, then it intersects the source and the target to create an intersection of the two, and that becomes the basis of the assertion. If columns are additionally specified, as in this, the column list is processed against the source, then intersected with the target.
assert( source-table: 'TABLE', source-reference-file-type: 'T', column-list-mode: 'exclude', column-list: ['ID'], target: 'MASTER', target-reference-file-type: 'M' );
What happens here is that the source file type, 'T', is narrowed with the column list - specifically in this case the ID field is excluded, then the source data is extracted. The target file type, 'M', is narrowed to match the source, then the target file is opened using that definition. Any columns that don't match were silently ignored.
This same operation in 3.2.0 is processed like this:
- Open the target file type.
- Process the column list on the target file type. This is the file type which drives the entire operation.
- Verify that the reference file type (the type created in (2)) is exactly a subset of the source file type. If it isn't, an error is thrown.
The upside is that the local target file must exactly match the final definition of the target, not the original. This entire process has changed in 3.2.0 - the target file must match the target reference file type exactly.
Add Comment