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`.
51
51
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].
52
52
53
+
a|
54
+
[#_graph_reference_removed_name_parts_quoting]
55
+
label:functionality[]
56
+
label:removed[]
57
+
[source, cypher, role=noheader]
58
+
----
59
+
CREATE ALIAS composite.`1` FOR DATABASE neo4j
60
+
----
61
+
[source, cypher, role=noheader]
62
+
----
63
+
USE composite.`1`
64
+
----
65
+
| Graph references with separately backticked name parts have been removed. Use parameters or backtick the entire name, e.g. `USE `composite.1``
66
+
53
67
54
68
a|
55
69
label:functionality[]
@@ -277,6 +291,7 @@ Several xref:clauses/transaction-clauses.adoc#query-listing-transactions[`SHOW
277
291
* 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.
278
292
279
293
a|
294
+
[#_graph_reference_updated_graph_by_name_quotes]
280
295
label:functionality[]
281
296
label:updated[]
282
297
[source, cypher, role="noheader"]
@@ -731,9 +746,18 @@ label:deprecated[]
731
746
USE my.db ...
732
747
733
748
----
734
-
| 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.
735
-
Names containing `.` should be quoted using backticks.
736
-
For example, `USE `my.db`` is valid.
749
+
| In xref:clauses/use.adoc[`USE`] clauses, databases and aliases with unquoted `.` are deprecated in versions 5.26 to 2025.05 unless the `.` is used to indicate that the database or alias belongs to a composite database.
750
+
751
+
However, starting from version 2025.06, this deprecation has been withdrawn, and replaced by two new deprecations.
752
+
The reason for this change is that the previous quoting rules have been found inconsistent and ambiguous, and will be improved starting from Cypher 25.
753
+
For more information, see:
754
+
755
+
* xref::deprecations-additions-removals-compatibility.adoc#_graph_reference_removed_name_parts_quoting[removed support for quoted name parts in graph references]
756
+
757
+
* xref::deprecations-additions-removals-compatibility.adoc#_graph_reference_updated_graph_by_name_quotes[update to graph functions]
Creating a database with dots in the name has been deprecated, instead quote the database name using backticks:
3379
+
Creating a database with dots in the name has been deprecated in versions 5.26 to 2025.05.
3380
+
However, starting from version 2025.06, this deprecation has been withdrawn, and replaced by two new deprecations.
3381
+
The reason for this change is that the previous quoting rules have been found inconsistent and ambiguous, and will be improved starting from Cypher 25.
3382
+
For more information, see:
3356
3383
3357
-
[source, cypher, role="noheader"]
3358
-
----
3359
-
CREATE DATABASE `databaseName.withDot` ...
3360
-
----
3384
+
* xref::deprecations-additions-removals-compatibility.adoc#_graph_reference_removed_name_parts_quoting[removed support for quoted name parts in graph references]
3385
+
3386
+
* xref::deprecations-additions-removals-compatibility.adoc#_graph_reference_updated_graph_by_name_quotes[update to graph functions]
0 commit comments