'why TDengine database could not store "La" and "la" as column name together?

when I ran

create table t10 (ts timestamp,la int,`La` int);

it would tell me duplicated columns, I guess it is a bug ,right?



Solution 1:[1]

TDengine with this sql is ok:

create table t10 (`ts` timestamp, `la` int, `La` int);

But insert and select will cause error, this is surely a bug here. We'll work on this.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 zitsen