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>
11 lines
303 B
CMake
11 lines
303 B
CMake
function(copy_load_csv_e2e_python_files FILE_NAME)
|
|
copy_e2e_python_files(load_csv ${FILE_NAME})
|
|
endfunction()
|
|
|
|
function(copy_load_csv_e2e_files FILE_NAME)
|
|
copy_e2e_python_files(load_csv ${FILE_NAME})
|
|
endfunction()
|
|
|
|
copy_load_csv_e2e_python_files(load_csv.py)
|
|
copy_load_csv_e2e_files(simple.csv)
|