CourseInsights / test / resources / queries / valid / simpleUUID.json
simpleUUID.json
Raw
{
	"title": "simpleUUID",
	"input": {
		"WHERE": {
			"IS": {
				"sections_uuid": "*1337"
			}
		},
		"OPTIONS": {
			"COLUMNS": [
				"sections_dept",
				"sections_uuid"
			],
			"ORDER": "sections_uuid"
		}
	},
	"errorExpected": false,
	"orderExpected": true,
	"orderBy": "sections_uuid",
	"expected": [
		{
			"sections_dept": "nurs",
			"sections_uuid": "11337"
		},
		{
			"sections_dept": "cpsc",
			"sections_uuid": "1337"
		},
		{
			"sections_dept": "baen",
			"sections_uuid": "21337"
		},
		{
			"sections_dept": "phys",
			"sections_uuid": "41337"
		},
		{
			"sections_dept": "japn",
			"sections_uuid": "61337"
		}
	]
}