]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
this is a rewrite from the old sybase module with almost nothing
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 27 Mar 2010 23:13:24 +0000 (19:13 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 27 Mar 2010 23:13:24 +0000 (19:13 -0400)
remaining from the original, setting primary copyright

lib/sqlalchemy/dialects/sybase/base.py

index 79e32b96819f5bbe081f406c8c4adba5530977df..6719b422b23a20f8676fdfefa5be66e94a0f5cf7 100644 (file)
@@ -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