We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e76f7d commit ffdc7c2Copy full SHA for ffdc7c2
features/README.md
@@ -208,7 +208,7 @@ You run CQL statements by passing them to [`Cassandra\Session::execute()`](http:
208
$result = $session->execute(new Cassandra\SimpleStatement('SELECT keyspace_name, columnfamily_name FROM system.schema_columnfamilies'));
209
210
foreach ($result as $row) {
211
- sprintf("The keyspace \"%s\" has a table \"%s\".\n", $row['keyspace_name'], $row['columnfamily_name']);
+ printf("The keyspace \"%s\" has a table \"%s\".\n", $row['keyspace_name'], $row['columnfamily_name']);
212
}
213
```
214
0 commit comments