metesynnada opened a new issue, #5128:
URL: https://github.com/apache/arrow-datafusion/issues/5128
**Is your feature request related to a problem or challenge? Please describe
what you are trying to do.**
```sql
CREATE TABLE COMPANY(
ID INT PRIMARY KEY NOT NULL,
NAME TEXT NOT NULL,
AGE INT NOT NULL,
ADDRESS CHAR(50),
SALARY REAL,
JOIN_DATE DATE
);
```
is not working currently.
```
NotImplemented("Only `CREATE TABLE table_name AS SELECT ...` statement is
supported")
```
**Describe the solution you'd like**
It can be done with catalog management.
**Describe alternatives you've considered**
You can always use with SELECT query, however this usage is more essential.
**Additional context**
NA
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]