From: Mike Bayer Date: Fri, 2 Jan 2015 21:43:11 +0000 (-0500) Subject: - put this back now that we found the source of this X-Git-Tag: rel_1_0_0b1~140 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=378ad79713397183d71960b5a2c18b5b509fb137;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - put this back now that we found the source of this --- diff --git a/doc/build/core/constraints.rst b/doc/build/core/constraints.rst index a113001003..1f855c7248 100644 --- a/doc/build/core/constraints.rst +++ b/doc/build/core/constraints.rst @@ -176,17 +176,13 @@ has a name. In the case of the ``'node'`` table above, we haven't named this constraint; the system will therefore attempt to emit DROP for only those constraints that are named: -.. NOTE: the parser is doing something wrong with the DROP here, - if the "DROP TABLE element" is second, the "t" is being chopped off; - it is specific to the letter "t". Look into this at some point - .. sourcecode:: pycon+sql >>> with engine.connect() as conn: ... metadata.drop_all(conn, checkfirst=False) {opensql}ALTER TABLE element DROP CONSTRAINT fk_element_parent_node_id - DROP TABLE element DROP TABLE node + DROP TABLE element {stop}