-
Notifications
You must be signed in to change notification settings - Fork 61
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
Copy references #236
Copy references #236
Conversation
please rebase |
- New column "numerical_props" which is populated by numerical properies and which is used exlusively for ordering.
f4afc1e
to
3a7cc80
Compare
$referenceEls = $xpath->query('.//sv:property[@sv:type="reference"]'); | ||
|
||
foreach ($referenceEls as $referenceEl) { | ||
if (array_key_exists($referenceEl->nodeValue, $resultSetUuids)) { |
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.
Should use isset
here I think.
3a7cc80
to
c73cc61
Compare
Rebased and updated the related phpcr-api-tests PR. |
can you rebase once more? |
@lsmith77 the branch is already up-to-date here |
yes .. but if you rebase to master then the tests should pass |
I will restart the tests .. but I can't rebase on master because there is nothing to rebase on. |
All green :) |
i wrote a comment on phpcr/phpcr-api-tests#148 - can you check that? would love to merge the tests first, then restart this build one more time, just to be sure. |
merged the tests and restarted the build |
Last test run failed with the random problem (cannot delete node |
Build is green now however ... |
NOTE: this PR is based on the numerical sorting PR (#226) which would need to be merged first.
If that PR is rejected I will need to rebase and update this PR, probably better to delay reviewing this until that is merged.
For changes see the second commit in this PR.
Depends