File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 11# THIS FILE IS AUTOMATICALLY UPDATED DURING THE BUILD PROCESS 
22# DO NOT EDIT THIS FILE DIRECTLY 
33
4- __build__  =  1675 
4+ __build__  =  1676 
55__author__  =  "@joocer" 
6- __version__  =  "0.26.0-beta.1675 " 
6+ __version__  =  "0.26.0-beta.1676 " 
77
88# Store the version here so: 
99# 1) we don't load dependencies by storing it in __init__.py 
Original file line number Diff line number Diff line change @@ -110,10 +110,11 @@ cdef class MemoryPool:
110110            self ._print_stats()
111111
112112    cdef void  _print_stats(self ):
113-     cdef int64_t total_free =  0 
114-     cdef int64_t total_used =  0 
115-     cdef double  fragmentation =  0.0 
116-     cdef int64_t free_blocks =  0 
113+         cdef int64_t total_free =  0 
114+         cdef int64_t total_used =  0 
115+         cdef double  fragmentation =  0.0 
116+         cdef int64_t free_blocks =  0 
117+         cdef double  denom
117118
118119        for  i in  range (self .segments.size()):
119120            if  self .segments[i].is_free:
@@ -124,7 +125,7 @@ cdef class MemoryPool:
124125
125126        if  total_free >  0  and  free_blocks >  1 :
126127            #  Avoid integer division by zero when total_free < 1024.
127-             cdef  double   denom =  total_free /  1024.0 
128+             denom =  total_free /  1024.0 
128129            if  denom >  0.0 :
129130                fragmentation =  (free_blocks -  1 ) *  100.0  /  denom  #  Simplified fragmentation metric
130131            else :
Original file line number Diff line number Diff line change 11[project ]
22name  = " opteryx" 
3- version  = " 0.26.0-beta.1675 " 
3+ version  = " 0.26.0-beta.1676 " 
44description  = " Query your data, where it lives" 
55requires-python  = ' >=3.11' 
66readme  = {file  = " README.md" content-type  = " text/markdown" 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments