├── .circleci └── config.yml ├── .gitignore ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── cypher ├── q1.cypher ├── q2.cypher ├── q3.cypher ├── q4.cypher ├── q5.cypher ├── q6.cypher ├── q7.cypher ├── q8.cypher ├── q9.cypher └── schema.cypher ├── data-generation.md ├── data ├── .gitignore ├── README.md ├── rdm │ └── .gitignore ├── social-network-sf0.003-merged-fk │ ├── City.csv │ ├── Comment.csv │ ├── Comment_hasTag_Tag.csv │ ├── Company.csv │ ├── Continent.csv │ ├── Country.csv │ ├── Forum.csv │ ├── Forum_hasMember_Person.csv │ ├── Forum_hasTag_Tag.csv │ ├── Person.csv │ ├── Person_hasInterest_Tag.csv │ ├── Person_knows_Person.csv │ ├── Person_likes_Comment.csv │ ├── Person_likes_Post.csv │ ├── Person_studyAt_University.csv │ ├── Person_workAt_Company.csv │ ├── Post.csv │ ├── Post_hasTag_Tag.csv │ ├── Tag.csv │ ├── TagClass.csv │ └── University.csv ├── social-network-sf0.003-projected-fk │ ├── City.csv │ ├── City_isPartOf_Country.csv │ ├── Comment.csv │ ├── Comment_hasCreator_Person.csv │ ├── Comment_hasTag_Tag.csv │ ├── Comment_isLocatedIn_Country.csv │ ├── Comment_replyOf_Comment.csv │ ├── Comment_replyOf_Post.csv │ ├── Company.csv │ ├── Company_isLocatedIn_Country.csv │ ├── Continent.csv │ ├── Country.csv │ ├── Country_isPartOf_Continent.csv │ ├── Forum.csv │ ├── Forum_containerOf_Post.csv │ ├── Forum_hasMember_Person.csv │ ├── Forum_hasModerator_Person.csv │ ├── Forum_hasTag_Tag.csv │ ├── Person.csv │ ├── Person_hasInterest_Tag.csv │ ├── Person_isLocatedIn_City.csv │ ├── Person_knows_Person.csv │ ├── Person_likes_Comment.csv │ ├── Person_likes_Post.csv │ ├── Person_studyAt_University.csv │ ├── Person_workAt_Company.csv │ ├── Post.csv │ ├── Post_hasCreator_Person.csv │ ├── Post_hasTag_Tag.csv │ ├── Post_isLocatedIn_Country.csv │ ├── Tag.csv │ ├── TagClass.csv │ ├── TagClass_isSubclassOf_TagClass.csv │ ├── Tag_hasType_TagClass.csv │ ├── University.csv │ └── University_isLocatedIn_City.csv ├── social-network-sfexample-merged-fk │ ├── City.csv │ ├── Comment.csv │ ├── Comment_hasTag_Tag.csv │ ├── Company.csv │ ├── Continent.csv │ ├── Country.csv │ ├── Forum.csv │ ├── Forum_hasMember_Person.csv │ ├── Forum_hasTag_Tag.csv │ ├── Person.csv │ ├── Person_hasInterest_Tag.csv │ ├── Person_knows_Person.csv │ ├── Person_likes_Comment.csv │ ├── Person_likes_Post.csv │ ├── Person_studyAt_University.csv │ ├── Person_workAt_Company.csv │ ├── Post.csv │ ├── Post_hasTag_Tag.csv │ ├── Tag.csv │ ├── TagClass.csv │ └── University.csv ├── social-network-sfexample-ntriples │ └── .gitignore └── social-network-sfexample-projected-fk │ ├── City.csv │ ├── City_isPartOf_Country.csv │ ├── Comment.csv │ ├── Comment_hasCreator_Person.csv │ ├── Comment_hasTag_Tag.csv │ ├── Comment_isLocatedIn_Country.csv │ ├── Comment_replyOf_Comment.csv │ ├── Comment_replyOf_Post.csv │ ├── Company.csv │ ├── Company_isLocatedIn_Country.csv │ ├── Continent.csv │ ├── Country.csv │ ├── Country_isPartOf_Continent.csv │ ├── Forum.csv │ ├── Forum_containerOf_Post.csv │ ├── Forum_hasMember_Person.csv │ ├── Forum_hasModerator_Person.csv │ ├── Forum_hasTag_Tag.csv │ ├── Person.csv │ ├── Person_hasInterest_Tag.csv │ ├── Person_isLocatedIn_City.csv │ ├── Person_knows_Person.csv │ ├── Person_likes_Comment.csv │ ├── Person_likes_Post.csv │ ├── Person_studyAt_University.csv │ ├── Person_workAt_Company.csv │ ├── Post.csv │ ├── Post_hasCreator_Person.csv │ ├── Post_hasTag_Tag.csv │ ├── Post_isLocatedIn_Country.csv │ ├── Tag.csv │ ├── TagClass.csv │ ├── TagClass_isSubclassOf_TagClass.csv │ ├── Tag_hasType_TagClass.csv │ ├── University.csv │ └── University_isLocatedIn_City.csv ├── duckdb ├── README.md ├── client.py ├── init-and-load.sh ├── load.py ├── load.sh ├── post-load.sh ├── pre-load.sh ├── run.sh ├── scratch │ └── .gitignore ├── stop.sh └── vars.sh ├── duckpgq ├── README.md ├── client.py ├── init-and-load.sh ├── load.py ├── run.sh ├── scratch │ └── .gitignore └── stop.sh ├── expected-output └── expected-output.csv ├── hyper ├── .gitignore ├── README.md ├── build.sh ├── client.py ├── hyper-binaries │ ├── .gitignore │ └── Dockerfile ├── init-and-load.sh ├── load.sh ├── post-load.sh ├── pre-load.sh ├── run.sh ├── scratch │ ├── mydb │ └── test.sql ├── start.sh ├── stop.sh └── vars.sh ├── kuzu ├── README.md ├── client.py ├── convert.sh ├── init-and-load.sh ├── load.py ├── load.sh ├── post-load.sh ├── pre-load.sh ├── q1.cypher ├── q2.cypher ├── q3.cypher ├── q4.cypher ├── q5.cypher ├── q6.cypher ├── q7.cypher ├── q8.cypher ├── q9.cypher ├── run.sh ├── schema.cypher ├── scratch │ └── .gitignore ├── scripts │ ├── .gitignore │ └── install-dependencies.sh ├── stop.sh └── vars.sh ├── memgraph ├── .gitignore ├── README.md ├── client.py ├── convert-csvs.sh ├── index.py ├── init-and-load.sh ├── load.py ├── load.sh ├── load2.sh ├── post-load.sh ├── pre-load.sh ├── q1.cypher ├── q2.cypher ├── q3.cypher ├── q4.cypher ├── q5.cypher ├── q6.cypher ├── q7.cypher ├── q8.cypher ├── q9.cypher ├── run.sh ├── scratch │ └── .gitignore ├── start.sh ├── stop.sh └── vars.sh ├── mysql ├── client.py ├── init-and-load.sh ├── load.sh ├── post-load.sh ├── pre-load.sh ├── run.sh ├── snb-load.sql ├── start.sh ├── stop.sh └── vars.sh ├── neo4j ├── client.py ├── init-and-load.sh ├── load.sh ├── post-load.sh ├── pre-load.sh ├── run.sh ├── scratch │ └── .gitignore ├── start.sh ├── stop.sh └── vars.sh ├── patterns.png ├── pgq ├── drop.sql ├── q1.sql ├── q2.sql ├── q3.sql ├── q4.sql ├── q5.sql ├── q6.sql ├── q7.sql ├── q8.sql ├── q9.sql └── snb-load.sql ├── postgres ├── .gitignore ├── README.md ├── client.py ├── connect.sh ├── init-and-load.sh ├── load.sh ├── post-load.sh ├── pre-load.sh ├── run.sh ├── start.sh ├── stop.sh ├── test-db-connection.py └── vars.sh ├── results └── .gitignore ├── scripts ├── .gitignore ├── benchmark.sh ├── cross-validate-against-expected.py ├── download-data-set.sh ├── download-merged-fk-data-sets.sh ├── download-projected-fk-data-sets.sh ├── generate-data-sets.sh ├── headers.txt ├── import-vars.sh ├── install-convenience-packages.sh ├── install-dependencies.sh ├── my.csv ├── permutations.py ├── plot.py ├── preprocess.sh ├── validate.py └── validate.sh ├── sql ├── drop.sql ├── q1.sql ├── q2.sql ├── q3.sql ├── q4.sql ├── q5.sql ├── q6.sql ├── q7.sql ├── q8.sql ├── q9.sql ├── schema.sql ├── snb-load.sql └── views.sql ├── tmpfile.csv └── umbra ├── README.md ├── connect.sh ├── create-db.sh ├── docker-load.sh ├── force-stop.sh ├── init-and-load.sh ├── load.sh ├── logs.sh ├── post-load.sh ├── pre-load.sh ├── restart.sh ├── run.sh ├── scratch └── .gitignore ├── sql ├── create-role.sql └── schema.sql ├── start.sh ├── stop.sh └── vars.sh /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .DS_Store 3 | .vscode/ 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/README.md -------------------------------------------------------------------------------- /cypher/q1.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/cypher/q1.cypher -------------------------------------------------------------------------------- /cypher/q2.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/cypher/q2.cypher -------------------------------------------------------------------------------- /cypher/q3.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/cypher/q3.cypher -------------------------------------------------------------------------------- /cypher/q4.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/cypher/q4.cypher -------------------------------------------------------------------------------- /cypher/q5.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/cypher/q5.cypher -------------------------------------------------------------------------------- /cypher/q6.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/cypher/q6.cypher -------------------------------------------------------------------------------- /cypher/q7.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/cypher/q7.cypher -------------------------------------------------------------------------------- /cypher/q8.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/cypher/q8.cypher -------------------------------------------------------------------------------- /cypher/q9.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/cypher/q9.cypher -------------------------------------------------------------------------------- /cypher/schema.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/cypher/schema.cypher -------------------------------------------------------------------------------- /data-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data-generation.md -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/README.md -------------------------------------------------------------------------------- /data/rdm/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/City.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/City.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/Comment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/Comment.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/Comment_hasTag_Tag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/Comment_hasTag_Tag.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/Company.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/Company.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/Continent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/Continent.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/Country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/Country.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/Forum.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/Forum.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/Forum_hasMember_Person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/Forum_hasMember_Person.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/Forum_hasTag_Tag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/Forum_hasTag_Tag.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/Person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/Person.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/Person_hasInterest_Tag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/Person_hasInterest_Tag.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/Person_knows_Person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/Person_knows_Person.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/Person_likes_Comment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/Person_likes_Comment.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/Person_likes_Post.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/Person_likes_Post.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/Person_studyAt_University.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/Person_studyAt_University.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/Person_workAt_Company.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/Person_workAt_Company.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/Post.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/Post.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/Post_hasTag_Tag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/Post_hasTag_Tag.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/Tag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/Tag.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/TagClass.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/TagClass.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-merged-fk/University.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-merged-fk/University.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/City.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/City.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/City_isPartOf_Country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/City_isPartOf_Country.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Comment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Comment.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Comment_hasCreator_Person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Comment_hasCreator_Person.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Comment_hasTag_Tag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Comment_hasTag_Tag.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Comment_isLocatedIn_Country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Comment_isLocatedIn_Country.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Comment_replyOf_Comment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Comment_replyOf_Comment.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Comment_replyOf_Post.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Comment_replyOf_Post.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Company.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Company.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Company_isLocatedIn_Country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Company_isLocatedIn_Country.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Continent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Continent.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Country.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Country_isPartOf_Continent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Country_isPartOf_Continent.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Forum.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Forum.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Forum_containerOf_Post.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Forum_containerOf_Post.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Forum_hasMember_Person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Forum_hasMember_Person.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Forum_hasModerator_Person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Forum_hasModerator_Person.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Forum_hasTag_Tag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Forum_hasTag_Tag.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Person.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Person_hasInterest_Tag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Person_hasInterest_Tag.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Person_isLocatedIn_City.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Person_isLocatedIn_City.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Person_knows_Person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Person_knows_Person.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Person_likes_Comment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Person_likes_Comment.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Person_likes_Post.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Person_likes_Post.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Person_studyAt_University.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Person_studyAt_University.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Person_workAt_Company.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Person_workAt_Company.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Post.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Post.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Post_hasCreator_Person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Post_hasCreator_Person.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Post_hasTag_Tag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Post_hasTag_Tag.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Post_isLocatedIn_Country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Post_isLocatedIn_Country.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Tag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Tag.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/TagClass.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/TagClass.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/TagClass_isSubclassOf_TagClass.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/TagClass_isSubclassOf_TagClass.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/Tag_hasType_TagClass.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/Tag_hasType_TagClass.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/University.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/University.csv -------------------------------------------------------------------------------- /data/social-network-sf0.003-projected-fk/University_isLocatedIn_City.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sf0.003-projected-fk/University_isLocatedIn_City.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/City.csv: -------------------------------------------------------------------------------- 1 | id|ispartof_country 2 | 4|2 3 | 5|3 4 | 6|3 5 | -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/Comment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-merged-fk/Comment.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/Comment_hasTag_Tag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-merged-fk/Comment_hasTag_Tag.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/Company.csv: -------------------------------------------------------------------------------- 1 | id|islocatedin_country 2 | 2|3 3 | -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/Continent.csv: -------------------------------------------------------------------------------- 1 | id 2 | 1 3 | -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/Country.csv: -------------------------------------------------------------------------------- 1 | id|ispartof_continent 2 | 2|1 3 | 3|1 4 | -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/Forum.csv: -------------------------------------------------------------------------------- 1 | id|hasmoderator_person 2 | 1|2 3 | 2|3 4 | -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/Forum_hasMember_Person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-merged-fk/Forum_hasMember_Person.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/Forum_hasTag_Tag.csv: -------------------------------------------------------------------------------- 1 | id|hastag_tag 2 | 1|1 3 | -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/Person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-merged-fk/Person.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/Person_hasInterest_Tag.csv: -------------------------------------------------------------------------------- 1 | id|hasinterest_tag 2 | 2|1 3 | 4|2 4 | -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/Person_knows_Person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-merged-fk/Person_knows_Person.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/Person_likes_Comment.csv: -------------------------------------------------------------------------------- 1 | id|likes_comment 2 | 2|2 3 | 2|3 4 | 3|4 5 | -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/Person_likes_Post.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-merged-fk/Person_likes_Post.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/Person_studyAt_University.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-merged-fk/Person_studyAt_University.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/Person_workAt_Company.csv: -------------------------------------------------------------------------------- 1 | id|workat_company 2 | 1|2 3 | -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/Post.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-merged-fk/Post.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/Post_hasTag_Tag.csv: -------------------------------------------------------------------------------- 1 | id|hastag_tag 2 | 10|1 3 | 20|2 4 | -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/Tag.csv: -------------------------------------------------------------------------------- 1 | id|hastype_tagclass 2 | 1|2 3 | 2|3 4 | -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/TagClass.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-merged-fk/TagClass.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-merged-fk/University.csv: -------------------------------------------------------------------------------- 1 | id|islocatedin_city 2 | 1|5 3 | -------------------------------------------------------------------------------- /data/social-network-sfexample-ntriples/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/City.csv: -------------------------------------------------------------------------------- 1 | id:ID(City) 2 | 4 3 | 5 4 | 6 5 | -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/City_isPartOf_Country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/City_isPartOf_Country.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Comment.csv: -------------------------------------------------------------------------------- 1 | id:ID(Comment) 2 | 1 3 | 2 4 | 3 5 | 4 6 | 5 7 | 6 8 | -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Comment_hasCreator_Person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Comment_hasCreator_Person.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Comment_hasTag_Tag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Comment_hasTag_Tag.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Comment_isLocatedIn_Country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Comment_isLocatedIn_Country.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Comment_replyOf_Comment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Comment_replyOf_Comment.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Comment_replyOf_Post.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Comment_replyOf_Post.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Company.csv: -------------------------------------------------------------------------------- 1 | id:ID(Company) 2 | 2 3 | -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Company_isLocatedIn_Country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Company_isLocatedIn_Country.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Continent.csv: -------------------------------------------------------------------------------- 1 | id:ID(Continent) 2 | 1 3 | -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Country.csv: -------------------------------------------------------------------------------- 1 | id:ID(Country) 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Country_isPartOf_Continent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Country_isPartOf_Continent.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Forum.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum) 2 | 1 3 | 2 4 | -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Forum_containerOf_Post.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Forum_containerOf_Post.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Forum_hasMember_Person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Forum_hasMember_Person.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Forum_hasModerator_Person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Forum_hasModerator_Person.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Forum_hasTag_Tag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Forum_hasTag_Tag.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Person.csv: -------------------------------------------------------------------------------- 1 | id:ID(Person) 2 | 1 3 | 2 4 | 3 5 | 4 6 | 5 7 | -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Person_hasInterest_Tag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Person_hasInterest_Tag.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Person_isLocatedIn_City.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Person_isLocatedIn_City.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Person_knows_Person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Person_knows_Person.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Person_likes_Comment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Person_likes_Comment.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Person_likes_Post.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Person_likes_Post.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Person_studyAt_University.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Person_studyAt_University.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Person_workAt_Company.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Person_workAt_Company.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Post.csv: -------------------------------------------------------------------------------- 1 | id:ID(Post) 2 | 10 3 | 20 4 | -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Post_hasCreator_Person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Post_hasCreator_Person.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Post_hasTag_Tag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Post_hasTag_Tag.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Post_isLocatedIn_Country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Post_isLocatedIn_Country.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Tag.csv: -------------------------------------------------------------------------------- 1 | id:ID(Tag) 2 | 1 3 | 2 4 | -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/TagClass.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass) 2 | 1 3 | 2 4 | 3 5 | -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/TagClass_isSubclassOf_TagClass.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/TagClass_isSubclassOf_TagClass.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/Tag_hasType_TagClass.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/Tag_hasType_TagClass.csv -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/University.csv: -------------------------------------------------------------------------------- 1 | id:ID(University) 2 | 1 3 | -------------------------------------------------------------------------------- /data/social-network-sfexample-projected-fk/University_isLocatedIn_City.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/data/social-network-sfexample-projected-fk/University_isLocatedIn_City.csv -------------------------------------------------------------------------------- /duckdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/duckdb/README.md -------------------------------------------------------------------------------- /duckdb/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/duckdb/client.py -------------------------------------------------------------------------------- /duckdb/init-and-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/duckdb/init-and-load.sh -------------------------------------------------------------------------------- /duckdb/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/duckdb/load.py -------------------------------------------------------------------------------- /duckdb/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/duckdb/load.sh -------------------------------------------------------------------------------- /duckdb/post-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/duckdb/post-load.sh -------------------------------------------------------------------------------- /duckdb/pre-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/duckdb/pre-load.sh -------------------------------------------------------------------------------- /duckdb/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/duckdb/run.sh -------------------------------------------------------------------------------- /duckdb/scratch/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /duckdb/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/duckdb/stop.sh -------------------------------------------------------------------------------- /duckdb/vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/duckdb/vars.sh -------------------------------------------------------------------------------- /duckpgq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/duckpgq/README.md -------------------------------------------------------------------------------- /duckpgq/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/duckpgq/client.py -------------------------------------------------------------------------------- /duckpgq/init-and-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/duckpgq/init-and-load.sh -------------------------------------------------------------------------------- /duckpgq/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/duckpgq/load.py -------------------------------------------------------------------------------- /duckpgq/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/duckpgq/run.sh -------------------------------------------------------------------------------- /duckpgq/scratch/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /duckpgq/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/duckpgq/stop.sh -------------------------------------------------------------------------------- /expected-output/expected-output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/expected-output/expected-output.csv -------------------------------------------------------------------------------- /hyper/.gitignore: -------------------------------------------------------------------------------- 1 | *.tar.xz 2 | -------------------------------------------------------------------------------- /hyper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/hyper/README.md -------------------------------------------------------------------------------- /hyper/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/hyper/build.sh -------------------------------------------------------------------------------- /hyper/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/hyper/client.py -------------------------------------------------------------------------------- /hyper/hyper-binaries/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !Dockerfile 4 | -------------------------------------------------------------------------------- /hyper/hyper-binaries/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/hyper/hyper-binaries/Dockerfile -------------------------------------------------------------------------------- /hyper/init-and-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/hyper/init-and-load.sh -------------------------------------------------------------------------------- /hyper/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/hyper/load.sh -------------------------------------------------------------------------------- /hyper/post-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/hyper/post-load.sh -------------------------------------------------------------------------------- /hyper/pre-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/hyper/pre-load.sh -------------------------------------------------------------------------------- /hyper/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/hyper/run.sh -------------------------------------------------------------------------------- /hyper/scratch/mydb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/hyper/scratch/mydb -------------------------------------------------------------------------------- /hyper/scratch/test.sql: -------------------------------------------------------------------------------- 1 | SELECT 42 AS x 2 | -------------------------------------------------------------------------------- /hyper/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/hyper/start.sh -------------------------------------------------------------------------------- /hyper/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/hyper/stop.sh -------------------------------------------------------------------------------- /hyper/vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/hyper/vars.sh -------------------------------------------------------------------------------- /kuzu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/README.md -------------------------------------------------------------------------------- /kuzu/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/client.py -------------------------------------------------------------------------------- /kuzu/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/convert.sh -------------------------------------------------------------------------------- /kuzu/init-and-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/init-and-load.sh -------------------------------------------------------------------------------- /kuzu/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/load.py -------------------------------------------------------------------------------- /kuzu/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/load.sh -------------------------------------------------------------------------------- /kuzu/post-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/post-load.sh -------------------------------------------------------------------------------- /kuzu/pre-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/pre-load.sh -------------------------------------------------------------------------------- /kuzu/q1.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/q1.cypher -------------------------------------------------------------------------------- /kuzu/q2.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/q2.cypher -------------------------------------------------------------------------------- /kuzu/q3.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/q3.cypher -------------------------------------------------------------------------------- /kuzu/q4.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/q4.cypher -------------------------------------------------------------------------------- /kuzu/q5.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/q5.cypher -------------------------------------------------------------------------------- /kuzu/q6.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/q6.cypher -------------------------------------------------------------------------------- /kuzu/q7.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/q7.cypher -------------------------------------------------------------------------------- /kuzu/q8.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/q8.cypher -------------------------------------------------------------------------------- /kuzu/q9.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/q9.cypher -------------------------------------------------------------------------------- /kuzu/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/run.sh -------------------------------------------------------------------------------- /kuzu/schema.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/schema.cypher -------------------------------------------------------------------------------- /kuzu/scratch/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /kuzu/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kuzu/scripts/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/scripts/install-dependencies.sh -------------------------------------------------------------------------------- /kuzu/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/stop.sh -------------------------------------------------------------------------------- /kuzu/vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/kuzu/vars.sh -------------------------------------------------------------------------------- /memgraph/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/.gitignore -------------------------------------------------------------------------------- /memgraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/README.md -------------------------------------------------------------------------------- /memgraph/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/client.py -------------------------------------------------------------------------------- /memgraph/convert-csvs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/convert-csvs.sh -------------------------------------------------------------------------------- /memgraph/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/index.py -------------------------------------------------------------------------------- /memgraph/init-and-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/init-and-load.sh -------------------------------------------------------------------------------- /memgraph/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/load.py -------------------------------------------------------------------------------- /memgraph/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/load.sh -------------------------------------------------------------------------------- /memgraph/load2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/load2.sh -------------------------------------------------------------------------------- /memgraph/post-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/post-load.sh -------------------------------------------------------------------------------- /memgraph/pre-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/pre-load.sh -------------------------------------------------------------------------------- /memgraph/q1.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/q1.cypher -------------------------------------------------------------------------------- /memgraph/q2.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/q2.cypher -------------------------------------------------------------------------------- /memgraph/q3.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/q3.cypher -------------------------------------------------------------------------------- /memgraph/q4.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/q4.cypher -------------------------------------------------------------------------------- /memgraph/q5.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/q5.cypher -------------------------------------------------------------------------------- /memgraph/q6.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/q6.cypher -------------------------------------------------------------------------------- /memgraph/q7.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/q7.cypher -------------------------------------------------------------------------------- /memgraph/q8.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/q8.cypher -------------------------------------------------------------------------------- /memgraph/q9.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/q9.cypher -------------------------------------------------------------------------------- /memgraph/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/run.sh -------------------------------------------------------------------------------- /memgraph/scratch/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /memgraph/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/start.sh -------------------------------------------------------------------------------- /memgraph/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/stop.sh -------------------------------------------------------------------------------- /memgraph/vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/memgraph/vars.sh -------------------------------------------------------------------------------- /mysql/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/mysql/client.py -------------------------------------------------------------------------------- /mysql/init-and-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/mysql/init-and-load.sh -------------------------------------------------------------------------------- /mysql/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/mysql/load.sh -------------------------------------------------------------------------------- /mysql/post-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/mysql/post-load.sh -------------------------------------------------------------------------------- /mysql/pre-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/mysql/pre-load.sh -------------------------------------------------------------------------------- /mysql/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/mysql/run.sh -------------------------------------------------------------------------------- /mysql/snb-load.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/mysql/snb-load.sql -------------------------------------------------------------------------------- /mysql/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/mysql/start.sh -------------------------------------------------------------------------------- /mysql/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/mysql/stop.sh -------------------------------------------------------------------------------- /mysql/vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/mysql/vars.sh -------------------------------------------------------------------------------- /neo4j/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/neo4j/client.py -------------------------------------------------------------------------------- /neo4j/init-and-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/neo4j/init-and-load.sh -------------------------------------------------------------------------------- /neo4j/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/neo4j/load.sh -------------------------------------------------------------------------------- /neo4j/post-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/neo4j/post-load.sh -------------------------------------------------------------------------------- /neo4j/pre-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/neo4j/pre-load.sh -------------------------------------------------------------------------------- /neo4j/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/neo4j/run.sh -------------------------------------------------------------------------------- /neo4j/scratch/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /neo4j/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/neo4j/start.sh -------------------------------------------------------------------------------- /neo4j/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/neo4j/stop.sh -------------------------------------------------------------------------------- /neo4j/vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/neo4j/vars.sh -------------------------------------------------------------------------------- /patterns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/patterns.png -------------------------------------------------------------------------------- /pgq/drop.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/pgq/drop.sql -------------------------------------------------------------------------------- /pgq/q1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/pgq/q1.sql -------------------------------------------------------------------------------- /pgq/q2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/pgq/q2.sql -------------------------------------------------------------------------------- /pgq/q3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/pgq/q3.sql -------------------------------------------------------------------------------- /pgq/q4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/pgq/q4.sql -------------------------------------------------------------------------------- /pgq/q5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/pgq/q5.sql -------------------------------------------------------------------------------- /pgq/q6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/pgq/q6.sql -------------------------------------------------------------------------------- /pgq/q7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/pgq/q7.sql -------------------------------------------------------------------------------- /pgq/q8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/pgq/q8.sql -------------------------------------------------------------------------------- /pgq/q9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/pgq/q9.sql -------------------------------------------------------------------------------- /pgq/snb-load.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/pgq/snb-load.sql -------------------------------------------------------------------------------- /postgres/.gitignore: -------------------------------------------------------------------------------- 1 | scratch/ 2 | -------------------------------------------------------------------------------- /postgres/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/postgres/README.md -------------------------------------------------------------------------------- /postgres/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/postgres/client.py -------------------------------------------------------------------------------- /postgres/connect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/postgres/connect.sh -------------------------------------------------------------------------------- /postgres/init-and-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/postgres/init-and-load.sh -------------------------------------------------------------------------------- /postgres/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/postgres/load.sh -------------------------------------------------------------------------------- /postgres/post-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/postgres/post-load.sh -------------------------------------------------------------------------------- /postgres/pre-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/postgres/pre-load.sh -------------------------------------------------------------------------------- /postgres/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/postgres/run.sh -------------------------------------------------------------------------------- /postgres/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/postgres/start.sh -------------------------------------------------------------------------------- /postgres/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/postgres/stop.sh -------------------------------------------------------------------------------- /postgres/test-db-connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/postgres/test-db-connection.py -------------------------------------------------------------------------------- /postgres/vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/postgres/vars.sh -------------------------------------------------------------------------------- /results/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | my2.csv 2 | -------------------------------------------------------------------------------- /scripts/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/scripts/benchmark.sh -------------------------------------------------------------------------------- /scripts/cross-validate-against-expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/scripts/cross-validate-against-expected.py -------------------------------------------------------------------------------- /scripts/download-data-set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/scripts/download-data-set.sh -------------------------------------------------------------------------------- /scripts/download-merged-fk-data-sets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/scripts/download-merged-fk-data-sets.sh -------------------------------------------------------------------------------- /scripts/download-projected-fk-data-sets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/scripts/download-projected-fk-data-sets.sh -------------------------------------------------------------------------------- /scripts/generate-data-sets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/scripts/generate-data-sets.sh -------------------------------------------------------------------------------- /scripts/headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/scripts/headers.txt -------------------------------------------------------------------------------- /scripts/import-vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/scripts/import-vars.sh -------------------------------------------------------------------------------- /scripts/install-convenience-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/scripts/install-convenience-packages.sh -------------------------------------------------------------------------------- /scripts/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/scripts/install-dependencies.sh -------------------------------------------------------------------------------- /scripts/my.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/scripts/my.csv -------------------------------------------------------------------------------- /scripts/permutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/scripts/permutations.py -------------------------------------------------------------------------------- /scripts/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/scripts/plot.py -------------------------------------------------------------------------------- /scripts/preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/scripts/preprocess.sh -------------------------------------------------------------------------------- /scripts/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/scripts/validate.py -------------------------------------------------------------------------------- /scripts/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/scripts/validate.sh -------------------------------------------------------------------------------- /sql/drop.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/sql/drop.sql -------------------------------------------------------------------------------- /sql/q1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/sql/q1.sql -------------------------------------------------------------------------------- /sql/q2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/sql/q2.sql -------------------------------------------------------------------------------- /sql/q3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/sql/q3.sql -------------------------------------------------------------------------------- /sql/q4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/sql/q4.sql -------------------------------------------------------------------------------- /sql/q5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/sql/q5.sql -------------------------------------------------------------------------------- /sql/q6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/sql/q6.sql -------------------------------------------------------------------------------- /sql/q7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/sql/q7.sql -------------------------------------------------------------------------------- /sql/q8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/sql/q8.sql -------------------------------------------------------------------------------- /sql/q9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/sql/q9.sql -------------------------------------------------------------------------------- /sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/sql/schema.sql -------------------------------------------------------------------------------- /sql/snb-load.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/sql/snb-load.sql -------------------------------------------------------------------------------- /sql/views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/sql/views.sql -------------------------------------------------------------------------------- /tmpfile.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/tmpfile.csv -------------------------------------------------------------------------------- /umbra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/umbra/README.md -------------------------------------------------------------------------------- /umbra/connect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/umbra/connect.sh -------------------------------------------------------------------------------- /umbra/create-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/umbra/create-db.sh -------------------------------------------------------------------------------- /umbra/docker-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/umbra/docker-load.sh -------------------------------------------------------------------------------- /umbra/force-stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/umbra/force-stop.sh -------------------------------------------------------------------------------- /umbra/init-and-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/umbra/init-and-load.sh -------------------------------------------------------------------------------- /umbra/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/umbra/load.sh -------------------------------------------------------------------------------- /umbra/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/umbra/logs.sh -------------------------------------------------------------------------------- /umbra/post-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/umbra/post-load.sh -------------------------------------------------------------------------------- /umbra/pre-load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/umbra/pre-load.sh -------------------------------------------------------------------------------- /umbra/restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/umbra/restart.sh -------------------------------------------------------------------------------- /umbra/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/umbra/run.sh -------------------------------------------------------------------------------- /umbra/scratch/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /umbra/sql/create-role.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/umbra/sql/create-role.sql -------------------------------------------------------------------------------- /umbra/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/umbra/sql/schema.sql -------------------------------------------------------------------------------- /umbra/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/umbra/start.sh -------------------------------------------------------------------------------- /umbra/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/umbra/stop.sh -------------------------------------------------------------------------------- /umbra/vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldbc/lsqb/HEAD/umbra/vars.sh --------------------------------------------------------------------------------