You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| The option `existingDataSeedInstance` is removed from the `CREATE DATABASE` `OPTIONS` map and replaced by `existingDataSeedServer`.
52
52
For more information, see link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/standard-databases/create-databases/#manage-databases-create-database-options[Operations Manual -> Database administration -> Create databases].
53
53
54
+
a|
55
+
[#_graph_reference_removed_name_parts_quoting]
56
+
label:functionality[]
57
+
label:removed[]
58
+
[source, cypher, role=noheader]
59
+
----
60
+
CREATE ALIAS composite.`1` FOR DATABASE neo4j
61
+
----
62
+
[source, cypher, role=noheader]
63
+
----
64
+
USE composite.`1`
65
+
----
66
+
| Graph references with separately backticked name parts have been removed. Use parameters or backtick the entire name, e.g. `USE `composite.1``
67
+
54
68
55
69
a|
56
70
label:functionality[]
@@ -278,6 +292,7 @@ Several xref:clauses/transaction-clauses.adoc#query-listing-transactions[`SHOW
278
292
* The current query-related columns — `currentQuery`, `currentQueryId`, `parameters`, `planner`, `runtime`, `indexes`, `currentQueryStartTime`, `currentQueryElapsedTime`, `currentQueryCpuTime`, `currentQueryIdleTime`, and `currentQueryStatus` — now return `null` when no query is executing.
279
293
280
294
a|
295
+
[#_graph_reference_updated_graph_by_name_quotes]
281
296
label:functionality[]
282
297
label:updated[]
283
298
[source, cypher, role="noheader"]
@@ -732,9 +747,16 @@ label:deprecated[]
732
747
USE my.db ...
733
748
734
749
----
735
-
| In xref:clauses/use.adoc[`USE`] clauses, databases and aliases with unquoted `.` are deprecated unless the `.` is used to indicate that the database or alias belongs to a composite database.
736
-
Names containing `.` should be quoted using backticks.
737
-
For example, `USE `my.db`` is valid.
750
+
a| The use of unquoted `.` characters in xref:clauses/use.adoc[`USE`] clauses when specifying databases and aliases was deprecated in 5.26, except when `.` indicated that the database or alias belonged to a composite database.
751
+
However, this deprecation was withdrawn in Neo4j 2025.06, and replaced by the following updates in Cypher 25:
752
+
753
+
* xref::deprecations-additions-removals-compatibility.adoc#_graph_reference_removed_name_parts_quoting[Removed support for quoted name parts in graph references]
754
+
755
+
* xref::deprecations-additions-removals-compatibility.adoc#_graph_reference_updated_graph_by_name_quotes[Update to graph functions]
756
+
757
+
This is because the previous quoting rules were inconsistent and ambiguous.
758
+
The rules are clarified and improved in Cypher 25.
759
+
For more information, see xref::values-and-types/graph-references.adoc#rules[Graph reference rules]
738
760
739
761
|===
740
762
@@ -3353,12 +3375,16 @@ label:deprecated[]
3353
3375
CREATE DATABASE databaseName.withDot ...
3354
3376
----
3355
3377
a|
3356
-
Creating a database with dots in the name has been deprecated, instead quote the database name using backticks:
3378
+
Creating a database with . characters was deprecated in 5.0.
3379
+
However, this deprecation was withdrawn in 2025.06, and replaced by the following updates in Cypher 25:
3357
3380
3358
-
[source, cypher, role="noheader"]
3359
-
----
3360
-
CREATE DATABASE `databaseName.withDot` ...
3361
-
----
3381
+
* xref::deprecations-additions-removals-compatibility.adoc#_graph_reference_removed_name_parts_quoting[Removed support for quoted name parts in graph references]
3382
+
3383
+
* xref::deprecations-additions-removals-compatibility.adoc#_graph_reference_updated_graph_by_name_quotes[Update to graph functions]
3384
+
3385
+
This is because the previous quoting rules were inconsistent and ambiguous.
3386
+
The rules are clarified and improved in Cypher 25.
3387
+
For more information, see xref::values-and-types/graph-references.adoc#rules[Graph reference rules]
0 commit comments