Andy Pavlo

Results 97 issues of Andy Pavlo

This has the latest version of clhash from @lemire https://github.com/lemire/clhash

I have added Lealone to my encyclopedia of databases: https://dbdb.io/db/lealone Do you have a logo that I can include? Thanks! -- Andy

I have added Beam to my encyclopedia of databases: https://dbdb.io/db/beam Do you have a logo that I can include? Thanks! -- Andy

Our catalog code is a mess. It's inconsistent. We need to clean it up so that it is easier to understand and follows the proper logical hierarchy. I propose the...

cleanup

This PR is a cleaned up version of #1345. I removed the need for temp tables since @poojanilangekar doesn't need that. This PR is still broken. I still need to...

do not merge
in progress

We need to think about how we want to set the read-only flag for a `TransactionContext`. There are currently two ways to set this flag: 1. When the txn is...

txns

There are certain parameters that we need during execution that need to persist across transactions. 1. `current_database`: The database that the client is currently connected to. This is currently called...

txns

There is a bunch of `LOG_INFO` debug statements in 'update_test.cpp' https://github.com/cmu-db/peloton/blob/master/test/executor/update_test.cpp We should replace them to `LOG_DEBUG`. This should be easy

beginner

If we get `SELECT` query in a single-statement txn, we should mark it as 'read-only'. This will avoid conflicts with other txns that are running at the same time. I...

beginner

We need to create a new class of test cases (a mix of C++ gtest and Java junit) that run for long periods of time. I don't know what the...

testing