Re: How to add a new pg oid?

Поиск
Список
Период
Сортировка
От jacktby jacktby
Тема Re: How to add a new pg oid?
Дата
Msg-id D4E1B3AC-A010-4C06-A238-4E88052D9269@gmail.com
обсуждение исходный текст
Ответ на Re: How to add a new pg oid?  ("David G. Johnston" <david.g.johnston@gmail.com>)
Ответы Re: How to add a new pg oid?
Список pgsql-hackers


2023年9月6日 01:47,David G. Johnston <david.g.johnston@gmail.com> 写道:

OIDs don't exist independently of the data they are associated with.  Give more context if you want a better answer.  Or just go look at the source code commits for when the last time something needing an OID got added to the core catalog.

David J.
 
{ oid => '111', array_type_oid => '6099', descr => 'similarity columns',
  typname => 'similarity_columns', typlen => '-1', typlen => '-1', typbyval => 'f', typcategory => 'U',
  typinput => 'byteain', typoutput => 'byteaout', typreceive => 'bytearecv',
  typsend => 'byteasend', typalign => 'i', typstorage => 'x' },

I add above into pg_type.dat. And then I add execute “make install” and restart pg. And Then do below:
postgres=# SELECT typname from pg_type where typname like '%similarity%';
 typname 
---------
(0 rows)

I can’t get the type I added. What else I need to do?

В списке pgsql-hackers по дате отправления:

Предыдущее
От: Suraj Kharage
Дата:
Сообщение: Re: [Regression] Incorrect filename in test case comment
Следующее
От: Yura Sokolov
Дата:
Сообщение: Re: Vectorization of some functions and improving pg_list interface