Преглед изворни кода

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

firest пре 2 година
родитељ
комит
ee5b9d7e0a
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      lib-ee/emqx_ee_bridge/src/emqx_ee_bridge_tdengine.erl

+ 1 - 1
lib-ee/emqx_ee_bridge/src/emqx_ee_bridge_tdengine.erl

@@ -22,7 +22,7 @@
 ]).
 ]).
 
 
 -define(DEFAULT_SQL, <<
 -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})"
     "values (${ts}, ${id}, ${topic}, ${qos}, ${payload}, ${timestamp})"
 >>).
 >>).