Пример #1
0
 /**
  * Adds a column object to this column container, overwrites existing column (context helper)
  * @param PandraSuperColumn $columnObj
  */
 public function addColumnObj(PandraColumn $columnObj)
 {
     if ($columnObj->getName() === NULL) {
         throw new RuntimeException('Column has no name');
     }
     $this->_columns[$this->typeConvert($columnObj->name, UUID::UUID_FMT_STR)] = $columnObj;
 }