Revision 2874
Added by Aaron Marcuse-Kubitza over 12 years ago
lib/sql.py | ||
---|---|---|
380 | 380 |
if schema != None: conds.append(('table_schema', schema)) |
381 | 381 |
|
382 | 382 |
type_, default, nullable = row(select(self, table, cols, conds, |
383 |
order_by='table_schema', limit=1, log_level=3))
|
|
383 |
order_by='table_schema', limit=1, log_level=4))
|
|
384 | 384 |
# TODO: order_by search_path schema order |
385 | 385 |
default = sql_gen.as_Code(default, self) |
386 | 386 |
|
Also available in: Unified diff
sql.py: DbConn.col_info(): Run query with log_level=4 because it gathers information about database structure, and should have the same log_level as other queries that do that