Skip to content

Commit 29af359

Browse files
committed
Change person.place to person.LocationCityId to allow explode-edges mapping to work
1 parent 95f3830 commit 29af359

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/scala/ldbc/snb/datagen/io/raw/csv/CsvRowEncoderInstances.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ trait CsvRowEncoderInstances {
2626
dateFormatter.formatDate(person.birthday),
2727
person.`locationIP`,
2828
person.`browserUsed`,
29-
Integer.toString(person.`place`),
29+
Integer.toString(person.`LocationCityId`),
3030
person.`language`,
3131
person.`email`
3232
)

src/main/scala/ldbc/snb/datagen/model/raw.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ object raw {
1818
`birthday`: Long,
1919
`locationIP`: String,
2020
`browserUsed`: String,
21-
`place`: Integer,
21+
`LocationCityId`: Integer,
2222
`language`: String,
2323
`email`: String
2424
) extends RawEntity

0 commit comments

Comments
 (0)