From 0ee5899743dc5b56fabcd9ab1198b2bb969ac5ff Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sat, 27 Mar 2010 19:13:24 -0400 Subject: [PATCH] this is a rewrite from the old sybase module with almost nothing remaining from the original, setting primary copyright --- lib/sqlalchemy/dialects/sybase/base.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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 -- 2.47.3