HappenLee opened a new issue #5350:
URL: https://github.com/apache/incubator-doris/issues/5350
**Describe the bug**
create table statemet
```
CREATE EXTERNAL TABLE `pg1` (
`A` double NULL COMMENT "",
`B` varchar(400) NULL COMMENT ""
) ENGINE=ODBC
COMMENT "ODBC"
PROPERTIES (
"host" = "127.0.0.1",
"port" = "5432",
"user" = "postgres",
"password" = "",
"driver" = "PostgreSQL",
"odbc_type" = "postgresql",
"database" = "test",
"table" = "test"
);
```
but create failed
```
The first column could not be float or double, use decimal instead.
```
**Expected behavior**
No need to check, unless the table is OLAP table.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]