0bcc1d67bc
* Added handshake support * Add support for v4 hello and goodbye * Add support for pulling n results * Add support for transactions * Add pull n for the dump * Add support for NOOP * Add support for multiple queries * Update bolt session to support qid * Update drivers test with multiple versions and go * Extract failure handling into a function * Use unique ptr instead of optional for query execution * Destroy stream before query execution Co-authored-by: Antonio Andelic <antonio.andelic@memgraph.io>
25 lines
681 B
Bash
Executable File
25 lines
681 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd "$DIR"
|
|
|
|
for i in java javac; do
|
|
if ! which $i >/dev/null; then
|
|
echo "Please install $i!"
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
DRIVER=neo4j-java-driver.jar
|
|
|
|
if [ ! -f $DRIVER ]; then
|
|
# Driver downloaded from: http://central.maven.org/maven2/org/neo4j/driver/neo4j-java-driver/1.5.2/neo4j-java-driver-1.5.2.jar
|
|
wget -nv https://s3-eu-west-1.amazonaws.com/deps.memgraph.io/drivers/java/neo4j-java-driver-1.5.2.jar -O $DRIVER || exit 1
|
|
fi
|
|
|
|
javac -classpath .:$DRIVER Basic.java
|
|
java -classpath .:$DRIVER Basic
|
|
|
|
javac -classpath .:$DRIVER MaxQueryLength.java
|
|
java -classpath .:$DRIVER MaxQueryLength
|