Re: BUG #13960: plpython fails with certain function names
От
Jim Nasby
Тема
Re: BUG #13960: plpython fails with certain function names
Дата
Msg-id
56C53CB1.7070802@BlueTreble.com
Ответ на
Re: BUG #13960: plpython fails with certain function names (Pedro Gimeno)
Список
Дерево обсуждения
BUG #13960: plpython fails with certain function names Jim.Nasby@BlueTreble.com
Re: BUG #13960: plpython fails with certain function names Tom Lane <tgl@sss.pgh.pa.us>
Re: BUG #13960: plpython fails with certain function names Jim Nasby <Jim.Nasby@BlueTreble.com>
Re: BUG #13960: plpython fails with certain function names Tom Lane <tgl@sss.pgh.pa.us>
Re: BUG #13960: plpython fails with certain function names Jim Nasby <Jim.Nasby@BlueTreble.com>
Re: BUG #13960: plpython fails with certain function names Tom Lane <tgl@sss.pgh.pa.us>
Re: BUG #13960: plpython fails with certain function names Jim Nasby <Jim.Nasby@BlueTreble.com>
Re: BUG #13960: plpython fails with certain function names Tom Lane <tgl@sss.pgh.pa.us>
Re: BUG #13960: plpython fails with certain function names Pedro Gimeno <parigalo@formauri.es>
Re: BUG #13960: plpython fails with certain function names Jim Nasby <Jim.Nasby@BlueTreble.com>
On 2/17/16 8:36 PM, Pedro Gimeno wrote:
> Tom Lane wrote, On 2016-02-17 02:49:
>
>> + /* Replace any not-legal-in-Python-names characters with '_' */
>> + for (ptr = procName; *ptr; ptr++)
>> + {
>> + if (!((*ptr >= 'A' && *ptr <= 'Z') ||
>> + (*ptr >= 'a' && *ptr <= 'z') ||
>> + (*ptr >= '0' && *ptr <= '9')))
>> + *ptr = '_';
>> + }
>> +
>
> That may blow on names that start with a digit. Maybe
>
> + (*ptr >= '0' && *ptr <= '9' && ptr != procName)))
>
> Making the testcase start with a digit sounds like a good idea.
Postgres prefaces the name of the python function with a fixed string,
so it will never start with a digit.
--
Jim Nasby, Data Architect, Blue Treble Consulting, Austin TX
Experts in Analytics, Data Architecture and PostgreSQL
Data in Trouble? Get it in Treble! http://BlueTreble.comВ списке pgsql-bugs по дате отправления
От: Bruce Momjian
Дата: