CourseInsights / test / resources / queries / valid / emptyWhereButTransformationsGroup.json
emptyWhereButTransformationsGroup.json
Raw
{
	"title": "emptyWhereButTransformationsGroup",
	"input": {
		"WHERE": {},
		"OPTIONS": {
			"COLUMNS": [
				"overallAvg"
			],
			"ORDER": "overallAvg"
		},
		"TRANSFORMATIONS": {
			"GROUP": [
				"sections_year"
			],
			"APPLY": [
				{
					"overallAvg": {
						"AVG": "sections_year"
					}
				}
			]
		}
	},
	"errorExpected": false,
	"orderExpected": true,
	"orderBy": ["overallAvg"],
	"expected": [
		{
			"overallAvg": 1900
		},
		{
			"overallAvg": 2007
		},
		{
			"overallAvg": 2008
		},
		{
			"overallAvg": 2009
		},
		{
			"overallAvg": 2010
		},
		{
			"overallAvg": 2011
		},
		{
			"overallAvg": 2012
		},
		{
			"overallAvg": 2013
		},
		{
			"overallAvg": 2014
		},
		{
			"overallAvg": 2015
		},
		{
			"overallAvg": 2016
		}
	]
}