diff -U3 /home/japin/Codes/pg-extensions/hydra/columnar/src/test/regress/expected/columnar_vacuum.out /home/japin/Codes/pg-extensions/hydra/columnar/src/test/regress/results/columnar_vacuum.out --- /home/japin/Codes/pg-extensions/hydra/columnar/src/test/regress/expected/columnar_vacuum.out 2024-01-31 10:02:08.690388821 +0800 +++ /home/japin/Codes/pg-extensions/hydra/columnar/src/test/regress/results/columnar_vacuum.out 2024-01-31 10:03:29.080448257 +0800 @@ -444,7 +444,13 @@ -- Verify that we can vacuum humongous fields CREATE TABLE t (id SERIAL, data TEXT) USING columnar; INSERT INTO t SELECT 1, repeat('a', 1000000000); +WARNING: problem in alloc set Stripe Write Memory Context: detected write past chunk end in block 0x561cbe236720, chunk 0x561cbe237058 +WARNING: problem in alloc set Stripe Write Memory Context: detected write past chunk end in block 0x561cbe236720, chunk 0x561cbe237070 INSERT INTO t SELECT 2, repeat('b', 1000000000); +WARNING: problem in alloc set Stripe Write Memory Context: detected write past chunk end in block 0x561cbe236720, chunk 0x561cbe237058 +WARNING: problem in alloc set Stripe Write Memory Context: detected write past chunk end in block 0x561cbe236720, chunk 0x561cbe237070 INSERT INTO t SELECT 3, repeat('c', 1000000000); +WARNING: problem in alloc set Stripe Write Memory Context: detected write past chunk end in block 0x561cbe236720, chunk 0x561cbe237058 +WARNING: problem in alloc set Stripe Write Memory Context: detected write past chunk end in block 0x561cbe236720, chunk 0x561cbe237070 VACUUM t; DROP TABLE t; diff -U3 /home/japin/Codes/pg-extensions/hydra/columnar/src/test/regress/expected/columnar_customindex.out /home/japin/Codes/pg-extensions/hydra/columnar/src/test/regress/results/columnar_customindex.out --- /home/japin/Codes/pg-extensions/hydra/columnar/src/test/regress/expected/columnar_customindex.out 2024-01-02 16:56:51.677071550 +0800 +++ /home/japin/Codes/pg-extensions/hydra/columnar/src/test/regress/results/columnar_customindex.out 2024-01-31 10:04:49.330809727 +0800 @@ -18,11 +18,11 @@ set enable_seqscan TO off; set seq_page_cost TO 10000000; EXPLAIN (VERBOSE) SELECT a FROM t WHERE b > 18 ORDER BY b LIMIT 10; - QUERY PLAN ---------------------------------------------------------------------------------- - Limit (cost=0.30..0.56 rows=10 width=8) + QUERY PLAN +---------------------------------------------------------------------------------- + Limit (cost=0.30..96.66 rows=10 width=8) Output: a, b - -> Custom Scan (ColumnarIndexScan) (cost=0.30..2586.30 rows=100000 width=8) + -> Custom Scan (ColumnarIndexScan) (cost=0.30..144837.52 rows=15030 width=8) Output: a, b ColumnarIndexScan using : t_idx Index Cond: (t.b > 18)