Skip to content

v0.3.1

Compare
Choose a tag to compare
@oscar60310 oscar60310 released this 17 Jan 04:22
· 560 commits to develop since this release
d0332d9

New Features

  • New built-in tag: masking
    You can now use the masking tag to limit the exposure of sensitive data.

    select
     C_CUSTKEY,
     C_NAME,
     C_ADDRESS,
     C_NATIONKEY,
     {% masking C_PHONE partial(3, 'XXX-XXX', 5) %} as C_PHONE_Masked,
     C_ACCTBAL,
     C_MKTSEGMENT,
     C_COMMENT
    from tpch_sf1.customer;

    image

Fixs

  • Fix metadata of documentation

What's Changed

New Contributors

Full Changelog: v0.3.0...v0.3.1