MCPcopy Create free account
hub / github.com/1345414527/MIT6.830 / getTupleDesc

Method getTupleDesc

src/java/simpledb/execution/Aggregate.java:179–182  ·  view source on GitHub ↗

Returns the TupleDesc of this Aggregate. If there is no group by field, this will have one field - the aggregate column. If there is a group by field, the first field will be the group by field, and the second will be the aggregate value column. The name of an aggregate column should be informat

()

Source from the content-addressed store, hash-verified

177 * iterator.
178 */
179 public TupleDesc getTupleDesc() {
180 // some code goes here
181 return opIterator.getTupleDesc();
182 }
183
184 public void close() {
185 // some code goes here

Callers 2

getTupleDescMethod · 0.95
buildTreeMethod · 0.95

Calls 1

getTupleDescMethod · 0.65

Tested by 1

getTupleDescMethod · 0.76