Github user watermen commented on the pull request:
https://github.com/apache/spark/pull/4427#issuecomment-73343584
actually Hive support this but spark sql now do not support this, see
input46.q:
```
create database if not exists table_in_database_creation;
create table table_in_database_creation.test1 as select * from src limit 1;
create table `table_in_database_creation.test2` as select * from src limit
1;
create table table_in_database_creation.test3 (a string);
create table `table_in_database_creation.test4` (a string);
drop database table_in_database_creation cascade;
```
In hive `create table `table_in_database_creation.test2` as select * from
src limit 1;` is same with `create table table_in_database_creation.test2 as
select * from src limit 1;`
---
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]