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