Description
to reproduce (in python):
df = sqlContext.range(0, 10).withColumn('uniform', rand(seed=10)) df.select('uniform', 'uniform' + 1)
You should see that the first column + 1 doesn't equal the second column.
to reproduce (in python):
df = sqlContext.range(0, 10).withColumn('uniform', rand(seed=10)) df.select('uniform', 'uniform' + 1)
You should see that the first column + 1 doesn't equal the second column.