Skip to content

Commit b86cb35

Browse files
committed
apply suggestions from review
1 parent f705abe commit b86cb35

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

modules/ROOT/pages/tools/neo4j-admin/neo4j-admin-import.adoc

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1430,8 +1430,8 @@ Where `import/node_data.csv` contains multiline fields, such as:
14301430

14311431
[source, csv, role=nocopy]
14321432
----
1433-
id,name,birthDate,birthYear, birthLocation, description
1434-
1, John, October 1st, 2000, New York, This is a multiline
1433+
id,name,birthDate,birthYear,birthLocation,description
1434+
1,John,October 1st,2000,New York,This is a multiline
14351435
description
14361436
----
14371437

@@ -1443,7 +1443,8 @@ Therefore, use it with care, especially with large imports.
14431443

14441444
Starting from 5.26, the `--multiline-fields` option can be used in conjunction with the `--multiline-fields-format` option, which controls the parsing of the input source.
14451445
The default value `v1` uses the current processing method for multiline fields.
1446-
Option `v2` allows you to specify a list of files (regular expressions allowed) that contain multiline fields and are processed much more performant, with the restriction that text fields must be quoted.
1446+
Option `v2` enables the specification of a list of files, including regular expressions, which contain multiline fields.
1447+
These files are processed more efficiently, with the requirement that text fields must be quoted.
14471448
Both formats have the restriction that the entirety of every row must be able to fit into the buffer (default is 4m).
14481449
The `--multiline-fields-format` option is available in the `full` and `incremental` import modes.
14491450

@@ -1462,8 +1463,8 @@ Where `import/node_data.csv` contains multiline fields, such as:
14621463

14631464
[source, csv, role=nocopy]
14641465
----
1465-
id,name,birthDate,birthYear, birthLocation, description
1466-
1, John, October 1st, 2000, New York, This is a multiline
1466+
id,name,birthDate,birthYear,birthLocation,description
1467+
1,John,October 1st,2000,New York,This is a multiline
14671468
description
14681469
----
14691470
======
@@ -1479,8 +1480,8 @@ Where `import/node_data.csv` contains multiline fields, such as:
14791480

14801481
[source, csv, role=nocopy]
14811482
----
1482-
id,name,birthDate,birthYear, birthLocation, description
1483-
1,"John","October 1st", "2000","New York", "This is a multiline
1483+
id,name,birthDate,birthYear,birthLocation,description
1484+
1,"John","October 1st",2000,"New York","This is a multiline
14841485
description"
14851486
----
14861487
======

0 commit comments

Comments
 (0)