2023-06-21 20:50:46 +08:00
|
|
|
nullif_cluster: &nullif_cluster
|
|
|
|
cluster:
|
|
|
|
main:
|
|
|
|
args: ["--bolt-port", "7687", "--log-level=TRACE"]
|
|
|
|
log_file: "load_csv_log_file.txt"
|
|
|
|
validation_queries: []
|
|
|
|
|
2023-06-21 17:13:40 +08:00
|
|
|
load_csv_cluster: &load_csv_cluster
|
|
|
|
cluster:
|
|
|
|
main:
|
|
|
|
args: ["--bolt-port", "7687", "--log-level=TRACE"]
|
|
|
|
log_file: "load_csv_log_file.txt"
|
|
|
|
setup_queries:
|
|
|
|
- "CREATE (n {prop: 1});"
|
|
|
|
- "CREATE (n {prop: 2});"
|
|
|
|
validation_queries: []
|
|
|
|
|
|
|
|
workloads:
|
2023-06-21 20:50:46 +08:00
|
|
|
- name: "LOAD CSV nullif"
|
|
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
|
|
args: ["load_csv/load_csv_nullif.py"]
|
|
|
|
<<: *nullif_cluster
|
2023-06-21 17:13:40 +08:00
|
|
|
- name: "MATCH + LOAD CSV"
|
|
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
|
|
args: ["load_csv/load_csv.py"]
|
|
|
|
<<: *load_csv_cluster
|