blob: b356a5607257ecf1d43af3ebb980998ee898461c [file] [log] [blame]
/*
* Description : Tests whether a conflict between two closed field names are detected
* Expected Result: An error reporting that there is a duplicate field name "name"
* Author: zheilbron
*/
drop dataverse test if exists;
create dataverse test;
use dataverse test;
let $x := {"name": "john", "name": "smith"}
return $x