bug 684: database order of interfaces are lost 26/7426/1
authortierno <alfonso.tiernosepulveda@telefonica.com>
Fri, 26 Apr 2019 12:26:01 +0000 (12:26 +0000)
committertierno <alfonso.tiernosepulveda@telefonica.com>
Fri, 26 Apr 2019 12:27:44 +0000 (12:27 +0000)
Change-Id: Iad5d027ef77d7be5d48045150b81c6560694e602
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
openmanod
osm_ro/db_base.py

index 07d2a8e..398d685 100755 (executable)
--- a/openmanod
+++ b/openmanod
@@ -50,8 +50,8 @@ import osm_ro
 
 __author__ = "Alfonso Tierno, Gerardo Garcia, Pablo Montes"
 __date__ = "$26-aug-2014 11:09:29$"
-__version__ = "0.6.11"
-version_date = "Mar 2019"
+__version__ = "0.6.12"
+version_date = "Apr 2019"
 database_version = 38      # expected database schema version
 
 global global_config
index be681e3..e6e1134 100644 (file)
@@ -591,7 +591,7 @@ class db_base():
         cmd= "INSERT INTO " + table +" SET " + \
             ",".join(map(self.__tuple2db_format_set, INSERT.iteritems() ))
         if created_time:
-            cmd += ",created_at={time},modified_at={time}".format(time=created_time)
+            cmd += ",created_at={time:.9f},modified_at={time:.9f}".format(time=created_time)
         if confidential_data:
             index = cmd.find("SET")
             subcmd = cmd[:index] + 'SET...'