bug 684: database order of interfaces are lost
Change-Id: Iad5d027ef77d7be5d48045150b81c6560694e602
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
diff --git a/osm_ro/db_base.py b/osm_ro/db_base.py
index be681e3..e6e1134 100644
--- a/osm_ro/db_base.py
+++ b/osm_ro/db_base.py
@@ -591,7 +591,7 @@
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...'