]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
M-x whitespace-cleanup
authorLele Gaifax <lele@metapensiero.it>
Fri, 7 Aug 2009 12:10:33 +0000 (12:10 +0000)
committerLele Gaifax <lele@metapensiero.it>
Fri, 7 Aug 2009 12:10:33 +0000 (12:10 +0000)
lib/sqlalchemy/dialects/firebird/base.py

index 57b89ed058d609bf09e48cba61df738f651a6c5a..e9d0c0319e9016ca0993d92cc784d838ff601b75 100644 (file)
@@ -257,10 +257,10 @@ class FBCompiler(sql.compiler.SQLCompiler):
 
         columns = [
                 self.process(
-                    self.label_select_column(None, c, asfrom=False), 
-                    within_columns_clause=True, 
+                    self.label_select_column(None, c, asfrom=False),
+                    within_columns_clause=True,
                     result_map=self.result_map
-                ) 
+                )
                 for c in expression._select_iterables(returning_cols)
             ]
         return 'RETURNING ' + ', '.join(columns)
@@ -311,12 +311,12 @@ class FBDialect(default.DefaultDialect):
     name = 'firebird'
 
     max_identifier_length = 31
-    
+
     supports_sequences = True
     sequences_optional = False
     supports_default_values = True
     postfetch_lastrowid = False
-    
+
     requires_name_normalize = True
     supports_empty_insert = False
 
@@ -346,7 +346,7 @@ class FBDialect(default.DefaultDialect):
             }
         else:
             self.implicit_returning = True
-            
+
     def normalize_name(self, name):
         # Remove trailing spaces: FB uses a CHAR() type,
         # that is padded with spaces