Luc Gaitskell

Results 12 comments of Luc Gaitskell

@tlocke Thanks for the suggestions. I'm using Google Cloud SQL, and therefore am using `psql` over the Cloud SQL Proxy through TCP/IP. One important piece of information I left out...

@tlocke I ran the command directly as text with pg8000: ```python cursor.execute( """INSERT INTO table_tmp (a, b, c, d, e, f, g, h, i, j, k, l) SELECT table1.a, lower(table1.b)...

@tlocke > does every SQL statement give an error when it's run, or just the one you've shown? That error only comes up on that single statement. I am able...

@tlocke I've run multi-long `ALTER` queries through SQLAlchemy and pg8000 sucessfully. I don't understand why this should be different. The same exact operation works properly through psql, using the same...

> Please create an issue and describe the problem itself before fixing it I have now created issue #322

@sfc-gh-mkeller Am I missing any remaining steps for the review process? Thanks in advance.

Just to bump this- Is there a chance of having this PR reviewed?

I have read the CLA Document and I hereby sign the CLA

Just to bump this- Is there a chance of having this PR reviewed?

Anyone looking for an `INSERT ... SELECT` workaround, the author of SQLAlchemy helped me out here: https://github.com/sqlalchemy/sqlalchemy/discussions/7894