github.com/voedger/voedger@v0.0.0-20240520144910-273e84102129/pkg/processors/query/consts.go (about)

     1  /*
     2   * Copyright (c) 2021-present unTill Pro, Ltd.
     3   */
     4  
     5  package queryprocessor
     6  
     7  import "github.com/voedger/voedger/pkg/appdef"
     8  
     9  const (
    10  	filterKind_Eq    = "eq"
    11  	filterKind_NotEq = "notEq"
    12  	filterKind_Gt    = "gt"
    13  	filterKind_Lt    = "lt"
    14  	filterKind_And   = "and"
    15  	filterKind_Or    = "or"
    16  )
    17  
    18  const (
    19  	minNormalFloat64 = 0x1.0p-1022
    20  	rootDocument     = ""
    21  )
    22  
    23  var (
    24  	// test only constants
    25  	qNamePosDepartment       = appdef.NewQName("pos", "Department")
    26  	qNamePosDepartmentResult = appdef.NewQName("pos", "DepartmentResult")
    27  	qNameXLowerCase          = appdef.NewQName("x", "lower_case")
    28  )