Re: createuser/dropuser username
От | Tom Lane |
---|---|
Тема | Re: createuser/dropuser username |
Дата | |
Msg-id | 8486.1305893305@sss.pgh.pa.us обсуждение исходный текст |
Ответ на | Re: createuser/dropuser username (Susanne Ebrecht <susanne@2ndQuadrant.com>) |
Ответы |
Re: createuser/dropuser username
Re: createuser/dropuser username |
Список | pgsql-docs |
Susanne Ebrecht <susanne@2ndQuadrant.com> writes: > PostgreSQL even is so intelligent - that when you say: > $ createdb "tEst" - it will ignore the quotes - you will get database > named tEst and not > named "tEst". Not true. The reason you don't get quotes there is that the shell stripped them off. Try '"tEst"' ... The current behavior is something that we settled on years ago, after thinking about the interaction between shell quoting rules and SQL quoting rules. If we don't treat SQL names appearing on command lines as spelled literally, then you have to quote them if you don't want them downcased --- and doing that in a way that the shell won't mangle is unpleasant, as in my example above. So we ruled that all utilities that take a SQL name from the command line should auto-quote the name. I'm pretty sure this is documented somewhere, but perhaps not in the place where Grzegorz looked for it ... regards, tom lane
В списке pgsql-docs по дате отправления: