File size: 2,037 Bytes
02edc38 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | /*
{
"qid": "047",
"task_type": "ambig",
"has_intended_resolution": true,
"language": "SQLite",
"db": "github_repos",
"question": "Count the number of forks in public repositories in March.",
"gold_ambiguity_points": [
{
"id": "A",
"phrase": "March",
"type": "finite",
"ambiguity_type": "semantic_table",
"interpretations": [
"March 2022",
"March 2023",
"March in both 2022 and 2023"
],
"intended_interpretation_idx": 2
}
],
"gold_intended_query_id": "GQRY-A.2",
"extra_info": {}
}
*/
----- START OF GOLD QUERY `GQRY-A.0` -----
/*
{
"id": "GQRY-A.0",
"parameter_names": [],
"parameter_values": {},
"other_exec_results": [],
"required_columns": null,
"required_sorted": false,
"extra_info": {
"ambiguity_resolution": {
"[A] March": "March 2022"
}
}
}
*/
SELECT COUNT(*)
FROM MONTH_202203
WHERE type = 'ForkEvent'
AND public = 1;
/* EXEC RESULT
COUNT(*)
63
*/
----- END OF GOLD QUERY -----
----- START OF GOLD QUERY `GQRY-A.1` -----
/*
{
"id": "GQRY-A.1",
"parameter_names": [],
"parameter_values": {},
"other_exec_results": [],
"required_columns": null,
"required_sorted": false,
"extra_info": {
"ambiguity_resolution": {
"[A] March": "March 2023"
}
}
}
*/
SELECT COUNT(*)
FROM MONTH_202303
WHERE type = 'ForkEvent'
AND public = 1;
/* EXEC RESULT
COUNT(*)
88
*/
----- END OF GOLD QUERY -----
----- START OF GOLD QUERY `GQRY-A.2` -----
/*
{
"id": "GQRY-A.2",
"parameter_names": [],
"parameter_values": {},
"other_exec_results": [],
"required_columns": null,
"required_sorted": false,
"extra_info": {
"ambiguity_resolution": {
"[A] March": "March in both 2022 and 2023"
}
}
}
*/
SELECT COUNT(*)
FROM (
SELECT *
FROM MONTH_202203
WHERE type = 'ForkEvent'
AND public = 1
UNION ALL
SELECT *
FROM MONTH_202303
WHERE type = 'ForkEvent'
AND public = 1
) AS combined_march;
/* EXEC RESULT
COUNT(*)
151
*/
----- END OF GOLD QUERY ----- |