summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2008-01-25Add transaction detach/attach methods.Brian S. O'Neill
2008-01-25Add load trigger test.Brian S. O'Neill
2008-01-22OrderingList is now Serializable.Brian S. O'Neill
2008-01-22Filter and FilterValues are now Serializable.Brian S. O'Neill
2008-01-20Split TransactionManager and created TransactionScope class.Brian S. O'Neill
2008-01-20Fixed tests.Brian S. O'Neill
2007-10-26Added support for outer joins.Brian S. O'Neill
2007-10-21Allow open exists filter to operate on many-to-one join.Brian S. O'Neill
2007-10-14Added support for "where exists" in queries via new syntax.Brian S. O'Neill
2007-10-11Support sorting of arrays.Brian S. O'Neill
2007-09-16Ensure that non-destructive update doesn't invoke load trigger.Brian S. O'Neill
2007-09-03Calling Storable.update when there are no dirty properties actually does an ↵Brian S. O'Neill
update instead of being "smart" and ignoring the update request. The old behavior was non-intuitive and interfered with expected trigger behavior.
2007-09-03Removed bogus test.Brian S. O'Neill
2007-08-26Yanked out support for filtering against one-to-many join properties. It ↵Brian S. O'Neill
needs to be redesigned.
2007-08-26Removed vestigial support for wrapping Storables.Brian S. O'Neill
2007-08-26Added support for load and query trigger.Brian S. O'Neill
2007-08-23Support parsing date-times with a space separator instead of T.Brian S. O'Neill
2007-08-20Fixed bug in GroupedCursor which discarded last group if it had one element.Brian S. O'Neill
2007-08-06Support filters as joined and not joined from one-to-many properties.Brian S. O'Neill
2007-08-04Add filtering short-circuit optimization.Brian S. O'Neill
2007-06-29Fix syntax error.Brian S. O'Neill
2007-06-29Fixed IllegalArgumentException with optimized join queries of the form "a.b ↵Brian S. O'Neill
= ? & (a.c = ? | a.d = ?)".
2007-06-17Add test for lob replication bug.Brian S. O'Neill
2007-06-10Added methods to access Storable properties by name.Brian S. O'Neill
2007-05-21Added ViewCursor class.Brian S. O'Neill
2007-05-20Merged in covering index optimization.Brian S. O'Neill
2007-05-14More lob and sequence tests; LobEngine fixes.Brian S. O'Neill
2007-04-29Merged in support for derived properties.Brian S. O'Neill
2007-04-02Weak matches changed to extra matches.Brian S. O'Neill
2007-04-01Move Storable code generation support to separate package.Brian S. O'Neill
2007-03-31Consider weak matches in filtering score.Brian S. O'Neill
2007-03-28Merged 1.2-dev to trunk.Brian S. O'Neill
2007-02-17ReplicatedRepository installs user triggers on the replica again, but it now ↵Brian S. O'Neill
disables all triggers during resync to prevent errors. When triggers were on master, downstream triggers would not see changes made by earlier triggers.
2007-02-02Fixed bug when decoding old Storable generations - new properties must be ↵Brian S. O'Neill
cleared. Otherwise, indexes on newly added properties might not get updated.
2007-01-28Fixed bug when filtering against negative floating point values.Brian S. O'Neill
2007-01-13Fix for getting supplied filter values when duplicate property filters exist.Brian S. O'Neill
2006-12-15When a property evolves from a boxed primitive to an unboxed primitive, null ↵Brian S. O'Neill
is converted to zero or false instead of throwing a NullPointerException.
2006-12-07Added @Authoritative annotation.Brian S. O'Neill
2006-12-01Add Storable to CorruptEncodingException when loading from index.Brian S. O'Neill
2006-11-10Fix resync corruption skip/repair logic.Brian S. O'Neill
2006-11-08Tests and fixes for corruption repair.Brian S. O'Neill
2006-11-04Fixed exception when printing join plan with blank parameters.Brian S. O'Neill
2006-10-31Index records no longer use join property to link to master and instead copy ↵Brian S. O'Neill
key property values. This allows IndexedRepository to properly load master records from the master storage.
2006-10-17More work on automatic triggers.Brian S. O'Neill
2006-10-16Incorporated acceptance tests for replicated repository.Brian S. O'Neill
2006-10-16Resolved deadlocks.Brian S. O'Neill
2006-10-15Added basic index tests.Brian S. O'Neill
2006-10-15Added alias tests.Brian S. O'Neill
2006-10-15Created StorageCollection.Brian S. O'Neill
More tests added.
2006-10-14Incorporated acceptance tests.Brian S. O'Neill