g'day
i have a case where one bindparam's shortname conflicts with another 
bindparam's key. 

The sql.Column._bindparam assigns columns name as bindparam's 
shortname, while haveing the full calculated _label as its key, and 
the bindparam is requested unique. later, in 
Compiler.visit_bindparam, both key and shortname, that is, col._label 
and col.name are associated with this bindparam, but: shortname goes 
as is, while the key is being uniquied by appending some _%d count to 
it.

And i have another plain bindparam using the that same column name as 
its key, and this conflicts with above.

i know i can rename all me-made bindparams, or prefix or something, 
but why is the (longer) key being mangled with count, while (shorter) 
shortname is directly put as is and not mangled too?

ciao
svilen

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to