We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following says "Invalid generated Coq file":
schema sch_flights(fid:int, month_id:int, day_of_month:int, day_of_week_id:int, carrier_id:string, flight_num:int, origin_city:string, origin_state:string, dest_city:string, dest_state:string, departure_delay:int, taxi_out:int, arrival_delay:int, canceled:int, actual_time:int, distance:int, capacity:int, price:int ); schema sch_carriers ( cid:int, name:string ); table Flights(sch_flights); table Carriers(sch_carriers); query a `select distinct F.flight_num as flight_num from Flights F, Carriers C where F.carrier_id = C.cid and C.name='xyz.' `; query b `select distinct F.flight_num as flight_num from Flights F, Carriers C where F.carrier_id = C.cid and C.name='xyz.' `; verify a b;
but removing the "." in "xyz." makes it work correctly (the queries are equivalent).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following says "Invalid generated Coq file":
but removing the "." in "xyz." makes it work correctly (the queries are equivalent).
The text was updated successfully, but these errors were encountered: