You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Rene Krenn
581f8b14d1
MT#22477 correct init_time, start_time and end_time
...
the way we create these output timestamps with fractional
seconds is wrong, because FROM_UNIXTIME is not truncating
its argument to int, but its rounds up/down.
"CONCAT(FROM_UNIXTIME(accounting.cdr.start_time +
accounting.cdr.duration), \".
\", SUBSTRING_INDEX(accounting.cdr.start_time +
accounting.cdr.duration, \".\",
-1))"
correct values are:
start: 2016-09-06 06:58:27.586
+duration: 0.520
end: 2016-09-06 06:58:28.120
so all of init_time, start_time, end_time are wrongn. fix
means an explicit int cast via FLOOR:
"CONCAT(FROM_UNIXTIME(FLOOR(accounting.cdr.start_time +
accounting.cdr.duration)), \".
\", SUBSTRING_INDEX(accounting.cdr.start_time +
accounting.cdr.duration, \".\",
-1))"
Change-Id: If6afaed4b1a573b36d0151c0d39eea05ba14b9ba
10 years ago
..
.gitignore
adding gitignore
11 years ago
get_all_adv_ips
MT#17179 lib: sort host.keys
10 years ago
get_all_adv_ips_for_host
MT#17179 lib: return sorted result
10 years ago
get_all_cluster_set_ip_maps
MT#17179 lib: sort host.keys
10 years ago
get_all_cluster_set_ip_maps_for_host
MT#17179 lib: sort host.keys
10 years ago
get_all_cluster_set_shared_ip_maps
MT#17179 lib: sort host.keys
10 years ago
get_all_cluster_set_shared_ip_maps_for_host
MT#17179 lib: sort host.keys
10 years ago
get_all_cluster_sets
MT#17179 lib: sort host.keys
10 years ago
get_all_hosts_ips
MT#17179 lib: sort host.keys
10 years ago
get_all_ifaces_for_host
MT#17179 lib: return sorted result
10 years ago
get_all_ips
MT#17179 lib: return sorted result
10 years ago
get_all_ips_for_host
MT#17179 lib: return sorted result
10 years ago
get_all_rtp_for_host
MT#10059 fix hostname detection bug
11 years ago
get_all_rtp_interfaces
MT#15237 Generate list of RTP interfaces from all configured hosts
11 years ago
get_all_shared_ips
MT#17179 lib: sort host.keys
10 years ago
get_all_shared_ips_for_host
MT#17179 lib: return sorted result
10 years ago
get_all_shared_v6ips
MT#17179 lib: sort host.keys
10 years ago
get_all_shared_v6ips_for_host
MT#17179 lib: return sorted result
10 years ago
get_all_v6ips
MT#17179 lib: sort host.keys
10 years ago
get_all_v6ips_for_host
MT#17179 lib: return sorted result
10 years ago
get_cdr_export_fields
MT#22477 correct init_time, start_time and end_time
10 years ago
get_dbnode
MT#9385 add get_dbnode helper
12 years ago
get_default_pingnodes
MT#11371 lib/get_default_pingnodes: exclude commented lines at /etc/resolv.conf
11 years ago
get_firstname
Initial checkin
13 years ago
get_hostname
Initial checkin
13 years ago
get_iface
Initial checkin
13 years ago
get_mgmt_node
MT#19797 Add ngcpcfg helper get_mgmt_node
10 years ago
get_ndb_ips
MT#21671 add get_ndb_ips
10 years ago
get_network_for_host
MT#10093 add get_network_for_host
11 years ago
get_ngcp_type
MT#16637 get_ngcp_type helper
10 years ago
get_nodename
MT#8419 fix 401019fe2.
12 years ago
get_peername
Initial checkin
13 years ago
has_role
Initial checkin
13 years ago