Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
ray6080 committed Apr 13, 2023
1 parent 742c00d commit 1df98b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/python_api/test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def init_tiny_snb(tmp_path):
conn.execute("create node table organisation (ID INT64, name STRING, orgCode INT64, mark DOUBLE, score INT64, "
"history STRING, licenseValidInterval INTERVAL, rating DOUBLE, PRIMARY KEY (ID))")
conn.execute('COPY organisation FROM "../../../dataset/tinysnb/vOrganisation.csv"')
conn.execute('CREATE NODE TABLE movies (name STRING, PRIMARY KEY (name))')
conn.execute('CREATE NODE TABLE movies (name STRING, length INT32, note STRING, PRIMARY KEY (name))')
conn.execute('COPY movies FROM "../../../dataset/tinysnb/vMovies.csv"')
conn.execute('create rel table workAt (FROM person TO organisation, year INT64, MANY_ONE)')
conn.execute('COPY workAt FROM "../../../dataset/tinysnb/eWorkAt.csv"')
Expand Down

0 comments on commit 1df98b2

Please sign in to comment.