Sorry for using the wrong mailing list. Next time onward I will be using
the user list.
Thank you
On Tue, Nov 29, 2016 at 11:10 AM, Nishadi Kirielle
wrote:
> Hi all,
>
> I am trying to use bitwise AND operation between integers on top of Spark
> SQL. Is this functionality supported and if so, ca
Bcc dev@ and add user@
The dev list is not meant for users to ask questions on how to use Spark.
For that you should use StackOverflow or the user@ list.
scala> sql("select 1 & 2").show()
+---+
|(1 & 2)|
+---+
| 0|
+---+
scala> sql("select 1 & 3").show()
+---+
|(1 & 3)|
+-