Thread: [Sqlalchemy-commits] commit/sqlalchemy: 2 new changesets (Page 27)
Brought to you by:
zzzeek
From: Bitbucket <com...@bi...> - 2017-01-09 19:25:26
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/64e72b58fd74/ Changeset: 64e72b58fd74 Branch: None User: zzzeek Date: 2017-01-04 17:39:24+00:00 Summary: update for 2017 copyright Change-Id: I4e8c2aa8fe817bb2af8707410fa0201f938781de Affected #: 176 files https://bitbucket.org/zzzeek/sqlalchemy/commits/bc4a96836d5b/ Changeset: bc4a96836d5b Branch: master User: zzzeek Date: 2017-01-09 19:24:46+00:00 Summary: Merge "update for 2017 copyright" Affected #: 176 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...> - 2017-01-09 19:26:22
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/6b489db89970/ Changeset: 6b489db89970 Branch: None User: zzzeek Date: 2017-01-06 22:56:41+00:00 Summary: Tighten rules for order_by(Label) resolution - Fixed bug originally introduced in 0.9 via :ticket:`1068` where order_by(<some Label()>) would order by the label name based on name alone, that is, even if the labeled expression were not at all the same expression otherwise present, implicitly or explicitly, in the selectable. The logic that orders by label now ensures that the labeled expression is related to the one that resolves to that name before ordering by the label name; additionally, the name has to resolve to an actual label explicit in the expression elsewhere, not just a column name. This logic is carefully kept separate from the order by(textual name) feature that has a slightly different purpose. Change-Id: I44fc36dab34380cc238c1e79ecbe23f1628d588a Fixes: #3882 Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/e6eefc0c5e94/ Changeset: e6eefc0c5e94 Branch: master User: zzzeek Date: 2017-01-09 19:25:13+00:00 Summary: Merge "Tighten rules for order_by(Label) resolution" 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...> - 2017-01-09 22:42:34
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/51a72503b027/ Changeset: 51a72503b027 Branch: None User: zzzeek Date: 2017-01-09 19:16:22+00:00 Summary: Adapt from "localparent" in joinedloader Fixed bug involving joined eager loading against multiple entities when polymorphic inheritance is also in use which would throw "'NoneType' object has no attribute 'isa'". The issue was introduced by the fix for :ticket:`3611`. Change-Id: I296ecda38c01ec8f69dcd843beaebed6949cecfa Fixes: #3884 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/e251f64d686c/ Changeset: e251f64d686c Branch: master User: zzzeek Date: 2017-01-09 22:42:03+00:00 Summary: Merge "Adapt from "localparent" in joinedloader" 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...> - 2017-01-12 13:39:12
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/4fec72f178f0/ Changeset: 4fec72f178f0 Branch: None User: zzzeek Date: 2017-01-09 22:37:25+00:00 Summary: Pass **kw to bound params in multi values Fixed bug where literal_binds compiler flag was not honored by the :class:`.Insert` construct for the "multiple values" feature; the subsequent values are now rendered as literals. Change-Id: I81ac358fd59995885d482e7571620090210865d2 Fixes: #3880 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/073506bc555b/ Changeset: 073506bc555b Branch: master User: zzzeek Date: 2017-01-12 13:38:39+00:00 Summary: Merge "Pass **kw to bound params in multi values" 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...> - 2017-01-12 21:00:23
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/0460bc79d998/ Changeset: 0460bc79d998 Branch: None User: zzzeek Date: 2017-01-12 20:57:46+00:00 Summary: - document how to use autocommit isolation level for CONCURRENTLY, fixes #3887 Change-Id: I6d1a13b7bb4169204105c7a100d17cfed3ded9d1 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/b0c4a6e1bc7a/ Changeset: b0c4a6e1bc7a Branch: rel_1_0 User: zzzeek Date: 2017-01-12 20:58:51+00:00 Summary: - document how to use autocommit isolation level for CONCURRENTLY, fixes #3887 Change-Id: I6d1a13b7bb4169204105c7a100d17cfed3ded9d1 (cherry picked from commit 0460bc79d9986132646049d8167bd5dbe3388a65) 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...> - 2017-01-13 20:42:04
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/fa6dd376bb24/ Changeset: fa6dd376bb24 Branch: None User: zzzeek Date: 2017-01-13 15:57:41+00:00 Summary: Support python3.6 Corrects some warnings and adds tox config. Adds DeprecationWarning to the error category. Large sweep for string literals w/ backslashes as this is common in docstrings Co-authored-by: Andrii Soldatenko Fixes: #3886 Change-Id: Ia7c838dfbbe70b262622ed0803d581edc736e085 Pull-request: https://github.com/zzzeek/sqlalchemy/pull/337 Affected #: 76 files https://bitbucket.org/zzzeek/sqlalchemy/commits/2c13aa097b35/ Changeset: 2c13aa097b35 Branch: master User: zzzeek Date: 2017-01-13 20:41:20+00:00 Summary: Merge "Support python3.6" Affected #: 76 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...> - 2017-01-13 20:43:57
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/575ec4a5b8fd/ Changeset: 575ec4a5b8fd Branch: None User: a_soldatenko Date: 2017-01-13 16:08:35+00:00 Summary: Support python3.6 Corrects some warnings and adds tox config. Adds DeprecationWarning to the error category. Large sweep for string literals w/ backslashes as this is common in docstrings Co-authored-by: Andrii Soldatenko Fixes: #3886 Change-Id: Ia7c838dfbbe70b262622ed0803d581edc736e085 Pull-request: https://github.com/zzzeek/sqlalchemy/pull/337 Affected #: 76 files https://bitbucket.org/zzzeek/sqlalchemy/commits/d55a939ef8a4/ Changeset: d55a939ef8a4 Branch: rel_1_0 User: zzzeek Date: 2017-01-13 20:43:29+00:00 Summary: Merge "Support python3.6" into rel_1_0 Affected #: 76 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...> - 2017-01-13 20:47:54
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/afd78a37dafe/ Changeset: afd78a37dafe Branch: None User: zzzeek Date: 2017-01-13 19:33:42+00:00 Summary: Use full column->type processing for ON CONFLICT SET clause Fixed bug in new "ON CONFLICT DO UPDATE" feature where the "set" values for the UPDATE clause would not be subject to type-level processing, as normally takes effect to handle both user-defined type level conversions as well as dialect-required conversions, such as those required for JSON datatypes. Additionally, clarified that the keys in the set_ dictionary should match the "key" of the column, if distinct from the column name. A warning is emitted for remaining column names that don't match column keys; for compatibility reasons, these are emitted as they were previously. Fixes: #3888 Change-Id: I67a04c67aa5f65e6d29f27bf3ef2f8257088d073 Affected #: 5 files https://bitbucket.org/zzzeek/sqlalchemy/commits/9ef1913ed647/ Changeset: 9ef1913ed647 Branch: master User: zzzeek Date: 2017-01-13 20:47:00+00:00 Summary: Merge "Use full column->type processing for ON CONFLICT SET clause" Affected #: 5 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...> - 2017-01-16 14:22:28
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/710ce4aaf913/ Changeset: 710ce4aaf913 Branch: master User: zzzeek Date: 2017-01-16 14:21:06+00:00 Summary: - fix changelog Change-Id: Ib1da230f6fd691753c4a5056b165d7397d198b09 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/67a0fd1fb734/ Changeset: 67a0fd1fb734 Branch: rel_1_1 User: zzzeek Date: 2017-01-16 14:21:13+00:00 Summary: Merge branch 'master' into rel_1_1 Affected #: 80 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...> - 2017-01-16 20:56:31
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/bccc1419a67c/ Changeset: bccc1419a67c Branch: None User: Vayu Date: 2017-01-16 19:02:26+00:00 Summary: Better hide engine password Avoid putting engine password in the exception message in `MetaData.reflect` (since exception messages often appear in logs). Use the same redacted `__repr__` implementation in `TLEngine` as in its base class `Engine` Change-Id: Ic0a7baea917a9c8d87dffdd82ef566673ab08e02 Pull-request: https://github.com/zzzeek/sqlalchemy/pull/327 Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/d8198c2d8779/ Changeset: d8198c2d8779 Branch: master User: zzzeek Date: 2017-01-16 20:56:02+00:00 Summary: Merge "Better hide engine password" 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...> - 2017-01-16 21:28:36
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/46828cc157a4/ Changeset: 46828cc157a4 Branch: master User: zzzeek Date: 2017-01-16 21:27:48+00:00 Summary: - correctly document LIKE / ILIKE, fixes #3890 Change-Id: Ie59e61f53d7c59a4777ab9e6e75a43c71d67523b Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/00b24eb0f475/ Changeset: 00b24eb0f475 Branch: rel_1_1 User: zzzeek Date: 2017-01-16 21:28:01+00:00 Summary: Merge branch 'master' into rel_1_1 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...> - 2017-01-17 15:48:02
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/bd6ba3ac8274/ Changeset: bd6ba3ac8274 Branch: None User: schemacs Date: 2017-01-17 15:23:07+00:00 Summary: Parse (but don't record) COMMENT portion of MySQL table key The MySQL dialect now will not warn when a reflected column has a "COMMENT" keyword on it, but note however the comment is not yet reflected; this is on the roadmap for a future release. Pull request courtesy Lele Long. Fixes: #3867 Pull-request: https://github.com/zzzeek/sqlalchemy/pull/324 Change-Id: I869e29aba6766d0eda1e59af09a3e8e3748a3942 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/99d65925e6ae/ Changeset: 99d65925e6ae Branch: master User: zzzeek Date: 2017-01-17 15:47:33+00:00 Summary: Merge "Parse (but don't record) COMMENT portion of MySQL table key" 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...> - 2017-01-17 16:47:03
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/5c2ef5b54245/ Changeset: 5c2ef5b54245 Branch: master User: zzzeek Date: 2017-01-17 16:45:18+00:00 Summary: - update copyright in .c files Change-Id: If905d1bc026b688ec7203674ff14c72bc4906abf Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/f7c8b08bd261/ Changeset: f7c8b08bd261 Branch: rel_1_1 User: zzzeek Date: 2017-01-17 16:45:26+00:00 Summary: Merge branch 'master' into rel_1_1 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...> - 2017-01-17 17:09:35
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/3a6c55fb5175/ Changeset: 3a6c55fb5175 Branch: master User: zzzeek Date: 2017-01-17 17:08:38+00:00 Summary: - repair an errant docstring w/o r Change-Id: I2e9c8dbc79c00b54520748d1d7cae5230a612c96 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/dc66790e84b2/ Changeset: dc66790e84b2 Branch: rel_1_1 User: zzzeek Date: 2017-01-17 17:08:49+00:00 Summary: Merge branch 'master' into rel_1_1 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...> - 2017-01-17 20:51:55
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/f2028dc5afec/ Changeset: f2028dc5afec Branch: master User: zzzeek Date: 2017-01-17 20:51:02+00:00 Summary: - further changes to avoid pytest warnings Change-Id: Ia83a996ff97a6ba54a0666a32241e570f3852ab4 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/a75524561ce6/ Changeset: a75524561ce6 Branch: rel_1_1 User: zzzeek Date: 2017-01-17 20:51:18+00:00 Summary: Merge branch 'master' into rel_1_1 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...> - 2017-01-17 21:39:10
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/18d0509c75bb/ Changeset: 18d0509c75bb Branch: None User: zzzeek Date: 2017-01-17 21:22:28+00:00 Summary: - 1.0.17 release date Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/60781659934d/ Changeset: 60781659934d Branch: None User: zzzeek Date: 2017-01-17 21:23:00+00:00 Summary: - 1.1.5 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...> - 2017-01-19 21:29:29
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/4ae02f46e944/ Changeset: 4ae02f46e944 Branch: None User: zzzeek Date: 2017-01-19 18:49:08+00:00 Summary: Dont set _set_select_from() for alias object Fixed bug first introduced in 0.9.7 as a result of :ticket:`3106` which would cause an incorrect query in some forms of multi-level subqueryload against aliased entities, with an unnecessary extra FROM entity in the innermost subquery. Fixes: #3893 Change-Id: Ic4003c2c1c0206bd22a098fd497a7375c2758305 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/81518ae2e2bc/ Changeset: 81518ae2e2bc Branch: master User: zzzeek Date: 2017-01-19 21:28:58+00:00 Summary: Merge "Dont set _set_select_from() for alias object" 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...> - 2017-01-24 22:36:35
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/708316829512/ Changeset: 708316829512 Branch: None User: jeffwidman Date: 2016-12-24 10:34:24+00:00 Summary: Fix typo Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/6e83259e7ff9/ Changeset: 6e83259e7ff9 Branch: None User: zzzeek Date: 2017-01-24 22:35:16+00:00 Summary: Merge branch 'patch-1' of https://github.com/jeffwidman/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...> - 2017-01-26 21:04:25
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/a24801ae8de4/ Changeset: a24801ae8de4 Branch: None User: zzzeek Date: 2017-01-26 21:01:20+00:00 Summary: - document that "column" and "where" are arbitrary SQL expressions for ExcludeConstraint, if string is used then quoting must be applied manually. fixes #3899 Change-Id: I5885c90179e4056b84fc4776464bba7c8c70a80a Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/00f2e31f210e/ Changeset: 00f2e31f210e Branch: rel_1_0 User: zzzeek Date: 2017-01-26 21:03:30+00:00 Summary: - document that "column" and "where" are arbitrary SQL expressions for ExcludeConstraint, if string is used then quoting must be applied manually. fixes #3899 Change-Id: I5885c90179e4056b84fc4776464bba7c8c70a80a (cherry picked from commit a24801ae8de469f1e78bdb0c02b28de263c2310e) 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...> - 2017-01-27 17:10:08
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/3bd845f3ff2a/ Changeset: 3bd845f3ff2a Branch: None User: zzzeek Date: 2017-01-27 17:08:57+00:00 Summary: - remove misleading comment, ref #3902 Change-Id: I481628146ff31bc9ea2f8a3687f375832b17e501 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/ce02bdc07f5b/ Changeset: ce02bdc07f5b Branch: rel_1_0 User: zzzeek Date: 2017-01-27 17:09:27+00:00 Summary: - remove misleading comment, ref #3902 Change-Id: I481628146ff31bc9ea2f8a3687f375832b17e501 (cherry picked from commit 3bd845f3ff2af203a79c76a5b493ccf9c58ad79e) 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...> - 2017-01-28 14:54:46
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/f55d466cad2d/ Changeset: f55d466cad2d Branch: None User: zzzeek Date: 2017-01-28 14:53:10+00:00 Summary: - add missing param tag Change-Id: Ic2cc0bdafbf3f1bc2993a9ad3475530eed91d0f1 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/6e437cf508b8/ Changeset: 6e437cf508b8 Branch: rel_1_0 User: zzzeek Date: 2017-01-28 14:53:34+00:00 Summary: - add missing param tag Change-Id: Ic2cc0bdafbf3f1bc2993a9ad3475530eed91d0f1 (cherry picked from commit f55d466cad2d7c741f391eb2df15a23652132fe4) 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...> - 2017-01-30 22:28:13
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/ecfda6512cf8/ Changeset: ecfda6512cf8 Branch: None User: zzzeek Date: 2017-01-30 18:02:29+00:00 Summary: Add count(), scalar() to baked query Change-Id: I8af0d7b41ae2df384ce5d0ef274732352d81f376 Fixes: #3897 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/5ef2fde8fb25/ Changeset: 5ef2fde8fb25 Branch: master User: zzzeek Date: 2017-01-30 22:27:21+00:00 Summary: Merge "Add count(), scalar() to baked query" 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...> - 2017-02-01 23:13:34
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/388d8db68d0d/ Changeset: 388d8db68d0d Branch: None User: zzzeek Date: 2017-02-01 22:00:42+00:00 Summary: Accept FetchedValue, text() for column "default" value Fixed bug whereby the :meth:`.DDLEvents.column_reflect` event would not allow a non-textual expression to be passed as the value of the "default" for the new column, such as a :class:`.FetchedValue` object to indicate a generic triggered default or a :func:`.sql.expression.text` construct. Clarified the documentation in this regard as well. Fixes: #3905 Change-Id: I829796c3e9f87f375149bebee7eef133a6876d4d Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/d71f4b471869/ Changeset: d71f4b471869 Branch: master User: zzzeek Date: 2017-02-01 23:13:06+00:00 Summary: Merge "Accept FetchedValue, text() for column "default" value" 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...> - 2017-02-09 01:44:26
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/7db699163bed/ Changeset: 7db699163bed Branch: None User: zzzeek Date: 2017-02-08 22:47:29+00:00 Summary: - document Query.with_session(), direct constructor usage Change-Id: I47499d040623202dd9b3be0ea65f2d9ad03c11a4 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/bcc6829fcc8e/ Changeset: bcc6829fcc8e Branch: rel_1_0 User: zzzeek Date: 2017-02-08 22:47:44+00:00 Summary: - document Query.with_session(), direct constructor usage Change-Id: I47499d040623202dd9b3be0ea65f2d9ad03c11a4 (cherry picked from commit 7db699163bed203d8060f06097e1489eea7ba079) 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...> - 2017-02-22 22:17:54
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/1a7e8d77bae2/ Changeset: 1a7e8d77bae2 Branch: None User: zzzeek Date: 2017-02-16 16:31:26+00:00 Summary: Memoize AliasedClass, ClauseAdapter objects in joined eager load Addressed some long unattended performance concerns within the joined eager loader query construction system. The use of ad-hoc :class:`.AliasedClass` objects per query, which produces lots of column lookup overhead each time, has been replaced with a cached approach that makes use of a small pool of :class:`.AliasedClass` objects that are reused between invocations of joined eager loading. Callcount reduction of SQL query generation for worst-case joined loader scenarios (lots of joins, lots of columns) is reduced by approximately 270%. Change-Id: Ie43beecf37945b2bb7fff0aaa597a597293daa18 Fixes: #3915 Affected #: 5 files https://bitbucket.org/zzzeek/sqlalchemy/commits/4c5cfa8bc6cc/ Changeset: 4c5cfa8bc6cc Branch: master User: zzzeek Date: 2017-02-22 22:16:28+00:00 Summary: Merge "Memoize AliasedClass, ClauseAdapter objects in joined eager load" Affected #: 5 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. |