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
Copy file name to clipboardExpand all lines: modules/ROOT/pages/clauses/transaction-clauses.adoc
+16-15Lines changed: 16 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,28 +34,28 @@ a| The transaction ID. label:default-output[]
34
34
m| STRING
35
35
36
36
m| currentQueryId
37
-
a| The ID of the query currently executing in this transaction, or an empty `STRING` if no query is currently executing. label:default-output[]
37
+
a| The ID of the query currently executing in this transaction, or `null` if no query is currently executing. label:default-output[]
38
38
m| STRING
39
39
40
40
m| connectionId
41
41
a| The ID of the database connection attached to the transaction or an empty `STRING` for embedded connections. label:default-output[]
42
42
m| STRING
43
43
44
44
m| clientAddress
45
-
a| The client address of the connection issuing the transaction or an empty `STRING` if unavailable. label:default-output[]
45
+
a| The client address of the connection issuing the transaction or `null` if unavailable. label:default-output[]
46
46
m| STRING
47
47
48
48
m| username
49
49
a| The username of the user executing the transaction. label:default-output[]
50
50
m| STRING
51
51
52
52
m| currentQuery
53
-
a| The query text of the query currently executing in this transaction, or an empty `STRING` if no query is currently executing. label:default-output[]
53
+
a| The query text of the query currently executing in this transaction, or `null` if no query is currently executing. label:default-output[]
54
54
m| STRING
55
55
56
56
m| startTime
57
57
a| The time at which the transaction was started. label:default-output[]
58
-
m| STRING
58
+
m| ZONED DATETIME
59
59
60
60
m| status
61
61
a| The current status of the transaction (`Terminated`, `Blocked`, `Closing`, or `Running`). label:default-output[]
@@ -67,7 +67,7 @@ m| DURATION
67
67
68
68
m| outerTransactionId
69
69
a|
70
-
The ID of this transaction's outer transaction, if such exists, otherwise an empty `STRING`.
70
+
The ID of this transaction's outer transaction, if such exists, otherwise `null`.
71
71
For details, see xref:subqueries/subqueries-in-transactions.adoc[`CALL { ... } IN TRANSACTIONS`].
72
72
m| STRING
73
73
@@ -76,27 +76,28 @@ a| Any metadata associated with the transaction, or an empty map if there is non
76
76
m| MAP
77
77
78
78
m| parameters
79
-
a| A map containing all the parameters used by the query currently executing in this transaction, or an empty map if no query is currently executing.
79
+
a| A map containing all the parameters used by the query currently executing in this transaction, or `null` if no query is currently executing.
80
80
m| MAP
81
81
82
82
m| planner
83
83
a|
84
-
The name of the Cypher planner used to plan the query currently executing in this transaction, or an empty `STRING` if no query is currently executing.
84
+
The name of the Cypher planner used to plan the query currently executing in this transaction, or `null` if no query is currently executing.
85
85
For details, see xref::planning-and-tuning/query-tuning.adoc#cypher-planner[Cypher planner].
86
86
m| STRING
87
87
88
88
m| runtime
89
-
a| The name of the Cypher runtime used by the query currently executing in this transaction, or an empty `STRING` if no query is currently executing. For details, see xref::planning-and-tuning/runtimes/index.adoc[Cypher runtime].
89
+
a| The name of the Cypher runtime used by the query currently executing in this transaction, or `null` if no query is currently executing.
90
+
For details, see xref::planning-and-tuning/runtimes/index.adoc[Cypher runtime].
90
91
m| STRING
91
92
92
93
m| indexes
93
-
a| The indexes utilised by the query currently executing in this transaction, or an empty list if no query is currently executing.
94
+
a| The indexes utilised by the query currently executing in this transaction, or `null` if no query is currently executing.
94
95
m| LIST<MAP>
95
96
96
97
97
98
m| currentQueryStartTime
98
-
a| The time at which the query currently executing in this transaction was started, or an empty `STRING` if no query is currently executing.
99
-
m| STRING
99
+
a| The time at which the query currently executing in this transaction was started, or `null` if no query is currently executing.
100
+
m| ZONED DATETIME
100
101
101
102
m| protocol
102
103
a|
@@ -111,7 +112,7 @@ m| STRING
111
112
112
113
113
114
m| currentQueryStatus
114
-
a| The current status of the query currently executing in this transaction (`parsing`, `planning`, `planned`, `running`, or `waiting`), or an empty `STRING` if no query is currently executing.
115
+
a| The current status of the query currently executing in this transaction (`parsing`, `planning`, `planned`, `running`, or `waiting`), or `null` if no query is currently executing.
0 commit comments