AbsaOSS / spline

Data Lineage Tracking And Visualization Solution
https://absaoss.github.io/spline/
Apache License 2.0
599 stars 154 forks source link

Get rid of `__` property prefix in the `AttrOrExprRef.scala` #1151

Open wajda opened 1 year ago

wajda commented 1 year ago
case class AttrOrExprRef(
  // There is not need to keep the identifier name prefixed with `__` solely for SerDe purpose.
  // It could be replaced with some sort of property mapping instead.
  __attrId: Option[Attribute.Id],
  __exprId: Option[ExpressionLike.Id])