automate-dv icon indicating copy to clipboard operation
automate-dv copied to clipboard

[FEATURE] Configure handling of Empty String

Open DVAlexHiggs opened this issue 2 years ago • 1 comments

Currently we treat the EMPTY STRING as NULL in our hashing approaches, this should be configurable for users who may not want this functionality.

The default should be that we DO treat it as NULL, and users can override this if needed.

vars:
  hash: MD5
  max_datetime: '{{ dbtvault.max_datetime() }}'
  concat_string: '||'
  null_placeholder_string: '^^'
  escape_char_left: '"'
  escape_char_right: '"'
  empty_string_is_null: true # this is a new configurable 

DVAlexHiggs avatar Jun 07 '22 10:06 DVAlexHiggs