Skip to content

Commit

Permalink
fix serial
Browse files Browse the repository at this point in the history
  • Loading branch information
aziz-mu committed Aug 9, 2023
1 parent baf9e56 commit 4455354
Show file tree
Hide file tree
Showing 557 changed files with 263,117 additions and 59,407 deletions.
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ if(MSVC)
# For now, hardcode _AMD64_
# CMAKE_GENERATOR_PLATFORM can be used for visual studio builds, but not for ninja
add_compile_definitions(_AMD64_)
# Non-english windows system may use other encodings other than utf-8 (e.g. Chinese use GBK).
add_compile_options("/utf-8")
endif()
if(CMAKE_BUILD_TYPE MATCHES Release)
if(MSVC)
Expand Down
2 changes: 1 addition & 1 deletion dataset/copy-test/node/csv/schema.cypher
Original file line number Diff line number Diff line change
@@ -1 +1 @@
create node table tableOfTypes (id INT64, int64Column INT64, doubleColumn DOUBLE, booleanColumn BOOLEAN, dateColumn DATE, timestampColumn TIMESTAMP, stringColumn STRING, PRIMARY KEY (id));
create node table tableOfTypes (id INT64, int64Column INT64, doubleColumn DOUBLE, booleanColumn BOOLEAN, dateColumn DATE, timestampColumn TIMESTAMP, stringColumn STRING, listOfInt INT64[], PRIMARY KEY (id));
100,000 changes: 50,000 additions & 50,000 deletions dataset/copy-test/node/csv/types_50k.csv

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions dataset/large-serial/copy.cypher
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CALL threads=2;
COPY serialtable FROM ["dataset/large-serial/serialtable0.csv", "dataset/large-serial/serialtable1.csv", "dataset/large-serial/serialtable2.csv", "dataset/large-serial/serialtable3.csv", "dataset/large-serial/serialtable4.csv"];
1 change: 1 addition & 0 deletions dataset/large-serial/schema.cypher
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
create node table serialtable (ID SERIAL, ID2 INT32, PRIMARY KEY (ID));
Loading

0 comments on commit 4455354

Please sign in to comment.