MCPcopy Create free account

hub / github.com/awelm/simpledb / functions

Functions643 in github.com/awelm/simpledb

MethodestimateTableCardinalityTest
Verify the table-cardinality estimates based on a selectivity estimate
test/simpledb/TableStatsTest.java:93
Methodfilter
Unit test for Predicate.filter()
test/simpledb/PredicateTest.java:15
MethodfilterAllLessThan
Unit test for Filter.getNext() using a < predicate that filters everything
test/simpledb/FilterTest.java:72
MethodfilterEqual
Unit test for Filter.getNext() using an = predicate
test/simpledb/FilterTest.java:84
MethodfilterEqualNoTuples
Unit test for Filter.getNext() using an = predicate passing no tuples
test/simpledb/FilterTest.java:114
MethodfilterSomeLessThan
Unit test for Filter.getNext() using a < predicate that filters some tuples
test/simpledb/FilterTest.java:58
MethodfilterVaryingVals
Unit test for JoinPredicate.filter()
test/simpledb/JoinPredicateTest.java:15
MethodgetBeforeImage
Return a view of this page before it was modified -- used by recovery @throws Exception
src/simpledb/HeapPage.java:84
MethodgetBeforeImage
Provide a representation of this page before any modifications were made to it. Used by recovery.
src/simpledb/Page.java:52
MethodgetDbFile
Unit test for Catalog.getDbFile()
test/simpledb/CatalogTest.java:63
MethodgetId
Unit test for HeapFile.getId()
test/simpledb/HeapFileReadTest.java:37
MethodgetId
Unit test for HeapPage.getId()
test/simpledb/HeapPageReadTest.java:78
MethodgetId
()
test/simpledb/TestUtil.java:231
MethodgetId
()
src/simpledb/TransactionId.java:16
MethodgetNext
Unit test for Insert.getNext(), inserting elements into an empty file
test/simpledb/InsertTest.java:47
MethodgetNumEmptySlots
Unit test for HeapPage.getNumEmptySlots()
test/simpledb/HeapPageReadTest.java:105
MethodgetOp
Interface to access operations by a string containing an integer index for command-line convenience. @param s a string containing a valid integer Op
src/simpledb/Aggregator.java:19
MethodgetOp
()
src/simpledb/JoinPredicate.java:37
MethodgetSize
Unit test for TupleDesc.getSize()
test/simpledb/TupleDescTest.java:127
MethodgetSlot
Unit test for HeapPage.getSlot()
test/simpledb/HeapPageReadTest.java:113
MethodgetTableId
Unit test for HeapPageId.getTableId()
test/simpledb/HeapPageIdTest.java:24
MethodgetTableId
Unit test for Catalog.getTableId()
test/simpledb/CatalogTest.java:41
MethodgetTableId
Return the id of the table with a specified name, @throws NoSuchElementException if the table doesn't exist
src/simpledb/Catalog.java:69
MethodgetTableId
Given a table alias, return id of the table object (this id can be supplied to {@link Catalog#getDbFile(int)}). Aliases are added as base tabl
src/simpledb/LogicalPlan.java:79
MethodgetTotalRecords
()
src/simpledb/LogFile.java:138
MethodgetTransaction
()
src/simpledb/Parser.java:392
MethodgetTuple
@return a Tuple with a 'width' IntFields with the value tupledata[i] in each field. do not set it's RecordId, hence do not distinguish
src/simpledb/Utility.java:87
MethodgetTupleDesc
Unit test for Aggregate.getTupleDesc()
test/simpledb/AggregateTest.java:88
MethodgetTupleDesc
Unit test for Insert.getTupleDesc()
test/simpledb/InsertTest.java:37
MethodgetTupleDesc
Unit test for Catalog.getTupleDesc()
test/simpledb/CatalogTest.java:31
MethodgetTupleDesc
Unit test for Filter.getTupleDesc()
test/simpledb/FilterTest.java:28
MethodgetTupleDesc
Unit test for Join.getTupleDesc()
test/simpledb/JoinTest.java:59
MethodgetTupleDesc
Unit test for HeapFile.getTupleDesc()
test/simpledb/HeapFileReadTest.java:52
MethodgetTupleDesc
Unit test for Tuple.getTupleDesc()
test/simpledb/TupleTest.java:35
MethodgetTupleDesc
()
test/simpledb/TestUtil.java:239
MethodgetTupleDesc
()
src/simpledb/Project.java:33
MethodgetTupleDesc
()
src/simpledb/StringAggregator.java:60
MethodgetTupleDesc
()
src/simpledb/IntAggregator.java:105
MethodgetTupleDesc
Returns the TupleDesc of the table stored in this DbFile. @return TupleDesc of this DbFile.
src/simpledb/HeapFile.java:56
MethodgetTupleDesc
()
src/simpledb/OrderBy.java:29
MethodgetTupleDesc
()
src/simpledb/TupleIterator.java:45
MethodgetTupleDesc
Returns the tuple descriptor (schema) of the specified table @param tableid The id of the table, as specified by the DbFile.getId() function passe
src/simpledb/Catalog.java:81
MethodgetTupleDesc
Returns the TupleDesc with field names from the underlying HeapFile, prefixed with the tableAlias string from the constructor. @return the TupleDesc w
src/simpledb/SeqScan.java:52
MethodgetTupleDesc
()
src/simpledb/Delete.java:26
MethodgetTupleDesc
Returns the TupleDesc associated with this DbIterator.
src/simpledb/Parser.java:588
MethodgetType
Unit test for TupleDesc.getType()
test/simpledb/TupleDescTest.java:73
MethodgetType
@return the Type for this Field
src/simpledb/StringField.java:102
MethodgetType
Return the Type of this field. @return Type.INT_TYPE
src/simpledb/IntField.java:80
MethodgetValue
()
src/simpledb/StringField.java:12
MethodgtJoin
Unit test for Join.getNext() using a > predicate
test/simpledb/JoinTest.java:89
MethodhCode
Unit test for RecordId.hashCode()
test/simpledb/RecordIdTest.java:61
MethodhasNext
()
test/simpledb/TestUtil.java:286
MethodhasNext
()
src/simpledb/AbstractDbIterator.java:9
MethodhasNext
()
src/simpledb/AbstractDbFileIterator.java:7
MethodhasNext
()
src/simpledb/TupleIterator.java:32
MethodhasNext
@return true if the iterator has more items.
src/simpledb/Parser.java:562
MethodhashCode
@return a hash code for this page, represented by the concatenation of the table number and the page number (needed if a PageId is used as a key i
src/simpledb/PageId.java:23
MethodhashCode
@return a hash code for this page, represented by the concatenation of the table number and the page number (needed if a PageId is used as a key i
src/simpledb/HeapPageId.java:39
MethodhashCode
()
src/simpledb/StringField.java:36
MethodhashCode
()
src/simpledb/LogicalSubplanJoinNode.java:19
MethodhashCode
()
src/simpledb/TupleDesc.java:175
MethodhashCode
()
src/simpledb/TransactionId.java:24
MethodhashCode
You should implement the hashCode() so that two equal RecordId instances (with respect to equals()) have the same hashCode(). @return An int that is t
src/simpledb/RecordId.java:51
MethodhashCode
()
src/simpledb/LockManager.java:28
MethodhashCode
()
src/simpledb/LogicalJoinNode.java:61
MethodhashCode
()
src/simpledb/IntField.java:28
MethodholdsLock
Return true if the specified transaction has a lock on the specified page
src/simpledb/BufferPool.java:109
MethodholdsLock
(TransactionId tid, PageId pid)
src/simpledb/LockManager.java:101
Methoditerator
(TransactionId tid)
test/simpledb/TestUtil.java:235
Methoditerator
Create a DbIterator over group aggregate results. @see simpledb.TupleIterator for a possible helper
src/simpledb/Aggregator.java:47
MethodlockUpgrade
Unit test for BufferPool.getPage() assuming locking. Attempt lock upgrade.
test/simpledb/LockingTest.java:157
MethodlogWrite
Write an UPDATE record to disk for the specified tid and page (with provided before and after images.) @param tid The transact
src/simpledb/LogFile.java:197
Methodmain
(String args[])
src/simpledb/SimpleDb.java:6
Methodmain
(String argv[])
src/simpledb/Parser.java:455
Methodmain
(String argv[])
src/simpledb/LogicalPlan.java:468
MethodmaxAggregate
Unit test for Aggregate.getNext() using a max aggregate
test/simpledb/AggregateTest.java:160
MethodmergeAvg
Test IntAggregator.merge() and iterator() over an avg
test/simpledb/IntAggregatorTest.java:116
MethodmergeCount
Test String.merge() and iterator() over a COUNT
test/simpledb/StringAggregatorTest.java:44
MethodmergeMax
Test IntAggregator.merge() and iterator() over a max
test/simpledb/IntAggregatorTest.java:100
MethodmergeMin
Test IntAggregator.merge() and iterator() over a min
test/simpledb/IntAggregatorTest.java:84
MethodmergeSum
Test IntAggregator.merge() and iterator() over a sum
test/simpledb/IntAggregatorTest.java:69
MethodminAggregate
Unit test for Aggregate.getNext() using a min aggregate
test/simpledb/AggregateTest.java:171
MethodmodifyFields
Unit test for Tuple.getField() and Tuple.setField()
test/simpledb/TupleTest.java:15
MethodmodifyRecordId
Unit test for Tuple.getRecordId() and Tuple.setRecordId()
test/simpledb/TupleTest.java:44
MethodnameToId
Unit test for TupleDesc.nameToId()
test/simpledb/TupleDescTest.java:86
MethodnegativeRangeTest
Test with a minimum and a maximum that are both negative numbers.
test/simpledb/IntHistogramTest.java:43
Methodnext
()
test/simpledb/TestUtil.java:291
Methodnext
()
src/simpledb/AbstractDbIterator.java:14
Methodnext
()
src/simpledb/HeapFile.java:190
Methodnext
()
src/simpledb/AbstractDbFileIterator.java:12
Methodnext
()
src/simpledb/TupleIterator.java:36
Methodnext
Gets the next tuple from the operator (typically implementing by reading from a child operator or an access method). @return The next tuple in the it
src/simpledb/Parser.java:573
MethodnonequalityOrderJoinsTest
Test a join ordering with an inequality, to make sure the inequality gets put as the innermost join
test/simpledb/JoinOptimizerTest.java:409
MethodnumPages
Unit test for HeapFile.numPages()
test/simpledb/HeapFileReadTest.java:59
MethodopEqualsTest
Make sure that equality binning does something reasonable.
test/simpledb/IntHistogramTest.java:66
MethodopGreaterThanOrEqualsTest
Make sure that GREATER_THAN_OR_EQ binning does something reasonable.
test/simpledb/IntHistogramTest.java:123
MethodopGreaterThanTest
Make sure that GREATER_THAN binning does something reasonable.
test/simpledb/IntHistogramTest.java:83
MethodopLessThanOrEqualsTest
Make sure that LESS_THAN_OR_EQ binning does something reasonable.
test/simpledb/IntHistogramTest.java:144
MethodopLessThanTest
Make sure that LESS_THAN binning does something reasonable.
test/simpledb/IntHistogramTest.java:103
MethodopNotEqualsTest
Make sure that equality binning does something reasonable.
test/simpledb/IntHistogramTest.java:165
← previousnext →401–500 of 643, ranked by callers