yjhjstz commented on PR #1155:
URL: https://github.com/apache/cloudberry/pull/1155#issuecomment-3036577961
> > yes, orca supported.
>
> Cases or examples?
native support pax storage.
```c++
IMDRelation::Erelstoragetype
CTranslatorRelcacheToDXL::RetrieveRelStorageType(Relation rel)
{
IMDRelation::Erelstoragetype rel_storage_type =
IMDRelation::ErelstorageSentinel;
switch (rel->rd_rel->relam)
{
case HEAP_TABLE_AM_OID:
rel_storage_type = IMDRelation::ErelstorageHeap;
break;
case PAX_AM_OID:
rel_storage_type = IMDRelation::ErelstoragePAX;
break;
case AO_COLUMN_TABLE_AM_OID:
rel_storage_type =
IMDRelation::ErelstorageAppendOnlyCols;
break;
case AO_ROW_TABLE_AM_OID:
rel_storage_type =
IMDRelation::ErelstorageAppendOnlyRows;
break;
case 0:
```
--
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]