When you do a multiple-row insert, such as:
users.insert().execute(
    {'user_id':6, 'user_name':'jack', 'password':'asdfasdf'},
    {'user_id':7, 'user_name':'ed'},
    {'user_id':8, 'user_name':'scott', 'password':'fadsfads'},
    {'user_id':9, 'user_name':'bob'},
)
 ...the 'password' field for the second and fourth rows, rather than
being set to None or raising an error, take the first row's password
value.
 While it is somewhat slack not to provide all the columns for each
row, SA shouldn't really duplicate the first row's values, nei?

 I'm this >| |< far from submitting a bug report this time. ;)

 Takk,
 - Mel C


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
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