odoo/openerp
Olivier Dony f28be81bc7 [IMP] models._auto_init: avoid writing `False` default for boolean fields
Boolean fields always default to False in 8.0,
even when they do not have explicit default values.
This causes extra queries in the form:
  UPDATE <table> SET <bool_field> = false
      WHERE <bool_field> IS NULL;

Those are not necessary as the ORM automatically
folds NULL booleans to False, and can be very
expensive on tables with several million rows,
as the whole table may sometimes need to be
rewritten (can take dozens of minutes)
2014-08-11 11:34:12 +02:00
..
addons [FIX] base: tests: move test menu under correct root 2014-08-08 14:17:37 +02:00
cli [FIX] cli/server: fixes #1307, add missing Environment management blocks 2014-07-30 15:32:12 +02:00
conf [MERGE] openerp.pooler is deprecated. 2013-03-27 17:40:45 +01:00
modules [FIX] module loading: manual x2x fields can now refer to manual models 2014-08-04 15:10:12 +02:00
osv [FIX] fields.py: correct copy/paste error, use the right attribute 2014-08-07 13:50:27 +02:00
report [REF] OpenERP --> Odoo in various UI texts 2014-07-18 13:45:41 +02:00
service Merge pull request #1169 from xmo-odoo/8.0-remove-async-db-create-xmo 2014-07-16 10:29:21 +02:00
tests [MERGE] new v8 api by rco 2014-07-06 17:05:41 +02:00
tools [IMP] refactoring: move function topological_sort to openerp.tools 2014-08-08 14:12:06 +02:00
workflow [IMP] workflow: add sequence for ordering workflow transitions (split/join mode especially for XOR) 2014-08-05 12:26:28 +02:00
PKG-INFO [REM] netrpc: KILL EVERYBODY 2013-02-21 13:18:25 +01:00
__init__.py [MERGE] new v8 api by rco 2014-07-06 17:05:41 +02:00
api.py [IMP] api: improve documentation of decorators constrains, depends, onchange 2014-08-08 14:34:29 +02:00
exceptions.py [MERGE] new v8 api by rco 2014-07-06 17:05:41 +02:00
fields.py [FIX] fields: generalize inverse_field to a list of inverse fields 2014-08-08 14:57:00 +02:00
http.py [FIX] data-dir management 2014-07-07 15:49:24 +02:00
import_xml.rng [MERGE] Replace inherit_option_id by a selection field (PR #229) 2014-05-27 17:57:33 +02:00
loglevels.py [REF] logging: removed pseudo log-level TEST. 2013-03-26 16:58:44 +01:00
models.py [IMP] models._auto_init: avoid writing `False` default for boolean fields 2014-08-11 11:34:12 +02:00
netsvc.py [IMP] module loading and tests profiling 2014-06-29 18:58:15 +02:00
pooler.py [IMP] registry: avoid every direct access registry.db, and rename attribute as registry._db 2014-04-09 15:35:15 +02:00
release.py [REF] OpenERP --> Odoo in various UI texts 2014-07-18 13:45:41 +02:00
sql_db.py [IMP] test display sql query counter 2014-07-01 21:57:55 +02:00