Vector multiplication

Hi, everyone
I find there is a little different between

model2=Model()
h_set=Vector(1:10)
h0=Vector(1.1:0.1:2)
@variable(model2,h[h_set,1:20])
@constraint(model2,ones(10)'*(h0-h[:,1])==0)

and

model2=Model()
h0=Vector(1.1:0.1:2)
@variable(model2,h[1:10,1:20])
@constraint(model2,ones(10)'*(h0-h[:,1])==0)

the above one is wrong ,is there some better suggestions of the expression?
Thanks a lot!