2008-07-21 08:47:31 +00:00
|
|
|
0.1
|
|
|
|
- Created header class to handle attributes
|
|
|
|
- Created relation class
|
|
|
|
- Added union
|
|
|
|
- Added intersection
|
|
|
|
- Added difference
|
|
|
|
- Added product
|
|
|
|
- Added projection
|
|
|
|
- Added rename
|
|
|
|
- Projection can use a list or several parameters
|
|
|
|
- Added selection
|
|
|
|
- Added left join
|
|
|
|
- Added right join
|
|
|
|
- Added capability of operation even if attributes aren't in the same order
|
|
|
|
- Added full outher join
|
|
|
|
|
|
|
|
0.2
|
|
|
|
- Created parser module
|
|
|
|
- Created function to parse expression with operators without parameters
|
2008-07-23 13:20:49 +00:00
|
|
|
- Created recoursive function to parse expressions
|
|
|
|
|
|
|
|
0.3
|
2008-07-24 22:20:04 +00:00
|
|
|
- Added support for parenthesis in relational queries
|
|
|
|
|
|
|
|
0.4
|
2008-08-08 12:41:16 +00:00
|
|
|
- Created GUI
|
|
|
|
|
|
|
|
0.5
|
2008-08-08 14:28:47 +00:00
|
|
|
- Added support for float numbers
|
2008-08-14 18:53:42 +00:00
|
|
|
- Added support for dates
|
|
|
|
|
|
|
|
0.6
|
2008-08-15 13:30:42 +00:00
|
|
|
- Fixes to run on Mac OsX
|
2008-09-01 07:51:57 +00:00
|
|
|
- Added Makefile
|
|
|
|
- Able to create .app MacOsX files using "make app"
|
2008-09-01 07:56:54 +00:00
|
|
|
- Able to create tar.gz file containing Mac OsX application and samples using "make mac"
|
2008-09-22 13:34:41 +00:00
|
|
|
|
|
|
|
0.7
|
2008-10-04 17:37:58 +00:00
|
|
|
- Added README
|
2008-11-05 17:07:38 +00:00
|
|
|
- Expressions between quotes aren't parsed anymore
|
2008-11-08 18:21:31 +00:00
|
|
|
- When adding a relation, the file must be chosen 1st, and then the default relation's name is the same as the filename
|
2008-11-06 22:25:12 +00:00
|
|
|
- Changed internal rename method. Now uses a dictionary
|
2008-11-08 18:21:31 +00:00
|
|
|
- Optimized saving of relations
|
2008-11-09 12:15:04 +00:00
|
|
|
- Can save relations from gui
|
2008-11-11 13:15:12 +00:00
|
|
|
- Outer join methods simplified
|
2008-11-15 15:33:02 +00:00
|
|
|
- Form to send a survey
|
2008-11-30 12:28:16 +00:00
|
|
|
- Makefile to create .deb package
|
|
|
|
|
|
|
|
0.8
|
2008-11-30 13:59:22 +00:00
|
|
|
- Added __eq__ to relation object, will compare ignoring order.
|
|
|
|
- New default relation's format is csv, as defined in RFC4180
|
2008-12-09 17:24:24 +00:00
|
|
|
- Converted sample's relations to csv
|
2008-12-10 17:42:41 +00:00
|
|
|
- Deb postinstall generates optimized files, this will increase loading speed
|
2008-12-25 11:26:40 +00:00
|
|
|
- Relation module has SQL-like delete
|
2008-12-25 11:28:38 +00:00
|
|
|
- Relation module has SQL-like update
|
2009-02-23 15:17:04 +00:00
|
|
|
- Relation module has SQL-like insert
|
|
|
|
- GUI can be used to insert and delete tuples
|
|
|
|
- Showing fields of selected relation will work with themes different than oxygen
|
2009-02-24 14:56:08 +00:00
|
|
|
|
|
|
|
0.9
|
2009-03-02 16:29:11 +00:00
|
|
|
- Splitted into independent packages (gui and library)
|
2009-03-08 08:19:19 +00:00
|
|
|
- Simplified makefile, bringing outside files for debian package
|
|
|
|
- Default source package now doesn't contain informations to generate debian/mac packages
|
|
|
|
- "make source_all" generates the old style tarball containing all the files
|
|
|
|
- Bug: relational script installed with debian package now passes arguments to the python executable
|
2009-03-16 08:52:25 +00:00
|
|
|
- Insert and delete from GUI are now done on the displayed relation, not on the selected one
|
|
|
|
|
2009-03-16 22:19:57 +00:00
|
|
|
0.10
|
|
|
|
- In optimizer, added a function that tokenizes an expression
|
2009-03-18 09:58:25 +00:00
|
|
|
- Document about complexity of operations
|
2009-04-06 17:04:18 +00:00
|
|
|
- Bug: error in update operation, it changed the original tuple, so also other relations using the same tuple would change. Now it copies it.
|
2009-04-29 08:36:28 +00:00
|
|
|
- Added make install and uninstall
|
2009-04-29 12:14:00 +00:00
|
|
|
- Optimizer generate a tree from the expression
|
2009-05-06 16:35:21 +00:00
|
|
|
- Uses python-psyco when it is available
|
|
|
|
- Ability to perform optimizations from GUI
|
2009-05-08 14:51:31 +00:00
|
|
|
- Able to (temporarily) store queries with a name
|
2009-05-12 15:09:57 +00:00
|
|
|
- Mechanism to add new kind of optimizations, without having to edit all the code
|
|
|
|
- Implemented duplicated_select general optimization
|
|
|
|
- Implemented down_to_unions_subtractions_intersections general optimization
|
|
|
|
- Implemented duplicated_projection general optimization
|
|
|
|
- Implemented selection_inside_projection general optimization
|
|
|
|
- Implemented subsequent_renames general optimization
|
|
|
|
- Implemented swap_rename_select general optimization
|
|
|
|
- Implemented selection_and_product specific optimization
|
2009-05-22 22:20:31 +00:00
|
|
|
- Added stub for converting SQL to relational algebra
|
2009-05-25 17:04:24 +00:00
|
|
|
- Implemented futile_union_intersection_subtraction general optimization
|
2009-06-09 10:22:52 +00:00
|
|
|
- Implemented swap_rename_projection general optimization
|
2009-06-09 10:36:33 +00:00
|
|
|
- Replaced old relational algebra to python compiler with new one based on the new tokenizer/parser (Rev 188)
|
2009-06-29 13:12:45 +00:00
|
|
|
- Code refactory to move the new parser into parser.py out of optimizer.py, that will still be compatible (Rev 190)
|
2009-07-05 22:26:51 +00:00
|
|
|
- Selection can now accept expressions with parenthesis
|
|
|
|
|
|
|
|
0.11
|
2009-08-18 10:03:55 +00:00
|
|
|
- Font is set only on windows (Rev 206)
|
2009-08-18 11:52:33 +00:00
|
|
|
- Improved futile_union_intersection_subtraction in case of A-A, when A is a sub-query (Rev 208)
|
2009-08-20 16:10:55 +00:00
|
|
|
- Improved futile_union_intersection_subtraction, handles when a branch of subtracion has a selection (Rev 209)
|
2009-09-09 13:17:38 +00:00
|
|
|
- Can load relations specified in command line (Rev 210)
|
2009-09-18 22:57:02 +00:00
|
|
|
- Using fakeroot instead of su in make debian (Rev 214)
|
2009-09-18 22:57:44 +00:00
|
|
|
- Fixed problem with float numbers with selection of certain relations (Rev 215)
|
|
|
|
- Added .desktop file on svn (Rev 216)
|