No, that destroys the tightness
I think some additional tight cases are discussed in Imre Poliks review
For this problem you need a much higher degree relaxation if you want to solve it using a sdp relaxation
model = [x'*A*x<=0,[0 0 1 1 2]' <= x <= [5 5 5 5 3]'];
Objective = c'*x;
optimize(model,Objective,sdpsettings('solver','moment','moment.order',3))
The problem is trivial to solve using a global solver so using sdp relaxations is perhaps a bit silly
optimize(model,Objective,sdpsettings('solver','bmibnb'))
* Starting YALMIP global branch & bound.
* Branch-variables : 5
* Upper solver : fmincon
* Lower solver : GUROBI
* LP solver : GUROBI
Node Upper Gap(%) Lower Open
1 : 9.757E+00 8.30 8.900E+00 2 Improved solution
2 : 9.757E+00 8.30 8.900E+00 1 Infeasible
3 : 9.757E+00 0.00 9.757E+00 0 Poor bound
* Finished. Cost: 9.7574 Gap: 0
* Termination with all nodes pruned