From 73e6f0ae77da64e9c0661506749a9b35aabf95a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20B=C5=99ou=C5=A1ek?= <brousek@ics.muni.cz> Date: Wed, 24 Apr 2024 00:10:46 +0200 Subject: [PATCH] fix: lowercase table name in oracle2postgresql --- perun/proxy/utils/oracle2postgresql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perun/proxy/utils/oracle2postgresql.py b/perun/proxy/utils/oracle2postgresql.py index 523e797..62ee832 100644 --- a/perun/proxy/utils/oracle2postgresql.py +++ b/perun/proxy/utils/oracle2postgresql.py @@ -25,7 +25,7 @@ class Oracle2PostgreSQL: """ def __init__(self, full_sync): - self.table_for_imported_attributes = "AttributeFromSQLUnique" + self.table_for_imported_attributes = "attributefromsqlunique" self.imported_table_name = "w_exp_passwd_all" self.__get_config() self.full_sync = full_sync -- GitLab