Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for currentMajor (0.05 seconds)

  1. tests/helper_test.go

    	parts := strings.Split(base, ".")
    	if len(parts) < 2 {
    		return false
    	}
    
    	currentMajor, err := strconv.Atoi(parts[0])
    	if err != nil {
    		return false
    	}
    
    	currentMinor, err := strconv.Atoi(parts[1])
    	if err != nil {
    		return false
    	}
    
    	if currentMajor != major {
    		return currentMajor > major
    	}
    
    	return currentMinor >= minor
    }
    
    func isSqlite() bool {
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Sat Mar 21 11:27:38 GMT 2026
    - 8.6K bytes
    - Click Count (0)
Back to Top