github.com/voedger/voedger@v0.0.0-20240520144910-273e84102129/pkg/istructsmem/internal/consts/qnames.go (about)

     1  /*
     2   * Copyright (c) 2021-present Sigma-Soft, Ltd.
     3   * @author: Nikolay Nikitin
     4   */
     5  
     6  package consts
     7  
     8  // system views enumeration
     9  const (
    10  	SysView_Versions     uint16 = 16 + iota // system view versions
    11  	SysView_QNames                          // application QNames system view
    12  	SysView_Containers                      // application container names view
    13  	SysView_Records                         // application Records view
    14  	SysView_PLog                            // application PLog view
    15  	SysView_WLog                            // application WLog view
    16  	SysView_SingletonIDs                    // application singletons IDs view
    17  	SysView_RESERVED                        // SysView_UniquesIDs (application uniques IDs view) deprecated
    18  )