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

Add support for pg_get_serial_sequence(text,text) #969

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

fulghum
Copy link
Contributor

@fulghum fulghum commented Nov 15, 2024

Adds support for the pg_get_serial_sequence(text,text) function, which returns the sequence owned by a column.

Example usage:

create table t1 (id SERIAL PRIMARY KEY);
SELECT pg_get_serial_sequence('t1', 'id');

Copy link
Contributor

Main PR
Total 42090 42090
Successful 14426 14426
Failures 27664 27664
Partial Successes1 4690 4690
Main PR
Successful 34.2742% 34.2742%
Failures 65.7258% 65.7258%

Footnotes

  1. These are tests that we're marking as Successful, however they do not match the expected output in some way. This is due to small differences, such as different wording on the error messages, or the column names being incorrect while the data itself is correct.

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

Successfully merging this pull request may close these issues.

1 participant