Re: [ANNOUNCE] Apache Hive 2.3.7 Released

2020-04-19 Thread Bolke de Bruin
Awesome. Is a Hive 3 release also near? The current release has issues due to guava dependencies with the latest Hadoop 3. Cheers Bolke Sent from my iPhone > On 19 Apr 2020, at 21:44, Alan Gates wrote: > >  > The Apache Hive team is proud to announce the release of Apache Hive version >

[ANNOUNCE] Apache Hive 2.3.7 Released

2020-04-19 Thread Alan Gates
The Apache Hive team is proud to announce the release of Apache Hive version 2.3.7. The Apache Hive (TM) data warehouse software facilitates querying and managing large datasets residing in distributed storage. Built on top of Apache Hadoop (TM), it provides, among others: * Tools to enable

Re: Does pattern mean "regular expression" in hive DDL?

2020-04-19 Thread Miklos Gergely
Hi Xi, In case of SHOW FUNCTIONS it is an SQL like regular exception, i.e. '%' means any number of characters of any kind, and '_' means one character of any kind. In case of SHOW DATABASES though currently it is different, '*' means any number of characters of any kind, like in a glob. I've

Does pattern mean "regular expression" in hive DDL?

2020-04-19 Thread Xi Chen
Hi, I find that hive support pattern matching in several DDLs like SHOW FUNCTIONS [LIKE ""]; SHOW DATABASES [LIKE ""]; Does "pattern" mean any regular expression? Is there any spec of that? I went through the language manual, but still didn't find any spec about that. Thanks, Bargitta