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

Fix regression tests for different fetch size on 32-bit platforms #227

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

Commits on Oct 1, 2021

  1. Fix regression tests for different fetch size on 32-bit platforms

    Net diff between server_options.out and server_options_1.out is:
    
    --- expected/server_options.out	2021-10-01 16:19:20.320972814 +0200
    +++ expected/server_options_1.out	2021-10-01 16:22:04.428838428 +0200
    @@ -235,11 +235,11 @@
    
     -- Negative test cases for fetch_size option, should error out.
     ALTER FOREIGN TABLE table30000 OPTIONS ( SET fetch_size '-60000');
    -ERROR:  "fetch_size" requires an integer value between 1 to 18446744073709551615
    +ERROR:  "fetch_size" requires an integer value between 1 to 4294967295
     ALTER FOREIGN TABLE table30000 OPTIONS ( SET fetch_size '123abc');
    -ERROR:  "fetch_size" requires an integer value between 1 to 18446744073709551615
    +ERROR:  "fetch_size" requires an integer value between 1 to 4294967295
     ALTER FOREIGN TABLE table30000 OPTIONS ( SET fetch_size '999999999999999999999');
    -ERROR:  "fetch_size" requires an integer value between 1 to 18446744073709551615
    +ERROR:  "fetch_size" requires an integer value between 1 to 4294967295
     -- Cleanup fetch_size test objects.
     DROP FOREIGN TABLE  table30000;
     DROP SERVER fetch101;
    df7cb committed Oct 1, 2021
    Configuration menu
    Copy the full SHA
    326958e View commit details
    Browse the repository at this point in the history