tuhaihe commented on PR #731:
URL: https://github.com/apache/cloudberry/pull/731#issuecomment-2535548083

   > > +ERROR:  could not resize shared memory segment "/PostgreSQL.3126407118" 
to 8388608 bytes: No space left on device
   > 
   > here need to enlarge shm size .
   
   Thanks @yjhnupt for your suggestions. I use the command to run the build 
docker image:
   
   ```
   docker run -it --rm -h cdw --shm-size=2gb 
apache/incubator-cloudberry:cbdb-build-rocky9-latest
   ```
   
   Now, after running `make installcheck`, it returns:
   
   ```
   ========================
    3 of 659 tests failed.
   ========================
   ```
   
   ```
   diff -I HINT: -I CONTEXT: -I GP_IGNORE: -U3 
/home/gpadmin/cloudberry/src/test/regress/expected/explain_optimizer.out 
/home/gpadmin/cloudberry/src/test/regress/results/explain.out
   --- /home/gpadmin/cloudberry/src/test/regress/expected/explain_optimizer.out 
2024-12-11 02:06:36.538896201 -0800
   +++ /home/gpadmin/cloudberry/src/test/regress/results/explain.out    
2024-12-11 02:06:36.562896655 -0800
   @@ -395,7 +395,6 @@
             },                                                 +
             "Settings": {                                      +
                 "Optimizer": "Pivotal Optimizer (GPORCA)",     +
   -             "optimizer": "on",                             +
                 "enable_parallel": "off",                      +
                 "parallel_setup_cost": "0",                    +
                 "parallel_tuple_cost": "0",                    +
   diff -I HINT: -I CONTEXT: -I GP_IGNORE: -U3 
/home/gpadmin/cloudberry/src/test/regress/expected/gpcopy_encoding.out 
/home/gpadmin/cloudberry/src/test/regress/results/gpcopy_encoding.out
   --- /home/gpadmin/cloudberry/src/test/regress/expected/gpcopy_encoding.out   
2024-12-11 02:12:57.455824245 -0800
   +++ /home/gpadmin/cloudberry/src/test/regress/results/gpcopy_encoding.out    
2024-12-11 02:12:57.457824282 -0800
   @@ -21,7 +21,7 @@
    copy enctest to '/tmp/enctest_utf_to_latin1-1' encoding 'latin1';
    set client_encoding='latin1';
    copy enctest to stdout;
   -�
   +�
    copy enctest to '/tmp/enctest_utf_to_latin1-2';
    -- Connect to 'latin1' database, and load back the files we just created.
    -- This is to check that they were created correctly, and that the ENCODING
   diff -I HINT: -I CONTEXT: -I GP_IGNORE: -U3 
/home/gpadmin/cloudberry/src/test/regress/expected/dispatch_encoding.out 
/home/gpadmin/cloudberry/src/test/regress/results/dispatch_encoding.out
   --- /home/gpadmin/cloudberry/src/test/regress/expected/dispatch_encoding.out 
2024-12-11 02:15:40.607127519 -0800
   +++ /home/gpadmin/cloudberry/src/test/regress/results/dispatch_encoding.out  
2024-12-11 02:15:40.610127575 -0800
   @@ -55,14 +55,16 @@
   
    select raise_error(t) from enctest;
    ERROR:  raise_error called on "funny char Ä"
   +CONTEXT:  PL/pgSQL function raise_error(text) line 3 at RAISE
    -- now do it again with latin1
    set client_encoding='latin1';
    select raise_notice(t) from enctest;
   -NOTICE:  raise_notice called on "funny char �"
   +NOTICE:  raise_notice called on "funny char �"
     raise_notice
    --------------
   
    (1 row)
   
    select raise_error(t) from enctest;
   -ERROR:  raise_error called on "funny char �"
   +ERROR:  raise_error called on "funny char �"
   +CONTEXT:  PL/pgSQL function raise_error(text) line 3 at RAISE
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to