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>
15 lines
230 B
Bash
Executable File
15 lines
230 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
# check if go is installed
|
|
for i in go; do
|
|
if ! which $i >/dev/null; then
|
|
echo "Please install $i!"
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
go get github.com/neo4j/neo4j-go-driver/neo4j
|
|
|
|
go run basic.go
|
|
go run transactions.go
|