Merge pull request #10201 from lafirest/fix/tdengine
fix(tdengine): remove the redundant table name in SQL template
This commit is contained in:
commit
9c7c49e9bf
|
@ -0,0 +1 @@
|
|||
In TDengine, removed the redundant database name from the SQL template.
|
|
@ -0,0 +1 @@
|
|||
在 TDengine 桥接的 SQL 模板中,删除了多余的数据库表名。
|
|
@ -22,7 +22,7 @@
|
|||
]).
|
||||
|
||||
-define(DEFAULT_SQL, <<
|
||||
"insert into mqtt.t_mqtt_msg(ts, msgid, mqtt_topic, qos, payload, arrived) "
|
||||
"insert into t_mqtt_msg(ts, msgid, mqtt_topic, qos, payload, arrived) "
|
||||
"values (${ts}, ${id}, ${topic}, ${qos}, ${payload}, ${timestamp})"
|
||||
>>).
|
||||
|
||||
|
|
Loading…
Reference in New Issue