In spark API:
column.like("only takes a static string with optional wildcards like %")
column.contains(accepts_a_column_but_wont_parse_wildcards)
So what's the equivalent method to call to compare values using wildcards that might show up in a string value from a column found in the join?
example that fails because like() accepts literal strings, not Column:
.join(other_df, column.like(concat("%", $"column_potentially_with_wildcards", "%")), "left")
?