Re: [Sqlalchemy-tickets] [sqlalchemy] #2922: allow PG search path reflection behavior to be configu
Brought to you by:
zzzeek
|
From: sqlalchemy <mi...@zz...> - 2014-01-30 09:57:59
|
#2922: allow PG search path reflection behavior to be configurable
------------------------------+-------------------------------
Reporter: vrobin | Owner: zzzeek
Type: defect | Status: new
Priority: high | Milestone: 0.9.2
Component: postgres | Severity: major - 1-3 hours
Resolution: | Keywords:
Progress State: needs tests |
------------------------------+-------------------------------
Comment (by vrobin):
After adding missing line:
{{{
reflection_options = ('postgresql_ignore_search_path', )
}}}
The value of postgresql_ignore_search_path remains coherent between all
tables and the patch now also works with failing environment.
'''AFAICT, the patch, once correctly applied, solves the problem.'''
One last question about this patch... did you really meant
{{{
(schema.Table, {
"ignore_search_path": False
}}}
And not
{{{
(schema.Table, {
"postgresql_ignore_search_path": False
}}}
?
--
Ticket URL: <http://www.sqlalchemy.org/trac/ticket/2922#comment:15>
sqlalchemy <http://www.sqlalchemy.org/>
The Database Toolkit for Python
|