From 706a02b3878dfdade502932c4143936503ab2671 Mon Sep 17 00:00:00 2001 From: Alexander Kozlov Date: Sat, 31 Aug 2024 14:59:10 +0000 Subject: [PATCH] fix subset_id string type --- tests/test_complex_pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_complex_pipeline.py b/tests/test_complex_pipeline.py index a599c974..2db09190 100644 --- a/tests/test_complex_pipeline.py +++ b/tests/test_complex_pipeline.py @@ -313,7 +313,7 @@ def complex_transform_with_many_recordings_but_take_only_val_items(dbconn, train "tbl_subset__has__image", [ Column("image_id", Integer, primary_key=True), - Column("subset_id", Integer, primary_key=True), + Column("subset_id", String, primary_key=True), ], True, )