Project

General

Profile

« Previous | Next » 

Revision 2678

sql.py: DbConn._db(): Output 'SET TRANSACTION ISOLATION LEVEL SERIALIZABLE' with log_level=4 because that should not be shown when the search_path is shown, which has log_level=3

View differences:

lib/sql.py
194 194
            
195 195
            # Configure connection
196 196
            if self.serializable and not self.autocommit: self.run_query(
197
                'SET TRANSACTION ISOLATION LEVEL SERIALIZABLE', log_level=3)
197
                'SET TRANSACTION ISOLATION LEVEL SERIALIZABLE', log_level=4)
198 198
            if schemas != None:
199 199
                schemas_ = ''.join((esc_name(self, s)+', '
200 200
                    for s in schemas.split(',')))

Also available in: Unified diff