diff --git a/SIT/features/02_explode_map/breakData.cql b/SIT/features/02_explode_map/breakData.cql index fbe97cf2..79a5354c 100644 --- a/SIT/features/02_explode_map/breakData.cql +++ b/SIT/features/02_explode_map/breakData.cql @@ -1,3 +1,14 @@ +/* + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ DELETE FROM target.feature_explode_map WHERE key='key2'; UPDATE target.feature_explode_map SET value='value999' WHERE key='key3' AND fruit='apples'; diff --git a/SIT/features/02_explode_map/execute.sh b/SIT/features/02_explode_map/execute.sh index c83ae7cd..b8fcf560 100644 --- a/SIT/features/02_explode_map/execute.sh +++ b/SIT/features/02_explode_map/execute.sh @@ -1,3 +1,17 @@ +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + #!/bin/bash -e workingDir="$1" diff --git a/SIT/features/02_explode_map/expected.cql b/SIT/features/02_explode_map/expected.cql index 92674685..5c953449 100644 --- a/SIT/features/02_explode_map/expected.cql +++ b/SIT/features/02_explode_map/expected.cql @@ -1 +1,13 @@ +/* + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + SELECT * FROM target.feature_explode_map; diff --git a/SIT/features/02_explode_map/fix.properties b/SIT/features/02_explode_map/fix.properties index 89d62ccc..f624c90c 100644 --- a/SIT/features/02_explode_map/fix.properties +++ b/SIT/features/02_explode_map/fix.properties @@ -1,3 +1,17 @@ +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + spark.cdm.connect.origin.host cdm-sit-cass spark.cdm.connect.target.host cdm-sit-cass diff --git a/SIT/features/02_explode_map/migrate.properties b/SIT/features/02_explode_map/migrate.properties index 23f2805c..80913df8 100644 --- a/SIT/features/02_explode_map/migrate.properties +++ b/SIT/features/02_explode_map/migrate.properties @@ -1,3 +1,13 @@ +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + spark.cdm.connect.origin.host cdm-sit-cass spark.cdm.connect.target.host cdm-sit-cass diff --git a/SIT/features/02_explode_map/setup.cql b/SIT/features/02_explode_map/setup.cql index c32d3ff0..5f250915 100644 --- a/SIT/features/02_explode_map/setup.cql +++ b/SIT/features/02_explode_map/setup.cql @@ -1,3 +1,15 @@ +/* + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + DROP TABLE IF EXISTS origin.feature_explode_map; CREATE TABLE origin.feature_explode_map(key text, value text, fruits map, PRIMARY KEY (key)); INSERT INTO origin.feature_explode_map(key,value,fruits) VALUES ('key1','valueA', {'apples': 3, 'oranges': 5, 'bananas': 2, 'grapes': 11}); diff --git a/SIT/features/03_codec/breakData.cql b/SIT/features/03_codec/breakData.cql index 2ddb775b..39e0c671 100644 --- a/SIT/features/03_codec/breakData.cql +++ b/SIT/features/03_codec/breakData.cql @@ -1,3 +1,15 @@ +/* + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + DELETE FROM target.codec WHERE key='key2'; UPDATE target.codec SET diff --git a/SIT/features/03_codec/execute.sh b/SIT/features/03_codec/execute.sh index c83ae7cd..b8fcf560 100644 --- a/SIT/features/03_codec/execute.sh +++ b/SIT/features/03_codec/execute.sh @@ -1,3 +1,17 @@ +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + #!/bin/bash -e workingDir="$1" diff --git a/SIT/features/03_codec/expected.cql b/SIT/features/03_codec/expected.cql index d23fc4b8..f2b145d7 100644 --- a/SIT/features/03_codec/expected.cql +++ b/SIT/features/03_codec/expected.cql @@ -1 +1,13 @@ +/* + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + SELECT * FROM target.codec; diff --git a/SIT/features/03_codec/fix.properties b/SIT/features/03_codec/fix.properties index fd5df1da..1dbdccda 100644 --- a/SIT/features/03_codec/fix.properties +++ b/SIT/features/03_codec/fix.properties @@ -1,3 +1,17 @@ +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + spark.cdm.connect.origin.host cdm-sit-cass spark.cdm.connect.target.host cdm-sit-cass diff --git a/SIT/features/03_codec/migrate.properties b/SIT/features/03_codec/migrate.properties index cc945025..a316bbfe 100644 --- a/SIT/features/03_codec/migrate.properties +++ b/SIT/features/03_codec/migrate.properties @@ -1,3 +1,17 @@ +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + spark.cdm.connect.origin.host cdm-sit-cass spark.cdm.connect.target.host cdm-sit-cass diff --git a/SIT/features/03_codec/setup.cql b/SIT/features/03_codec/setup.cql index f03d5b00..cf4c1b26 100644 --- a/SIT/features/03_codec/setup.cql +++ b/SIT/features/03_codec/setup.cql @@ -1,3 +1,15 @@ +/* + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + DROP TABLE IF EXISTS origin.codec; CREATE TABLE origin.codec(key text, val_int text, val_bigint text, val_timestamp text, val_decimal text, val_double text, PRIMARY KEY (key)); INSERT INTO origin.codec(key,val_int,val_bigint,val_timestamp,val_decimal,val_double) diff --git a/SIT/features/04_udt_mapper/breakData.cql b/SIT/features/04_udt_mapper/breakData.cql index b29f9885..90fc4f76 100644 --- a/SIT/features/04_udt_mapper/breakData.cql +++ b/SIT/features/04_udt_mapper/breakData.cql @@ -1,3 +1,15 @@ +/* + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + DELETE FROM target.udt_mapper WHERE key='key2'; UPDATE target.udt_mapper SET val_udt = {text_value: 'value9990', long_value: 9990000000, double_value: 999.00} diff --git a/SIT/features/04_udt_mapper/execute.sh b/SIT/features/04_udt_mapper/execute.sh index c83ae7cd..51833f95 100644 --- a/SIT/features/04_udt_mapper/execute.sh +++ b/SIT/features/04_udt_mapper/execute.sh @@ -1,3 +1,13 @@ +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + #!/bin/bash -e workingDir="$1" diff --git a/SIT/features/04_udt_mapper/expected.cql b/SIT/features/04_udt_mapper/expected.cql index 7a79413b..6302d930 100644 --- a/SIT/features/04_udt_mapper/expected.cql +++ b/SIT/features/04_udt_mapper/expected.cql @@ -1 +1,13 @@ +/* + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + SELECT * FROM target.udt_mapper; diff --git a/SIT/features/04_udt_mapper/fix.properties b/SIT/features/04_udt_mapper/fix.properties index 09f4aa53..e4732150 100644 --- a/SIT/features/04_udt_mapper/fix.properties +++ b/SIT/features/04_udt_mapper/fix.properties @@ -1,3 +1,13 @@ +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + spark.cdm.connect.origin.host cdm-sit-cass spark.cdm.connect.target.host cdm-sit-cass diff --git a/SIT/features/04_udt_mapper/migrate.properties b/SIT/features/04_udt_mapper/migrate.properties index 856d31ef..ccd14e91 100644 --- a/SIT/features/04_udt_mapper/migrate.properties +++ b/SIT/features/04_udt_mapper/migrate.properties @@ -1,9 +1,16 @@ +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + spark.cdm.connect.origin.host cdm-sit-cass spark.cdm.connect.target.host cdm-sit-cass spark.cdm.schema.origin.keyspaceTable origin.udt_mapper spark.cdm.schema.target.keyspaceTable target.udt_mapper spark.cdm.perfops.numParts 1 - - - diff --git a/SIT/features/04_udt_mapper/setup.cql b/SIT/features/04_udt_mapper/setup.cql index e4460fd8..5e2c996c 100644 --- a/SIT/features/04_udt_mapper/setup.cql +++ b/SIT/features/04_udt_mapper/setup.cql @@ -1,3 +1,15 @@ +/* + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + DROP TABLE IF EXISTS origin.udt_mapper; DROP TYPE IF EXISTS origin.udt_mapper_origin; CREATE TYPE origin.udt_mapper_origin ( diff --git a/SIT/features/06_partition_range/migrate.properties b/SIT/features/06_partition_range/migrate.properties index d5b0122b..d86b4341 100644 --- a/SIT/features/06_partition_range/migrate.properties +++ b/SIT/features/06_partition_range/migrate.properties @@ -1,3 +1,13 @@ +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + spark.cdm.connect.origin.host cdm-sit-cass spark.cdm.connect.target.host cdm-sit-cass diff --git a/SIT/features/06_partition_range/migrate_with_partitionfile.properties b/SIT/features/06_partition_range/migrate_with_partitionfile.properties index 767ef1fa..e7b3927f 100644 --- a/SIT/features/06_partition_range/migrate_with_partitionfile.properties +++ b/SIT/features/06_partition_range/migrate_with_partitionfile.properties @@ -1,3 +1,13 @@ +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + spark.cdm.connect.origin.host cdm-sit-cass spark.cdm.connect.target.host cdm-sit-cass diff --git a/SIT/features/07_migrate_rows/execute.sh b/SIT/features/07_migrate_rows/execute.sh index 2b704629..8610ccda 100644 --- a/SIT/features/07_migrate_rows/execute.sh +++ b/SIT/features/07_migrate_rows/execute.sh @@ -1,3 +1,13 @@ +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + #!/bin/bash -e workingDir="$1" diff --git a/SIT/features/07_migrate_rows/expected.cql b/SIT/features/07_migrate_rows/expected.cql index 33684733..f530328e 100644 --- a/SIT/features/07_migrate_rows/expected.cql +++ b/SIT/features/07_migrate_rows/expected.cql @@ -1 +1,13 @@ +/* + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + SELECT * FROM target.feature_migrate_rows; diff --git a/SIT/features/07_migrate_rows/migrate.properties b/SIT/features/07_migrate_rows/migrate.properties index f78ba8ca..382b70d1 100644 --- a/SIT/features/07_migrate_rows/migrate.properties +++ b/SIT/features/07_migrate_rows/migrate.properties @@ -1,3 +1,13 @@ +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + spark.cdm.connect.origin.host cdm-sit-cass spark.cdm.connect.target.host cdm-sit-cass diff --git a/SIT/features/07_migrate_rows/migrate_with_pkrowsfile.properties b/SIT/features/07_migrate_rows/migrate_with_pkrowsfile.properties index df862a84..e081745d 100644 --- a/SIT/features/07_migrate_rows/migrate_with_pkrowsfile.properties +++ b/SIT/features/07_migrate_rows/migrate_with_pkrowsfile.properties @@ -1,3 +1,13 @@ +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + spark.cdm.connect.origin.host cdm-sit-cass spark.cdm.connect.target.host cdm-sit-cass diff --git a/SIT/features/07_migrate_rows/setup.cql b/SIT/features/07_migrate_rows/setup.cql index 9a008670..6929b443 100644 --- a/SIT/features/07_migrate_rows/setup.cql +++ b/SIT/features/07_migrate_rows/setup.cql @@ -1,3 +1,15 @@ +/* + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + DROP TABLE IF EXISTS origin.feature_migrate_rows; CREATE TABLE origin.feature_migrate_rows(key text, key2 text, value text, PRIMARY KEY (key,key2)); INSERT INTO origin.feature_migrate_rows(key,key2,value) VALUES ('key1','A','valueA'); diff --git a/SIT/regression/02_ColumnRenameWithConstantsAndExplode/execute.sh b/SIT/regression/02_ColumnRenameWithConstantsAndExplode/execute.sh index c83ae7cd..b8fcf560 100644 --- a/SIT/regression/02_ColumnRenameWithConstantsAndExplode/execute.sh +++ b/SIT/regression/02_ColumnRenameWithConstantsAndExplode/execute.sh @@ -1,3 +1,17 @@ +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + #!/bin/bash -e workingDir="$1" diff --git a/SIT/smoke/02_autocorrect_kvp/expected.cql b/SIT/smoke/02_autocorrect_kvp/expected.cql index 55a11420..e4fd3509 100644 --- a/SIT/smoke/02_autocorrect_kvp/expected.cql +++ b/SIT/smoke/02_autocorrect_kvp/expected.cql @@ -1 +1,13 @@ +/* + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + SELECT * FROM target.smoke_autocorrect_kvp; diff --git a/rat-excludes.txt b/rat-excludes.txt index c0fe339b..90a59e8c 100644 --- a/rat-excludes.txt +++ b/rat-excludes.txt @@ -36,6 +36,9 @@ SIT/regression/01_explode_map_with_constants/expected.out SIT/regression/01_explode_map_with_constants/cdm.txt SIT/regression/02_ColumnRenameWithConstantsAndExplode/cdm.txt SIT/regression/02_ColumnRenameWithConstantsAndExplode/expected.out +SIT/regression/02_ColumnRenameWithConstantsAndExplode/cdm.fixData.assert +SIT/regression/02_ColumnRenameWithConstantsAndExplode/cdm.migrateData.assert +SIT/regression/02_ColumnRenameWithConstantsAndExplode/cdm.validateData.assert SIT/regression/03_performance/cdm.txt SIT/regression/03_performance/data_break.csv SIT/regression/03_performance/expected.out @@ -86,3 +89,25 @@ PERF/logs/scenario_20230523_162909_904.log PERF/logs/scenario_20230523_162138_788.log PERF/logs/scenario_20230523_164956_671.log PERF/logs/scenario_20230523_162115_962.log +toolchains.xml +settings.xml +SIT/features/06_partition_range/partitions.csv +SIT/features/04_udt_mapper/expected.out +SIT/features/04_udt_mapper/cdm.txt +SIT/features/04_udt_mapper/cdm.fixData.assert +SIT/features/04_udt_mapper/cdm.migrateData.assert +SIT/features/04_udt_mapper/cdm.validateData.assert +SIT/features/07_migrate_rows/expected.out +SIT/features/07_migrate_rows/origin.feature_migrate_rows_partitions.csv +SIT/features/07_migrate_rows/cdm.txt +SIT/features/07_migrate_rows/primary_key_rows.csv +SIT/features/02_explode_map/expected.out +SIT/features/02_explode_map/cdm.txt +SIT/features/02_explode_map/cdm.fixData.assert +SIT/features/02_explode_map/cdm.migrateData.assert +SIT/features/02_explode_map/cdm.validateData.assert +SIT/features/03_codec/expected.out +SIT/features/03_codec/cdm.txt +SIT/features/03_codec/cdm.fixData.assert +SIT/features/03_codec/cdm.migrateData.assert +SIT/features/03_codec/cdm.validateData.assert