mirror of https://gitee.com/bigwinds/arangodb
test fuxx
This commit is contained in:
parent
1e2078510d
commit
9513227449
|
@ -36,7 +36,28 @@ Please use the
|
|||
@EXTREF_S{https://github.com/mgiken/portage-overlay/tree/master/dev-db/ArangoDB,portage}
|
||||
provided by @@mgiken.
|
||||
|
||||
### Linux-Mint {#InstallingDebian}
|
||||
### Debian sid {#InstallingDebian}
|
||||
|
||||
To use ArangoDB on Debian sid (the development version of Debian), a different version
|
||||
of ICU is required. User @basir provided the following instructions for getting ArangoDB 2.0.7
|
||||
to work on an x86_64. Other versions of ArangoDB or other architectures should work
|
||||
similarly:
|
||||
|
||||
cd ~
|
||||
wget https://www.arangodb.org/repositories/arangodb2/Debian_7.0/amd64/arangodb_2.0.7_amd64.deb
|
||||
wget http://ftp.de.debian.org/debian/pool/main/i/icu/icu_4.8.1.1.orig.tar.gz
|
||||
tar xf icu_4.8.1.1.orig.tar.gz
|
||||
cd icu/source
|
||||
./configure
|
||||
make
|
||||
cd lib
|
||||
cp libicui18n.so.48 /usr/lib/x86_64-linux-gnu/
|
||||
cp libicuuc.so.48 /usr/lib/x86_64-linux-gnu/
|
||||
cp libicudata.so.48 /usr/lib/x86_64-linux-gnu/
|
||||
cd ~
|
||||
dpkg -i arangodb_2.0.7_amd64.deb
|
||||
|
||||
### Linux-Mint {#InstallingLinuxMint}
|
||||
|
||||
Download and import GPG-PublicKey:
|
||||
|
||||
|
|
|
@ -5,6 +5,7 @@ TOC {#InstallingTOC}
|
|||
- @ref InstallingLinux
|
||||
- @ref InstallingLinuxPackageManager
|
||||
- @ref InstallingDebian
|
||||
- @ref InstallingLinuxMint
|
||||
- @ref InstallingMacOSX
|
||||
- @ref InstallingMacOSXHomebrew
|
||||
- @ref InstallingMacOSXAppStore
|
||||
|
|
|
@ -53,7 +53,7 @@ var stringToArray = function (x) {
|
|||
if (typeof x === "string") {
|
||||
return [x];
|
||||
}
|
||||
return x;
|
||||
return _.clone(x);
|
||||
};
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -127,10 +127,6 @@ var findOrCreateCollectionsByEdgeDefinitions = function (edgeDefinitions, noCrea
|
|||
// --SECTION-- Fluent AQL Interface
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// --SECTION-- Fluent AQL Interface
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
var AQLStatement = function(query, isEdgeQuery) {
|
||||
this.query = query;
|
||||
this.edgeQuery = isEdgeQuery || false;
|
||||
|
@ -279,7 +275,7 @@ var _directedRelationDefinition = function (
|
|||
relationName, fromVertexCollections, toVertexCollections) {
|
||||
|
||||
if (arguments.length < 3) {
|
||||
throw "method _undirectedRelationDefinition expects 3 arguments";
|
||||
throw "method _directedRelationDefinition expects 3 arguments";
|
||||
}
|
||||
|
||||
if (typeof relationName !== "string" || relationName === "") {
|
||||
|
|
Loading…
Reference in New Issue