<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlalchemy.git/lib/sqlalchemy/sql/schema.py, branch rel_0_9</title>
<subtitle>github.com: zzzeek/sqlalchemy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/'/>
<entry>
<title>typo</title>
<updated>2018-11-30T15:10:36+00:00</updated>
<author>
<name>Raphael</name>
<email>paloma@css-maps.eu</email>
</author>
<published>2018-11-30T00:11:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=8ce71bfb779e8fc332329bcdec1160ed97521b13'/>
<id>8ce71bfb779e8fc332329bcdec1160ed97521b13</id>
<content type='text'>
typo

(cherry picked from commit 0a0b36686d5da0e7d04974c8df0ece574b71f3cb)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
typo

(cherry picked from commit 0a0b36686d5da0e7d04974c8df0ece574b71f3cb)
</pre>
</div>
</content>
</entry>
<entry>
<title>- Fixed issue where a :class:`.MetaData` object that used a naming</title>
<updated>2015-04-10T15:20:39+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-04-10T15:20:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=e7cf5682848640fe4f0b6d644be25e5245b4e8fc'/>
<id>e7cf5682848640fe4f0b6d644be25e5245b4e8fc</id>
<content type='text'>
convention would not properly work with pickle.  The attribute was
skipped leading to inconsistencies and failures if the unpickled
:class:`.MetaData` object were used to base additional tables
from.
fixes #3362

(cherry picked from commit 55c26710a1f6d6c6f87a9752035bc160f93b38d0)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
convention would not properly work with pickle.  The attribute was
skipped leading to inconsistencies and failures if the unpickled
:class:`.MetaData` object were used to base additional tables
from.
fixes #3362

(cherry picked from commit 55c26710a1f6d6c6f87a9752035bc160f93b38d0)
</pre>
</div>
</content>
</entry>
<entry>
<title>- try to document how to get columns from constraints.</title>
<updated>2015-03-12T14:15:29+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-03-12T14:14:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=6c130e80611e5fe5d7825b81cd5f36076a3c1591'/>
<id>6c130e80611e5fe5d7825b81cd5f36076a3c1591</id>
<content type='text'>
unfortunately Sphinx refuses to work correctly for the columns
attribute so we just add a lame message to contains_column().

(cherry picked from commit f211ad254d53b85aae319b41cc7b206f3e693660)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
unfortunately Sphinx refuses to work correctly for the columns
attribute so we just add a lame message to contains_column().

(cherry picked from commit f211ad254d53b85aae319b41cc7b206f3e693660)
</pre>
</div>
</content>
</entry>
<entry>
<title>- copyright 2015</title>
<updated>2015-03-10T19:27:20+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-03-10T19:27:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=c3c889d8826062a3efe19d28094c11ecc1313b3f'/>
<id>c3c889d8826062a3efe19d28094c11ecc1313b3f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Fixed bug in 0.9's foreign key setup system, such that</title>
<updated>2015-01-28T16:56:13+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-01-28T16:48:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=8a744a4684861a73562e1b2c338f3013a52fda71'/>
<id>8a744a4684861a73562e1b2c338f3013a52fda71</id>
<content type='text'>
the logic used to link a :class:`.ForeignKey` to its parent could fail
when the foreign key used "link_to_name=True" in conjunction with
a target :class:`.Table` that would not receive its parent column until
later, such as within a reflection + "useexisting" scenario,
if the target column in fact had a key value different from its name,
as would occur in reflection if column reflect events were used to
alter the .key of reflected :class:`.Column` objects so that the
link_to_name becomes significant.  Also repaired support for column
type via FK transmission in a similar way when target columns had a
different key and were referenced using link_to_name.
fixes #3298

(cherry picked from commit 3712e35c329cc3b5106f026be90e04f65412586d)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
the logic used to link a :class:`.ForeignKey` to its parent could fail
when the foreign key used "link_to_name=True" in conjunction with
a target :class:`.Table` that would not receive its parent column until
later, such as within a reflection + "useexisting" scenario,
if the target column in fact had a key value different from its name,
as would occur in reflection if column reflect events were used to
alter the .key of reflected :class:`.Column` objects so that the
link_to_name becomes significant.  Also repaired support for column
type via FK transmission in a similar way when target columns had a
different key and were referenced using link_to_name.
fixes #3298

