Displaying 1 result from an estimated 1 matches for "object_num_high".
2009 May 15
0
[PATCH server] Starting of new ovirt QMF API.
...jects
+ # and then query_complete() when done.
+ def get_query(context, query)
+
+ begin
+ puts "Query: context=#{context} class=#{query.class_name} object_id=#{query.object_id}"
+
+ if query.object_id != nil
+ object_num_low = query.object_id.object_num_low
+ object_num_high = query.object_id.object_num_high
+
+ puts "Query: object_num=#{object_num_low},#{object_num_high}"
+
+ # We use object_num_high (32 bit int) to denote the table or class type,
+ # and object_num_low (32 bits also) to denote the row ID in the database.
+ begin...