Skip to content
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

Dummy pg_catalog.age(xid) expression #14118

Open
Tracked by #112
TennyZhuang opened this issue Dec 21, 2023 · 1 comment
Open
Tracked by #112

Dummy pg_catalog.age(xid) expression #14118

TennyZhuang opened this issue Dec 21, 2023 · 1 comment
Labels
component/func-expr Support a SQL function or operator good first issue Good for newcomers help wanted Issues that need help from contributors

Comments

@TennyZhuang
Copy link
Contributor

TennyZhuang commented Dec 21, 2023

Tracked by #112
Tracked by #10347

Note: There are multiple functions named age:

SELECT 
n.nspname AS function_schema, 
p.proname AS function_name,
pg_get_function_arguments(p.oid) AS arguments                                                                                                               FROM pg_proc p
LEFT JOIN pg_namespace n ON p.pronamespace = n.oid 
WHERE n.nspname = 'pg_catalog' and p.proname = 'age';

 function_schema | function_name |                        arguments
-----------------+---------------+----------------------------------------------------------
 pg_catalog      | age           | xid
 pg_catalog      | age           | timestamp with time zone, timestamp with time zone
 pg_catalog      | age           | timestamp without time zone, timestamp without time zone
 pg_catalog      | age           | timestamp with time zone
 pg_catalog      | age           | timestamp without time zone
@github-actions github-actions bot added this to the release-1.6 milestone Dec 21, 2023
@TennyZhuang TennyZhuang self-assigned this Dec 21, 2023
Copy link
Contributor

This issue has been open for 60 days with no activity. Could you please update the status? Feel free to continue discussion or close as not planned.

@fuyufjh fuyufjh added good first issue Good for newcomers help wanted Issues that need help from contributors component/func-expr Support a SQL function or operator labels Oct 8, 2024
@fuyufjh fuyufjh modified the milestones: release-1.9, release-2.1 Oct 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
component/func-expr Support a SQL function or operator good first issue Good for newcomers help wanted Issues that need help from contributors
Projects
None yet
Development

No branches or pull requests

2 participants