Re: Strange bug: Filter problem with parenthesis

2016-04-14 Thread Takeshi Yamamuro
2016 6:29 PM > *To:* Ellafi, Saif A. > *Cc:* user > *Subject:* Re: Strange bug: Filter problem with parenthesis > > > > You need to use `backticks` to reference columns that have non-standard > characters. > > > > On Wed, Apr 13, 2016 at 6:56 AM, <saif.a.ell

RE: Strange bug: Filter problem with parenthesis

2016-04-14 Thread Saif.A.Ellafi
6:29 PM To: Ellafi, Saif A. Cc: user Subject: Re: Strange bug: Filter problem with parenthesis You need to use `backticks` to reference columns that have non-standard characters. On Wed, Apr 13, 2016 at 6:56 AM, <saif.a.ell...@wellsfargo.com<mailto:saif.a.ell...@wellsfargo.com>> wrot

Re: Strange bug: Filter problem with parenthesis

2016-04-13 Thread Michael Armbrust
You need to use `backticks` to reference columns that have non-standard characters. On Wed, Apr 13, 2016 at 6:56 AM, wrote: > Hi, > > I am debugging a program, and for some reason, a line calling the > following is failing: > > df.filter("sum(OpenAccounts) >

Strange bug: Filter problem with parenthesis

2016-04-13 Thread Saif.A.Ellafi
Hi, I am debugging a program, and for some reason, a line calling the following is failing: df.filter("sum(OpenAccounts) > 5").show It says it cannot find the column OpenAccounts, as if it was applying the sum() function and looking for a column called like that, where there is not. This