You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in the line: FOREIGN KEY ("Track_ID") REFERENCES "track"("Track_ID") connects two columns of different types. This raises suspicion. It is confirmed when we look at the inserted values:
The line FOREIGN KEY ("Phone_ID") REFERENCES `phone`("Phone_ID") tries to connect text and integer.
The data, however, seems to correctly insert integer instead of text
INSERT INTO "phone_market" VALUES (1,1,2232);
INSERT INTO "phone_market" VALUES (2,2,4324);
INSERT INTO "phone_market" VALUES (1,4,874);
...
Other shcemas
Such issues are also present in the following other schemas: academic,student_assesment,city_record,shop_membership,concert_singer,museum_visit,architecture,party_people,performance_attendance, culture_company,employee_hire_evaluation, aircraft, school_finance, loan_1, cre_Drama_Workshop_Groups,car_1, phone_1, wrestler.
The text was updated successfully, but these errors were encountered:
michael-2956
changed the title
Wrong value types & values in race_track
[Bug] Wrong value types & values in race_track
Sep 16, 2024
michael-2956
changed the title
[Bug] Wrong value types & values in race_track
[Bug] Wrong value types & values in race_track & phone_market
Sep 16, 2024
michael-2956
changed the title
[Bug] Wrong value types & values in race_track & phone_market
[Bug] Wrong value types & values in race_track, phone_market & many others
Sep 17, 2024
race_track
The schema of
race_track
:in the line:
FOREIGN KEY ("Track_ID") REFERENCES "track"("Track_ID")
connects two columns of different types. This raises suspicion. It is confirmed when we look at the inserted values:Track_ID is absent, and there's an extra postal code there.
phone_market
In the
phone_market
schema:The line
FOREIGN KEY ("Phone_ID") REFERENCES `phone`("Phone_ID")
tries to connect text and integer.The data, however, seems to correctly insert
integer
instead oftext
Other shcemas
Such issues are also present in the following other schemas:
academic
,student_assesment
,city_record
,shop_membership
,concert_singer
,museum_visit
,architecture
,party_people
,performance_attendance
,culture_company
,employee_hire_evaluation
,aircraft
,school_finance
,loan_1
,cre_Drama_Workshop_Groups
,car_1
,phone_1
,wrestler
.The text was updated successfully, but these errors were encountered: