Why does fieldB get dropped in the second query, below?  Is it possible to 
preserve it in the results for that query? 

(OrientDB-community 1.7.9)

select * from SomeObject where @rid=#13:0
----+-----+---------------------
#   |@RID |fieldA |fieldB|fieldC
----+-----+---------------------
0   |#13:0|"foo"  |null  |#15:19
----+-----+---------------------

select *, @rid as id from SomeObject where @rid=#13:0
----+-----+-------------------
#   |@RID |fieldA|fieldC|id
----+-----+-------------------
0   |#13:0|"foo" |#15:19|#13:0
----+-----+-------------------

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"OrientDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to