Re: [sqlalchemy] Re: create database name lowcase ?

2022-03-31 Thread Massimiliano della Rovere
Postgresql is case case insensitive unless you impose a specific casing using " (double quotes): they are valid everywhere postgresql expects an identifier (schema name, table name, column name, cte name, after AS, etc. So it's all correct. See

Re: [sqlalchemy] Re: create database name lowcase ?

2022-03-31 Thread oislone
I see. I didn't expect it to be so simple. I tried to debug sqlalchemy, but didn't find character conversion It turned out to be the default way of postgreql. Thanks for your instruction. 'Jonathan Vanasco' via sqlalchemy 於 2022/4/1 04:47 寫道: I'm not aware of any recent changes in the libraries

[sqlalchemy] Re: create database name lowcase ?

2022-03-31 Thread 'Jonathan Vanasco' via sqlalchemy
I'm not aware of any recent changes in the libraries that would cause that behavior. It may be how you are using the libraries or raw sql. PostgreSQL will convert database names to lowercase UNLESS the database name is in quotes. These will all create `abc`: CREATE DATABASE abc;