summaryrefslogtreecommitdiffstats
path: root/raddb/mods-config/sql/counter/mysql/weeklycounter.conf
diff options
context:
space:
mode:
Diffstat (limited to 'raddb/mods-config/sql/counter/mysql/weeklycounter.conf')
-rw-r--r--raddb/mods-config/sql/counter/mysql/weeklycounter.conf11
1 files changed, 11 insertions, 0 deletions
diff --git a/raddb/mods-config/sql/counter/mysql/weeklycounter.conf b/raddb/mods-config/sql/counter/mysql/weeklycounter.conf
new file mode 100644
index 0000000..bf8a4c4
--- /dev/null
+++ b/raddb/mods-config/sql/counter/mysql/weeklycounter.conf
@@ -0,0 +1,11 @@
+#
+# This query properly handles calls that span from the
+# previous reset period into the current period but
+# involves more work for the SQL server than those
+# below
+#
+query = "\
+ SELECT SUM(acctsessiontime - GREATEST((%%b - UNIX_TIMESTAMP(acctstarttime)), 0)) \
+ FROM radacct \
+ WHERE username = '%{${key}}' \
+ AND UNIX_TIMESTAMP(acctstarttime) + acctsessiontime > '%%b'"