Closed DVAlexHiggs closed 3 years ago
Allow a list to be provided to derived columns like so:
derived_columns: CUSTOMER_NK: - CUSTOMER_NAME - CUSTOMER_ID
Given CUSTOMER_NAME = "Alex" And CUSTOMER_ID = 001 Then CUSTOMER_NK: = Alex||001
CUSTOMER_NAME = "Alex"
CUSTOMER_ID = 001
CUSTOMER_NK: = Alex||001
In future we will provide a means to configure the concatenation string, but for now the double pipe standard will be used.
This will allow concatenated values to be generated for situations where one column is not enough to define a required value.
This was suggested in #9 and is defined here as a separate feature for trackability.
Allow a list to be provided to derived columns like so:
Given
CUSTOMER_NAME = "Alex"
AndCUSTOMER_ID = 001
ThenCUSTOMER_NK: = Alex||001
In future we will provide a means to configure the concatenation string, but for now the double pipe standard will be used.
This will allow concatenated values to be generated for situations where one column is not enough to define a required value.
This was suggested in #9 and is defined here as a separate feature for trackability.