Changes between Version 2 and Version 4 of Ticket #26702
- Timestamp:
- 11/13/18 17:10:55 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #26702
-
Property
Summary
changed from
Py3: Fix database module for python3
toPy3: Fix database/sql_db module for python3
-
Property
Summary
changed from
-
Ticket #26702 – Description
v2 v4 2 2 The default order being defined by the {{{CREATE TABLE}}} sql statement.\\ 3 3 4 Given that the table_skeleton use a dict, we cannot predict the order of columns in the table .\\4 Given that the table_skeleton use a dict, we cannot predict the order of columns in the table (Because of that using {{{add_rows}}} without defining {{{entry_order}}} parameter is tricky).\\ 5 5 6 6 In this ticket i fixed the doctests using an OrderedDict instead of dict.