Change of behaviour on CBP for Hive 3 with null checks against complex types

2019-10-11 Thread Eyal Ben Ivri
suspicion that this is new behaviour for HIVE 3. Has anyone else noticed this behaviour, can direct me to documentation about this? Thank you, Eyal Ben Ivri

Re: ClassNotFoundException every time we run any hive query

2011-11-29 Thread Eyal B
Add it to the distributed cache add jar derby.jar; or use environment variable HIVE_AUX_JARS_PATH On Mon, Nov 28, 2011 at 1:29 PM, Ghousia ghousia.ath...@gmail.com wrote: Hi Chinna, I have the derby.jar in the lib folder, hive runs fine and we are able to execute the queries. Even then

longest matching prefix

2010-11-04 Thread Eyal
Hi, In MySQL to match '12684041234' to the longest prefix I would do SELECT num_prefix FROM nums WHERE '12684041234' LIKE CONCAT(num_prefix, '%') AND LENGTH(num_prefix) = ( SELECT MAX(LENGTH(num_prefix)) FROM nums WHERE '12684041234' LIKE CONCAT(num_prefix, '%') ) ** Table nums has a column