diff --git a/tests/functional/adapter/constraints/test_constraints.py b/tests/functional/adapter/constraints/test_constraints.py index 0e432940..d6326c8b 100644 --- a/tests/functional/adapter/constraints/test_constraints.py +++ b/tests/functional/adapter/constraints/test_constraints.py @@ -35,7 +35,7 @@ _expected_sql_trino = """ create table ( - "id" int not null, + "id" integer not null, color varchar, date_day varchar ) ; @@ -206,7 +206,7 @@ def models(self): def expected_sql(self): return """ create table ( - "id" int not null, + "id" integer not null, color varchar, date_day varchar ) ; @@ -240,7 +240,7 @@ def models(self): def expected_sql(self): return """ create table ( - id int not null, + id integer not null, "from" varchar not null, date_day varchar ) ;