CourseInsights / test / resources / queries / valid / contradictionShouldGiveNothing.json
contradictionShouldGiveNothing.json
Raw
{
	"title": "Contradiction should give nothing",
	"input": {
		"WHERE": {
			"AND": [
				{
					"GT": {
						"sections_avg": 90
					}
				},
				{
					"NOT": {
						"GT": {
							"sections_avg": 90
						}
					}
				}
			]
		},
		"OPTIONS": {
			"COLUMNS": [
				"sections_dept",
				"sections_id",
				"sections_avg"
			],
			"ORDER": "sections_avg"
		}
	},
	"errorExpected": false,
	"orderExpected": true,
	"orderBy": "sections_avg",
	"expected": []
}