MCPcopy Create free account

hub / github.com/awelm/simpledb / functions

Functions643 in github.com/awelm/simpledb

Methodopen
()
test/simpledb/TestUtil.java:262
Methodopen
()
src/simpledb/Project.java:37
Methodopen
()
src/simpledb/StringAggregator.java:64
Methodopen
()
src/simpledb/IntAggregator.java:109
Methodopen
()
src/simpledb/OrderBy.java:33
Methodopen
()
src/simpledb/Delete.java:30
Methodopen
()
src/simpledb/Parser.java:556
MethodorderJoinsTest
Determine whether the orderJoins implementation is doing a reasonable job of ordering joins, and not taking an unreasonable amount of time to do so
test/simpledb/JoinOptimizerTest.java:205
MethodorderOfGrowthTest
Test to confirm that the IntHistogram implementation is constant-space (or, at least, reasonably small space; O(log(n)) might still work if your const
test/simpledb/IntHistogramTest.java:15
Methodpageno
Unit test for HeapPageId.pageno()
test/simpledb/HeapPageIdTest.java:31
MethodqueryTest
()
test/simpledb/systemtest/QueryTest.java:44
MethodreadNext
()
test/simpledb/TestUtil.java:276
MethodreadNext
AbstractDbIterator.readNext implementation. Iterates over tuples from the child operator, projecting out the fields from the tuple @return The next tu
src/simpledb/Project.java:55
MethodreadNext
Inserts tuples read from child into the tableid specified by the constructor. It returns a one field tuple containing the number of inserted records.
src/simpledb/Insert.java:62
MethodreadNext
Returns the next tuple. If there is a group by field, then the first field is the field by which we are grouping, and the second field is the result
src/simpledb/Aggregate.java:105
MethodreadNext
AbstractDbIterator.readNext implementation. Iterates over tuples from the child operator, applying the predicate to them and returning those that pass
src/simpledb/Filter.java:50
MethodreadNext
()
src/simpledb/StringAggregator.java:72
MethodreadNext
()
src/simpledb/IntAggregator.java:117
MethodreadNext
Returns the next tuple generated by the join, or null if there are no more tuples. Logically, this is the next tuple in r1 cross r2 that satisfies the
src/simpledb/Join.java:142
MethodreadNext
AbstractDbIterator.readNext implementation. Returns tuples from the child operator in order @return The next tuple in the ordering, or null if there
src/simpledb/OrderBy.java:57
MethodreadNext
Deletes tuples as they are read from the child operator. Deletes are processed via the buffer pool (which can be accessed via the Database.getBufferPo
src/simpledb/Delete.java:51
MethodreadPage
Unit test for HeapFile.readPage()
test/simpledb/HeapFileReadTest.java:68
MethodreadPage
(PageId id)
test/simpledb/TestUtil.java:205
MethodreadPage
(PageId pid)
test/simpledb/systemtest/ScanTest.java:81
MethodreadPage
(PageId pid)
src/simpledb/HeapFile.java:61
Methodrecover
Recover the database system by ensuring that the updates of committed transactions are installed and that the updates of uncommitted t
src/simpledb/LogFile.java:492
Methodrewind
Unit test for Aggregate.rewind()
test/simpledb/AggregateTest.java:99
Methodrewind
Unit test for Filter.rewind()
test/simpledb/FilterTest.java:39
Methodrewind
Unit test for Join.rewind()
test/simpledb/JoinTest.java:70
Methodrewind
()
test/simpledb/TestUtil.java:268
Methodrewind
()
src/simpledb/Project.java:46
Methodrewind
()
src/simpledb/Insert.java:44
Methodrewind
()
src/simpledb/StringAggregator.java:68
Methodrewind
()
src/simpledb/IntAggregator.java:113
Methodrewind
()
src/simpledb/HeapFile.java:201
Methodrewind
()
src/simpledb/OrderBy.java:47
Methodrewind
()
src/simpledb/TupleIterator.java:40
Methodrewind
Resets the iterator to the start. @throws DbException When rewind is unsupported.
src/simpledb/DbFileIterator.java:34
Methodrewind
()
src/simpledb/Delete.java:38
Methodrewind
Resets the iterator to the start. @throws DbException When rewind is unsupported.
src/simpledb/Parser.java:581
Methodrun
()
test/simpledb/TestUtil.java:333
Methodrun
()
test/simpledb/systemtest/TransactionTest.java:84
Methodrun
()
test/simpledb/systemtest/TransactionTest.java:199
Methodserialize
Return a representation of this object as an array of integers, for writing to disk. Size of returned array must contain number of integers that co
src/simpledb/HeapPageId.java:63
Methodserialize
Write this string to dos. Always writes maxSize + 4 bytes to the passed in dos. First four bytes are string length, next bytes are string, w
src/simpledb/StringField.java:49
Methodserialize
(DataOutputStream dos)
src/simpledb/IntField.java:36
MethodsetBeforeImage
()
src/simpledb/Page.java:58
MethodsetUp
Set up initial resources for each unit test.
test/simpledb/DeadlockTest.java:26
MethodsetUp
Initialize each unit test
test/simpledb/InsertTest.java:21
MethodsetUp
Set up the test; create some initial tables to work with
test/simpledb/JoinOptimizerTest.java:49
MethodsetUp
Set up initial resources for each unit test.
test/simpledb/LockingTest.java:22
MethodsetUp
Initialize each unit test
test/simpledb/FilterTest.java:21
MethodsetUp
Set up initial resources for each unit test.
test/simpledb/TransactionTest.java:19
MethodsetUp
()
test/simpledb/TableStatsTest.java:22
MethodsetUp
Set up initial resources for each unit test.
test/simpledb/HeapFileWriteTest.java:16
MethodsetUp
Set up initial resources for each unit test.
test/simpledb/HeapFileReadTest.java:22
MethodsetUp
()
test/simpledb/TestUtil.java:384
MethodsetUp
Reset the database before each test is run.
test/simpledb/systemtest/SimpleDbTestBase.java:16
Methodshutdown
Shutdown the logging system, writing out whatever state is necessary so that start up can happen quickly (without extensive recovery.)
src/simpledb/LogFile.java:478
Methodsuite
JUnit suite target
test/simpledb/HeapPageIdTest.java:82
Methodsuite
JUnit suite target
test/simpledb/DeadlockTest.java:217
Methodsuite
JUnit suite target
test/simpledb/StringAggregatorTest.java:110
Methodsuite
JUnit suite target
test/simpledb/AggregateTest.java:182
Methodsuite
JUnit suite target
test/simpledb/InsertTest.java:61
Methodsuite
JUnit suite target
test/simpledb/TupleDescTest.java:173
Methodsuite
JUnit suite target
test/simpledb/CatalogTest.java:74
Methodsuite
JUnit suite target
test/simpledb/LockingTest.java:192
Methodsuite
JUnit suite target
test/simpledb/IntAggregatorTest.java:184
Methodsuite
JUnit suite target
test/simpledb/JoinPredicateTest.java:62
Methodsuite
JUnit suite target
test/simpledb/FilterTest.java:126
Methodsuite
JUnit suite target
test/simpledb/TransactionTest.java:118
Methodsuite
JUnit suite target
test/simpledb/HeapPageWriteTest.java:132
Methodsuite
JUnit suite target
test/simpledb/JoinTest.java:111
Methodsuite
JUnit suite target
test/simpledb/HeapFileWriteTest.java:49
Methodsuite
JUnit suite target
test/simpledb/RecordIdTest.java:68
Methodsuite
JUnit suite target
test/simpledb/HeapFileReadTest.java:127
Methodsuite
JUnit suite target
test/simpledb/HeapPageReadTest.java:126
Methodsuite
JUnit suite target
test/simpledb/TupleTest.java:63
Methodsuite
JUnit suite target
test/simpledb/PredicateTest.java:61
Methodsuite
Make test compatible with older version of ant.
test/simpledb/systemtest/ScanTest.java:109
Methodsuite
Make test compatible with older version of ant.
test/simpledb/systemtest/AggregateTest.java:116
Methodsuite
Make test compatible with older version of ant.
test/simpledb/systemtest/AbortEvictionTest.java:42
Methodsuite
Make test compatible with older version of ant.
test/simpledb/systemtest/EvictionTest.java:80
Methodsuite
Make test compatible with older version of ant.
test/simpledb/systemtest/InsertTest.java:72
Methodsuite
Make test compatible with older version of ant.
test/simpledb/systemtest/FilterTest.java:26
Methodsuite
Make test compatible with older version of ant.
test/simpledb/systemtest/TransactionTest.java:251
Methodsuite
Make test compatible with older version of ant.
test/simpledb/systemtest/JoinTest.java:73
Methodsuite
Make test compatible with older version of ant.
test/simpledb/systemtest/DeleteTest.java:54
MethodsumAggregate
Unit test for Aggregate.getNext() using a sum aggregate
test/simpledb/AggregateTest.java:138
MethodsumStringGroupBy
Unit test for Aggregate.getNext() using a count aggregate with string types
test/simpledb/AggregateTest.java:127
MethodswapInnerOuter
()
src/simpledb/LogicalSubplanJoinNode.java:31
MethodtearDown
()
test/simpledb/HeapFileWriteTest.java:21
MethodtearDown
()
test/simpledb/HeapFileReadTest.java:29
MethodtestAllDirtyFails
()
test/simpledb/systemtest/TransactionTest.java:229
MethodtestAverage
()
test/simpledb/systemtest/AggregateTest.java:106
MethodtestAverageNoGroup
()
test/simpledb/systemtest/AggregateTest.java:110
MethodtestCache
Verifies that the buffer pool is actually caching data. @throws TransactionAbortedException @throws DbException
test/simpledb/systemtest/ScanTest.java:74
MethodtestCount
()
test/simpledb/systemtest/AggregateTest.java:102
MethodtestDirty
Unit test for HeapPage.isDirty()
test/simpledb/HeapPageWriteTest.java:34
MethodtestDoNotEvictDirtyPages
Aborts a transaction and ensures that its effects were actually undone. This requires dirty pages to <em>not</em> get flushed to disk.
test/simpledb/systemtest/AbortEvictionTest.java:14
← previousnext →501–600 of 643, ranked by callers