Spark Implicit $ for DataFrame

后端 未结 1 596
迷失自我
迷失自我 2020-12-31 06:02

Where in the sqlContext.implicits._ does it define the $\"string\" to represent a dataframe call to the parent dataframe\'s column? Specifically I was confused

相关标签:
1条回答
  • 2020-12-31 06:58

    If you see the following link

    class SQLContext.implicits$.StringToColumn

    Converts $"col name" into an Column.

    Here is the link for latest version.

    0 讨论(0)
提交回复
热议问题