fix(tdengine): remove the redundant table name in SQL template

This commit is contained in:
firest 2023-03-22 13:56:47 +08:00
parent 03a70bb527
commit ee5b9d7e0a
1 changed files with 1 additions and 1 deletions

View File

@ -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})"
>>).