From: Mike Bayer Date: Sat, 27 Mar 2010 23:13:24 +0000 (-0400) Subject: this is a rewrite from the old sybase module with almost nothing X-Git-Tag: rel_0_6beta3~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0ee5899743dc5b56fabcd9ab1198b2bb969ac5ff;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git this is a rewrite from the old sybase module with almost nothing remaining from the original, setting primary copyright --- diff --git a/lib/sqlalchemy/dialects/sybase/base.py b/lib/sqlalchemy/dialects/sybase/base.py index 79e32b9681..6719b422b2 100644 --- a/lib/sqlalchemy/dialects/sybase/base.py +++ b/lib/sqlalchemy/dialects/sybase/base.py @@ -1,6 +1,9 @@ -# sybase.py -# Copyright (C) 2007 Fisch Asset Management AG http://www.fam.ch -# Coding: Alexander Houben alexander.houben@thor-solutions.ch +# sybase/base.py +# Copyright (C) 2010 Michael Bayer mike_mp@zzzcomputing.com +# get_select_precolumns(), limit_clause() implementation +# copyright (C) 2007 Fisch Asset Management +# AG http://www.fam.ch, with coding by Alexander Houben +# alexander.houben@thor-solutions.ch # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php @@ -313,8 +316,6 @@ class SybaseDDLCompiler(compiler.DDLCompiler): "columns in order to generate DDL") seq_col = column.table._autoincrement_column - - # install a IDENTITY Sequence if we have an implicit IDENTITY column if seq_col is column: sequence = isinstance(column.default, sa_schema.Sequence) and column.default