Github user yhuai commented on the pull request:

    https://github.com/apache/spark/pull/4427#issuecomment-73555829
  
    I think it is a bug in Hive and it has been fixed by 
https://issues.apache.org/jira/browse/HIVE-7673 (in Hive 0.14 and trunk). 
HIVE-7673 changed the test of `input46.sql` (see 
[this](https://github.com/apache/hive/commit/4f8168c53c5bb1c53fb0233bf8e2f5d91ff6942d#diff-3d62f4f16c89f83bca7a2614556c4111)).
 The test queries in Hive before 0.14 release were
    ```
    create table `table_in_database_creation.test2` as select * from src limit 
1;
    create table `table_in_database_creation.test4` (a string);
    ```
    Starting 0.14, these two queries are
    ```
    create table `table_in_database_creation`.`test2` as select * from src 
limit 1;
    create table `table_in_database_creation`.`test4` (a string);
    ```
    You can also take a look at the change in 
[SemanticAnalyzer.analyzeCreateTable](https://github.com/apache/hive/commit/4f8168c53c5bb1c53fb0233bf8e2f5d91ff6942d#diff-f2040374293a91cbcc6594ee571b20e4).


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to