-
Notifications
You must be signed in to change notification settings - Fork 31
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
Sequences catchup regression tests #40
Comments
This addresses some of the questions in #40.
Before I try to answer, let me express my thanks for all your work and improvements on this project. I really appreciate it!
If you get any different results, that could be an artifact of my PostgreSQL configuration. Share your results, and hopefully I can fix the regression tests. My idea how sequences could be tested is that you add one or two |
was my original idea as well but it's way too optimistic. |
Oh, I'd keep it simple. I added to |
Fun fact is that you can't: |
This addresses some of the questions in #40.
Then omit the |
Hi,
I'm trying to write tests as you have asked me to.
So far I was able to figure out the database needs
but I'm still unable to get exactly the same output as in check_results.out.
I have no idea what is check_results_1.out good for.
I guess you want me just to add
SELECT testschema1.seq1.NEXTVAL FROM dual;
to migrate.sql,SELECT nextval('testschema1.seq1');
to check_results.sql and add relevant output to check_results.out. Right?BTW: This might hinder subsequent runs of the check.
The text was updated successfully, but these errors were encountered: