Example #1
0
 def __check_active_index(self):
     if self.__active_index is self:
         raise _lv.BuilderError("No active index.")
Example #2
0
 def __check_active_table(self):
     if self.__active_table is None:
         raise _lv.BuilderError("No active table.")
Example #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.")