message
stringlengths
3
720
label
stringclasses
5 values
Added LIMIT and OFFSET support for Queries
Adaptive
Additional docs
Administrative
and unit tests for query limit&offset
Adaptive
qoute column names in where and order by clauses
Adaptive
use LOCALIZED collation for Strings in ORDER BY
Adaptive
moved order test into separate class
Perfective
added test for order with upper/lower case and umlauts
Adaptive
added orderCustom
Adaptive
added testOrderRaw
Adaptive
default names for to-many relations end with 'List' now
Perfective
Updated libs for example project
Perfective
generated example code with current lib version
Adaptive
updated readme
Administrative
updated copyright year for javadocs
Administrative
5 test runs
Perfective
deprecated query: groupBy & having does not make sense for entities. Method will be removed
Perfective
Don't assume that a Cursor has a CursorWindow (fix for Roboelectric)
Corrective
Additional check that key can be acquired (issue #5)
Corrective
updated readme for version 1.1.0 and 1.1.1
Administrative
added NOT IN condition (#23)
Adaptive
preparing V1.1.1 release
Other
print schema version before generating
Adaptive
throw exception when trying to add relations to protobuf entities
Corrective
new flag for skipping table creation & dropping
Adaptive
removed unnecessary DAO import for non-active entities
Perfective
fixed typo with ordinal
Corrective
moved jar to libs (ADT 17)
Perfective
V1.1.2 release notes added
Administrative
renamed to QuerySpecialNamesTest (missing Test suffix)
Perfective
Added 'order' to special names test
Adaptive
changed order property to int
Perfective
There might be other fields introduced by some tools, just ignore themn(see issue #28)
Corrective
Refelected Properties must be public also (issue #28)
Corrective
optimized modifier checking for Properties
Perfective
added testWhereWithSpecialNamesWithValues
Adaptive
make database accessible, refactoring of insert methods
Perfective
added insertOrReplaceInTx and another updateInTx variation
Adaptive
improved testInsertOrReplaceInTx
Perfective
prepared readme for next version (unreleased)
Administrative
added logTableDump method
Adaptive
Tests: added missing super.setUp and super.teardown, formatting
Adaptive
Test for String PK
Adaptive
make DAO and DaoSession transient in entities
Perfective
Set Cp1252 encoding in project properties
Perfective
updated readme: transient and string PKs
Administrative
added AbstractDaoTestStringPk
Adaptive
added callInTxNoException
Adaptive
added deleteInTx to DAO
Adaptive
minor clean up
Perfective
added AUTOINCREMENT
Adaptive
added java docs for *Dao.Properties
Administrative
minor rename to pkAutoincrement
Perfective
prepared unit test generation for String PK entities
Adaptive
idea for future use
Other
fixed updateKeyAfterInsert for non-long PKs
Corrective
force NOT NULL for String PK, added identity scope test for String PKs
Adaptive
added testInsertWithoutPK
Adaptive
fixed templates for PK-less entities, test fix
Corrective
added SqliteMaster meta entity
Adaptive
fixed INDEX creation
Corrective
updated readme for V1.2.0RC
Administrative
fixed createEntityWithRandomPk: create collision free PKs
Corrective
added javaDoc for or() and and()
Administrative
outlining some ideas for asynch operations
Adaptive
added properties to AsyncOperation
Adaptive
TX merging and listeners
Other
added async completion features
Adaptive
start AsyncSession in DaoSession, first two async tests up and running
Adaptive
added support for all operation types to AsyncOperationExecutor
Adaptive
Added license headers to asnyc classes
Adaptive
added some async docs
Administrative
minorcode improvements
Perfective
added enqueueEntityOperation helper methods
Adaptive
added remaining entity methods to AsyncSession
Adaptive
prepared async runInTx and callInTx
Adaptive
added queries to async system
Adaptive
added DeleteByKey, DeleteAll, Load, LoadAll, Count, and Refresh to async operations
Adaptive
added waitForCompletion methods to AsyncOperation
Adaptive
changed AsyncOperationExecutor.waitForCompletion methods not to throw InterruptedExecption
Corrective
updated README.md for V1.3.0 Preview (2012-??-??): New asynchronous API
Administrative
added basic async tests like TX, exception, etc.
Adaptive
changed AsyncOperation.getResult semantics
Perfective
moved async classes into async package
Perfective
introduced AsyncDaoException
Corrective
Ignore FindBugs: increment of volatile is fine here because we use a lock
Perfective
added AsyncOperation.sequenceNumber
Adaptive
added java-formater.xml (Eclipse Code Formatter) so other committers can conform with greenDAO's code style
Adaptive
added queryRawCreate returning a Query object
Adaptive
added testLike
Adaptive
Merge branch 'master' of ssh://gitolite@greencentral.de/AndroidDao
Other
dummy file to avoid errors after checkout (no res folder)
Corrective
added deleteByKeyInTx
Adaptive
added DaoSessionConcurrentTest to verify deadlocks, fixed TX order in executeInsertInTx
Corrective
Do TX to acquire a connection before locking the stmt to avoid deadlocks
Corrective
throw nice exception if entity is updated or deleted with null key
Corrective
fixed potential deadlock in update/updateInTx
Corrective
refactoring: TestThread and doTx
Perfective
DaoSessionConcurrentTest refactoring and 3 separate concurrent threads
Perfective
removed redundant identityScope key removal
Perfective
fixed delete locking order to avoid potential deadlocks
Corrective