-
Notifications
You must be signed in to change notification settings - Fork 155
[PHP-22] Schema Metadata Feature and Miscellaneous Windows Fixes #52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
->build(); | ||
$session = $cluster->connect("simplex"); | ||
$schema = $session->schema(); | ||
$id = $schema->keyspace("simplex")->table("values")->column("id"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd reduce this duplication by using something like $values = $schema->keyspace("simplex")->table("values")
overall looks good, except for the 2 minor improvements I mentioned. |
This is a little tricky, due to the way the schema metadata is not present for all C* versions. Let me think about a better way for the filter tags to keep the Are you against multiple tags for a |
Multiple tags are fine |
|
||
@cassandra-version-less-2.1 | ||
Scenario: Additional table metadata will only exist for Cassandra versions | ||
1.2 and v2.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1.2 and 2.0 or v1.2 and v2.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1.2 and 2.x ? :)
9aa0741
to
d32fb4d
Compare
[PHP-22] Schema Metadata Feature and Miscellaneous Windows Fixes
No description provided.