Cassandra\DatatypeIntegrationTests::createTableInsertAndVerifyValueByIndex PHP Method

createTableInsertAndVerifyValueByIndex() public method

Create a table using $type for the value's type and insert $value using positional parameters.
public createTableInsertAndVerifyValueByIndex ( $type, $value )
$type Cassandra\Type
$value mixed
    public function createTableInsertAndVerifyValueByIndex($type, $value)
    {
        $key = "key";
        $options = new ExecutionOptions(array('arguments' => array($key, $value)));
        $this->createTableInsertAndVerifyValue($type, $options, $key, $value);
    }