about summary refs log tree commit diff
path: root/gn3/db
diff options
context:
space:
mode:
authorBonfaceKilz2021-07-29 16:30:31 +0300
committerBonfaceKilz2021-07-29 21:40:20 +0300
commit651515eb88cb5675434ff068ad19edd0c4c0e858 (patch)
tree6738ea34aaeee2b9f05da069e5309308866f7e27 /gn3/db
parentac14e1167d866b8ab3a43583db8860ce99a3310b (diff)
downloadgenenetwork3-651515eb88cb5675434ff068ad19edd0c4c0e858.tar.gz
Delete "update_raw" and it's test-cases
Diffstat (limited to 'gn3/db')
-rw-r--r--gn3/db/__init__.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/gn3/db/__init__.py b/gn3/db/__init__.py
index 24ae8f1..149a344 100644
--- a/gn3/db/__init__.py
+++ b/gn3/db/__init__.py
@@ -64,20 +64,6 @@ def update(conn: Any,
         return cursor.rowcount
 
 
-def update_raw(conn: Any, table: str,
-               set_: List[Tuple[str, Any]],
-               where: Tuple[str, Tuple]):
-    """Run a generic raw statement"""
-    sql = f"UPDATE {table} SET "
-    sql += ", ".join([f"{k} = '%s'" for k, v in set_])
-    sql += f" WHERE {where[0]}"
-    with conn.cursor() as cursor:
-        cursor.execute(sql,
-                       tuple(v for _, v in set_) + where[1])
-        conn.commit()
-        return cursor.rowcount
-
-
 def fetchone(conn: Any,
              table: str,
              where: Optional[Dataclass],