sqlalchemy-commits Mailing List for SQLAlchemy (Page 18)
Brought to you by:
zzzeek
You can subscribe to this list here.
2006 |
Jan
|
Feb
(74) |
Mar
(167) |
Apr
(127) |
May
(190) |
Jun
(119) |
Jul
(77) |
Aug
(82) |
Sep
(84) |
Oct
(153) |
Nov
(45) |
Dec
(54) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(109) |
Feb
(80) |
Mar
(110) |
Apr
(106) |
May
(92) |
Jun
(147) |
Jul
(288) |
Aug
(307) |
Sep
(108) |
Oct
(156) |
Nov
(147) |
Dec
(134) |
2008 |
Jan
(126) |
Feb
(91) |
Mar
(184) |
Apr
(208) |
May
(212) |
Jun
(54) |
Jul
(106) |
Aug
(80) |
Sep
(58) |
Oct
(80) |
Nov
(119) |
Dec
(220) |
2009 |
Jan
(202) |
Feb
(50) |
Mar
(70) |
Apr
(46) |
May
(80) |
Jun
(61) |
Jul
(146) |
Aug
(81) |
Sep
(71) |
Oct
(74) |
Nov
(66) |
Dec
(82) |
2010 |
Jan
(112) |
Feb
(169) |
Mar
(235) |
Apr
(77) |
May
(22) |
Jun
(31) |
Jul
(46) |
Aug
(46) |
Sep
(70) |
Oct
(36) |
Nov
(37) |
Dec
(79) |
2011 |
Jan
(46) |
Feb
(54) |
Mar
(65) |
Apr
(73) |
May
(31) |
Jun
(46) |
Jul
(40) |
Aug
(36) |
Sep
(44) |
Oct
(33) |
Nov
(19) |
Dec
(10) |
2012 |
Jan
(60) |
Feb
(37) |
Mar
(35) |
Apr
(28) |
May
(27) |
Jun
(50) |
Jul
(33) |
Aug
(88) |
Sep
(64) |
Oct
(74) |
Nov
(62) |
Dec
(41) |
2013 |
Jan
(30) |
Feb
(37) |
Mar
(39) |
Apr
(52) |
May
(40) |
Jun
(85) |
Jul
(74) |
Aug
(76) |
Sep
(26) |
Oct
(76) |
Nov
(63) |
Dec
(65) |
2014 |
Jan
(68) |
Feb
(82) |
Mar
(87) |
Apr
(24) |
May
(66) |
Jun
(34) |
Jul
(86) |
Aug
(75) |
Sep
(70) |
Oct
(41) |
Nov
(23) |
Dec
(53) |
2015 |
Jan
(40) |
Feb
(39) |
Mar
(69) |
Apr
(64) |
May
(40) |
Jun
(43) |
Jul
(20) |
Aug
(48) |
Sep
(38) |
Oct
(28) |
Nov
(34) |
Dec
(44) |
2016 |
Jan
(82) |
Feb
(49) |
Mar
(25) |
Apr
(21) |
May
(19) |
Jun
(46) |
Jul
(38) |
Aug
(21) |
Sep
(33) |
Oct
(44) |
Nov
(26) |
Dec
(10) |
2017 |
Jan
(52) |
Feb
(18) |
Mar
(61) |
Apr
(43) |
May
(57) |
Jun
(36) |
Jul
(37) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Bitbucket <com...@bi...> - 2016-08-15 22:16:49
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/323e6e7f9f6a/ Changeset: 323e6e7f9f6a Branch: master User: zzzeek Date: 2016-08-15 21:36:03+00:00 Summary: Rework _apply_joins(), _prep_for_joins() totally The approach here is still error prone and hard to follow. Reorganize the whole thing to take a pretty blunt approach to the structure of to_join(). Also fix some never-called code (!) in _prep_for_joins() and ensure we re-use an aliased object. Fixes: #3774 Change-Id: Ie6319415ae7213b4a33eac2ab70803ad2880d340 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/bba76c69ba53/ Changeset: bba76c69ba53 Branch: rel_1_0 User: zzzeek Date: 2016-08-15 21:44:35+00:00 Summary: Rework _apply_joins(), _prep_for_joins() totally The approach here is still error prone and hard to follow. Reorganize the whole thing to take a pretty blunt approach to the structure of to_join(). Also fix some never-called code (!) in _prep_for_joins() and ensure we re-use an aliased object. Fixes: #3774 Change-Id: Ie6319415ae7213b4a33eac2ab70803ad2880d340 (cherry picked from commit 323e6e7f9f6a731103cfd19d774024f7f0f84377) Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-08-13 14:39:28
|
4 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/b07eb3cb45d1/ Changeset: b07eb3cb45d1 Branch: None User: zzzeek Date: 2016-08-13 03:35:40+00:00 Summary: Ensure final link in subqueryload join is correct Fixed bug in subquery eager loading where a subqueryload of an "of_type()" object linked to a second subqueryload of a plain mapped class would fail to link the joins correctly. Change-Id: I4be89e6f5e492438464a2ded01eb9c84d7ff7d4e Fixes: #3773 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/1f956ed7b3b6/ Changeset: 1f956ed7b3b6 Branch: None User: zzzeek Date: 2016-08-13 03:36:58+00:00 Summary: Ensure final link in subqueryload join is correct Fixed bug in subquery eager loading where a subqueryload of an "of_type()" object linked to a second subqueryload of a plain mapped class would fail to link the joins correctly. Change-Id: I4be89e6f5e492438464a2ded01eb9c84d7ff7d4e Fixes: #3773 (cherry picked from commit b07eb3cb45d1a344759a2eee9d2166fbf3e44888) Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/94a95b3e8fa0/ Changeset: 94a95b3e8fa0 Branch: master User: zzzeek Date: 2016-08-13 14:39:52+00:00 Summary: Merge "Ensure final link in subqueryload join is correct" Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/009cac8452e8/ Changeset: 009cac8452e8 Branch: rel_1_0 User: zzzeek Date: 2016-08-13 14:40:02+00:00 Summary: Merge "Ensure final link in subqueryload join is correct" into rel_1_0 Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-08-13 03:40:49
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/14154b291008/ Changeset: 14154b291008 Branch: None User: zzzeek Date: 2016-08-13 03:39:49+00:00 Summary: - fill in forwards-ports for 1.1 in 1.0 changelog Change-Id: I8d44b90bb9d05275de19d3ce2d9124050add5f01 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/d7f4dcf10380/ Changeset: d7f4dcf10380 Branch: rel_1_0 User: zzzeek Date: 2016-08-13 03:40:12+00:00 Summary: - fill in forwards-ports for 1.1 in 1.0 changelog Change-Id: I8d44b90bb9d05275de19d3ce2d9124050add5f01 (cherry picked from commit 14154b2910087a7879ca23cf7995026a79a215c2) Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-08-13 02:59:38
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/bec5d6991e4e/ Changeset: bec5d6991e4e Branch: None User: zzzeek Date: 2016-08-13 02:58:34+00:00 Summary: - fix this test which did not allow for the A/ ASub to be loaded polymorphically Change-Id: Id82435fa16b0456f32bce49715c6606e3a1534c8 Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-08-11 16:04:50
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/68b698491276/ Changeset: 68b698491276 Branch: rel_1_0 User: zzzeek Date: 2016-08-11 16:03:38+00:00 Summary: - add another example for chained polymorphic eager loading Change-Id: I87918ab4cd294d4b4a87a377c7b6b21105f4fd55 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/c3ad6da0c4a4/ Changeset: c3ad6da0c4a4 Branch: None User: zzzeek Date: 2016-08-11 16:04:05+00:00 Summary: - add another example for chained polymorphic eager loading Change-Id: I87918ab4cd294d4b4a87a377c7b6b21105f4fd55 (cherry picked from commit 68b6984912760bfe4d9270750d8f39b9036b65b5) Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-08-11 15:46:38
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/09cf0376524d/ Changeset: 09cf0376524d Branch: None User: zzzeek Date: 2016-08-11 15:45:03+00:00 Summary: - small updates to polymorphic eager loading, cross-link from loading documentation Change-Id: I3ce7e2cc521c4dd155195819a919017d4cc63b3c Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/7c6976cf6b70/ Changeset: 7c6976cf6b70 Branch: rel_1_0 User: zzzeek Date: 2016-08-11 15:45:49+00:00 Summary: - small updates to polymorphic eager loading, cross-link from loading documentation Change-Id: I3ce7e2cc521c4dd155195819a919017d4cc63b3c (cherry picked from commit 09cf0376524dc0bac6c1ab05d3c43cdd29c362b1) Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-08-04 17:02:11
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/f2fa9d000b44/ Changeset: f2fa9d000b44 Branch: master User: zzzeek Date: 2016-08-04 16:38:58+00:00 Summary: Build string/int processors for JSONIndexType, JSONPathType Fixed regression in JSON datatypes where the "literal processor" for a JSON index value, that needs to take effect for example within DDL, would not be invoked for the value. The native String and Integer datatypes are now called upon from within the JSONIndexType and JSONPathType. This is applied to the generic, Postgresql, and MySQL JSON types. Change-Id: Ifa5f2acfeee57a79d01d7fc85d265a37bd27c716 Fixes: #3765 Affected #: 7 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-08-04 16:59:36
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/af6f4ab938f1/ Changeset: af6f4ab938f1 Branch: master User: zzzeek Date: 2016-08-04 16:34:55+00:00 Summary: Propagate kwargs to all MySQL CAST paths Change-Id: I23a6abb26bbbe3d118887d043ce761fc4572d8d2 Fixes: #3766 Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-08-02 22:48:02
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/646b14692641/ Changeset: 646b14692641 Branch: rel_1_0 User: brln Date: 2016-08-02 22:47:15+00:00 Summary: Warn that bulk save groups inserts/updates by type Users who pass many different object types to bulk_save_objects may be surprised that the INSERT/UPDATE batches must necessarily be broken up by type. Add this to the list of caveats. Co-authored-by: Mike Bayer Change-Id: I8390c1c971ced50c41268b479a9dcd09c695b135 Pull-request: https://github.com/zzzeek/sqlalchemy/pull/294 (cherry picked from commit ce1492ef3aae692a3dc10fff400e178e7b2edff8) Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-08-02 22:47:29
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/ce1492ef3aae/ Changeset: ce1492ef3aae Branch: master User: brln Date: 2016-08-02 22:45:59+00:00 Summary: Warn that bulk save groups inserts/updates by type Users who pass many different object types to bulk_save_objects may be surprised that the INSERT/UPDATE batches must necessarily be broken up by type. Add this to the list of caveats. Co-authored-by: Mike Bayer Change-Id: I8390c1c971ced50c41268b479a9dcd09c695b135 Pull-request: https://github.com/zzzeek/sqlalchemy/pull/294 Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-08-02 22:35:48
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/4aad91f687e9/ Changeset: 4aad91f687e9 Branch: None User: jeffwidman Date: 2016-07-26 02:07:19+00:00 Summary: Fix typo Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/2dfa954e1f6a/ Changeset: 2dfa954e1f6a Branch: None User: zzzeek Date: 2016-08-02 22:34:05+00:00 Summary: Merge remote-tracking branch 'origin/pr/296' Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/705b4ac2a8c1/ Changeset: 705b4ac2a8c1 Branch: rel_1_0 User: jeffwidman Date: 2016-08-02 22:34:36+00:00 Summary: Fix typo (cherry picked from commit 4aad91f687e905ef58132ab21af1ae60e56a9c8c) Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-08-02 22:32:01
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/da851763c988/ Changeset: da851763c988 Branch: rel_1_0 User: michaelwilliamson Date: 2016-08-02 22:31:25+00:00 Summary: Fix reference to _declarative_constructor in docstring (cherry picked from commit 924a47fc4fd0012bad151af5a99e5faea41bad8b) Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-08-02 22:31:12
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/924a47fc4fd0/ Changeset: 924a47fc4fd0 Branch: None User: michaelwilliamson Date: 2016-07-25 13:08:43+00:00 Summary: Fix reference to _declarative_constructor in docstring Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/a95c58df3bad/ Changeset: a95c58df3bad Branch: None User: zzzeek Date: 2016-08-02 22:29:11+00:00 Summary: Merge branch 'declarative-constructor-reference' of https://bitbucket.org/michaelwilliamson/sqlalchemy Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-07-31 04:25:36
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/1269b08b1bae/ Changeset: 1269b08b1bae Branch: master User: zzzeek Date: 2016-07-31 04:10:04+00:00 Summary: Ensure post-__clause_element__() expression are used in Index The change in Index for 1.1 combined with the fix for ref #3763 still fails to deliver the correct object resolved by __clause_element__() to the list of expressions for compilation. Make sure we use the expression that's been unwrapped from __clause_element__(). Change-Id: Ie1df8db5090de665048331786f0024d52851923f Fixes: #3763 Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-07-30 16:53:48
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/6327c59d4f34/ Changeset: 6327c59d4f34 Branch: None User: zzzeek Date: 2016-07-30 14:11:53+00:00 Summary: Index should extract __clause_element__() early Fixed bug where :class:`.Index` would fail to extract columns from compound SQL expressions if those SQL expressions were wrapped inside of an ORM-style ``__clause_element__()`` construct. This bug exists in 1.0.x as well, however in 1.1 is more noticeable as hybrid_property @expression now returns a wrapped element. Fixes: #3763 Change-Id: I992536386503a1fb3f2305790abe008d72c44c4a Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/cda9defe58f8/ Changeset: cda9defe58f8 Branch: master User: zzzeek Date: 2016-07-30 16:54:10+00:00 Summary: Merge "Index should extract __clause_element__() early" Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-07-30 16:53:08
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/fb647e5219a8/ Changeset: fb647e5219a8 Branch: None User: zzzeek Date: 2016-07-29 22:57:04+00:00 Summary: Clarify order_by(False) It wasn't clear how this differs from order_by(None); add more tests and document that this has to do with whether or not mapper.order_by will be re-enabled as well. Change-Id: I332e8ac60c999b38c5a243f1cb72de3cf77891b6 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/99248e843d4a/ Changeset: 99248e843d4a Branch: master User: zzzeek Date: 2016-07-30 16:53:26+00:00 Summary: Merge "Clarify order_by(False)" Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-07-30 14:08:38
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/e467e899e126/ Changeset: e467e899e126 Branch: None User: zzzeek Date: 2016-07-30 14:06:53+00:00 Summary: - Consoliate test/sql/test_constraint ConstraintAPITest and test/sql/test_metadata IndexTest into test/sql/test_metadata ConstraintTest Change-Id: I7aeee9a1edbbd889200afc393695f73d5fbac3f3 Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-07-29 23:04:12
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/05f28ba2fb6b/ Changeset: 05f28ba2fb6b Branch: None User: iuridiniz Date: 2016-07-29 22:44:34+00:00 Summary: Allow None to cancel Query.group_by() This replicates the same behavior as order_by(). order_by() will also be updated to deprecate passing of False as this is no longer functionally different than passing None. Change-Id: I2fc05d0317d28b6c83373769a48f7eea32d56290 Pull-request: https://github.com/zzzeek/sqlalchemy/pull/297 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/5df226c2ab54/ Changeset: 5df226c2ab54 Branch: master User: zzzeek Date: 2016-07-29 23:03:38+00:00 Summary: Merge "Allow None to cancel Query.group_by()" Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-07-29 22:22:28
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/6f9e8f482c13/ Changeset: 6f9e8f482c13 Branch: None User: zzzeek Date: 2016-07-29 15:07:32+00:00 Summary: Enable JSON testing for pymysql PyMySQL upstream has released 0.7.6 which should resolve JSON encoding issues. Change-Id: Icf543d48dace1419a0aac78bdb15ec666f0edafe Fixes: #3754 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/9130e5923ee8/ Changeset: 9130e5923ee8 Branch: master User: zzzeek Date: 2016-07-29 22:22:49+00:00 Summary: Merge "Enable JSON testing for pymysql" Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-07-29 22:21:53
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/64424b870bee/ Changeset: 64424b870bee Branch: None User: zzzeek Date: 2016-07-29 22:18:10+00:00 Summary: - next release is 1.1.0 Change-Id: I1d8ac48e6457e80e93b925152f434c13139b3d94 Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-07-27 14:07:08
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/0d92f79fd860/ Changeset: 0d92f79fd860 Branch: None User: zzzeek Date: 2016-07-27 14:04:52+00:00 Summary: - Document how SQL Server does MAX with VARCHAR, NVARCHAR Fixes #3760 Change-Id: I0613eb66bfdc9d7118688c74e29c8da322c3b4db Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/9288d691f3a5/ Changeset: 9288d691f3a5 Branch: rel_1_0 User: zzzeek Date: 2016-07-27 14:06:16+00:00 Summary: - Document how SQL Server does MAX with VARCHAR, NVARCHAR Fixes #3760 Change-Id: I0613eb66bfdc9d7118688c74e29c8da322c3b4db (cherry picked from commit 0d92f79fd86073203a2a956460140c311c85a396) Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-07-26 15:55:36
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/360b4e0565dc/ Changeset: 360b4e0565dc Branch: None User: zzzeek Date: 2016-07-26 15:25:52+00:00 Summary: - 1.1.0b3 Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-07-26 14:49:56
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/a736be3feb4c/ Changeset: a736be3feb4c Branch: rel_1_0 User: zzzeek Date: 2016-07-24 21:41:14+00:00 Summary: Allow Table._reset_exported to silently pass Fixed bug in :class:`.Table` where the internal method ``_reset_exported()`` would corrupt the state of the object. This method is intended for selectable objects and is called by the ORM in some cases; an erroneous mapper configuration would could lead the ORM to call this on on a :class:`.Table` object. Change-Id: I63fa34ee0cdf16358bb125c556390df79758bcbc Fixes: #3755 (cherry picked from commit 149fb5f55a5df3f31f6575919a5a5a2e5ba9cb0c) Affected #: 4 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-07-26 14:46:42
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/2c8643b0e980/ Changeset: 2c8643b0e980 Branch: master User: zzzeek Date: 2016-07-25 03:17:11+00:00 Summary: Allow Table._reset_exported to silently pass Fixed bug in :class:`.Table` where the internal method ``_reset_exported()`` would corrupt the state of the object. This method is intended for selectable objects and is called by the ORM in some cases; an erroneous mapper configuration would could lead the ORM to call this on on a :class:`.Table` object. Change-Id: I63fa34ee0cdf16358bb125c556390df79758bcbc Fixes: #3755 Affected #: 4 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2016-07-25 03:17:27
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/96c4208bf836/ Changeset: 96c4208bf836 Branch: None User: zzzeek Date: 2016-07-25 03:14:47+00:00 Summary: - MySQL's JSON shared implementation completely w/ sqltypes.JSON; this must have been an oversight. Leave mysql.JSON in place still as we might need to add things to it. - CAST(json, String) still confusing MySQL drivers even mysqlclient. Since here we're checking for the raw form of the JSON and not a typical round trip, add a force for unicode Change-Id: I727f4526a01a0875037cf0dede45cd074da5205a Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |