File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # 0.9.2
1+ # 1.0.0
2+
3+ changes since 0.9.2
4+
5+ - Cleanup/modernize the test suite, get working with SQLalchemy 1.0, 1.1 and 1.2 #27
6+ - TextTest failing bug sqlalchemy-1.2 #26
7+ - EscapingTest fail for sqlalchemy==1.2.0b3 bug sqlalchemy-1.2 #25
8+ - test_integrity_error test fail #17
9+ - test_limit_offset_in_unions_from_alias test fail #14
10+ - test_limit_offset_selectable_in_unions test fail #15
11+ - test_order_by_selectable_in_unions test fail #16
12+ - table name quoted wrong #11
13+ - check old todo list if issues are still a problem #22
14+ - test_bound_limit_offset test fail #19
15+ - test_bound_limit test fail #18
16+ - test_bound_offset test fail #20
17+ - fix all temp table related issues #23
18+ - Test suite fails with latest SQLALchemy >= 1.0 bug #1
19+
20+
21+ # 0.9.2
222
323changes since 0.9.1
424
Original file line number Diff line number Diff line change 11MonetDB dialect for SQLAlchemy
22==============================
3- This is the MonetDB dialect driver for SQLAlchemy.
3+
4+ This is the MonetDB dialect driver for SQLAlchemy. It has support for Python 2.7, 3.3+ and even PyPy. It supports
5+ SQLalchemy 1.0, 1.1 and 1.2.
46
57
68Installation
@@ -27,14 +29,11 @@ To start using this dialect::
2729MonetDB Lite (experimental)
2830---------------------------
2931
30- We also have experimental support for MonetDB Lite!
31-
32- For this install this dialect with an extra option::
32+ We now have experimental support for MonetDB Lite! Note that this is experimental, and will probably break.
3333
34- $ pip install sqlalchemy_monetdb[lite]
34+ First you need to manually install MonetDB Lite: https://github.com/hannesmuehleisen/MonetDBLite-Python
3535
36-
37- Now can start using MonetDB Lite::
36+ To connect to a MonetDBLite database use this syntax::
3837
3938 from sqlalchemy import create_engine
4039 engine = create_engine('monetdb+lite:////tmp/monetdb_lite')
@@ -49,6 +48,7 @@ More info
4948
5049Development
5150-----------
51+
5252.. image :: https://travis-ci.org/gijzelaerr/sqlalchemy-monetdb.png?branch=master
5353 :target: https://travis-ci.org/gijzelaerr/sqlalchemy-monetdb
5454
Original file line number Diff line number Diff line change 1313
1414setup_params = dict (
1515 name = "sqlalchemy_monetdb" ,
16- version = '0.9.3 ' ,
16+ version = '1.0.0 ' ,
1717 description = "SQLAlchemy dialect for MonetDB" ,
1818 author = "Gijs Molenaar" ,
1919 author_email = "gijsmolenaar@gmail.com" ,
Original file line number Diff line number Diff line change 1+
2+
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ def test_get_temp_table_indexes(self):
3939 @testing .requires .temp_table_reflection
4040 @testing .requires .unique_constraint_reflection
4141 def test_get_temp_table_unique_constraints (self ):
42- # TODO: it looks like MonetDB doesn't show constains for temp tables (yet)
42+ # TODO: it looks like MonetDB doesn't show constrains for temp tables (yet)
4343 return
4444
4545 @classmethod
@@ -200,6 +200,7 @@ def test_group_by_composed(self):
200200 """
201201 Disable this for now
202202
203+ https://github.com/gijzelaerr/sqlalchemy-monetdb/issues/21
203204 https://groups.google.com/forum/#!topic/sqlalchemy/r4X7ddN4rgA
204205 """
205206 pass
You can’t perform that action at this time.
0 commit comments