63f8298033
* update profile query to use poolresource * Optimize update of indexes * Add ignore empty strings to load csv * Add operator changes to support handling of nulls * Store chunks in memory pools ordered * Use same max block per chunks number * Remove redundant return statement * add hacky cached solution * change map to set * remove memory * Add match load csv invalid behaviour commit * Accept input on LOAD CSV * Ommit changes not tied to the PR * Add tests for match + load csv * Add gqlalchemy installation for e2e tests * Modify setup script to update packages * Revert gqlalchemy to 1.3.3 * Revert gqlalchemy to 1.3.3 * Address PR review comments * Ommit semicolon --------- Co-authored-by: antoniofilipovic <filipovicantonio1998@gmail.com> Co-authored-by: János Benjamin Antal <benjamin.antal@memgraph.io>
16 lines
415 B
YAML
16 lines
415 B
YAML
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: "MATCH + LOAD CSV"
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
args: ["load_csv/load_csv.py"]
|
|
<<: *load_csv_cluster
|