Skip to content

Commit 01eb208

Browse files
Add removed procedures to removed in Cypher 25 list (#1308)
1 parent bd12a52 commit 01eb208

File tree

4 files changed

+25
-31
lines changed

4 files changed

+25
-31
lines changed

modules/ROOT/pages/clauses/listing-procedures.adoc

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -265,26 +265,16 @@ WHERE admin
265265
|===
266266
| name | admin
267267

268+
| "cdc.query" | true
269+
| "db.cdc.query" | true
270+
| "db.cdc.translateId" | true
268271
| "db.clearQueryCaches" | true
269272
| "db.listLocks" | true
270-
| "db.prepareForReplanning" | true
271-
| "db.stats.clear" | true
272-
| "db.stats.collect" | true
273-
| "db.stats.retrieve" | true
274-
| "db.stats.retrieveAllAnonymized" | true
275-
| "db.stats.status" | true
276-
| "db.stats.stop" | true
277-
| "dbms.checkConfigValue" | true
278-
| "dbms.cluster.checkConnectivity" | true
279-
| "dbms.cluster.cordonServer" | true
280-
| "dbms.cluster.readReplicaToggle" | true
281-
| "dbms.cluster.uncordonServer" | true
282-
| "dbms.listConfig" | true
283-
284-
2+d|Rows: 15
273+
274+
2+d|Rows: 5
285275
|===
286276

287-
The above table only displays the first 15 results of the query.
277+
The above table only displays the first 5 results of the query.
288278
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].
289279

290280
== Listing procedures with other filtering

modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,23 @@ CREATE ... CONSTRAINTS ... OPTIONS { indexProvider: ... }
119119
----
120120
| Specifying an index provider in the `OPTIONS` map when creating an index or constraint is no longer supported.
121121

122+
a|
123+
label:functionality[]
124+
label:removed[]
125+
[source, cypher, role="noheader"]
126+
----
127+
db.create.setVectorProperty()
128+
db.index.vector.createNodeIndex()
129+
dbms.cluster.readReplicaToggle()
130+
dbms.cluster.uncordonServer()
131+
dbms.quarantineDatabase()
132+
dbms.upgrade()
133+
dbms.upgradeStatus()
134+
----
135+
136+
a| These procedures have been removed from Cypher 25.
137+
For more information, see the link:{neo4j-docs-base-uri}/operations-manual/current/procedures/[Operations Manual -> Procedures].
138+
122139
|===
123140

124141

modules/ROOT/pages/indexes/semantic-indexes/vector-indexes.adoc

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -470,11 +470,6 @@ image::euclidean-similarity-equation.svg["The Euclidean of vector v and vector u
470470
|===
471471
| Usage | Procedure | Description
472472

473-
| Create node vector index.
474-
| link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_index_vector_createnodeindex[`db.index.vector.createNodeIndex`]
475-
| Create a vector index for the specified label and property with the given vector dimension using the given similarity function.
476-
Replaced by the `CREATE VECTOR INDEX` command.
477-
478473
| Use node vector index.
479474
| link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_index_vector_querynodes[`db.index.vector.queryNodes`]
480475
| Query the given node vector index.
@@ -487,15 +482,11 @@ Returns the requested number of approximate nearest neighbor relationships and t
487482

488483
| Set node vector property.
489484
| link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_create_setnodevectorproperty[`db.create.setNodeVectorProperty`]
490-
| 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[]
491-
492-
| Set node vector property.
493-
| link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_create_setvectorproperty[`db.create.setVectorProperty`]
494-
| Replaced by link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_create_setnodevectorproperty[`db.create.setNodeVectorProperty`]. label:deprecated[] label:beta[]
485+
| 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`].
495486

496487
| Set relationship vector property.
497488
| link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_db_create_setrelationshipvectorproperty[`db.create.setRelationshipVectorProperty`]
498-
| 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[]
489+
| 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`].
499490

500491
|===
501492

modules/ROOT/pages/planning-and-tuning/runtimes/reference.adoc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,10 +171,6 @@ Instead the query will automatically run on the pipelined runtime.
171171

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

174-
| link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_dbms_upgrade[dbms.upgrade]
175-
176-
| link:{neo4j-docs-base-uri}/operations-manual/current/procedures/#procedure_dbms_upgradestatus[dbms.upgradeStatus]
177-
178174
|===
179175

180176
[[apoc]]

0 commit comments

Comments
 (0)