瀏覽代碼

Fix: Type of pktsReceived is supposed to be INTEGER

Stefan Schmidt 6 年之前
父節點
當前提交
e37394d479
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      code_boost/src/cxx/statistics_db.cpp

+ 1 - 1
code_boost/src/cxx/statistics_db.cpp

@@ -27,7 +27,7 @@ void statistics_db::writeStatisticsIP(std::unordered_map<std::string, entry_ipSt
         SQLite::Transaction transaction(*db);
         const char *createTable = "CREATE TABLE ip_statistics ( "
                 "ipAddress TEXT, "
-                "pktsReceived INTEGtimestampER, "
+                "pktsReceived INTEGER, "
                 "pktsSent INTEGER, "
                 "kbytesReceived REAL, "
                 "kbytesSent REAL, "