This might be a bug then. String || Integer ; Integer || String - PostgreSQL and sqlite both allow for a sting & integer to be concat together into a string. Order does not matter.
Integer || Integer - PostgreSQL will error if 2 ints are concat together. - sqlite seems to cast both into a string, and returns a string ( i.e. "Select 1 || 2" == "12" == str(12) ) -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sqlalchemy. For more options, visit https://groups.google.com/groups/opt_out.