(cherry picked from commit 3712e35c329cc3b5106f026be90e04f65412586d)
</pre>
</div>
</content>
</entry>
<entry>
<title>- corrections</title>
<updated>2014-12-27T21:56:47+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2014-12-27T20:55:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=2542910558066811a31e920461b7d5a5c8fe94a1'/>
<id>2542910558066811a31e920461b7d5a5c8fe94a1</id>
<content type='text'>
- attempt to add a script to semi-automate the fixing of links

(cherry picked from commit 544e72bcb6af1ca657b1762f105634372eca3bc0)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- attempt to add a script to semi-automate the fixing of links

(cherry picked from commit 544e72bcb6af1ca657b1762f105634372eca3bc0)
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed typo</title>
<updated>2014-10-15T13:56:48+00:00</updated>
<author>
<name>mozillazg</name>
<email>opensource.mozillazg@gmail.com</email>
</author>
<published>2014-10-15T13:40:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=6bf29e5dc23790e33460538cf57c6ad7a6b3cf8c'/>
<id>6bf29e5dc23790e33460538cf57c6ad7a6b3cf8c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- rework documentation for reflection flags, backport from</title>
<updated>2014-08-09T22:14:45+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2014-08-09T22:14:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=68a7876bc35ab3adcfdd9397270807f280403f87'/>
<id>68a7876bc35ab3adcfdd9397270807f280403f87</id>
<content type='text'>
1.0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
1.0
</pre>
</div>
</content>
</entry>
<entry>
<title>- apply pep8 formatting to sqlalchemy/sql, sqlalchemy/util, sqlalchemy/dialects,</title>
<updated>2014-07-20T17:11:41+00:00</updated>
<author>
<name>Brian Jarrett</name>
<email>celttechie@gmail.com</email>
</author>
<published>2014-07-20T16:44:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=6b49e8c7c7fb0ff9329d50ec95d38facf062cfb8'/>
<id>6b49e8c7c7fb0ff9329d50ec95d38facf062cfb8</id>
<content type='text'>
sqlalchemy/orm, sqlalchemy/event, sqlalchemy/testing

Conflicts:
	lib/sqlalchemy/dialects/mssql/base.py
	lib/sqlalchemy/dialects/mysql/base.py
	lib/sqlalchemy/dialects/mysql/mysqldb.py
	lib/sqlalchemy/dialects/oracle/base.py
	lib/sqlalchemy/dialects/sybase/base.py
	lib/sqlalchemy/orm/attributes.py
	lib/sqlalchemy/orm/evaluator.py
	lib/sqlalchemy/orm/identity.py
	lib/sqlalchemy/orm/instrumentation.py
	lib/sqlalchemy/orm/loading.py
	lib/sqlalchemy/orm/mapper.py
	lib/sqlalchemy/orm/session.py
	lib/sqlalchemy/orm/sync.py
	lib/sqlalchemy/sql/compiler.py
	lib/sqlalchemy/sql/selectable.py
	lib/sqlalchemy/testing/requirements.py
	lib/sqlalchemy/testing/suite/test_select.py
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
sqlalchemy/orm, sqlalchemy/event, sqlalchemy/testing

Conflicts:
	lib/sqlalchemy/dialects/mssql/base.py
	lib/sqlalchemy/dialects/mysql/base.py
	lib/sqlalchemy/dialects/mysql/mysqldb.py
	lib/sqlalchemy/dialects/oracle/base.py
	lib/sqlalchemy/dialects/sybase/base.py
	lib/sqlalchemy/orm/attributes.py
	lib/sqlalchemy/orm/evaluator.py
	lib/sqlalchemy/orm/identity.py
	lib/sqlalchemy/orm/instrumentation.py
	lib/sqlalchemy/orm/loading.py
	lib/sqlalchemy/orm/mapper.py
	lib/sqlalchemy/orm/session.py
	lib/sqlalchemy/orm/sync.py
	lib/sqlalchemy/sql/compiler.py
	lib/sqlalchemy/sql/selectable.py
	lib/sqlalchemy/testing/requirements.py
	lib/sqlalchemy/testing/suite/test_select.py
</pre>
</div>
</content>
</entry>
<entry>
<title>- break up the &lt;authors&gt; copyright comment as part of a pass</title>
<updated>2014-07-09T22:29:17+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2014-07-09T22:29:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sqlalchemy.git/commit/?id=723d118ef1c4fbb6d1a81513dd6d50521081d86a'/>
<id>723d118ef1c4fbb6d1a81513dd6d50521081d86a</id>
<content type='text'>
  to get all flake8 passing
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  to get all flake8 passing
</pre>
</div>
</content>
</entry>
</feed>
