05cc35bf93
Add NULLIF command which turns all row values corresponding to the string to the nullif character sequence.
27 lines
730 B
YAML
27 lines
730 B
YAML
nullif_cluster: &nullif_cluster
|
|
cluster:
|
|
main:
|
|
args: ["--bolt-port", "7687", "--log-level=TRACE"]
|
|
log_file: "load_csv_log_file.txt"
|
|
validation_queries: []
|
|
|
|
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:
|
|
- name: "LOAD CSV nullif"
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
args: ["load_csv/load_csv_nullif.py"]
|
|
<<: *nullif_cluster
|
|
- name: "MATCH + LOAD CSV"
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
args: ["load_csv/load_csv.py"]
|
|
<<: *load_csv_cluster
|