- 05 Oct, 2001 9 commits
-
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
Replace long multiplies with long shifts in U64() and u64().
-
Jeremy Hylton authored
-
Jeremy Hylton authored
- use update() method where appropriate - don't pass None as second argument to get(). it's the default. - consistent space after comma between args
-
Jeremy Hylton authored
In tpc_vote() rename local variable id to tid. Add doc string to read_index(), helpful but not complete yet. In read_index(), replace an iteration over the tindex for each transaction with a few calls that do the work with much less overhead.
-
Jeremy Hylton authored
Also, add an open() method to open the storage. Used by PersistentStorage, too.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
- 04 Oct, 2001 11 commits
-
-
Jeremy Hylton authored
-
Jeremy Hylton authored
Raise correct exceptions in abortVersion() and commitVersion(). Spread out some code that had the vertical white space removed. Fix the versions() implementation so that it works if the optional max argument is not passed by the caller. Fix commitVersion() so that it works for committing from one version to the other. The previous version always committed to the non-version data even if a destination version was specified. Fix typos.
-
Jeremy Hylton authored
documented exceptions. Remove a few of the old #JF# comments that explain why some old, commented out test code didn't work. XXX still need to do more. Extend a few tests with more checks of accessing non-version data via versions that have no changes in them. Comment -> doc string.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
It's possible for a storage to not support historical revisions, in which case this test can't work. Also make comment at top of BasicStorage into a doc string.
-
Jeremy Hylton authored
Replace a string-based exception (a string literal which was broken even for string-based exceptions) with a class-based exception. Raise a VersionCommitError is source and dest versions were the same.
-
Barry Warsaw authored
way all the other MinPO objects are created. But, be sure to pass already_pickled=1 to _dostore().
-
Barry Warsaw authored
-
Barry Warsaw authored
of two objects. This uncovered a bug in Berkeley's CommitLog, which was caused by an inadvertently committed change.
-
Jeremy Hylton authored
-
- 03 Oct, 2001 3 commits
-
-
Chris McDonough authored
-
Chris McDonough authored
-
Chris McDonough authored
Changed the conflict resolution machinery to avoid attempting to resolve conflicts on ZClasses, because we can't import their "modules" (we don't have a db connection).
-
- 02 Oct, 2001 5 commits
-
-
Jeremy Hylton authored
-
Jeremy Hylton authored
actual work
-
Jim Fulton authored
database file not to be truncated when it should have been during a two-phase commit abort.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
Simplify santiy checking of length fields in transaction metadata. Replace the following test: [1] if ul > tl or dl > tl or el > tl or tl < (23+ul+dl+el): with this one: [2] if tl < (23+ul+dl+el): If any of the first three comparisons in [1] is true, then the final test must also be true. It's unlikely that any of the tests will be true, so just do the final one.
-
- 28 Sep, 2001 6 commits
-
-
Jeremy Hylton authored
This test wasn't part of read_index(), but seems good and cheap. XXX Needs test case.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
- 26 Sep, 2001 1 commit
-
-
Jeremy Hylton authored
The only exceptions that an _p_resolveConflict() method should raise are ConflictError and ValueError. If it raises a different exception, then it has failed. In general, a unittest should not use a bare except clause, because they almost always mask failures. If the test really means to catch all exceptions, it's best to make a comment to that effect.
-
- 21 Sep, 2001 1 commit
-
-
Barry Warsaw authored
self.assertEqual() and friends since this gives much better output.
-
- 20 Sep, 2001 2 commits
-
-
Jeremy Hylton authored
-
Jeremy Hylton authored
Based on conversation with Evan yesterday, I think this is safe.
-
- 18 Sep, 2001 1 commit
-
-
Jeremy Hylton authored
-
- 13 Sep, 2001 1 commit
-
-
Jeremy Hylton authored
FCNTL is deprecated in Python 2.2 and all its functionality is available in fcntl in Python 2.1.
-