CourseInsights / test / resources / queries / invalid / notNothingIsEverything.json
notNothingIsEverything.json
Raw
{
	"title": "Not nothing is everything",
	"input": {
		"WHERE": {
			"NOT": {
				"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": true,
	"orderExpected": true,
	"orderBy": "sections_avg",
	"expected": "ResultTooLargeError"
}