-
Notifications
You must be signed in to change notification settings - Fork 7.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ext/pgsql: adding pg_service() alongside other connection infos. #18198
Conversation
returns the ongoing name of the service, if there is. available since postgres 18
@@ -991,6 +992,12 @@ static void php_pgsql_get_link_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type | |||
PQclear(res); | |||
return; | |||
} | |||
#if defined(HAVE_PG_SERVICE) | |||
case PHP_PG_SERVICE: { | |||
result = PQservice(pgsql); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this return NULL? If it does, then it will return the interned empty string, in which case the @refcount 1
annotation is wrong.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unless there's an exception for interned strings, but I don't believe so? I could be wrong
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes it can return NULL.
Zend/Optimizer/zend_func_infos.h
Outdated
@@ -312,6 +312,9 @@ static const func_info_t func_infos[] = { | |||
F1("pg_host", MAY_BE_STRING), | |||
F1("pg_version", MAY_BE_ARRAY|MAY_BE_ARRAY_KEY_STRING|MAY_BE_ARRAY_OF_LONG|MAY_BE_ARRAY_OF_STRING|MAY_BE_ARRAY_OF_NULL), | |||
F1("pg_jit", MAY_BE_ARRAY|MAY_BE_ARRAY_KEY_STRING|MAY_BE_ARRAY_OF_STRING|MAY_BE_ARRAY_OF_NULL), | |||
#if defined(HAVE_PG_SERVICE) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you add this by hand, or did you forget to update the optimizer infos after updating the annotation?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added after the first round of stub update forgot to rerun again ... should disappear
returns the ongoing name of the service, if there is. available since postgres 18