Skip to content

Support the system column xmin in pg_catalog.pg_namespace #14224

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

Closed
Tracked by #10347
neverchanje opened this issue Dec 27, 2023 · 1 comment
Closed
Tracked by #10347

Support the system column xmin in pg_catalog.pg_namespace #14224

neverchanje opened this issue Dec 27, 2023 · 1 comment
Milestone

Comments

@neverchanje
Copy link
Contributor

neverchanje commented Dec 27, 2023

The datagrip query:

select N.oid::bigint as id,
       N.xmin as state_number,
       nspname as name,
       D.description,
       pg_catalog.pg_get_userbyid(N.nspowner) as "owner"
from pg_catalog.pg_namespace N
  left join pg_catalog.pg_description D on N.oid = D.objoid

The minimal reproducible query:

select N.xmin as state_number
from pg_catalog.pg_namespace N;
@github-actions github-actions bot added this to the release-1.6 milestone Dec 27, 2023
@neverchanje neverchanje changed the title Support xmin in pg_catalog.pg_namespace Support the system column xmin in pg_catalog.pg_namespace Dec 27, 2023
@neverchanje
Copy link
Contributor Author

#12021 duplicated

@neverchanje neverchanje closed this as not planned Won't fix, can't repro, duplicate, stale Dec 27, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant