The results of this query:
spooky.fetch(
Wget(s"https://www.wikipedia.org/")
).select(
S("""a[href*="wikipedia"]""").href ~ 'uri
).toDF()
are different in interpreter and compiler:
in interpreter it will results in an empty dataframe which is defective, the problem doesn't exist in compiler.
The results of this query:
are different in interpreter and compiler:
in interpreter it will results in an empty dataframe which is defective, the problem doesn't exist in compiler.