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
For many of the apartment_rentals SQL queries, the queries follow the pattern "What is the booking start and end date...", but the SQL queries have two SELECT booking_start_date projections instead of a SELECT booking_start_date, booking_end_date.
The text was updated successfully, but these errors were encountered:
Similarly, for small_bank_1, queries similar to Find the checking balance of the accounts whose savings balance is higher than the average savings balance. incorrectly reference the wrong column index (i.e. the savings balance, with index 4) rather than the checking balance with index 6 in the parsed sql result.
Thanks for your report! Yes, they are annotation errors. I already recorded your findings here. Please comment under that issue thread if you find more errors.
For many of the
apartment_rentals
SQL queries, the queries follow the pattern "What is the booking start and end date...", but the SQL queries have twoSELECT booking_start_date
projections instead of aSELECT booking_start_date, booking_end_date
.The text was updated successfully, but these errors were encountered: