Ejemplo n.º 1
0
 def __check_active_index(self):
     if self.__active_index is self:
         raise _lv.BuilderError("No active index.")
Ejemplo n.º 2
0
 def __check_active_table(self):
     if self.__active_table is None:
         raise _lv.BuilderError("No active table.")
Ejemplo n.º 3
0
 def __check_active_index(self):
     if self.__active_index is self or self.__active_index._verb != "Create":
         raise _lv.BuilderError(
             "No active index or active index not being created.")