| От | Tom Lane |
|---|---|
| Тема | Re: Using substr with user defined types |
| Дата | |
| Msg-id | 18662.961775545@sss.pgh.pa.us обсуждение исходный текст |
| Ответ на | Re: Using substr with user defined types (darcy@druid.net (D'Arcy J.M. Cain)) |
| Ответы |
Re: Using substr with user defined types
|
| Список | pgsql-sql |
darcy@druid.net (D'Arcy J.M. Cain) writes:
>> Not with that much info. Sooner or later you're going to have to
>> show us your C code...
> char *
> chkpass_rout(chkpass *password)
> {
> char *result;
> if (password == NULL)
> return (NULL);
> if ((result = (char *) palloc(16)) != NULL)
> strcpy(result, password->password);
> return (result);
> }
That doesn't return "text", so you can't tell the system it does.
Type text is a varlena type, ie, length word followed by data.
regards, tom lane
В списке pgsql-sql по дате отправления:
Сайт использует файлы cookie для корректной работы и повышения удобства. Нажимая кнопку «Принять» или продолжая пользоваться сайтом, вы соглашаетесь на их использование в соответствии с Политикой в отношении обработки cookie ООО «ППГ», в том числе на передачу данных из файлов cookie сторонним статистическим и рекламным службам. Вы можете управлять настройками cookie через параметры вашего браузера