Thread: [Sqlalchemy-commits] commit/sqlalchemy: 2 new changesets (Page 24)
Brought to you by:
zzzeek
From: Bitbucket <com...@bi...> - 2016-06-03 14:58:12
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/d318139fdc4c/ Changeset: d318139fdc4c Branch: None User: zzzeek Date: 2016-06-02 17:54:38+00:00 Summary: Skip UniqueConstraint marked by unique=True in tometadata Fixes an issue where a Column would be copied with unique=True and at the same time the UniqueConstraint would also be copied, leading to duplicate UniqueConstraints in the target table, when tometadata() is used. Imitates the same logic used by index=True/Index to avoid duplicates. For some reason a fix was implemented for Index long ago but never for UniqueConstraint. Change-Id: Ie622ee912a6fb8bf0ea900a8b09d78c7ebc79fc0 Fixes: #3721 (cherry picked from commit afb466fb8bd9c2f8709e79fd0fce422b83ff1d6b) Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/a11331857bed/ Changeset: a11331857bed Branch: rel_1_0 User: zzzeek Date: 2016-06-03 14:56:33+00:00 Summary: Merge "Skip UniqueConstraint marked by unique=True in tometadata" 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-06-06 19:55:03
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/9393317affc1/ Changeset: 9393317affc1 Branch: None User: scop Date: 2016-06-06 16:37:31+00:00 Summary: Replace some uses of re.sub with str.lstrip/replace Change-Id: I98cd60b6830ee94e39ba9307523a9e8fb93bf4e8 Pull-request: https://github.com/zzzeek/sqlalchemy/pull/280 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/bc4c6c44af66/ Changeset: bc4c6c44af66 Branch: master User: zzzeek Date: 2016-06-06 19:54:53+00:00 Summary: Merge "Replace some uses of re.sub with str.lstrip/replace" 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-06-06 19:57:19
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/3351f5f93ca1/ Changeset: 3351f5f93ca1 Branch: None User: xflr6 Date: 2016-06-06 19:53:25+00:00 Summary: Add IS (NOT) DISTINCT FROM operators None / True / False render as literals. For SQLite, "IS" is used as SQLite lacks "IS DISTINCT FROM" but its "IS" operator acts this way for NULL. Doctext-author: Mike Bayer <mi...@zz...> Change-Id: I9227b81f7207b42627a0349d14d40b46aa756cce Pull-request: https://github.com/zzzeek/sqlalchemy/pull/248 Affected #: 8 files https://bitbucket.org/zzzeek/sqlalchemy/commits/2860ae6c4927/ Changeset: 2860ae6c4927 Branch: master User: zzzeek Date: 2016-06-06 19:57:06+00:00 Summary: Merge "Add IS (NOT) DISTINCT FROM operators" Affected #: 8 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-06-06 21:29:56
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/ec2004d8c278/ Changeset: ec2004d8c278 Branch: None User: xflr6 Date: 2016-06-06 19:41:36+00:00 Summary: Refine PG inspection methods This refines get_schema_names(), get_table_names(), get_view_defintion(), _get_foreign_table_names(), and get_view_names() to use better queries and remove unnecessary explicit encoding logic. Pull-request: https://github.com/zzzeek/sqlalchemy/pull/250 Change-Id: I7e87b29c34b97b37f21bbc83392b2274af4db0ab Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/6bc0da30b0f2/ Changeset: 6bc0da30b0f2 Branch: master User: zzzeek Date: 2016-06-06 21:29:33+00:00 Summary: Merge "Refine PG inspection methods" 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-06-06 22:56:25
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/528509e1bc41/ Changeset: 528509e1bc41 Branch: None User: tsauerwein Date: 2016-06-06 20:22:11+00:00 Summary: Add "render_nulls" flag to bulk_insert as optional performance optimization Currently, ``Session.bulk_insert_mappings`` omits NULL values which causes it to break up batches of inserts based on which batches contain NULL and which do not. By adding this flag, the same columns are rendered in the INSERT for all rows allowing them to be batched. The downside is that server-side defaults are omitted. Doctext-author: Mike Bayer <mi...@zz...> Change-Id: Iec5969304d4bdbf57290b200331bde02254aa3a5 Pull-request: https://github.com/zzzeek/sqlalchemy/pull/243 Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/a90b0101aaf6/ Changeset: a90b0101aaf6 Branch: master User: zzzeek Date: 2016-06-06 22:56:20+00:00 Summary: Merge "Add "render_nulls" flag to bulk_insert as optional performance optimization" 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-06-08 15:52:33
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/3ebd1b30eb39/ Changeset: 3ebd1b30eb39 Branch: None User: Sergey Skopin Date: 2016-06-08 15:24:57+00:00 Summary: Add 'FOR NO KEY UPDATE' / 'FOR KEY SHARE' support for Postgresql Adds ``key_share=True`` for with_for_update(). Co-authored-by: Mike Bayer <mi...@zz...> Change-Id: I74e0c3fcbc023e1dc98a1fa0c7db67b4c3693a31 Pull-request: https://github.com/zzzeek/sqlalchemy/pull/279 Affected #: 8 files https://bitbucket.org/zzzeek/sqlalchemy/commits/65b3f4aaa072/ Changeset: 65b3f4aaa072 Branch: None User: zzzeek Date: 2016-06-08 15:52:22+00:00 Summary: Merge "Add 'FOR NO KEY UPDATE' / 'FOR KEY SHARE' support for Postgresql" Affected #: 8 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-06-08 17:21:23
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/824c8664ed18/ Changeset: 824c8664ed18 Branch: None User: xflr6 Date: 2016-06-06 22:57:10+00:00 Summary: Support normal /materialized views in PG separately Fixes: #3588 Change-Id: Ifbfcab67375f289ddb5c4522f4b803cb8b7c34de Pull-request: https://github.com/zzzeek/sqlalchemy/pull/250 Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/24d29a63b6a3/ Changeset: 24d29a63b6a3 Branch: None User: zzzeek Date: 2016-06-08 17:21:12+00:00 Summary: Merge "Support normal /materialized views in PG separately" 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-06-14 17:29:29
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/e7ea2a4e198f/ Changeset: e7ea2a4e198f Branch: rel_1_0 User: zzzeek Date: 2016-06-13 19:37:46+00:00 Summary: Deprecate FromClause.count() (pending for 1.1) count() here is misleading in that it not only counts from an arbitrary column in the table, it also does not make accommodations for DISTINCT, JOIN, etc. as the ORM-level function does. Core should not be attempting to provide a function like this. Change-Id: I9916fc51ef744389a92c54660ab08e9695b8afc2 Fixes: #3724 Affected #: 5 files https://bitbucket.org/zzzeek/sqlalchemy/commits/f38f89084970/ Changeset: f38f89084970 Branch: master User: zzzeek Date: 2016-06-14 15:48:04+00:00 Summary: Deprecate FromClause.count() count() here is misleading in that it not only counts from an arbitrary column in the table, it also does not make accommodations for DISTINCT, JOIN, etc. as the ORM-level function does. Core should not be attempting to provide a function like this. Change-Id: I9916fc51ef744389a92c54660ab08e9695b8afc2 Fixes: #3724 Affected #: 21 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-06-14 19:23:39
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/4e9ab7a72f0a/ Changeset: 4e9ab7a72f0a Branch: None User: Robin Thomas Date: 2016-06-14 19:03:14+00:00 Summary: Add ON CONFLICT support for Postgresql Fixes: #3529 Co-authored-by: Mike Bayer <mi...@zz...> Change-Id: Ie3bf6ad70d9be9f0e44938830e922db03573991a Pull-request: https://github.com/zzzeek/sqlalchemy/pull/258 Affected #: 10 files https://bitbucket.org/zzzeek/sqlalchemy/commits/cfb59ecc9bbd/ Changeset: cfb59ecc9bbd Branch: master User: zzzeek Date: 2016-06-14 19:23:17+00:00 Summary: Merge "Add ON CONFLICT support for Postgresql" Affected #: 10 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-06-16 15:53:58
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/42078107f160/ Changeset: 42078107f160 Branch: None User: Mark Sandan Date: 2016-06-16 15:51:53+00:00 Summary: update pytest good practices link in PyTest class Change-Id: Ie96edd05e962663e9ddeeda85b24858caabd3bfd Pull-request: https://github.com/zzzeek/sqlalchemy/pull/262 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/d8da8e4e7dd6/ Changeset: d8da8e4e7dd6 Branch: master User: zzzeek Date: 2016-06-16 15:53:18+00:00 Summary: Merge "update pytest good practices link in PyTest class" 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-06-16 19:00:50
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/d7b8b475f8a5/ Changeset: d7b8b475f8a5 Branch: None User: Mark Sandan Date: 2016-06-16 15:43:02+00:00 Summary: Add DDLCompiler.create_table_suffix() Allows custom dialects to add keywords after the CREATE TABLE section. Change-Id: I6fa66dfcf00ef95122f491a9115410df2746cf88 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/21f47e6f7ac0/ Changeset: 21f47e6f7ac0 Branch: master User: zzzeek Date: 2016-06-16 19:00:49+00:00 Summary: Merge "Add DDLCompiler.create_table_suffix()" 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-06-16 20:06:24
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/ec36df00af58/ Changeset: ec36df00af58 Branch: None User: zzzeek Date: 2016-06-16 20:01:00+00:00 Summary: - dont need this Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/d59cf4eb3f98/ Changeset: d59cf4eb3f98 Branch: None User: zzzeek Date: 2016-06-16 20:01:03+00:00 Summary: 1.1.0b1 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-06-29 21:41:25
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/fcfff7712817/ Changeset: fcfff7712817 Branch: None User: pieterproigia Date: 2016-06-29 21:21:31+00:00 Summary: Repair pickling for Properties object Fixed bug whereby the ``__getstate__`` / ``__setstate__`` methods for sqlalchemy.util.Properties were non-working due to the transition in the 1.0 series to ``__slots__``. The issue potentially impacted some third-party applications. Pull request courtesy Pieter Mulder. Fixes: #3728 Change-Id: I01ebd425bbfe145747fea2edd0d2d412c74fd84d Pull-request: https://github.com/zzzeek/sqlalchemy/pull/286 (cherry picked from commit cab57e9bab04fbdea44690c08dff379a29eaab32) Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/07e5b7cf5436/ Changeset: 07e5b7cf5436 Branch: master User: zzzeek Date: 2016-06-29 21:41:03+00:00 Summary: Merge "Repair pickling for Properties 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...> - 2016-07-01 17:22:42
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/5c60aaefd32a/ Changeset: 5c60aaefd32a Branch: master User: zzzeek Date: 2016-07-01 16:44:47+00:00 Summary: Preserve type for math negation Fixed issue in SQL math negation operator where the type of the expression would no longer be the numeric type of the original. This would cause issues where the type determined result set behaviors. Change-Id: If0e339614a3686e251235fc94b6f59310c4630a5 Fixes: #3735 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/9880da342f28/ Changeset: 9880da342f28 Branch: rel_1_0 User: zzzeek Date: 2016-07-01 16:45:51+00:00 Summary: Preserve type for math negation Fixed issue in SQL math negation operator where the type of the expression would no longer be the numeric type of the original. This would cause issues where the type determined result set behaviors. Change-Id: If0e339614a3686e251235fc94b6f59310c4630a5 Fixes: #3735 (cherry picked from commit 5c60aaefd32a7bdee611fb340911409e0b8223ed) 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-01 19:00:36
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/849df799ec41/ Changeset: 849df799ec41 Branch: rel_1_0 User: zzzeek Date: 2016-07-01 18:59:00+00:00 Summary: - add backports Change-Id: Iee0bf9e60a5991bedbe29b305803b4c79ac5c511 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/26c72fcd4ed1/ Changeset: 26c72fcd4ed1 Branch: None User: zzzeek Date: 2016-07-01 18:59:18+00:00 Summary: - add backports Change-Id: Iee0bf9e60a5991bedbe29b305803b4c79ac5c511 (cherry picked from commit 849df799ec4107d0992c8eb0e015b74916aee266) 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-06 14:13:54
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/f2ee514c757f/ Changeset: f2ee514c757f Branch: None User: zzzeek Date: 2016-07-05 22:30:25+00:00 Summary: Adapt "FOR UPDATE OF" with Oracle limit/offset This modifies the Oracle ROWNUM limit/offset approach to accommodate for the "OF" clause in a "FOR UPDATE" phrase. The column expressions must be added to the selected subquery if necessary and adapted on the outside. Change-Id: Ia71b5fc4df6d326e73863f8ae9f96e8f1a5acfc1 Fixes: #3741 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/3e654204fd9f/ Changeset: 3e654204fd9f Branch: master User: zzzeek Date: 2016-07-06 14:13:56+00:00 Summary: Merge "Adapt "FOR UPDATE OF" with Oracle limit/offset" 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-07 20:05:40
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/b33caa64189f/ Changeset: b33caa64189f Branch: None User: zzzeek Date: 2016-07-07 20:00:18+00:00 Summary: Add additional documentation re: JSONEncodedDict Add an example of how to use coerce_compared_value() specific to JSONEncodedDict, as this example class is frequently dropped into applications. Change-Id: I61639ac03dc5a37673ee8201b99a3c36ab944f00 Fixes: #3742 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/fd5f9505a6fd/ Changeset: fd5f9505a6fd Branch: rel_1_0 User: zzzeek Date: 2016-07-07 20:01:50+00:00 Summary: Add additional documentation re: JSONEncodedDict Add an example of how to use coerce_compared_value() specific to JSONEncodedDict, as this example class is frequently dropped into applications. Change-Id: I61639ac03dc5a37673ee8201b99a3c36ab944f00 Fixes: #3742 (cherry picked from commit b33caa64189f3fdbbabe4b381460b7610025aa6b) 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-07 20:08:16
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/4633e301b067/ Changeset: 4633e301b067 Branch: rel_1_0 User: zzzeek Date: 2016-07-07 20:07:08+00:00 Summary: - fix typo Change-Id: Ie66d419a5188529a64fcb2e2463c15c26863889f Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/6b6bdb354252/ Changeset: 6b6bdb354252 Branch: None User: zzzeek Date: 2016-07-07 20:07:21+00:00 Summary: - fix typo Change-Id: Ie66d419a5188529a64fcb2e2463c15c26863889f 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-12 18:07:38
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/790da221503d/ Changeset: 790da221503d Branch: rel_1_0 User: zzzeek Date: 2016-07-12 18:04:40+00:00 Summary: - 1.0.15 for dev Change-Id: I2d75b6d9ca533e662bc8160cf5fc52355e5e549e Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/6dd795bda037/ Changeset: 6dd795bda037 Branch: None User: zzzeek Date: 2016-07-12 18:05:16+00:00 Summary: - 1.0.15 for dev Change-Id: I2d75b6d9ca533e662bc8160cf5fc52355e5e549e 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-13 16:38:06
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/e486ef666f39/ Changeset: e486ef666f39 Branch: None User: zzzeek Date: 2016-07-12 20:43:49+00:00 Summary: Work w/ prefetch even for selects, if present Fixed bug in new CTE feature for update/insert/delete stated as a CTE inside of an enclosing statement (typically SELECT) whereby oninsert and onupdate values weren't called upon for the embedded statement. This is accomplished by consulting prefetch for all statements. The collection is also broken into separate insert/update collections so that we don't need to consult toplevel self.isinsert to determine if the prefetch is for an insert or an update. What we don't yet test for are CTE combinations that have both insert/update in one statement, though these should now work in theory provided the underlying database supports such a statement. Change-Id: I3b6a860e22c86743c91c56a7ec751ff706f66f64 Fixes: #3745 Affected #: 6 files https://bitbucket.org/zzzeek/sqlalchemy/commits/d80b709ea0a6/ Changeset: d80b709ea0a6 Branch: master User: zzzeek Date: 2016-07-13 15:48:41+00:00 Summary: Merge "Work w/ prefetch even for selects, if present" Affected #: 6 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-13 18:12:21
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/21349b23dcfd/ Changeset: 21349b23dcfd Branch: None User: youknowone Date: 2016-07-10 17:57:51+00:00 Summary: Add `default` parameter for `index_property` And force to use keyword arguments for trivial parameters in index_property Change-Id: I12a178128182f77a2d06b52d7e36f59a36b45a33 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/888f296540fa/ Changeset: 888f296540fa Branch: master User: zzzeek Date: 2016-07-13 18:10:00+00:00 Summary: Merge "Add `default` parameter for `index_property`" 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-19 18:24:36
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/ee5e815e2c93/ Changeset: ee5e815e2c93 Branch: None User: zzzeek Date: 2016-07-18 20:43:42+00:00 Summary: - fix formatting Change-Id: Ieba940a998a6aa287864e9748c2995ee4ae5bf54 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/8952a30f0a27/ Changeset: 8952a30f0a27 Branch: None User: zzzeek Date: 2016-07-19 16:36:21+00:00 Summary: Remove same-named relationship warning Removed a warning that dates back to 0.4 which emits when a same-named relationship is placed on two mappers that inherits via joined or single table inheritance. The warning does not apply to the current unit of work implementation. Change-Id: If528ec3a2f4dc60712d9044fd1ec6c4dfbf0eadb Fixes: #3749 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-24 20:42:46
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/02190234a25b/ Changeset: 02190234a25b Branch: None User: zzzeek Date: 2016-07-24 20:36:27+00:00 Summary: - a variety of test adjustments to accomodate for MySQL 5.7 Change-Id: Ied4245433d0d7b469dae6e7394c4931d8405f387 Affected #: 8 files https://bitbucket.org/zzzeek/sqlalchemy/commits/b3a424dacc91/ Changeset: b3a424dacc91 Branch: rel_1_0 User: zzzeek Date: 2016-07-24 20:42:00+00:00 Summary: - a variety of test adjustments to accomodate for MySQL 5.7 Change-Id: Ied4245433d0d7b469dae6e7394c4931d8405f387 (cherry picked from commit 02190234a25bb5ed2b07d25e6adcece2f5bba763) 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-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-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. |