-
Notifications
You must be signed in to change notification settings - Fork 80
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
Don't fail schema inspection when full text indexes exist #338
base: master
Are you sure you want to change the base?
Conversation
1 similar comment
I need help with jruby builds on Travis. I don't know how to fix them. |
@imustafin Can you make this PR against 10.0.x branch? That branch is going to be master soon. Thanks. |
@amitsuryavanshi I don't see the 10.0.x branch (https://github.com/neo4jrb/neo4j-core/branches/all). The newest branches I see are master and 9.0.x. |
@imustafin Pardon me, its for |
@amitsuryavanshi I see that |
@imustafin Let this be open. We yet to decide on what to do with |
This pull introduces/changes:
/db/data/schema/index
endpoint for getting indexes and constraints in Neo4j >= 3.0.0 (since addition of theCALL
clause)This PR is needed to allow using
neo4j-core
when full text indexes exist, without this PR schema validation fails as they appear asINDEX ON NODE:Label(key)
instead ofINDEX ON :Label(key)
indb.indexes
(more of the discussion: https://gitter.im/neo4jrb/neo4j?at=5e1efa848b53f6190ab79919).This PR doesn't add any additional support for such indexes.