Skip to content

Add removed procedures to removed in Cypher 25 list #1308

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

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 6 additions & 16 deletions modules/ROOT/pages/clauses/listing-procedures.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -265,26 +265,16 @@ WHERE admin
|===
| name | admin

| "cdc.query" | true
| "db.cdc.query" | true
| "db.cdc.translateId" | true
| "db.clearQueryCaches" | true
| "db.listLocks" | true
| "db.prepareForReplanning" | true
| "db.stats.clear" | true
| "db.stats.collect" | true
| "db.stats.retrieve" | true
| "db.stats.retrieveAllAnonymized" | true
| "db.stats.status" | true
| "db.stats.stop" | true
| "dbms.checkConfigValue" | true
| "dbms.cluster.checkConnectivity" | true
| "dbms.cluster.cordonServer" | true
| "dbms.cluster.readReplicaToggle" | true
| "dbms.cluster.uncordonServer" | true
| "dbms.listConfig" | true

2+d|Rows: 15

2+d|Rows: 5
|===

The above table only displays the first 15 results of the query.
The above table only displays the first 5 results of the query.
For a full list of all procedures which require `admin` privileges in Neo4j, visit the link:{neo4j-docs-base-uri}/operations-manual/current/procedures[Operations Manual -> Procedures].

== Listing procedures with other filtering
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,23 @@ CREATE ... CONSTRAINTS ... OPTIONS { indexProvider: ... }
----
| Specifying an index provider in the `OPTIONS` map when creating an index or constraint is no longer supported.

a|
label:functionality[]
label:removed[]
[source, cypher, role="noheader"]
----
db.create.setVectorProperty()
db.index.vector.createNodeIndex()
dbms.cluster.readReplicaToggle()
dbms.cluster.uncordonServer()
dbms.quarantineDatabase()
dbms.upgrade()
dbms.upgradeStatus()
----

a| These procedures have been removed from Cypher 25.
For more information, see the link:{neo4j-docs-base-uri}/operations-manual/current/procedures/[Operations Manual -> Procedures].

|===


Expand Down
13 changes: 2 additions & 11 deletions modules/ROOT/pages/indexes/semantic-indexes/vector-indexes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -470,11 +470,6 @@ image::euclidean-similarity-equation.svg["The Euclidean of vector v and vector u
|===
| Usage | Procedure | Description

| Create node vector index.
| link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_index_vector_createnodeindex[`db.index.vector.createNodeIndex`]
| Create a vector index for the specified label and property with the given vector dimension using the given similarity function.
Replaced by the `CREATE VECTOR INDEX` command.

| Use node vector index.
| link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_index_vector_querynodes[`db.index.vector.queryNodes`]
| Query the given node vector index.
Expand All @@ -487,15 +482,11 @@ Returns the requested number of approximate nearest neighbor relationships and t

| Set node vector property.
| link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_create_setnodevectorproperty[`db.create.setNodeVectorProperty`]
| Update a given node property with the given vector in a more space-efficient way than directly using xref:clauses/set.adoc#set-set-a-property[`SET`]. Replaces link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_create_setvectorproperty[`db.create.setVectorProperty`]. label:beta[]

| Set node vector property.
| link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_create_setvectorproperty[`db.create.setVectorProperty`]
| Replaced by link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_create_setnodevectorproperty[`db.create.setNodeVectorProperty`]. label:deprecated[] label:beta[]
| Update a given node property with the given vector in a more space-efficient way than directly using xref:clauses/set.adoc#set-set-a-property[`SET`].

| Set relationship vector property.
| link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_create_setrelationshipvectorproperty[`db.create.setRelationshipVectorProperty`]
| Update a given relationship property with the given vector in a more space-efficient way than directly using xref:clauses/set.adoc#set-set-a-property[`SET`]. label:beta[]
| Update a given relationship property with the given vector in a more space-efficient way than directly using xref:clauses/set.adoc#set-set-a-property[`SET`].

|===

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,6 @@ Instead the query will automatically run on the pipelined runtime.

| link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_dbms_scheduler_jobs[dbms.scheduler.jobs]

| link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_dbms_upgrade[dbms.upgrade]

| link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_dbms_upgradestatus[dbms.upgradeStatus]

|===

[[apoc]]
Expand Down