You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
Merge pull request #1795 from denis0x0D/MCOL-4566/CompressedHeader
MCOL-4566: Extend CompressedDBFileHeader struct with new fields.
This commit is contained in:
@ -404,6 +404,7 @@ public:
|
||||
nBlocks, // number of blocks
|
||||
emptyVal, // NULL value
|
||||
width, // width
|
||||
execplan::CalpontSystemCatalog::BIGINT,
|
||||
1 ); // dbroot
|
||||
CPPUNIT_ASSERT( rc == NO_ERROR );
|
||||
|
||||
@ -987,6 +988,7 @@ public:
|
||||
nBlocks, // number of blocks
|
||||
emptyVal, // NULL value
|
||||
width, // width
|
||||
execplan::CalpontSystemCatalog::BIGINT,
|
||||
dbRoot ); // dbroot
|
||||
CPPUNIT_ASSERT( rc == NO_ERROR );
|
||||
|
||||
@ -1011,6 +1013,7 @@ public:
|
||||
BYTE_PER_BLOCK, // number of blocks
|
||||
emptyVal,
|
||||
width,
|
||||
execplan::CalpontSystemCatalog::BIGINT,
|
||||
false, // use existing file
|
||||
true, // expand the extent
|
||||
false, // add full (not abbreviated) extent
|
||||
@ -1031,6 +1034,7 @@ public:
|
||||
nBlocks, // number of blocks
|
||||
emptyVal, // NULL value
|
||||
width, // width
|
||||
execplan::CalpontSystemCatalog::BIGINT,
|
||||
dbRoot ); // dbroot
|
||||
CPPUNIT_ASSERT( rc == NO_ERROR );
|
||||
|
||||
@ -1054,6 +1058,7 @@ public:
|
||||
BYTE_PER_BLOCK, // number of blocks
|
||||
emptyVal,
|
||||
width,
|
||||
execplan::CalpontSystemCatalog::BIGINT,
|
||||
false, // use existing file
|
||||
true, // expand the extent
|
||||
false, // add full (not abbreviated) extent
|
||||
|
Reference in New Issue
Block a user