fix(tdengine): remove the redundant table name in SQL template
@@ -0,0 +1 @@
+In TDengine, removed the redundant database name from the SQL template.
+在 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})"
>>).