ArrowAllocation.java org::apache::iceberg::arrow::ArrowAllocation org::apache::iceberg::arrow /* *LicensedtotheApacheSoftwareFoundation(ASF)underone *ormorecontributorlicenseagreements.SeetheNOTICEfile *distributedwiththisworkforadditionalinformation *regardingcopyrightownership.TheASFlicensesthisfile *toyouundertheApacheLicense,Version2.0(the *"License");youmaynotusethisfileexceptincompliance *withtheLicense.YoumayobtainacopyoftheLicenseat * *http://www.apache.org/licenses/LICENSE-2.0 * *Unlessrequiredbyapplicablelaworagreedtoinwriting, *softwaredistributedundertheLicenseisdistributedonan *"ASIS"BASIS,WITHOUTWARRANTIESORCONDITIONSOFANY *KIND,eitherexpressorimplied.SeetheLicenseforthe *specificlanguagegoverningpermissionsandlimitations *undertheLicense. */ packageorg.apache.iceberg.arrow; importorg.apache.arrow.memory.RootAllocator; publicclassArrowAllocation{ static{ ROOT_ALLOCATOR=newRootAllocator(Long.MAX_VALUE); } privatestaticfinalRootAllocatorROOT_ALLOCATOR; privateArrowAllocation(){} publicstaticRootAllocatorrootAllocator(){ returnROOT_ALLOCATOR; } }