Re: SparkSQL "where" with BigDecimal type gives stacktrace

2014-03-31 Thread Michael Armbrust
t DataType >> for BigDecimal, just no way to produce a schema for it. A patch should be >> straightforward enough to match against typeOf[BigDecimal] assuming this >> was not for some reason intentional. >> >> >> On Sun, Mar 30, 2014 at 10:43 AM, smallmonkey...@hotmail.com < >> s

Re: SparkSQL "where" with BigDecimal type gives stacktrace

2014-03-30 Thread Manoj Samel
4 at 10:43 AM, smallmonkey...@hotmail.com < > smallmonkey...@hotmail.com> wrote: > >> can I get the whole operation? then i can try to locate the error >> >> -- >> smallmonkey...@hotmail.com >> >> *From:* Manoj Samel >>

Re: SparkSQL "where" with BigDecimal type gives stacktrace

2014-03-30 Thread Aaron Davidson
the whole operation? then i can try to locate the error > > -- > smallmonkey...@hotmail.com > > *From:* Manoj Samel > *Date:* 2014-03-31 01:16 > *To:* user > *Subject:* SparkSQL "where" with BigDecimal type gives stacktrace >

Re: SparkSQL "where" with BigDecimal type gives stacktrace

2014-03-30 Thread smallmonkey...@hotmail.com
can I get the whole operation? then i can try to locate the error smallmonkey...@hotmail.com From: Manoj Samel Date: 2014-03-31 01:16 To: user Subject: SparkSQL "where" with BigDecimal type gives stacktrace Hi, If I do a where on BigDecimal, I get a stack trace. Changing Big

SparkSQL "where" with BigDecimal type gives stacktrace

2014-03-30 Thread Manoj Samel
Hi, If I do a where on BigDecimal, I get a stack trace. Changing BigDecimal to Double works ... scala> case class JournalLine(account: String, credit: BigDecimal, debit: BigDecimal, date: String, company: String, currency: String, costcenter: String, region: String) defined class JournalLine