From 1f282a848a1897a3836ca8dfaef0a827274a7a25 Mon Sep 17 00:00:00 2001 From: Sebastian Serfling Date: Mon, 31 Mar 2025 16:02:58 +0200 Subject: [PATCH] change RAW to history --- mysql_timestamp_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql_timestamp_check.py b/mysql_timestamp_check.py index 98f14b7..98c7828 100644 --- a/mysql_timestamp_check.py +++ b/mysql_timestamp_check.py @@ -27,7 +27,7 @@ def get_tables_from_db(connection): tables = [] for (table,) in cursor.fetchall(): - if 'RAW.' in table: + if 'history.' in table: # Tabellennamen mit Backticks versehen tables.append(f"Kunden.`{table}`")