-
Notifications
You must be signed in to change notification settings - Fork 193
New issue
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
Column name 'company_type_code' not in table 'assets_maintenance' #10
Comments
This problem causes an exception when using parse_raw_json.py to generate new json file. From my side, the corresponding database assets_maintenance lacks a table named Ref_Company_Types. |
Hi, We might accidentally delete Best, |
Hi there, Did you fix this issue? It seems that the current dataset lacks of Thanks |
It seems that this issue is still not fixed. |
This issue still exists. There is a KeyError: |
This issue still exists. and causes the output vocabulary when running run.py includes vocab = [..., company_type_code, ref_company_types,...]. |
The issue still exists. Any fixes for this? |
In train_spider.json, there is one example with a question
What is the description of the type of the company who concluded its contracts most recently?
and a querySELECT T1.company_name FROM Third_Party_Companies AS T1 JOIN Maintenance_Contracts AS T2 ON T1.company_id = T2.maintenance_contract_company_id JOIN Ref_Company_Types AS T3 ON T1.company_type_code = T3.company_type_code ORDER BY T2.contract_end_date DESC LIMIT 1
. But the column name 'company_type_code' not in table 'assets_maintenance'. Please check if there is something wrong in this example. I think the column name should becompany_type
.The text was updated successfully, but these errors were encountered: