lemon-scooter-69730
05/11/2023, 12:48 PMpipeline = Pipeline.create(recipe)
pipeline.run()
pipeline.pretty_print_summary()
For example it throws this exception
if regex("LATERAL VIEW EXPLODE(col)"):
TypeError: 'str' object is not callable
This error comes from sqllineage
because it uses the latest version of sqlparse==0.4.4
pinning my version to 0.4.3
fixed the problem.
I also noticed that the version of sqllineage==1.3.6
uses the as present here I resolved it by moving my version of sqllineage to 1.4.2
. I am just putting this here in case anyone runs into this issue... I spent the better part of an hour or two getting to the bottom of this.lively-cat-88289
05/11/2023, 12:48 PMdelightful-ram-75848
05/12/2023, 9:41 AMgray-shoe-75895
05/12/2023, 5:05 PM