Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/MIT-DB-Class/simple-db-hw
/ functions
Functions
1,070 in github.com/MIT-DB-Class/simple-db-hw
⨍
Functions
1,070
◇
Types & classes
161
Method
testHashCode
Unit test for BTreePageId.hashCode()
test/simpledb/BTreePageIdTest.java:50
Method
testHashCode
Unit test for HeapPageId.hashCode()
test/simpledb/HeapPageIdTest.java:38
Method
testHeapFileScanWithManyPages
()
test/simpledb/systemtest/EvictionTest.java:23
Method
testIterator
Test StringAggregator.iterator() for OpIterator behaviour
test/simpledb/StringAggregatorTest.java:59
Method
testIterator
Unit test for BTreeInternalPage.iterator()
test/simpledb/BTreeInternalPageTest.java:122
Method
testIterator
Test IntegerAggregator.iterator() for OpIterator behaviour
test/simpledb/IntegerAggregatorTest.java:132
Method
testIterator
Unit test for HeapPage.iterator()
test/simpledb/HeapPageReadTest.java:86
Method
testIterator
Unit test for BTreeLeafPage.iterator()
test/simpledb/BTreeLeafPageTest.java:164
Method
testIteratorBasic
()
test/simpledb/BTreeFileReadTest.java:86
Method
testIteratorBasic
()
test/simpledb/HeapFileReadTest.java:80
Method
testIteratorClose
()
test/simpledb/BTreeFileReadTest.java:110
Method
testIteratorClose
()
test/simpledb/HeapFileReadTest.java:104
Method
testLessThan
()
test/simpledb/systemtest/FilterBase.java:66
Method
testLessThanOrEq
()
test/simpledb/systemtest/FilterBase.java:71
Method
testMax
()
test/simpledb/systemtest/AggregateTest.java:99
Method
testMergeInternalPages
()
test/simpledb/BTreeFileDeleteTest.java:314
Method
testMergeLeafPages
()
test/simpledb/BTreeFileDeleteTest.java:133
Method
testMergeLeafPages
()
test/simpledb/systemtest/BTreeFileDeleteTest.java:76
Method
testMin
()
test/simpledb/systemtest/AggregateTest.java:95
Method
testMultipleMatch
()
test/simpledb/systemtest/JoinTest.java:67
Method
testNoMatch
()
test/simpledb/systemtest/JoinTest.java:62
Method
testOneToEmpty
()
test/simpledb/systemtest/InsertTest.java:61
Method
testOneToOne
()
test/simpledb/systemtest/InsertTest.java:66
Method
testReadPage
Test that scanning the BTree for predicates does not read all the pages
test/simpledb/systemtest/BTreeScanTest.java:209
Method
testReadWriteDeadlock
Not-so-unit test to construct a deadlock situation. t1 acquires p0.read; t2 acquires p1.read; t1 attempts p1.write; t2 attempts p0.write. Rinse and re
test/simpledb/DeadlockTest.java:75
Method
testReadWriteDeadlock
Not-so-unit test to construct a deadlock situation. This test causes two different transactions to update two (probably) different leaf nodes Each tr
test/simpledb/BTreeDeadlockTest.java:94
Method
testRedistributeInternalPages
()
test/simpledb/systemtest/BTreeFileDeleteTest.java:184
Method
testRedistributeLeafPages
()
test/simpledb/systemtest/BTreeFileDeleteTest.java:37
Method
testReuseDeletedPages
()
test/simpledb/systemtest/BTreeFileDeleteTest.java:151
Method
testReusePage
()
test/simpledb/BTreeFileInsertTest.java:135
Method
testReverseIterator
Unit test for BTreeInternalPage.reverseIterator()
test/simpledb/BTreeInternalPageTest.java:147
Method
testRewind
Test that rewinding a SeqScan iterator works.
test/simpledb/systemtest/ScanTest.java:47
Method
testRewind
Test that rewinding a BTreeScan iterator works.
test/simpledb/systemtest/BTreeScanTest.java:91
Method
testRewindPredicates
Test that rewinding a BTreeScan iterator works with predicates.
test/simpledb/systemtest/BTreeScanTest.java:117
Method
testSingleMatch
()
test/simpledb/systemtest/JoinTest.java:57
Method
testSingleThread
()
test/simpledb/systemtest/TransactionTest.java:209
Method
testSmall
Scan 1-4 columns.
test/simpledb/systemtest/ScanTest.java:39
Method
testSmall
Scan 1-4 columns.
test/simpledb/systemtest/BTreeScanTest.java:83
Method
testSplitInternalPage
()
test/simpledb/systemtest/BTreeFileInsertTest.java:225
Method
testSplitInternalPages
()
test/simpledb/BTreeFileInsertTest.java:85
Method
testSplitLeafPage
()
test/simpledb/systemtest/BTreeFileInsertTest.java:132
Method
testSplitLeafPages
()
test/simpledb/BTreeFileInsertTest.java:36
Method
testSplitRootPage
()
test/simpledb/systemtest/BTreeFileInsertTest.java:166
Method
testStealFromLeftInternalPage
()
test/simpledb/BTreeFileDeleteTest.java:182
Method
testStealFromLeftLeafPage
()
test/simpledb/BTreeFileDeleteTest.java:55
Method
testStealFromRightInternalPage
()
test/simpledb/BTreeFileDeleteTest.java:248
Method
testStealFromRightLeafPage
()
test/simpledb/BTreeFileDeleteTest.java:94
Method
testSum
()
test/simpledb/systemtest/AggregateTest.java:91
Method
testTenThreads
()
test/simpledb/systemtest/TransactionTest.java:224
Method
testTwoThreads
()
test/simpledb/systemtest/TransactionTest.java:214
Method
testUpgradeWriteDeadlock
Not-so-unit test to construct a deadlock situation. t1 acquires p0.read; t2 acquires p0.read; t1 attempts to upgrade to p0.write; t2 attempts to upgra
test/simpledb/DeadlockTest.java:171
Method
testWriteWriteDeadlock
Not-so-unit test to construct a deadlock situation. t1 acquires p0.write; t2 acquires p1.write; t1 attempts p1.write; t2 attempts p0.write.
test/simpledb/DeadlockTest.java:123
Method
toString
()
src/java/simpledb/Aggregator.java:50
Method
toString
Returns the contents of this Tuple as a string. Note that to pass the system tests, the format needs to be as follows: column1\tcolumn2\tcolumn3\t...
src/java/simpledb/Tuple.java:85
Method
toString
()
src/java/simpledb/Permissions.java:15
Method
toString
Prints a representation of this BTreeEntry
src/java/simpledb/BTreeEntry.java:132
Method
toString
()
src/java/simpledb/StringField.java:36
Method
toString
()
src/java/simpledb/TupleDesc.java:33
Method
toString
Returns a String describing this descriptor. It should be of the form "fieldType[0](fieldName[0]), ..., fieldType[M](fieldName[M])", although the exac
src/java/simpledb/TupleDesc.java:181
Method
toString
()
src/java/simpledb/Predicate.java:27
Method
toString
Returns something useful, like "f = field_id op = op_string operand = operand_string"
src/java/simpledb/Predicate.java:107
Method
toString
@return A string describing this histogram, for debugging purposes
src/java/simpledb/IntHistogram.java:68
Method
toString
()
src/java/simpledb/LogicalJoinNode.java:71
Method
toString
()
src/java/simpledb/BTreePageId.java:91
Method
toString
()
src/java/simpledb/IntField.java:27
Method
totalTuples
return the total number of tuples in this table
src/java/simpledb/TableStats.java:157
Method
tupleno
Unit test for RecordId.getTupleNumber()
test/simpledb/RecordIdTest.java:42
Method
updateParentPointers
Update the parent pointer of every child of the given page so that it correctly points to the parent @param tid - the transaction id @param dirtypage
src/java/simpledb/BTreeFile.java:379
Method
validateAfter
(HeapFile table)
test/simpledb/systemtest/DeleteTest.java:47
Method
writePage
(Page p)
test/simpledb/TestUtil.java:213
← previous
1,001–1,070 of 1,070, ranked by callers