File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ const (
33
33
// AccessModeWrite tells the driver to use a connection to 'Leader'
34
34
AccessModeWrite AccessMode = 0
35
35
// AccessModeRead tells the driver to use a connection to one of the 'Follower' or 'Read Replica'.
36
- AccessModeRead = 1
36
+ AccessModeRead AccessMode = 1
37
37
)
38
38
39
39
// Driver represents a pool(s) of connections to a neo4j server or cluster. It's
Original file line number Diff line number Diff line change @@ -30,13 +30,13 @@ const (
30
30
// StatementTypeUnknown identifies an unknown statement type
31
31
StatementTypeUnknown StatementType = 0
32
32
// StatementTypeReadOnly identifies a read-only statement
33
- StatementTypeReadOnly = 1
33
+ StatementTypeReadOnly StatementType = 1
34
34
// StatementTypeReadWrite identifies a read-write statement
35
- StatementTypeReadWrite = 2
35
+ StatementTypeReadWrite StatementType = 2
36
36
// StatementTypeWriteOnly identifies a write-only statement
37
- StatementTypeWriteOnly = 3
37
+ StatementTypeWriteOnly StatementType = 3
38
38
// StatementTypeSchemaWrite identifies a schema-write statement
39
- StatementTypeSchemaWrite = 4
39
+ StatementTypeSchemaWrite StatementType = 4
40
40
)
41
41
42
42
// ResultSummary contains information about statement execution.
You can’t perform that action at this time.
0 commit comments