@@ -356,7 +356,7 @@ ALTER TABLE ONLY public.tablename ALTER COLUMN i SET (n_distinct=1);`)
356356 testutils .AssertBufferContents (tocfile .PredataEntries , buffer , `CREATE TABLE public.tablename (
357357 i integer,
358358 j character varying(20)
359- ) WITH (appendonly=true, orientation=column, fillfactor=42, compresstype=zlib, blocksize=32768, compresslevel=1) DISTRIBUTED RANDOMLY;` )
359+ ) WITH (appendonly=true, orientation=column, compresstype=zlib, blocksize=32768, compresslevel=1) DISTRIBUTED RANDOMLY;` )
360360 })
361361 It ("is an append-optimized column-oriented table with complex storage options and a single-column distribution key" , func () {
362362 testTable .DistPolicy = distSingle
@@ -365,7 +365,7 @@ ALTER TABLE ONLY public.tablename ALTER COLUMN i SET (n_distinct=1);`)
365365 testutils .AssertBufferContents (tocfile .PredataEntries , buffer , `CREATE TABLE public.tablename (
366366 i integer,
367367 j character varying(20)
368- ) WITH (appendonly=true, orientation=column, fillfactor=42, compresstype=zlib, blocksize=32768, compresslevel=1) DISTRIBUTED BY (i);` )
368+ ) WITH (appendonly=true, orientation=column, compresstype=zlib, blocksize=32768, compresslevel=1) DISTRIBUTED BY (i);` )
369369 })
370370 It ("is an append-optimized column-oriented table with complex storage options and a two-column composite distribution key" , func () {
371371 testTable .DistPolicy = distComposite
@@ -374,7 +374,7 @@ ALTER TABLE ONLY public.tablename ALTER COLUMN i SET (n_distinct=1);`)
374374 testutils .AssertBufferContents (tocfile .PredataEntries , buffer , `CREATE TABLE public.tablename (
375375 i integer,
376376 j character varying(20)
377- ) WITH (appendonly=true, orientation=column, fillfactor=42, compresstype=zlib, blocksize=32768, compresslevel=1) DISTRIBUTED BY (i, j);` )
377+ ) WITH (appendonly=true, orientation=column, compresstype=zlib, blocksize=32768, compresslevel=1) DISTRIBUTED BY (i, j);` )
378378 })
379379 It ("is a GPDB 7+ root partition" , func () {
380380 testutils .SkipIfBefore7 (connectionPool )
0 commit comments