Am Mittwoch, 30. Januar 2013 00:24:57 UTC+1 schrieb Michael Bayer: > > > On Jan 29, 2013, at 5:36 PM, jank wrote: > > I did a lot of progress. Fine tuning the dialect and the dialect specific > requirements.py helped a lot. > > I am still not ready to provide a minimal test case for the auto_increment > behavior. At the current stage I do not trust my dialect implementation. > > While completing this a question again regarding the use of the identifier > 'data' in the test suite. This identifier is used in several tests. How and > where did you changed it to correct quoting? I did a checkout via hg > clone http://hg.sqlalchemy.org/sqlalchemy and did not find any quoting in > the test suite. For now I have locally changed 'data' to 't_data' to get > rid of a bunch of failing test cases. > > > this changeset removes the use of the column name "data" in a raw SQL > statement: > > http://hg.sqlalchemy.org/sqlalchemy/rev/fecb390572d8 > > all the rest of the places a column named "data" is used, it's specified > as a Column object which should quote properly when rendered. > > Hi Michael,
I looked at this problem again. The use of reserved words for identifiers is ok as long as they are correctly quoted. I had a an error in my reserved_keywords array (upper- lowercase confusion). That is now all good and find. Jan -- 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.
