1
0
Fork 0
Commit Graph

1466 Commits

Author SHA1 Message Date
Jan Steemann baa5e39348 removed lib/Basics/utf8-helper.cpp and merged with lib/Basics/Utf8Helper.cpp 2015-04-21 17:53:35 +02:00
Jan Steemann eaa49b11c6 rename file 2015-04-17 17:48:34 +02:00
Jan Steemann 6e23c5330f added restrictions for export API 2015-04-17 00:24:43 +02:00
Jan Steemann d9add3a493 fixed collect in cluster 2015-04-16 21:10:48 +02:00
Jan Steemann c88109679d added tests for collect methods 2015-04-16 19:20:23 +02:00
Jan Steemann 3d6bc8d28a Merge branch 'import-update' into devel 2015-04-14 11:47:57 +02:00
Jan Steemann 92fcdd3e56 issue #1298: Bulk import if data already exists
This change extends the HTTP REST API for bulk imports as follows:

When documents are imported and the `_key` attribute is specified for them, the import can be
used for inserting and updating/replacing documents. Previously, the import could be used for
inserting new documents only, and re-inserting a document with an existing would have failed
with a *unique key constraint violated* error.

The above behavior is still the default. However, the API now allows controlling the behavior
in case of a unique key constraint error via the optional URL parameter `onDuplicate`.

This parameter can have one of the following values:

- `error`: when a unique key constraint error occurs, do not import or update the document but
  report an error. This is the default.

- `update`: when a unique key constraint error occurs, try to (partially) update the existing
  document with the data specified in the import. This may still fail if the document would
  violate secondary unique indexes. Only the attributes present in the import data will be
  updated and other attributes already present will be preserved. The number of updated documents
  will be reported in the `updated` attribute of the HTTP API result.

- `replace`: when a unique key constraint error occurs, try to fully replace the existing
  document with the data specified in the import. This may still fail if the document would
  violate secondary unique indexes. The number of replaced documents will be reported in the
  `updated` attribute of the HTTP API result.

- `ignore`: when a unique key constraint error occurs, ignore this error. There will be no
  insert, update or replace for the particular document. Ignored documents will be reported
  separately in the `ignored` attribute of the HTTP API result.

The result of the HTTP import API will now contain the attributes `ignored` and `updated`, which
contain the number of ignored and updated documents respectively. These attributes will contain a
value of zero unless the `onDuplicate` URL parameter is set to either `update` or `replace`
(in this case the `updated` attribute may contain non-zero values) or `ignore` (in this case the
`ignored` attribute may contain a non-zero value).
2015-04-14 11:44:33 +02:00
Max Neunhoeffer f34a009885 Do not execute a time critical test on cluster tests. 2015-04-14 09:06:47 +02:00
Alan Plum ecbc6f581f Merge pull request #1287 from arangodb/vulpine-grace
Foxx improvements (fixes #1284, #1257)
2015-04-08 03:23:55 +02:00
Jan Steemann 0f1244f72d better export API cleanup 2015-03-31 18:44:51 +02:00
Jan Steemann 80a99ab23e refactored cursor API 2015-03-30 14:58:51 +02:00
Willi Goesgens 1a88322a6f Add new env-test to the makefile. 2015-03-26 12:20:33 +01:00
Jan Steemann be713c0a0e bumped version number 2015-03-26 11:38:10 +01:00
Alan Plum 03ccf67269 Implemented Repository lifecycle events. See #1257. 2015-03-25 10:35:18 +01:00
Jan Steemann 1298bd40a8 added tests for out-of-memory situations 2015-03-20 08:54:15 +01:00
Jan Steemann cf845bbe5e added test 2015-03-19 16:27:48 +01:00
Jan Steemann 7dc3fc3d5c safely create collections and databases 2015-03-19 15:56:12 +01:00
Jan Steemann 6e3cf20876 higher timeout 2015-03-19 10:36:07 +01:00
Jan Steemann cf33a76f31 removed two tests 2015-03-18 17:56:01 +01:00
Jan Steemann a062280783 added test for empty datafiles 2015-03-18 17:37:28 +01:00
Michael Hackstein 711712fef3 Another improvement of query test 2015-03-13 13:58:06 +01:00
Michael Hackstein 50257a2d5d Made the api-query-anaylsis test more relyable 2015-03-13 13:43:59 +01:00
Michael Hackstein 1e9fdc379f Added AQL queries test to makefile 2015-03-12 16:05:52 +01:00
Michael Hackstein 6e893826dc Further tests for api query analysis 2015-03-12 16:05:46 +01:00
Michael Hackstein 7eb685a5aa Added a test for the new query analysis api. 2015-03-12 16:05:40 +01:00
Michael Hackstein f70b8c66af Fixed the Web interface reachability test 2015-03-10 10:32:34 +01:00
Jan Steemann 6d016abc3b issue #1258: added tests for HTTP pipelining 2015-03-03 15:00:57 +01:00
Jan Steemann 4807c2cd1b added targets unittests-single-server unittests-single-client 2015-02-25 11:01:05 +01:00
Jan Steemann ded5b67264 added test 2015-02-24 11:40:15 +01:00
Jan Steemann c3dd5d9b7b added tests 2015-02-24 11:40:15 +01:00
Jan Steemann d3aba35f7b added fpconv_dtoa from https://github.com/night-shift/fpconv/ 2015-02-24 11:40:15 +01:00
Willi Goesgens e9b9574baa Improve error handling
- directory creation
  - zip extraction
2015-02-24 11:27:52 +01:00
Frank Celler 6190bb7994 Merge branch 'devel' of github.com:arangodb/arangodb into 2.5 2015-02-18 21:50:33 +01:00
Jan Steemann f29591135a adjusted geo index API 2015-02-18 14:59:46 +01:00
Frank Celler 15fb7131f1 Merge remote-tracking branch 'origin/devel' into 2.5
Conflicts:
	Documentation/Examples/CollectionUnload.generated
	Documentation/Examples/HttpGharialAddEdge.generated
	Documentation/Examples/HttpGharialAddEdgeCol.generated
	Documentation/Examples/HttpGharialAddVertex.generated
	Documentation/Examples/HttpGharialAddVertexCol.generated
	Documentation/Examples/HttpGharialCreate.generated
	Documentation/Examples/HttpGharialEdgeDefinitionRemove.generated
	Documentation/Examples/HttpGharialGetEdge.generated
	Documentation/Examples/HttpGharialGetGraph.generated
	Documentation/Examples/HttpGharialGetVertex.generated
	Documentation/Examples/HttpGharialList.generated
	Documentation/Examples/HttpGharialModifyVertex.generated
	Documentation/Examples/HttpGharialPatchEdge.generated
	Documentation/Examples/HttpGharialPutEdge.generated
	Documentation/Examples/HttpGharialRemoveVertexCollection.generated
	Documentation/Examples/HttpGharialReplaceEdgeCol.generated
	Documentation/Examples/HttpGharialReplaceVertex.generated
	Documentation/Examples/RestAdminStatistics1.generated
	Documentation/Examples/RestBatchMultipartHeader.generated
	Documentation/Examples/RestCollectionCreateCollection.generated
	Documentation/Examples/RestCollectionCreateKeyopt.generated
	Documentation/Examples/RestCollectionDeleteCollectionIdentifier.generated
	Documentation/Examples/RestCollectionDeleteCollectionName.generated
	Documentation/Examples/RestCollectionGetAllCollections.generated
	Documentation/Examples/RestCollectionGetCollectionChecksum.generated
	Documentation/Examples/RestCollectionGetCollectionChecksumNoRev.generated
	Documentation/Examples/RestCollectionGetCollectionCount.generated
	Documentation/Examples/RestCollectionGetCollectionFigures.generated
	Documentation/Examples/RestCollectionGetCollectionIdentifier.generated
	Documentation/Examples/RestCollectionGetCollectionName.generated
	Documentation/Examples/RestCollectionGetCollectionRevision.generated
	Documentation/Examples/RestCollectionIdentifierLoad.generated
	Documentation/Examples/RestCollectionIdentifierPropertiesSync.generated
	Documentation/Examples/RestCollectionIdentifierRename.generated
	Documentation/Examples/RestCollectionIdentifierTruncate.generated
	Documentation/Examples/RestCollectionIdentifierUnload.generated
	Documentation/Examples/RestCursorCreateCursorForLimitReturn.generated
	Documentation/Examples/RestCursorCreateCursorForLimitReturnSingle.generated
	Documentation/Examples/RestCursorDelete.generated
	Documentation/Examples/RestCursorForLimitReturnCont.generated
	Documentation/Examples/RestDatabaseGetInfo.generated
	Documentation/Examples/RestDocumentHandlerDeleteDocument.generated
	Documentation/Examples/RestDocumentHandlerDeleteDocumentIfMatchOther.generated
	Documentation/Examples/RestDocumentHandlerDeleteDocumentUnknownHandle.generated
	Documentation/Examples/RestDocumentHandlerPatchDocument.generated
	Documentation/Examples/RestDocumentHandlerPatchDocumentMerge.generated
	Documentation/Examples/RestDocumentHandlerPostAccept1.generated
	Documentation/Examples/RestDocumentHandlerPostCreate1.generated
	Documentation/Examples/RestDocumentHandlerPostCreate2.generated
	Documentation/Examples/RestDocumentHandlerPostWait1.generated
	Documentation/Examples/RestDocumentHandlerReadDocument.generated
	Documentation/Examples/RestDocumentHandlerReadDocumentAllKey.generated
	Documentation/Examples/RestDocumentHandlerReadDocumentAllPath.generated
	Documentation/Examples/RestDocumentHandlerReadDocumentHead.generated
	Documentation/Examples/RestDocumentHandlerReadDocumentIfNoneMatch.generated
	Documentation/Examples/RestDocumentHandlerUpdateDocument.generated
	Documentation/Examples/RestDocumentHandlerUpdateDocumentIfMatchOther.generated
	Documentation/Examples/RestDocumentHandlerUpdateDocumentIfMatchOtherLastWriteWins.generated
	Documentation/Examples/RestDocumentHandlerUpdateDocumentRevOther.generated
	Documentation/Examples/RestDocumentHandlerUpdateDocumentUnknownHandle.generated
	Documentation/Examples/RestEdgeCreateEdge.generated
	Documentation/Examples/RestEdgesReadEdgesAny.generated
	Documentation/Examples/RestEdgesReadEdgesIn.generated
	Documentation/Examples/RestEdgesReadEdgesOut.generated
	Documentation/Examples/RestEndpointGet.generated
	Documentation/Examples/RestExplainAllPlans.generated
	Documentation/Examples/RestExplainOptimizerRules.generated
	Documentation/Examples/RestExplainOptions.generated
	Documentation/Examples/RestGraphChangeEdge.generated
	Documentation/Examples/RestGraphChangeVertex.generated
	Documentation/Examples/RestGraphChangepEdge.generated
	Documentation/Examples/RestGraphChangepVertex.generated
	Documentation/Examples/RestGraphCreateEdge.generated
	Documentation/Examples/RestGraphCreateVertex.generated
	Documentation/Examples/RestGraphGetEdge.generated
	Documentation/Examples/RestGraphGetEdges.generated
	Documentation/Examples/RestGraphGetGraph.generated
	Documentation/Examples/RestGraphGetGraphs.generated
	Documentation/Examples/RestGraphGetVertex.generated
	Documentation/Examples/RestGraphGetVertexEdges.generated
	Documentation/Examples/RestGraphGetVertexVertices.generated
	Documentation/Examples/RestGraphGetVertexVertices2.generated
	Documentation/Examples/RestGraphGetVertices.generated
	Documentation/Examples/RestGraphPostGraph.generated
	Documentation/Examples/RestIndexAllIndexes.generated
	Documentation/Examples/RestIndexCreateGeoLatitudeLongitude.generated
	Documentation/Examples/RestIndexCreateGeoLocation.generated
	Documentation/Examples/RestIndexCreateNewCapConstraint.generated
	Documentation/Examples/RestIndexCreateNewFulltext.generated
	Documentation/Examples/RestIndexCreateNewHashIndex.generated
	Documentation/Examples/RestIndexCreateNewSkiplist.generated
	Documentation/Examples/RestIndexCreateNewUniqueConstraint.generated
	Documentation/Examples/RestIndexCreateSparseHashIndex.generated
	Documentation/Examples/RestIndexCreateSparseSkiplist.generated
	Documentation/Examples/RestIndexDeleteUniqueSkiplist.generated
	Documentation/Examples/RestReplicationApplierStart.generated
	Documentation/Examples/RestReplicationApplierStateNotRunning.generated
	Documentation/Examples/RestReplicationApplierStateRunning.generated
	Documentation/Examples/RestReplicationApplierStop.generated
	Documentation/Examples/RestReplicationDump.generated
	Documentation/Examples/RestReplicationInventory.generated
	Documentation/Examples/RestReplicationInventoryIndexes.generated
	Documentation/Examples/RestReplicationLoggerFollowBufferLimit.generated
	Documentation/Examples/RestReplicationLoggerFollowEmpty.generated
	Documentation/Examples/RestReplicationLoggerFollowSome.generated
	Documentation/Examples/RestReplicationLoggerStateActive.generated
	Documentation/Examples/RestReplicationServerId.generated
	Documentation/Examples/RestSimpleAllBatch.generated
	Documentation/Examples/RestSimpleAllSkipLimit.generated
	Documentation/Examples/RestSimpleAny.generated
	Documentation/Examples/RestSimpleByExample.generated
	Documentation/Examples/RestSimpleByExample2.generated
	Documentation/Examples/RestSimpleByExample3.generated
	Documentation/Examples/RestSimpleFirst.generated
	Documentation/Examples/RestSimpleFirstExample.generated
	Documentation/Examples/RestSimpleFirstSingle.generated
	Documentation/Examples/RestSimpleFulltext.generated
	Documentation/Examples/RestSimpleLast.generated
	Documentation/Examples/RestSimpleLastSingle.generated
	Documentation/Examples/RestSimpleNear.generated
	Documentation/Examples/RestSimpleNearDistance.generated
	Documentation/Examples/RestSimpleRange.generated
	Documentation/Examples/RestSimpleWithin.generated
	Documentation/Examples/RestSimpleWithinDistance.generated
	Documentation/Examples/RestSimpleWithinRectangle.generated
	Documentation/Examples/RestTasksCreate.generated
	Documentation/Examples/RestTasksListAll.generated
	Documentation/Examples/RestTasksListOne.generated
	Documentation/Examples/RestTasksPutWithId.generated
	Documentation/Examples/RestTraversalAny.generated
	Documentation/Examples/RestTraversalBackwardItemOrder.generated
	Documentation/Examples/RestTraversalDepthFirst.generated
	Documentation/Examples/RestTraversalEdgeUniqueness.generated
	Documentation/Examples/RestTraversalFilterExclude.generated
	Documentation/Examples/RestTraversalFilterPrune.generated
	Documentation/Examples/RestTraversalInbound.generated
	Documentation/Examples/RestTraversalMaxDepth.generated
	Documentation/Examples/RestTraversalMinDepth.generated
	Documentation/Examples/RestTraversalOutbound.generated
	Documentation/Examples/RestTraversalPostorder.generated
	Documentation/Examples/RestTraversalVisitorCountAndList.generated
	Documentation/Examples/RestTraversalVisitorExpander.generated
	Documentation/Examples/RestVersion.generated
	Documentation/Examples/RestVersionDetails.generated
	Documentation/Examples/SaveEdgeCol.generated
	Documentation/Examples/collectionAll.generated
	Documentation/Examples/collectionAllNext.generated
	Documentation/Examples/collectionByExample.generated
	Documentation/Examples/collectionByExampleNext.generated
	Documentation/Examples/collectionClosedRange.generated
	Documentation/Examples/collectionDatabaseCollectionName.generated
	Documentation/Examples/collectionDatabaseCreate.generated
	Documentation/Examples/collectionDatabaseCreateKey.generated
	Documentation/Examples/collectionDatabaseCreateProperties.generated
	Documentation/Examples/collectionDatabaseCreateSpecialKey.generated
	Documentation/Examples/collectionDatabaseDrop.generated
	Documentation/Examples/collectionDatabaseDropName.generated
	Documentation/Examples/collectionDatabaseName.generated
	Documentation/Examples/collectionDatabaseTruncate.generated
	Documentation/Examples/collectionDatabaseTruncateName.generated
	Documentation/Examples/collectionDrop.generated
	Documentation/Examples/collectionFigures.generated
	Documentation/Examples/collectionFirstExample.generated
	Documentation/Examples/collectionFulltext.generated
	Documentation/Examples/collectionLoad.generated
	Documentation/Examples/collectionNear.generated
	Documentation/Examples/collectionNearDistance.generated
	Documentation/Examples/collectionRange.generated
	Documentation/Examples/collectionRename.generated
	Documentation/Examples/collectionTruncate.generated
	Documentation/Examples/collectionWithin.generated
	Documentation/Examples/collectionsDatabaseName.generated
	Documentation/Examples/cursorHasNext.generated
	Documentation/Examples/cursorNext.generated
	Documentation/Examples/documentDocumentRemove.generated
	Documentation/Examples/documentDocumentRemoveConflict.generated
	Documentation/Examples/documentDocumentUpdate.generated
	Documentation/Examples/documentsCollectionFirst.generated
	Documentation/Examples/documentsCollectionFirstNull.generated
	Documentation/Examples/documentsCollectionInsert.generated
	Documentation/Examples/documentsCollectionLast.generated
	Documentation/Examples/documentsCollectionLastNull.generated
	Documentation/Examples/documentsCollectionName.generated
	Documentation/Examples/documentsCollectionRemove.generated
	Documentation/Examples/documentsCollectionRemoveConflict.generated
	Documentation/Examples/documentsCollectionRemoveSignature.generated
	Documentation/Examples/documentsCollectionReplace.generated
	Documentation/Examples/documentsCollectionReplaceHandle.generated
	Documentation/Examples/documentsCollectionUpdate.generated
	Documentation/Examples/documentsCollectionUpdateHandle.generated
	Documentation/Examples/documentsCollectionUpdateHandleArray.generated
	Documentation/Examples/documentsCollectionUpdateHandleKeepNull.generated
	Documentation/Examples/documentsDocumentName.generated
	Documentation/Examples/documentsDocumentReplace.generated
	Documentation/Examples/executeQuery.generated
	Documentation/Examples/executeQueryBatchSize.generated
	Documentation/Examples/generalGraphAbsBetweenness1.generated
	Documentation/Examples/generalGraphAbsBetweenness2.generated
	Documentation/Examples/generalGraphAbsBetweenness3.generated
	Documentation/Examples/generalGraphAbsCloseness1.generated
	Documentation/Examples/generalGraphAbsCloseness2.generated
	Documentation/Examples/generalGraphAbsEccentricity2.generated
	Documentation/Examples/generalGraphBetweenness2.generated
	Documentation/Examples/generalGraphBetweenness3.generated
	Documentation/Examples/generalGraphCloseness1.generated
	Documentation/Examples/generalGraphCloseness3.generated
	Documentation/Examples/generalGraphCommonNeighbors1.generated
	Documentation/Examples/generalGraphCommonNeighbors2.generated
	Documentation/Examples/generalGraphDistanceTo1.generated
	Documentation/Examples/generalGraphDropGraphKeep.generated
	Documentation/Examples/generalGraphEccentricity1.generated
	Documentation/Examples/generalGraphEccentricity2.generated
	Documentation/Examples/generalGraphEdgeCollectionRemove.generated
	Documentation/Examples/generalGraphEdgeCollectionReplace.generated
	Documentation/Examples/generalGraphEdgeCollectionSave1.generated
	Documentation/Examples/generalGraphEdgeCollectionUpdate.generated
	Documentation/Examples/generalGraphEdges1.generated
	Documentation/Examples/generalGraphEdges2.generated
	Documentation/Examples/generalGraphEdgesFiltered.generated
	Documentation/Examples/generalGraphEdgesUnfiltered.generated
	Documentation/Examples/generalGraphFluentAQLEdgesFilteredMultiple.generated
	Documentation/Examples/generalGraphFluentAQLEdgesFilteredSingle.generated
	Documentation/Examples/generalGraphFluentAQLEdgesUnfiltered.generated
	Documentation/Examples/generalGraphFluentAQLFromVerticesFilteredMultiple.generated
	Documentation/Examples/generalGraphFluentAQLFromVerticesFilteredSingle.generated
	Documentation/Examples/generalGraphFluentAQLFromVerticesUnfiltered.generated
	Documentation/Examples/generalGraphFluentAQLInEdgesFilteredMultiple.generated
	Documentation/Examples/generalGraphFluentAQLInEdgesFilteredSingle.generated
	Documentation/Examples/generalGraphFluentAQLInEdgesUnfiltered.generated
	Documentation/Examples/generalGraphFluentAQLNeighborsFilteredSingle.generated
	Documentation/Examples/generalGraphFluentAQLNeighborsUnfiltered.generated
	Documentation/Examples/generalGraphFluentAQLNext.generated
	Documentation/Examples/generalGraphFluentAQLNextRecreate.generated
	Documentation/Examples/generalGraphFluentAQLOutEdgesFilteredMultiple.generated
	Documentation/Examples/generalGraphFluentAQLOutEdgesFilteredSingle.generated
	Documentation/Examples/generalGraphFluentAQLOutEdgesUnfiltered.generated
	Documentation/Examples/generalGraphFluentAQLPathNeighbors.generated
	Documentation/Examples/generalGraphFluentAQLPathSimple.generated
	Documentation/Examples/generalGraphFluentAQLRestricted.generated
	Documentation/Examples/generalGraphFluentAQLToArray.generated
	Documentation/Examples/generalGraphFluentAQLToVerticesFilteredMultiple.generated
	Documentation/Examples/generalGraphFluentAQLToVerticesFilteredSingle.generated
	Documentation/Examples/generalGraphFluentAQLToVerticesUnfiltered.generated
	Documentation/Examples/generalGraphFluentAQLUnfilteredEdges.generated
	Documentation/Examples/generalGraphFluentAQLUnfilteredVertices.generated
	Documentation/Examples/generalGraphFluentAQLUnrestricted.generated
	Documentation/Examples/generalGraphFluentAQLVerticesFilteredSingle.generated
	Documentation/Examples/generalGraphFluentAQLVerticesUnfiltered.generated
	Documentation/Examples/generalGraphGetFromVertex.generated
	Documentation/Examples/generalGraphGetToVertex.generated
	Documentation/Examples/generalGraphModuleAbsBetweenness1.generated
	Documentation/Examples/generalGraphModuleAbsBetweenness2.generated
	Documentation/Examples/generalGraphModuleAbsBetweenness3.generated
	Documentation/Examples/generalGraphModuleAbsCloseness1.generated
	Documentation/Examples/generalGraphModuleAbsCloseness2.generated
	Documentation/Examples/generalGraphModuleAbsCloseness3.generated
	Documentation/Examples/generalGraphModuleAbsEccentricity2.generated
	Documentation/Examples/generalGraphModuleBetweenness1.generated
	Documentation/Examples/generalGraphModuleBetweenness2.generated
	Documentation/Examples/generalGraphModuleCloseness1.generated
	Documentation/Examples/generalGraphModuleCommonNeighbors1.generated
	Documentation/Examples/generalGraphModuleCommonNeighbors2.generated
	Documentation/Examples/generalGraphModuleConnectingEdges1.generated
	Documentation/Examples/generalGraphModuleDistanceTo1.generated
	Documentation/Examples/generalGraphModuleDistanceTo2.generated
	Documentation/Examples/generalGraphModuleEccentricity2.generated
	Documentation/Examples/generalGraphModuleEccentricity3.generated
	Documentation/Examples/generalGraphModuleNeighbors1.generated
	Documentation/Examples/generalGraphModuleNeighbors2.generated
	Documentation/Examples/generalGraphModulePaths.generated
	Documentation/Examples/generalGraphModulePaths2.generated
	Documentation/Examples/generalGraphModuleShortestPaths1.generated
	Documentation/Examples/generalGraphModuleShortestPaths2.generated
	Documentation/Examples/generalGraphNeighbors1.generated
	Documentation/Examples/generalGraphNeighbors2.generated
	Documentation/Examples/generalGraphPaths.generated
	Documentation/Examples/generalGraphPaths2.generated
	Documentation/Examples/generalGraphShortestPaths1.generated
	Documentation/Examples/generalGraphTraversal1.generated
	Documentation/Examples/generalGraphTraversal2.generated
	Documentation/Examples/generalGraphTraversalTree1.generated
	Documentation/Examples/generalGraphTraversalTree2.generated
	Documentation/Examples/generalGraphVertexCollectionRemove.generated
	Documentation/Examples/generalGraphVertexCollectionReplace.generated
	Documentation/Examples/generalGraphVertexCollectionSave.generated
	Documentation/Examples/generalGraphVertexCollectionUpdate.generated
	Documentation/Examples/generalGraphVertices1.generated
	Documentation/Examples/generalGraphVertices2.generated
	Documentation/Examples/generalGraphVerticesFiltered.generated
	Documentation/Examples/generalGraphVerticesUnfiltered.generated
	Documentation/Examples/general_graph__deleteEdgeDefinition.generated
	Documentation/Examples/queryLimit.generated
	Documentation/Examples/querySkip.generated
	build.h
	configure
	configure.ac
	js/common/tests/shell-database.js
2015-02-17 15:31:33 +01:00
Michael Hackstein c6e9d98251 Added a force uninstall for foxx apps, to make sure they are removed from disk even if sth is unclear with mounting. Also created an error for foxx not found on file system has been added 2015-02-16 17:14:36 +01:00
Michael Hackstein 0c78629199 Merge branch 'foxx-pathes' of github.com:arangodb/arangodb into devel 2015-02-16 14:17:52 +01:00
Michael Hackstein dd40e0e732 Added the foxx manager install test to be executed everytime. 2015-02-16 14:10:24 +01:00
Frank Celler 9053c16f37 fixed version 2015-02-16 11:46:29 +01:00
Michael Hackstein 11877983c8 Added an http spec to install a foxx app 2015-02-13 22:12:31 +01:00
Michael Hackstein 5b3fae42aa Merge branch 'devel' of github.com:arangodb/arangodb into foxx-pathes
Conflicts:
	js/apps/system/_admin/aardvark/APP/frontend/js/bootstrap/errors.js
	js/common/bootstrap/errors.js
	lib/Basics/voc-errors.cpp
	lib/Basics/voc-errors.h
2015-02-13 10:20:36 +01:00
Jan Steemann 1f9b4ba5e6 added tests for sparse indexes 2015-02-11 18:58:41 +01:00
Jan Steemann 924adc9e46 added tests for sparse indexes 2015-02-10 21:28:12 +01:00
Michael Hackstein aad7e46f10 Merge branch 'devel' of github.com:arangodb/arangodb into foxx-pathes
Conflicts:
	Documentation/Books/Users/SUMMARY.md
	js/actions/api-system.js
	js/common/bootstrap/modules.js
	js/server/modules/org/arangodb/foxx/manager.js
	js/server/tests/shell-routing.js
2015-02-06 17:22:01 +01:00
Jan Steemann 5d9c0e018e dynamic attribute names in AQL 2015-02-03 22:51:40 +01:00
Michael Hackstein 7c3b7b02f6 Executed shell routing tests. Internals tested there have been changed dramatically 2015-02-02 16:54:25 +01:00
Jan Steemann 39603ebaf4 added selectivity estimates for some index types 2015-01-30 23:04:46 +01:00
Jan Steemann faab43f1b3 tests for visitors 2015-01-30 10:25:31 +01:00
Jan Steemann fe4df96b74 added file to tests 2015-01-29 17:38:52 +01:00
Jan Steemann 0ed3b03cbd added test case 2015-01-29 11:48:38 +01:00
Jan Steemann fa5f340107 added tests for estimations 2015-01-28 11:20:01 +01:00
Willi Goesgens f3d8e385b2 oops, search and replace fail in the tests. 2015-01-23 18:10:30 +01:00
Willi Goesgens 6833952781 Fix windows compilation. 2015-01-23 14:59:23 +01:00
Jan Steemann d348f60e59 added AQL optimizer rule "move-calculations-down" 2015-01-22 20:36:38 +01:00
Jan Steemann b499b560dd adjusted paths 2015-01-22 17:52:02 +01:00
Jan Steemann 275c21fce6 split hooj test routine into multiple - this pleases compilers! 2015-01-19 20:37:49 +01:00
Jan Steemann d534a41e21 recovery tests
Conflicts:
	arangod/Wal/LogfileManager.cpp

Conflicts:
	arangod/Wal/LogfileManager.cpp
2015-01-19 18:14:03 +01:00
Jan Steemann 63bf4c888a flush WAL status file after collection to shorten recovery 2015-01-18 21:06:57 +01:00
Jan Steemann abfb03b3f0 avoid deprecation warning 2015-01-16 12:34:12 +01:00
Jan Steemann 34c3ac0f56 fixed incompatibilies with newer rspec/ruby versions
Conflicts:
	UnitTests/HttpInterface/api-collection-spec.rb
2015-01-16 12:34:12 +01:00
Jan Steemann 3887e1c149 more sleep 2015-01-16 09:20:40 +01:00
Jan Steemann 957fa189d2 better diagnostics for arangoimp 2015-01-15 13:42:31 +01:00
Jan Steemann bbcb32e664 added missing file 2015-01-14 17:07:55 +01:00
Jan Steemann d088b5d66e more startup delay so tests fail not because of too short wait period 2015-01-13 22:49:19 +01:00
Frank Celler ca16940c77 using 2.5.0-devel 2015-01-13 18:21:37 +01:00
Jan Steemann b54dfae96f removed several JSON functions 2015-01-13 01:31:04 +01:00
Jan Steemann 6d6d67f06f activated optimizer rule remove-sort-rand
fixed tests, updated documentation
2014-12-21 18:50:50 +01:00
Jan Steemann c31280331f Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2014-12-19 14:01:07 +01:00
Jan Steemann fd5a723f30 removed deprecated methods 2014-12-19 14:00:58 +01:00
Frank Celler e37da76255 removed debug output 2014-12-19 13:42:22 +01:00
Jan Steemann cbe6f01f7b removed target unittests-shell-server-ahuacatl 2014-12-18 22:33:57 +01:00
Jan Steemann 20e7fe7a7a the great rename: array => object, list => array 2014-12-18 21:07:06 +01:00
Jan Steemann d499a8fb8f fixed test results 2014-12-18 10:43:11 +01:00
Jan Steemann 017f52c113 fixed for rspec 3 2014-12-17 17:47:16 +01:00
Frank Celler ab99e17876 Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel 2014-12-17 09:32:02 +01:00
Frank Celler 9e3474d335 raised version 2014-12-17 09:31:55 +01:00
Jan Steemann dd60e53ce3 added more collect special cases 2014-12-16 22:52:33 +01:00
Jan Steemann ca2505a5b6 re-added tests 2014-12-16 02:29:38 +01:00
Willi Goesgens 1c4a72b106 The Big V8 upgrade Merge. 2014-12-15 17:30:56 +01:00
Jan Steemann ff2ddd3133 fixed tests 2014-12-12 23:34:28 +01:00
Willi Goesgens daeb46893f Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2014-12-12 21:40:35 +01:00
Willi Goesgens 115f226385 Optimizer: Enable removing of filternodes if the index can handle the filter condition. 2014-12-12 21:39:35 +01:00
Jan Steemann 8f6193faa2 added optional COUNT clause for AQL COLLECT 2014-12-12 17:18:04 +01:00
Max Neunhoeffer be421d926f Add new test for use-index-range rule and no rule explosion. 2014-12-09 15:40:22 +01:00
Jan Steemann 8f99e59747 issue #1163: fullcount was sometimes used for wrong LIMIT node 2014-12-05 19:02:51 +01:00
Jan Steemann d9a945e33a include or exclude system collections from replication 2014-12-05 14:58:43 +01:00
Jan Steemann 7e161b88ce issue #1131: added KEEP for `COLLECT...INTO` 2014-12-03 17:44:10 +01:00
Jan Steemann 4f39b9e358 optimize away `INTO` of `COLLECT` if unused 2014-12-03 13:49:03 +01:00
Jan Steemann 4ef82239a3 added optimizer statistics 2014-12-03 11:38:56 +01:00
Jan Steemann 57aefb988d fix optimization of subqueries 2014-11-26 15:01:55 +01:00
Jan Steemann c69fa0b0dc fixed invalid optimization, added test cases 2014-11-25 23:18:24 +01:00
Jan Steemann f1f13a4284 added several AQL functions 2014-11-18 11:26:42 +01:00
James f797afe0d5 Merge branch 'devel' of ssh://github.com/triAGENS/ArangoDB into aql-feature-lazy-index 2014-11-13 08:04:25 +00:00
Jan Steemann 3ba00ca653 added `SUBSTITUTE` AQL function 2014-11-11 22:35:15 +01:00
Willi Goesgens d96907d8da Implement tastks REST api
- Implement REST api for tasks
 - Implement wrappers in arangosh
 - Add API-documentation
 - move unittest from server to common
2014-11-11 12:39:09 +01:00
James 3e612acdda Merge branch 'aql-feature-lazy-index' of ssh://github.com/triAGENS/ArangoDB into aql-feature-lazy-index 2014-11-11 08:23:23 +00:00
Jan Steemann 12d326d62b updated documentation and operators behavior 2014-11-10 18:05:11 +01:00
Jan Steemann 37751ecc7a updated tests
updated docs
2014-11-10 10:54:50 +01:00
Jan Steemann 44d5dd2749 added test to Makefile, fixed jslint warning 2014-11-08 21:06:06 +01:00
Willi Goesgens 5ec01eca99 Split relevant test parts in non / cluster 2014-11-06 17:26:13 +01:00
Jan Steemann 74ef8a71a2 added to Makefile 2014-11-05 11:20:04 +01:00
Frank Celler 0e7be8dddf Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel
Conflicts:
	js/apps/system/aardvark/frontend/js/templates/navigationView.ejs
2014-11-01 10:14:55 +01:00
Frank Celler 38d0d91782 removed non-existing test 2014-11-01 10:12:37 +01:00
Jan Steemann 4f68960ed7 removed Ahuacatl [skip ci] 2014-10-31 17:31:00 +01:00
Willi Goesgens 6b2f4d4067 Split shell-statement into statement / explain-cluster / explain-noncluster 2014-10-30 16:08:10 +01:00
Willi Goesgens e355f890d0 Follow file renaming 2014-10-30 12:50:51 +01:00
Jan Steemann b69fdb0a55 adjusted file name after it was renamed 2014-10-29 22:47:47 +01:00
Willi Goesgens 946372e909 Add test for adding references into arrays. 2014-10-29 13:51:29 +01:00
Jan Steemann 02c26720a4 fixed test 2014-10-27 17:10:25 +01:00
Jan Steemann 699517413e fixed clumsy error handling 2014-10-24 10:29:13 +02:00
Jan Steemann b3d57d0330 added AQL tests 2014-10-24 09:57:41 +02:00
Jan Steemann 688e8ebbc1 better support for handling multipart requests 2014-10-16 02:05:57 +02:00
Jan Steemann 7b3c3068f1 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2014-10-15 14:17:23 +02:00
Willi Goesgens d5a0a3ed0a Follow rename in makefile. 2014-10-15 14:04:26 +02:00
Jan Steemann 70fa84102d fixed typo 2014-10-15 12:46:05 +02:00
Willi Goesgens fa926a48a7 Add timecritical option to the unittests 2014-10-14 11:04:45 +02:00
Jan Steemann 8294e54f32 faster import 2014-10-08 17:01:45 +02:00
Jan Steemann 0f59de2041 added recovery tests for rename 2014-10-08 15:22:36 +02:00
Jan Steemann ff80fafba5 fixed cached lookups of collections on the server, which may have caused spurious problems after collection rename operations 2014-10-08 14:59:02 +02:00
Jan Steemann 96cb6e3550 re-activate client tests 2014-10-01 00:17:22 +02:00
Jan Steemann ce9499eac8 less string copying, less regex slowdown when importing CSV files 2014-09-30 23:20:12 +02:00
Jan Steemann eb2e421c08 issue #1030: too big numeric values lead to arangoimp crashing on Windows 2014-09-30 17:25:54 +02:00
Jan Steemann da086a6b67 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into aql2 2014-09-22 10:31:18 +02:00
Jan Steemann 806cc26685 test fix 2014-09-22 10:30:57 +02:00
Jan Steemann 6ab1ff472a Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into aql2 2014-09-22 09:30:58 +02:00
Jan Steemann c91b78da15 changed Makefile for tests 2014-09-22 09:18:15 +02:00
Jan Steemann 1016debd2e more robust recovery 2014-09-18 17:47:37 +02:00
Jan Steemann 04ae26a7fe added tests for skiplists 2014-09-18 14:45:45 +02:00
Jan Steemann e5e2cfe4da Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into aql2
Conflicts:
	arangod/V8Server/v8-vocbase.cpp
2014-09-17 11:50:42 +02:00
Jan Steemann d3f4f05df1 issue #1020 2014-09-17 11:42:01 +02:00
Jan Steemann 481a16fd7a removed bitarray indexes 2014-09-15 14:19:38 +02:00
Jan Steemann 669cb3b235 renamed files 2014-09-13 01:44:01 +02:00
Jan Steemann 953b8cdfe3 renamed files 2014-09-13 00:34:48 +02:00
Jan Steemann 0dc0bc834f more files renamed 2014-09-13 00:20:30 +02:00
Jan Steemann 87afcf5e8d the great rename 2014-09-13 00:10:11 +02:00
Jan Steemann c16ddedc83 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into aql2
Conflicts:
	arangod/V8Server/v8-vocbase.cpp
	js/apps/system/aardvark/frontend/js/bootstrap/errors.js
	js/common/bootstrap/errors.js
	js/server/modules/org/arangodb/ahuacatl.js
	js/server/modules/org/arangodb/aql-helper.js
	js/server/tests/shell-skiplist-index.js
2014-09-09 22:18:52 +02:00
Jan Steemann 428865f3b5 issue #1014: WITHIN function returns wrong distance
added attribute setters for ShapedJson so document attributes can be updated

Conflicts:
	arangod/V8Server/v8-vocbase.cpp
2014-09-09 19:58:27 +02:00
Alan Plum 844621f070 Implemented Foxx.createQuery. 2014-09-09 17:02:21 +02:00
Jan Steemann aadd0f9254 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into aql2
Conflicts:
	arangod/Utils/CollectionNameResolver.h
	arangod/V8Server/v8-vocbase.cpp
2014-08-30 17:35:08 +02:00
Jan Steemann c0463a1797 added `type` option for `GET /_api/document?collection=...`
Conflicts:
	CHANGELOG
2014-08-30 17:26:24 +02:00
Jan Steemann b54e791f8f Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into aql2 2014-08-28 22:23:25 +02:00
Jan Steemann d72354da66 issue #1003: added feature to use backslash escaping for CSV data in arangoimp 2014-08-28 21:03:58 +02:00
Jan Steemann a014b44ba4 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into aql2
Conflicts:
	arangod/Utils/Transaction.h
2014-08-28 11:06:14 +02:00
Jan Steemann 81c095105b issue #1003 2014-08-28 10:32:32 +02:00
Jan Steemann 3b9636c52b issue #1004 2014-08-28 08:55:02 +02:00
Jan Steemann 4760b3c921 once again: attempt to fix non-deterministic test 2014-08-27 22:44:14 +02:00
Jan Steemann cd1d0c45f8 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into aql2
Conflicts:
	arangod/V8Server/v8-query.cpp
2014-08-27 19:25:37 +02:00
Jan Steemann 6e872111f0 hopefully fix random travis test 2014-08-27 11:45:14 +02:00
Jan Steemann a70a9613f6 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into aql2
Conflicts:
	lib/BasicsC/voc-errors.h
2014-08-22 21:51:38 +02:00
Jan Steemann 6355f2e217 use --std=c++11 for cppcheck 2014-08-22 12:51:37 +02:00
Jan Steemann 5a9c16eaad attempt to fix test 2014-08-20 16:26:43 +02:00
Jan Steemann f8cf5dc26d Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into aql2
Conflicts:
	arangod/V8Server/v8-vocbase.cpp
2014-08-15 18:47:18 +02:00
Jan Steemann cd575e073f fixed tests 2014-08-15 18:19:52 +02:00
Max Neunhoeffer 28f0d7be05 Sort out TRI_CompareValuesJson to use UTF8 on demand. 2014-08-13 14:22:05 +02:00
Frank Celler e0db77b070 fixed tests, log can contain more entries 2014-08-13 12:17:37 +02:00
Jan Steemann 099ec8db60 reallow attribute names starting with underscores 2014-08-07 15:52:58 +02:00
Frank Celler 0344573b5f use all available, non-cluster tests 2014-07-25 15:36:21 +02:00
Jan Steemann fbbea02c71 disabled non-deterministic test 2014-07-23 15:49:17 +02:00
Jan Steemann 8de45f0225 increase ttl for test 2014-07-22 15:18:02 +02:00
Jan Steemann 712358d069 added optional `ttl` attribute to specify result cursor expiration for HTTP API method `POST /_api/cursor`
The `ttl` attribute can be used to prevent cursor results from timing out too early.
2014-07-21 15:48:43 +02:00
Michael Hackstein 30f2a59511 Fixed cluster test in general graph 2014-07-17 09:02:45 +02:00
Michael Hackstein 871db072e7 Added tests for gharial error return codes. Fixed a bug pn false return code on the way 2014-07-16 11:04:39 +01:00
Max Neunhoeffer 286a69ce87 Change Unittest makefile to reflect file name change. 2014-07-09 11:31:22 +02:00
Michael Hackstein 5ccc4cb2c0 Fixed Cluster gharial tests 2014-07-09 10:15:07 +02:00
Michael Hackstein 3f6e1c3555 Unified gharial error responses with normal API 2014-07-08 10:46:18 +02:00
Michael Hackstein 72a9b7e5aa Added waitForSync support for creation of vertices and edges in gharial 2014-07-07 15:18:35 +02:00
Jan Steemann 96b195a34d added test 2014-07-04 08:06:02 +02:00
Jan Steemann 04ed18be47 recovery 2014-07-03 22:50:22 +02:00
Jan Steemann 470839ffb9 fixed tests 2014-07-03 18:51:40 +02:00
Jan Steemann 6fc0c051d0 added test case 2014-07-03 17:12:25 +02:00
Jan Steemann 2babd2a1d2 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2014-07-03 12:58:18 +02:00
Jan Steemann d5e4f6762c foxx-directories test 2014-07-03 12:58:02 +02:00
Jan Steemann 599176d1e3 do not delete foxx apps on replay 2014-07-03 11:42:16 +02:00
Michael Hackstein 202deaae85 Fixed issues in gharial module. By default the do not wait for sync http codes are returned. You can now optionally send waitForSync true to all modifying endpoints 2014-07-03 10:53:18 +02:00
Jan Steemann acf6c688b7 fixed typo 2014-07-02 17:04:57 +02:00
Michael Hackstein 7b22c0c2a5 Added a correct 404 return code to gharial when trying to remove a vertex/edge which does not exists. Also added tests for return codes 2014-07-02 15:03:06 +02:00
Max Neunhoeffer e8c9a3997e Name change in Makefile. 2014-07-02 11:40:10 +02:00
Jan Steemann 28965618d1 handle renaming of collections 2014-07-02 10:28:43 +02:00
Jan Steemann 84ef51aaf4 handle properties marker 2014-07-02 09:54:28 +02:00
Jan Steemann ab70cfb9bb Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2014-07-02 09:31:17 +02:00
Jan Steemann 7fa01da9b4 handle empty logfiles on startup 2014-07-02 09:31:00 +02:00
Michael Hackstein d211b6eacd Fixed general graph spec. Error message is more specfic then expected 2014-07-01 17:08:55 +02:00
Jan Steemann 4cd20bfb7c fixed syncs across multiple files 2014-07-01 13:12:36 +02:00
Jan Steemann d55626c038 xxx 2014-06-30 19:00:36 +02:00
Max Neunhoeffer 48762f3cc2 Add disabled tests.
Disable shell-readonly test on server.
2014-06-30 12:45:10 +02:00
Max Neunhoeffer c36995c8b8 Fix gharial test if not mounted under /system. 2014-06-30 11:00:31 +02:00
Jan Steemann 56a9361f9f fill secondary indexes after recovery only 2014-06-29 00:18:21 +02:00
Jan Steemann 21ea9b4d4b recovery tests 2014-06-28 01:58:06 +02:00
Jan Steemann a8e1aabd40 renamed test file 2014-06-26 16:19:22 +02:00
Esteban Lombeyda 4569420fda all file for tesing the changeMode werde renamed 2014-06-26 15:42:17 +02:00
Jan Steemann f93897de39 changed filename 2014-06-26 15:28:40 +02:00
Jan Steemann 1bb171787f clean up when journal creation fails 2014-06-26 13:03:45 +02:00
Michael Hackstein ac014bbfe0 Fixed a bug in gharial which was not allowed to create orphan collections during graph creation 2014-06-24 17:27:47 +02:00
Jan Steemann 0be3951558 fixed indent 2014-06-24 17:03:36 +02:00
Jan Steemann cf14609727 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2014-06-24 16:12:07 +02:00
Jan Steemann f411fceb2e exposed WAL API 2014-06-24 16:10:27 +02:00
Esteban Lombeyda fab2e0b855 Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel 2014-06-24 15:23:18 +02:00
Esteban Lombeyda fff305170e renaming test in order to run in only in non cluster environments 2014-06-24 15:22:24 +02:00
Jan Steemann c4aad1e0cd added tests 2014-06-24 15:11:19 +02:00
Jan Steemann 9695b25673 added tests 2014-06-24 09:19:26 +02:00
Jan Steemann d56719ae4d simplification of signatures 2014-06-24 00:32:40 +02:00
Jan Steemann 53909c0dcd adjusted tests 2014-06-23 18:45:06 +02:00
Jan Steemann 13e061bd76 fixed tests 2014-06-23 17:46:00 +02:00
Jan Steemann e51dcdb2cb Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into mjmh
Conflicts:
	js/common/tests/shell-general-graph.js
2014-06-20 13:39:51 +02:00
Michael Hackstein 22d9be8903 Added short hand for graph creation for http api tests 2014-06-20 13:02:40 +02:00
Michael Hackstein 92b50b4d08 Added graph and edge collection tests for traversal API to execution script 2014-06-20 13:01:43 +02:00
Michael Hackstein 43edb7772a Added tests for traversal API using graphs instead of an edge collection. 2014-06-20 13:00:00 +02:00
Jan Steemann 56b032c688 more tests 2014-06-20 09:38:35 +02:00
Jan Steemann c60bde28b6 added crash tests 2014-06-20 08:36:36 +02:00
Jan Steemann f3b6fff29b less parallelity in Ahuacatl test (valgrind...) 2014-06-18 21:48:45 +02:00
Jan Steemann 73e3fd5551 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into mjmh 2014-06-18 21:13:51 +02:00
Jan Steemann 6fc48d2625 fixed failing test 2014-06-18 21:12:52 +02:00
Frank Celler dd9f81ec82 fixed version check 2014-06-18 19:14:14 +02:00
Jan Steemann 4a28040d37 --enable-failure-tests 2014-06-18 17:09:41 +02:00
Jan Steemann 1d68586500 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into mjmh
Conflicts:
	js/apps/system/aardvark/frontend/js/modules/org/arangodb/general-graph.js
2014-06-18 16:37:28 +02:00
Jan Steemann 8b9cdbe075 fixed tests 2014-06-18 16:34:11 +02:00
Michael Hackstein 02f1552b35 Fixed general graph api tests 2014-06-18 10:55:16 +02:00
Lucas Dohmen df658a0648 A spec for the existing Foxx Repository functionality 2014-06-17 17:34:55 +02:00
Jan Steemann 091491d13b crash recovery tests 2014-06-17 15:30:11 +02:00
Jan Steemann b303db2b50 Merge branch 'mjmh' of https://github.com/triAGENS/ArangoDB into mjmh
Conflicts:
	js/apps/system/aardvark/frontend/js/bootstrap/errors.js
	js/common/bootstrap/errors.js
2014-06-17 00:49:18 +02:00
Jan Steemann a1177816aa modifiable AQL, final syntax 2014-06-17 00:37:08 +02:00
Jan Steemann 7f1c67b964 recovery tests 2014-06-16 17:22:20 +02:00
Jan Steemann 02d1cf3ea4 Merge branch 'mjmh' of https://github.com/triAGENS/ArangoDB into mjmh 2014-06-16 17:09:58 +02:00
Jan Steemann ff494cc897 added recovery tests (not functional yet) 2014-06-16 16:52:26 +02:00
Esteban Lombeyda 2405a5ffa2 read-only: unit tests for client and server side 2014-06-16 15:24:12 +02:00
Esteban Lombeyda 51d86d8351 Merge branch 'mjmh' of github.com:triAGENS/ArangoDB into mjmh 2014-06-16 11:44:46 +02:00
Jan Steemann 6fd6efaee5 removed useless make option 2014-06-13 22:01:28 +02:00
Jan Steemann 85b92dbf21 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into mjmh 2014-06-13 18:16:48 +02:00
Jan Steemann 0c5950507c fixed test 2014-06-13 17:50:44 +02:00
Michael Hackstein fdece972d0 Added tests for vertex and edge collection lists in http interface. Added docu for _list in general-graph module 2014-06-13 16:41:48 +02:00
Michael Hackstein 7541149200 Added functions to list all graphs and all vertex/edge collections of a specific graph to http-api 2014-06-13 15:11:59 +02:00
Jan Steemann d7f35bcc7b fixed datafile ticks issues 2014-06-13 14:46:21 +02:00
Jan Steemann d592591a06 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into mjmh 2014-06-13 11:31:59 +02:00
Michael Hackstein e9f161c061 Added a route to add an additional edge definition to the graph 2014-06-12 15:32:50 +02:00
Michael Hackstein 2198a03b49 Implemented edge crud in http-graph-module. TODO: Modify definitions 2014-06-12 14:43:21 +02:00
Michael Hackstein 3a0fddb901 Moved the unspecific route to the end of graph-http foxx, was matched too often 2014-06-12 13:15:25 +02:00
Michael Hackstein 25e97eafee Further implemented graph-http-module. Now offers complete vertex interaction. Tests for Vertex Interaction and Edge Interaction added 2014-06-12 08:09:37 +01:00
Jan Steemann 7e6750c397 wal flush w/ collection unload 2014-06-11 11:33:02 +02:00
Jan Steemann 72a102e794 major internal changes 2014-06-08 00:12:53 +02:00
Jan Steemann ad1feb0ed4 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into mjmh 2014-06-04 14:30:28 +02:00
scottashton 354371a8ab healed run-tests 2014-06-04 08:33:58 +02:00
Jan Steemann 240bda8b06 use DatabaseGuard 2014-06-03 19:44:37 +02:00
Jan Steemann 52dc9a91b8 added more markers and tests 2014-06-03 19:30:40 +02:00
Jan Steemann 577860c978 renamed struct attribute 2014-06-03 19:15:01 +02:00
Jan Steemann 8ea7fa5e4a Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into mjmh 2014-06-03 17:18:02 +02:00
Jan Steemann fb87b35dec initial implementation of wal logfile collection, scans markers only atm 2014-06-03 16:39:49 +02:00
scottashton 006eb3b61b calculation of measurements for graphs added and changed calculation of shortst paths to Floyd–Warshall algorithm 2014-06-03 16:25:13 +02:00
Jan Steemann 2c934cf1aa Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into mjmh
Conflicts:
	arangod/RestServer/ArangoServer.cpp
	arangod/V8Server/ApplicationV8.cpp
2014-06-02 09:52:05 +02:00
Jan Steemann 5962e9dfc4 added std::19337 2014-05-31 02:56:18 +02:00
Jan Steemann d4dd58b264 merged primary-collection.cpp with document-collection.cpp 2014-05-31 00:22:32 +02:00
Jan Steemann 0e326149d8 added test case 2014-05-30 12:53:14 +02:00
Jan Steemann dc742f255a Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into mjmh 2014-05-22 10:52:37 +02:00
Jan Steemann c38de677d0 cleaned up WAL markers 2014-05-21 14:17:58 +02:00
Jan Steemann cc866d2357 added graph tests to automatic tests 2014-05-20 17:44:37 +02:00
Jan Steemann cdad1f19fe moved marker definitions 2014-05-20 14:21:12 +02:00
Jan Steemann 029b7333ba added remove marker struct 2014-05-20 13:17:01 +02:00
Jan Steemann 57753f84dd added new structs for WAL documents and edges 2014-05-20 11:49:12 +02:00
Jan Steemann c9e49c5446 reverted struct change 2014-05-20 11:39:15 +02:00
Jan Steemann 8879e27738 removed unused struct 2014-05-20 11:30:02 +02:00
Jan Steemann 36567df644 removed libbson 2014-05-16 20:32:05 +02:00
Jan Steemann cc956b3976 scan-build 2014-05-15 10:18:05 +02:00
Jan Steemann 2bc4aa90af fixed issues found by scan-build 2014-05-15 10:09:06 +02:00
Jan Steemann c9586d82dc added make jslint to target 2014-05-12 14:45:19 +02:00
Jan Steemann cfc2d407d7 added tests for task management 2014-05-10 00:43:14 +02:00
Jan Steemann 78185a60d7 fixed return code for async job cancellation 2014-05-08 18:27:46 +02:00
Jan Steemann 0cb2217518 no need to run the GC after each and every request during testing
this change will hopefully make tests run a bit faster
2014-04-23 23:22:49 +02:00
Jan Steemann 42809a20de removed debug output 2014-04-23 21:45:41 +02:00
Jan Steemann b6fa2971ed debug output 2014-04-22 22:35:36 +02:00
Jan Steemann 906d648df9 fixed test on faster computers 2014-04-22 11:30:38 +02:00
Frank Celler 6cdfa029c9 added more error information, fixed try catch
Conflicts:
	CHANGELOG
	arangod/V8Server/ApplicationV8.cpp
2014-04-21 13:35:06 +02:00
Max Neunhoeffer 276a3f8e1e Add bson unittest. 2014-04-08 11:39:07 +02:00
Jan Steemann 3cc2b59e74 size tests 2014-04-07 21:27:57 +02:00
Jan Steemann 98974baf63 removed reference to non-existing file 2014-04-07 21:02:59 +02:00
Max Neunhoeffer 7383abbfa3 Merge branch 'devel' of ssh://github.com/triAGENS/ArangoDB into devel 2014-04-07 15:07:40 +02:00
Max Neunhoeffer 5dc976ad45 Improve BsonHelper interface. 2014-04-07 15:07:22 +02:00
Jan Steemann 9a6cab4386 cpp 2014-04-07 14:30:51 +02:00
Jan Steemann 282f510e34 fixed race conditions 2014-04-04 14:57:14 +02:00
Jan Steemann 2740803d0b removed obsolete test targets 2014-04-03 23:22:50 +02:00
Jan Steemann b43bc4b657 change order of includes so it compiles 2014-04-03 20:31:42 +02:00
Jan Steemann a63b27d94a Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2014-04-03 19:59:05 +02:00
Jan Steemann a325df8982 fixed test 2014-04-03 13:50:21 +02:00
Jan Steemann 88c3089b36 don't report bogus error messages 2014-04-02 17:51:25 +02:00
Max Neunhoeffer 92d28201e1 Fixes for traversal tests for the cluster. 2014-04-02 13:53:53 +02:00
Max Neunhoeffer ce8580bd8a Repair traversal tests for new edge index. 2014-04-02 11:12:24 +02:00
Max Neunhoeffer 0b80d25c29 Fix bug in associative-multi-pointer hash.
Also finish unittest for it.
2014-04-01 20:28:58 +02:00
Max Neunhoeffer a3596a6013 Merge branch 'devel' of ssh://github.com/triAGENS/ArangoDB into devel 2014-04-01 10:09:10 +02:00
Max Neunhoeffer 064371769a Add to unittest, not yet working. 2014-04-01 10:02:10 +02:00
Jan Steemann 9d231223fd Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2014-03-31 16:45:26 +02:00
Max Neunhoeffer 53f2203c8b New test. 2014-03-31 16:26:14 +02:00
Jan Steemann c39510820d added tests 2014-03-31 13:47:17 +02:00
Jan Steemann 5f3ea348bc separated FNV hashing functions 2014-03-31 11:41:23 +02:00
Jan Steemann 3184d08746 added more tests for CRC32 2014-03-28 21:29:49 +01:00
Jan Steemann 5a3f2aaa49 improved job API
* added REST API method HTTP GET `/_api/job/job-id` to query the status of an
  async job without potentially fetching it from the list of done jobs

* fixed non-intuitive behaviour in jobs API: previously, querying the status
  of an async job via the API HTTP PUT `/_api/job/job-id` removed a currently
  executing async job from the list of queryable jobs on the server.
  Now, when querying the result of an async job that is still executing,
  the job is kept in the list of queryable jobs so its result can be fetched
  by a subsequent request.
2014-03-21 21:19:45 +01:00
Frank Celler b78167169d fixed compilation for clang 5.1 2014-03-14 16:43:27 +01:00
Jan Steemann dd594fe75a added NO_LOG option to disable rspec logging 2014-03-14 13:25:53 +01:00
Jan Steemann f4752e8f91 added tests for error codes and messges 2014-03-13 23:56:45 +01:00
Jan Steemann babaf2738b adjusted tests 2014-03-12 14:19:13 +01:00
Jan Steemann 35cf13a38c more tests for shapes 2014-03-12 13:26:09 +01:00
Max Neunhoeffer 24e7293dba Split shell-any tests to save time on the cluster. 2014-03-10 10:21:28 +01:00
Jan Steemann 469923ca26 fixed test 2014-03-03 09:17:55 +01:00
Jan Steemann b090276273 fixed tests 2014-02-28 20:00:51 +01:00
Jan Steemann d7c29386ef fixed replication test runner 2014-02-28 20:00:29 +01:00
Max Neunhoeffer 35db5983a9 Add the cluster test case. 2014-02-28 17:26:15 +01:00
Max Neunhoeffer 803d3789f1 Disable test with a bad timeout on cluster. 2014-02-28 17:22:51 +01:00
Max Neunhoeffer 8f701ee143 Forgot a file in previous commit. 2014-02-28 16:55:15 +01:00
Max Neunhoeffer 4913c7abf6 Split ruby transaction tests for cluster/noncluster. 2014-02-28 16:54:49 +01:00
Jan Steemann 65feb43294 adjusted test expectations 2014-02-28 09:29:52 +01:00
Jan Steemann 6243ec7310 split tests 2014-02-27 15:15:08 +01:00
Jan Steemann cefef13c42 fixed a failing test 2014-02-27 11:58:16 +01:00
Jan Steemann 8c04d6b12e fixed tests 2014-02-27 11:39:36 +01:00
Frank Celler e10bab8059 Merge branch 'devel' of github.com:triAGENS/ArangoDB into sharding 2014-02-27 09:16:02 +01:00
Frank Celler 8406f51435 Merge remote-tracking branch 'origin/1.4' into devel
Conflicts:
	CHANGELOG
	VERSION
	arangod/Ahuacatl/ahuacatl-access-optimiser.c
	arangod/Ahuacatl/ahuacatl-codegen.c
	build.h
	configure
	configure.ac
	js/apps/system/aardvark/api-docs.json
	js/apps/system/aardvark/api-docs/batch.json
	js/apps/system/aardvark/api-docs/database.json
	js/apps/system/aardvark/api-docs/endpoint.json
	js/apps/system/aardvark/api-docs/job.json
	js/apps/system/aardvark/api-docs/replication.json
	js/apps/system/aardvark/api-docs/system.json
	js/apps/system/aardvark/frontend/js/modules/org/arangodb/graph/traversal.js
	js/common/modules/org/arangodb/graph/traversal.js
	js/server/modules/org/arangodb/ahuacatl.js
	lib/HttpServer/HttpCommTask.h
2014-02-27 09:13:03 +01:00
Jan Steemann 23a13daf80 fixed make target unittests-shell-server-only 2014-02-26 20:09:58 +01:00
Max Neunhoeffer e68a3e9c05 Rename test. 2014-02-26 15:04:25 +01:00
Max Neunhoeffer bacfafea7f Rename non-cluster tests. 2014-02-26 14:38:55 +01:00
Max Neunhoeffer 16a2fa6770 Split noncluster and general shell-keygen tests. 2014-02-26 14:27:55 +01:00
Jan Steemann b634aff8a8 renamed test 2014-02-26 13:45:08 +01:00
Max Neunhoeffer 57bf2292be Disable import test on cluster. 2014-02-26 12:44:56 +01:00
Max Neunhoeffer 86faf20dbb Disable transactions server test on cluster. 2014-02-26 10:17:05 +01:00
Max Neunhoeffer ff43f0601b Merge branch 'sharding' of ssh://github.com/triAGENS/ArangoDB into sharding 2014-02-26 08:41:28 +01:00
Jan Steemann 23ba186b0d Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into sharding
Conflicts:
	CHANGELOG
	arangod/Ahuacatl/ahuacatl-access-optimiser.c
	arangod/CapConstraint/cap-constraint.c
	js/apps/system/aardvark/frontend/scss/_tiles.scss
	js/apps/system/aardvark/frontend/scss/generated.css
	js/apps/system/aardvark/frontend/scss/style.scss
	js/common/modules/org/arangodb/users-common.js
2014-02-25 17:21:14 +01:00
Max Neunhoeffer af02a45e45 Disable test on cluster. 2014-02-25 16:16:33 +01:00
Jan Steemann af96607fc1 fixed index tests 2014-02-25 11:19:51 +01:00
Jan Steemann 870f969933 added user validation API at POST `/_api/user/<username>` 2014-02-24 11:12:37 +01:00
Frank Celler 832254b7b7 fixed graph again 2014-02-21 23:12:37 +01:00
Max Neunhoeffer f7e57a5b47 Merge branch 'devel' of ssh://github.com/triAGENS/ArangoDB into sharding
Conflicts:
	js/apps/system/aardvark/frontend/scss/generated.css
	js/apps/system/aardvark/manifest.json
	lib/Rest/EndpointIp.cpp
	lib/Rest/EndpointUnixDomain.cpp
	lib/V8/v8-utils.cpp
2014-02-21 15:28:21 +01:00
Jan Steemann 211b0da24b moved options --server.reuse-address and --server.no-reuse-address into ApplicationEndpointServer 2014-02-21 14:44:18 +01:00
Max Neunhoeffer 3cb1784430 Reorganise unit tests.
In JS framework we now find the available test files by directory
listing. This means one can simply drop a file in the right
directory to add a test.

We use a naming convention for filenames which is explained
in the README files in the corresponding directories.

Old unit tests do not yet use this but do use the new names and
should still work as usual.
2014-02-21 11:24:31 +01:00
Max Neunhoeffer d2538cefeb Add http_server and ssl_server tests to js framework. 2014-02-20 12:52:03 +01:00
Max Neunhoeffer d55a4678f9 Merge branch 'sharding' of ssh://github.com/triAGENS/ArangoDB into sharding 2014-02-20 10:24:22 +01:00
Max Neunhoeffer 3d332ad01e Adjust paths to allow call with a different current dir. 2014-02-20 10:20:24 +01:00
Jan Steemann 29c09e1ef7 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into sharding 2014-02-20 10:04:43 +01:00
Jan Steemann a0c3a7fe56 improved users API 2014-02-20 10:04:13 +01:00
Jan Steemann 70aca15aa0 fixed test 2014-02-20 09:15:57 +01:00
Jan Steemann 66bc4c9a41 allow unique index creation on shard keys only 2014-02-19 10:30:41 +01:00
Jan Steemann f35b59ba16 updated tests 2014-02-18 15:49:12 +01:00
Heiko Kernbach 63e8a95f67 Merge branch 'sharding' of https://github.com/triAGENS/ArangoDB into sharding 2014-02-18 14:29:56 +01:00
Heiko Kernbach b69fad0381 merge origin/devel 2014-02-18 14:29:44 +01:00
Jan Steemann 29f3e17eef extract real error number 2014-02-18 14:27:32 +01:00
Jan Steemann dc8e590bca inedges, outedges, edges 2014-02-18 13:46:09 +01:00
Jan Steemann 39584f0735 adjusted user result structure 2014-02-18 12:05:05 +01:00
Jan Steemann 682e00245b fulltext 2014-02-18 10:14:52 +01:00
Jan Steemann 6c3c4b5dce near/within 2014-02-18 09:47:33 +01:00
Jan Steemann 9f16760359 simple query range 2014-02-17 16:41:10 +01:00
Jan Steemann 5c13019522 added tests 2014-02-17 11:37:49 +01:00
Jan Steemann 0f0ef8a33f updated index docs 2014-02-14 10:30:05 +01:00
Jan Steemann f8476ce0b0 fixed tests 2014-02-13 18:14:53 +01:00
Michael Hackstein bc16cfae86 Merge remote-tracking branch 'origin/devel' into sharding
Conflicts:
	Documentation/InstallationManual/Installing.md
	arangosh/CMakeLists.txt
2014-02-11 15:52:49 +01:00
Frank Celler fe8bab5457 Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel
Conflicts:
	CHANGELOG
2014-02-11 13:27:22 +01:00
Frank Celler c6ce5c7406 made module loader more node compatible, added coffee script support 2014-02-11 13:26:11 +01:00
Jan Steemann fe7dde8909 more randomness for test 2014-02-11 09:38:43 +01:00
scottashton 80768b564b fixed waitForSync in graph api, adjusted documentation, delete tests in api-http-spec.rb due to change in ruby lib 2014-02-10 17:53:21 +01:00
scottashton 6617683cff fixed waitForSync in graph api, adjusted documentation, delete tests in api-http-spec.rb due to change in ruby lib 2014-02-10 17:47:32 +01:00
Jan Steemann b4d9f10f17 fixed some database methods 2014-02-06 15:54:34 +01:00
Jan Steemann c38c038492 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into sharding
Conflicts:
	CHANGELOG
	js/apps/system/aardvark/frontend/css/collectionsItemView.css
	js/apps/system/aardvark/frontend/css/graphlayout.css
2014-02-06 13:18:52 +01:00
Jan Steemann b5550e17a6 updated tests and documentation 2014-02-06 12:11:17 +01:00
Jan Steemann 10eb807366 fixed HTTP CRUD operations 2014-02-05 17:19:45 +01:00
Jan Steemann 7a397ac985 renamed tests 2014-02-05 15:20:19 +01:00
Jan Steemann 58b3e0f99d splitted a few tests 2014-02-05 15:15:51 +01:00
Jan Steemann 3e5b366021 make test directories more independent 2014-02-04 12:08:01 +01:00
Jan Steemann e9c5af7895 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into sharding
Conflicts:
	CHANGELOG
	js/apps/system/aardvark/frontend/css/collectionsView.css
	js/apps/system/aardvark/frontend/css/layout.css
	js/apps/system/aardvark/frontend/js/routers/router.js
2014-01-30 19:40:21 +01:00
Max Neunhoeffer c3f01237b0 Implement replace and update on cluster.
This still has a freeing too early bug with TRI_json_t.
2014-01-28 16:49:44 +01:00
Jan Steemann 7f240a1625 fixed segfault in import API 2014-01-27 16:12:39 +01:00
Jan Steemann 57ca73f463 fixed segfault in import API 2014-01-27 16:12:10 +01:00
Jan Steemann 1b08bc6582 start up the HTTP server when starting ArangoDB in console mode 2014-01-27 09:45:26 +01:00
Jan Steemann df1ce45e15 issue #751: Create database through API should return HTTP status code 201 2014-01-27 08:54:36 +01:00
a-brandt 62d81cee14 added HAS and HAS_NOT 2014-01-24 14:59:49 +01:00
a-brandt 041b7f5daa added HAS and HAS_NOT 2014-01-24 14:49:50 +01:00
Jan Steemann 5be81a976b removed separate cluster tests 2014-01-24 12:51:26 +01:00
Jan Steemann b1fccd1bb0 added tests for JSON hashing 2014-01-23 16:42:42 +01:00
Jan Steemann c9dabaca86 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into sharding 2014-01-16 15:02:44 +01:00
Frank Celler e1b622bb87 commented out tests 2014-01-15 22:58:03 +01:00
Jan Steemann b1c4f75e50 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into sharding 2014-01-14 13:29:07 +01:00
Jan Steemann 30b866405e issue #732: Rest API GET revision number 2014-01-13 17:30:17 +01:00
Jan Steemann d52aaf8340 issue #732: Rest API GET revision number 2014-01-13 17:23:39 +01:00
Michael Hackstein 9f3479f5b6 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into sharding
Conflicts:
	utils/Makefile.files
2014-01-10 17:41:52 +01:00
Jan Steemann 5c0e6e12e0 added tests for serverstate and clusterinfo 2014-01-06 18:19:14 +01:00
Jan Steemann 4de2b916c4 added test for uniqid 2014-01-06 13:18:01 +01:00
Jan Steemann a7d9b3f578 added test for cluster helper functions 2014-01-03 16:04:40 +01:00
Jan Steemann dde10cf9aa fixed foxx-manager tests 2014-01-03 14:37:34 +01:00
Jan Steemann e3b28e89ae fixed foxx-manager tests 2014-01-03 14:37:11 +01:00
Frank Celler 84507cfc44 merged changes from 1.4 back to devel 2013-12-27 14:59:23 +01:00
Frank Celler c94685595f fixed option 2013-12-24 09:23:55 +01:00
Frank Celler 41c28ac4ff fixed unittests for foxx-manager and arango-dfdb 2013-12-24 02:16:00 +01:00
Jan Steemann 32b26f5392 added agency test 2013-12-11 18:51:50 +01:00
Jan Steemann 44b3237882 moved server-only tests to js/server/tests
this hopefully removes some future confusion about the tests
also moved some graph stuff into js/common as client-side graphs did not fully work

make logfile path accessible
2013-12-04 22:05:00 +01:00
Jan Steemann 3edd6a0251 issue #694: added tests for configuration files 2013-12-02 09:39:27 +01:00
Frank Celler abe0722e77 do not verify ssl 2013-11-23 23:06:47 +01:00
Frank Celler 3de7ee06dd do not verify ssl 2013-11-23 23:06:27 +01:00
Frank Celler 80604b8d65 fixed typo 2013-11-23 22:28:29 +01:00
Max Neunhoeffer 3aa1b12a45 Merge branch 'skiplist-cleanup' into devel
This implements a considerable cleanup of the skip list index code:
  - Replace implementation of skip lists by a generic one using
    callbacks for comparisons
  - The new implementation resides in lib/BasicsC/skip-list.*
  - It uses a singly linked list (unidirectional) as opposed to the
    previous implementation which used a doubly linked list
  - Adjust skip list index code in arangod/SkipLists/skiplistIndex.* to
    use the generic skip list implementation
  - Unify unique skip lists and non-unique ones into one code base
  - Cleanup in skip list index code, in particular with respect to
    iterators
  - Prepare the scene for sparse skip list indices
2013-11-22 10:47:04 +01:00
Max Neunhoeffer b23f299aaa Add unittest for correctness of skiplist index. 2013-11-22 10:40:13 +01:00
Jan Steemann 54b5a74530 added shapes test 2013-11-22 02:42:11 +01:00
Jan Steemann 920d08d855 removed redundant startup options 2013-11-20 01:50:27 +01:00
Frank Celler 1c57332665 cleanup 2013-11-16 17:12:17 +01:00
Jan Steemann c5e9538547 Merge remote-tracking branch 'origin/devel' into inline-shapes
Conflicts:
	arangod/VocBase/document-collection.c
2013-11-14 01:01:24 +01:00
Max Neunhoeffer ea7abdc027 Add a test suite.
This is to test the performance of deletion with a skip-list index
and many documents with the same value in the attribute indexed
by the skip-list.
2013-11-08 09:26:06 +01:00
Jan Steemann 9d5e5ff7cc merged fix for issue #653 2013-11-07 16:26:45 +01:00
Max Neunhoeffer ba736d1b7a Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2013-11-07 16:03:04 +01:00
Max Neunhoeffer 7d19f11a70 Add a test suite.
This is to test the performance of deletion with a skip-list index
and many documents with the same value in the attribute indexed
by the skip-list.
2013-11-07 16:00:26 +01:00
Jan Steemann ae872007ac updated database creation API 2013-11-07 14:06:44 +01:00
Jan Steemann 819e9a1cb6 fixed user creation on database creation 2013-11-07 13:32:42 +01:00
Jan Steemann ff20a1d5ff fixed test 2013-11-06 17:24:47 +01:00
Jan Steemann 1d8d26b7ab added test 2013-11-06 09:34:51 +01:00
Jan Steemann d30ca7b658 added `/_api/database/user` method 2013-11-06 09:34:44 +01:00
Jan Steemann a977c5662a removed --database.force-sync-shapes option 2013-11-05 18:20:55 +01:00
Jan Steemann 37b49c2769 added test 2013-11-04 14:23:30 +01:00
Jan Steemann 7924f657d4 added `/_api/database/user` method 2013-11-04 14:22:00 +01:00
Jan Steemann 935d1edd53 issue #653: slow query 2013-11-04 13:33:26 +01:00
Jan Steemann d11041cef9 execute single test 2013-10-31 13:33:31 +01:00
Jan Steemann 0b64f18e77 issue #650: Randonmess of any() should be improved 2013-10-31 10:37:45 +01:00
Jan Steemann 46d4e14f7b issue #650: Randonmess of any() should be improved 2013-10-31 10:09:01 +01:00
Jan Steemann 4f50b98c45 removed second logger implementation 2013-10-30 00:38:25 +01:00
Frank Celler 1a7bbb7058 new version 1.5 2013-10-29 15:24:38 +01:00
Frank Celler ad817fb90e fixed sed on Mac 2013-10-29 12:22:08 +01:00
Jan Steemann 43b4f78b62 issue #620 2013-10-28 19:38:19 +01:00
Frank Celler d620386a7b added tests 2013-10-20 18:46:40 +02:00
Jan Steemann 7dc8ed7c47 issue #617: Swagger API is missing '/_api/version' 2013-10-17 11:55:39 +02:00
Jan Steemann d71ee7ff6f fixed issue #615 2013-10-17 11:12:02 +02:00
Jan Steemann 671b1e850b added tests for dump/restore 2013-10-15 16:47:37 +02:00
Jan Steemann 79f70c7eea replication applier will now preferrably use collection names instead of collection ids when applying events 2013-10-14 13:45:44 +02:00
Jan Steemann fa93fd5755 fixed test 2013-10-10 18:22:52 +02:00
Jan Steemann d6149c9a9a added documentation for /_api/import 2013-10-02 14:22:25 +02:00
Jan Steemann 57e028de9d updated docs 2013-09-28 01:20:40 +02:00
Jan Steemann 1eeaa8145b removed test output 2013-09-25 18:19:29 +02:00
Jan Steemann d7b9add4db removed current-database API 2013-09-24 17:34:35 +02:00
Jan Steemann 7a1f3ae756 updated documentation, added tests 2013-09-24 17:27:52 +02:00
Jan Steemann 67f3c3c469 changed HTTP return code for not-found cursors 2013-09-23 15:29:03 +02:00
Jan Steemann c32654c5d4 added tests for async 2013-09-20 17:48:33 +02:00
Jan Steemann 8a9ce4e86d fixed memory allocation inefficiency 2013-09-20 17:26:26 +02:00
Jan Steemann 4aee2df2f3 force usage of --upgrade 2013-09-17 15:56:24 +02:00
Jan Steemann 3e1436b6d1 moved test 2013-09-13 19:58:45 +02:00
Jan Steemann 894180dc20 added test cases 2013-09-13 18:25:28 +02:00
Jan Steemann 64741f8a8d added test cases for endpoints 2013-09-13 14:07:30 +02:00
Jan Steemann fc971a73bf _graphs renaming rollback 2013-09-12 18:26:35 +02:00
Jan Steemann 6ff314de0e runtime addition and removal of endpoints 2013-09-12 18:07:39 +02:00
Jan Steemann ac4ed728c0 renamed collection `_graphs` to `arangodb_graphs` 2013-09-09 11:07:10 +02:00
Jan Steemann b9fbbc85ea Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel 2013-09-05 12:43:17 +02:00
Jan Steemann 369433f1e2 Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel
Conflicts:
	arangosh/Benchmark/BenchmarkThread.h
	lib/SimpleHttpClient/SimpleHttpClient.cpp
2013-09-05 12:34:45 +02:00
Frank Celler b73a4c2ac3 added missing --relative option 2013-09-05 11:46:57 +02:00
Jan Steemann ca2f5feb4b fixed redirect URLs 2013-09-04 17:30:37 +02:00
Lucas Dohmen 69286b5742 Foxx: Foxx Transformer is now Foxx Preprocessor 2013-09-04 15:08:15 +02:00
Jan Steemann daccdea5c9 fixed tests 2013-08-29 13:28:54 +02:00
Jan Steemann 669957e81d fixed test after web interface change 2013-08-26 17:05:32 +02:00
Jan Steemann 9b8b030a8a added several tests for authentication 2013-08-22 11:18:11 +02:00
Jan Steemann 38abd5bf9e issue #576 2013-08-21 14:02:09 +02:00
Jan Steemann 39f21af47c fixed test error 2013-08-20 11:10:53 +02:00
Lucas Dohmen f0a2aeef4a Foxx: Source Code Transformer is done 2013-08-06 16:13:50 +02:00
Lucas Dohmen b374054740 Foxx: Format Middleware is now optional 2013-08-05 17:05:32 +02:00
Lucas Dohmen c9b48f13cd Foxx: Separating Template Middleware from Base, Step 1 2013-08-05 16:13:51 +02:00
Lucas Dohmen b19d3c69fb Foxx: BaseMiddleware Tests pulled out 2013-08-05 16:13:51 +02:00
Lucas Dohmen b3dd4d7b59 Foxx: Model tests pulled out 2013-08-05 13:41:02 +02:00
Lucas Dohmen 6cef711a7b Foxx: Repository tests pulled out 2013-08-05 13:33:06 +02:00
Jan Steemann c6d9ba1f4c adjusted tests 2013-08-02 11:54:33 +02:00
Jan Steemann 1fc1bb108d added replication client tests 2013-08-02 11:45:55 +02:00
Jan Steemann e86fff18e2 added chunkSize for replication-applier 2013-08-02 11:03:54 +02:00
Jan Steemann 38d8b0b598 adjusted tests and docs 2013-08-01 18:41:13 +02:00
Jan Steemann a7c5350455 added server-id method 2013-08-01 18:27:42 +02:00
Jan Steemann f1418ec667 updated tests and docs 2013-08-01 16:53:29 +02:00
Jan Steemann c2611f567a bugfixed cap constraint 2013-08-01 13:17:38 +02:00
Jan Steemann 002ebd48bc removed all replication conditionals 2013-07-30 13:16:37 +02:00
Jan Steemann a19530c57c attempt to fix failing tests 2013-07-29 09:21:27 +02:00
Jan Steemann 68a1cac6f2 added fm tests 2013-07-27 00:52:28 +02:00
Jan Steemann 6d4a58e625 generate foxx-manager man page 2013-07-26 22:46:58 +02:00
Jan Steemann 3b57e80241 simplified HTTP import API 2013-07-25 18:24:21 +02:00
Jan Steemann 9de2910717 updated replication documentation 2013-07-25 16:32:11 +02:00
Jan Steemann aa9845d1bd fixed graph test 2013-07-25 16:31:37 +02:00
Jan Steemann 8a254ea230 replication API documentation 2013-07-24 17:37:16 +02:00
Jan Steemann 4f14062d10 replication tests 2013-07-24 15:22:45 +02:00
Jan Steemann 0adbe8410f log "rev" 2013-07-23 18:00:29 +02:00
Jan Steemann 5fe1844ee1 replication tests 2013-07-23 15:03:59 +02:00
Jan Steemann f49ae77bc5 include replication tests 2013-07-23 11:19:41 +02:00
Jan Steemann c4f82088dd replication tests 2013-07-22 18:12:56 +02:00
Jan Steemann 3ab117de67 added collection.first() and collection.last() 2013-07-19 14:21:46 +02:00
Lucas Dohmen 42eae4dea4 Better Structure for Makefile Unittests 2013-07-19 10:55:37 +02:00
Jan Steemann e359dc29dd INCOMPATIBLE CHANGE: changed AQL user function namespace resolution operator from `:` to `::`
AQL user-defined functions were introduced in ArangoDB 1.3, and the namespace resolution
operator for them was the single colon (`:`). A function call looked like this:

    RETURN mygroup:myfunc()

The single colon caused an ambiguity in the AQL grammar, making it indistinguishable from
named attributes or the ternary operator in some cases, e.g.

    { mygroup:myfunc ? mygroup:myfunc }

The change of the namespace resolution operator from `:` to `::` fixes this ambiguity.

Existing user functions in the database will be automatically fixed when starting ArangoDB
1.4 with the `--upgrade` option. However, queries using user-defined functions need to be
adjusted on the client side to use the new operator.
2013-07-18 12:02:28 +02:00
Jan Steemann ca6b184286 added TRI_JSON_STRING_REFERENCE 2013-07-10 17:00:29 +02:00
Jan Steemann 3cc4405c18 added collection.checksum() 2013-07-10 11:10:00 +02:00
Jan Steemann 4c952ad927 added unit tests 2013-07-09 12:32:47 +02:00
Jan Steemann a07d2ea011 replication 2013-07-05 12:12:38 +02:00
Jan Steemann bb86a0b2d5 speed up simple queries testing 2013-06-28 09:54:20 +02:00
Jan Steemann 7cc7f2d28e added authentication tests, fixed authentication 2013-06-27 13:53:19 +02:00
Jan Steemann b3c8f6b19a addtl sleep to suppress some errors 2013-06-26 12:06:26 +02:00
Jan Steemann db50b38370 fixed typos 2013-06-25 09:06:20 +02:00
Jan Steemann adfd051c92 added test for unloading 2013-06-24 13:55:51 +02:00
Jan Steemann 373639a3b6 increase unittest timeout 2013-06-21 17:11:20 +02:00
Jan Steemann ee2de60670 less syscalls in logging, do not use file-logging in tests
file-based logging creates a problem with Valgrind 3.8.1 for `make unittests-http-server VALGRIND=valgrind` on OpenSuse 64 bits, -O2
2013-06-21 16:05:58 +02:00
Jan Steemann cae82f27e4 added `/_api/current-database` 2013-06-21 10:25:15 +02:00
Jan Steemann 9dfb7483ff "doCompact" attribute for collections 2013-06-19 16:51:16 +02:00
a-brandt 71c5f89010 Added unittests for structures 2013-06-18 15:56:01 +02:00
Lucas Dohmen b5982aa2aa Make it easier to exclude single Unit Tests
This change is tiny. But its lovely at the same time.
2013-06-14 10:13:17 +02:00
Jan Steemann 74d2a00737 test internal.download() 2013-06-13 15:05:08 +02:00
Jan Steemann 9599a021b9 moved some graph traversal validation into the traversal module
- that simplifies some of the traversal-calling routines
- make returning error codes more consistent (specific 404 errors when
referring to unknown collections instead of simple 400 errors)
- optionally limit traversals to a certain number of iterations so they
  don't run endlessly in cyclic graphs
2013-06-12 17:04:47 +02:00
Jan Steemann 212117d3b4 graph traversal API tests 2013-06-12 15:25:35 +02:00
Jan Steemann e8e10844f4 moved compaction tests 2013-06-11 10:41:40 +02:00
Jan Steemann ab6ca2f017 ported all recent fixes from 1.3 2013-05-16 21:04:04 +02:00
Jan Steemann c7d2f8f8cd some json / shaped-json and string handling improvements 2013-05-13 09:01:07 +02:00
Jan Steemann ede177aa55 issue #507, issue #508 2013-05-06 09:40:28 +02:00
Frank Celler 01d654e923 fixed https version of test 2013-05-05 23:34:02 +02:00
Frank Celler 48515d7bd8 fixed tests 2013-05-05 21:55:10 +02:00
Jan Steemann 928d22eb98 remove temporary files 2013-05-03 18:30:53 +02:00
Jan Steemann 74cd7fc9ef enabled static codebase tests 2013-05-03 11:09:17 +02:00
Jan Steemann ee7ab712d6 issue #495 2013-05-03 11:08:58 +02:00
Jan Steemann ef1fcc89ee added test case for #491 2013-05-02 16:26:40 +02:00
Frank Celler c437c03aa5 fixed path for modules 2013-04-24 12:40:03 +02:00
Frank Celler d02d79ce1c added coffee-script 2013-04-21 22:57:19 +02:00
Frank Celler 5f0f9922f8 added node path 2013-04-21 22:16:06 +02:00
Jan Steemann cd17f1ef44 issue #481 2013-04-21 11:37:46 +02:00
Jan Steemann 4d172c69d3 added test case 2013-04-17 09:31:30 +02:00
Jan Steemann 7d9777f8c5 extended API for user-defined AQL functions 2013-04-16 18:32:19 +02:00
Jan Steemann c945dbd2cd updated transaction API 2013-04-15 11:54:36 +02:00
Jan Steemann dee5adb9f5 added client side API for transactions 2013-04-12 23:18:48 +02:00
Jan Steemann 5ff92dddb6 added test case 2013-04-12 15:45:28 +02:00
Jan Steemann b3e8313a5e added transaction test 2013-04-12 15:24:07 +02:00
Jan Steemann b6925a7b7b transactions 2013-04-11 19:06:55 +02:00
Jan Steemann ed10d9b6aa AQL user functions 2013-04-05 12:50:44 +02:00
Jan Steemann 1417def879 disallow create/drop/rename operations inside transactions 2013-04-04 09:41:44 +02:00
Jan Steemann f7a5cf4cf3 transactions 2013-04-03 14:40:23 +02:00
Frank Celler f810711a79 FreeBSD port 2013-04-02 18:43:10 +02:00
Frank Celler 3512fa6ff0 fixed error handling 2013-04-02 15:00:55 +02:00
Jan Steemann 55c1134702 replaced error code 9 2013-03-26 18:03:03 +01:00
Jan Steemann 6d82d45859 adjusted tests after Franks changes 2013-03-26 17:58:09 +01:00
Jan Steemann 1492118545 added test cases for "fs" module 2013-03-26 14:09:20 +01:00
Jan Steemann cddf9607d8 fixed paths 2013-03-23 16:02:14 +01:00
Lucas Dohmen 5b2595fa56 Merge branch 'fuxx_vendor' into devel
Conflicts:
	UnitTests/Makefile.unittests
2013-03-23 12:41:25 +01:00
Frank Celler 38a5cf6a2d added development-mode 2013-03-22 17:33:25 +01:00
Jan Steemann 69db58a154 index cleanup 2013-03-22 10:38:47 +01:00
Jan Steemann bc7bd149c5 initial transaction tests 2013-03-21 18:55:24 +01:00
Lucas Dohmen 52258ebbfa Renamed Fuxx to Foxx
Frank, Fuxx, Foxx. Call it however you want.
I will now refer to it as F*.
2013-03-21 11:49:45 +01:00
Jan Steemann acc3cdb0cf fixed Makefile 2013-03-21 10:09:31 +01:00
Jan Steemann 40199d64b7 fixed handling of empty and reserved attribute names in documents
specifying an empty attribute name in a document may have led to segmentation faults
when the document was unpacked later.
2013-03-20 11:48:33 +01:00
Jan Steemann d54078390d fixed failing test 2013-03-19 14:57:11 +01:00
Jan Steemann 99522ccb84 switch order of insertion into indexes & datafile for updates
updates are now done in the indexes first, then written to the datafile
2013-03-18 13:03:05 +01:00
Jan Steemann 61af5f27da added startup option `--database.force-sync-properties` 2013-03-14 13:48:58 +01:00
a-brandt b2703d4a49 fixed unittest 2013-03-13 14:46:55 +01:00
Jan Steemann 555a09e02c removed unused variable 2013-03-12 18:17:41 +01:00
Jan Steemann 836963ae00 less compaction 2013-03-12 18:17:27 +01:00
Frank Celler 257647be51 Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel 2013-03-12 15:22:22 +01:00
Frank Celler d441b190db use skip list test only on server 2013-03-12 15:20:41 +01:00
Jan Steemann 70b9b5e305 added test 2013-03-12 14:52:18 +01:00
Frank Celler b83355a561 added test case for skip-list index 2013-03-12 13:40:13 +01:00
Jan Steemann a091a72ef2 added test 2013-03-11 15:24:11 +01:00
Jan Steemann 8ddf718c81 more detailed logging 2013-03-11 13:41:39 +01:00
a-brandt 4f6fbd9cd3 added more tests 2013-03-11 10:53:37 +01:00
a-brandt b3c9654895 Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel 2013-03-08 17:00:33 +01:00
a-brandt 1f4685a17d #412 added If-None-Match, If-Match and waitForSync 2013-03-08 17:00:15 +01:00
a-brandt e952b28aab changed http return codes for document update and delete 2013-03-08 16:56:15 +01:00
Jan Steemann e6c28d50b3 cleanup: removed TRI_HAVE_ICU and internal.HAVE_ICU (always true) 2013-03-08 16:09:47 +01:00
Jan Steemann 5631314bc7 issue #212: added auto-increment support for collections
the feature can be used by creating a collection with the extra `keyOptions`
attribute as follows:

    db._create("mycollection", { keyOptions: { type: "autoincrement", offset: 1, increment: 10, allowUserKeys: true } });

The `type` attribute will make sure the keys will be auto-generated if no `_key` attribute is specified for a document.
The `allowUserKeys` attribute determines whether users might still supply own `_key` values with documents or if this
is considered an error.
The `increment` value determines the actual increment value, whereas the `offset` value can be used to seed to value
sequence with a specific starting value. This will be useful later in a multi-master setup, when multiple servers can use
different auto-increment seed values and thus generate non-conflicting auto-increment values.

The default values currently are:

- `allowUserKeys`: `true`
- `offset`: `0`
- `increment`: `1`

The only other available key generator type currently is `traditional`. The `traditional` key generator
will auto-generate keys in a fashion as ArangoDB always did (some increasing integer value, with a more or less unpredictable
increment value).

Note that for the `traditional` key generator there is no the option to disallow user-supplied keys and give the
server the sole responsibility for key generation.
2013-03-08 11:54:03 +01:00
Jan Steemann 5f08de7bd3 fixed offset calculation for arangob 2013-03-06 17:27:23 +01:00
Frank Celler dd15025c1c fixed tests, add missing prefix = false to statistics call 2013-03-05 13:32:58 +01:00
Jan Steemann ea8330257d added test case 2013-03-04 12:16:05 +01:00
Jan Steemann 4456f484b7 added crud test case to test suite 2013-03-01 18:14:26 +01:00
Jan Steemann f32e5811d4 increase the http unittest timeout to make all tests pass even with Valgrind 2013-03-01 11:32:52 +01:00
Jan Steemann 47bce0a0b4 issue #436 2013-02-27 14:47:05 +01:00
Frank Celler a79279445a Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel 2013-02-26 18:20:27 +01:00
Frank Celler c9226054fc added tests, fixed unloadAll 2013-02-26 18:12:28 +01:00
Jan Steemann fff3c3e7a1 removed `--eol` option for _arangoimp_ 2013-02-26 12:34:50 +01:00
Jan Steemann ebc653a0bd issue #435 2013-02-26 12:11:13 +01:00
Jan Steemann 13d1ff0057 issue #425 2013-02-22 23:43:52 +01:00
Jan Steemann 71459b680f issue #426 2013-02-22 23:26:52 +01:00
Jan Steemann ade0e5bea0 removed configure option --enable-arangob 2013-02-22 15:40:47 +01:00
Jan Steemann 60349edaed fix for routing reload 2013-02-21 18:52:02 +01:00
Jan Steemann 71e5014792 test for a simple route 2013-02-21 18:44:06 +01:00
Jan Steemann a10c139039 added tests for /_admin/echo and thus req.url 2013-02-21 17:57:22 +01:00
Jan Steemann 3e095ab0d0 split users module in client- and server-specific parts 2013-02-21 17:41:38 +01:00
Jan Steemann 35f6b3f054 fix cloning 2013-02-21 15:12:50 +01:00
Jan Steemann 5c2582591a add missing test for routing.js 2013-02-20 14:54:00 +01:00
Jan Steemann 3fdebb38ee issue #393, issue #128
Added a REST API for user management
The REST API exposes the functionality available in module "users" for HTTP access.

The following methods are available:
* GET /_api/user/username: fetch user information
* POST /_api/user: create new user
* PUT /_api/user: replace an existing user
* PATCH /_api/user: (partially) update an existing user
* DELETE /_api/user: remove an existing user

Additionally, a module "crypto" is introduced and exposed for Javascript actions.
The crypto module provides the following functions:
* require("org/arangodb/crypto").md5();
* require("org/arangodb/crypto").sha256();
* require("org/arangodb/crypto").rand();
2013-02-20 11:56:26 +01:00
Jan Steemann d1edc4ddb2 added replaceByExample() and updateByExample() methods
added optional "limit" parameter for removeByExample() method
2013-02-19 11:38:55 +01:00
Jan Steemann e2cc3eef12 added gcc-specific pragma for a test 2013-02-18 14:09:37 +01:00
a-brandt 25882a3cd0 bugfix #410: Graph REST API returns "400:Bad request" instead of "404:Not found" 2013-02-18 09:28:03 +01:00
Jan Steemann f675bdc7dd fixed typo 2013-02-15 15:14:59 +01:00
Frank Celler adc3049a5f fixed relative tests 2013-02-15 13:40:19 +01:00
Jan Steemann 68986e068e added optional parameter "excludeSystem" for GET /_api/collection 2013-02-14 16:57:39 +01:00
a-brandt 46c5d66f8e bugfix #396: Creating a Graph with an existing graph's name _key doesn't throw an error 2013-02-14 15:12:11 +01:00
Jan Steemann 72fea38943 fix compile warnings 2013-02-13 22:20:04 +01:00
Frank Celler e37c0c1d21 Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel 2013-02-13 14:34:00 +01:00
Frank Celler d2fb159fac added tests for offsets 2013-02-13 14:33:52 +01:00
a-brandt 067a8d54fb Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel 2013-02-13 13:29:03 +01:00
a-brandt d6426107f3 dded PATCH to graph api 2013-02-13 13:28:24 +01:00
Jan Steemann 332da75bcb fixed invalid number to string conversion for edge cases 2013-02-13 11:35:34 +01:00
Jan Steemann 0f29e2b7dd pass request body to user-defined PATCH action 2013-02-12 18:17:07 +01:00
a-brandt cce1e6bc02 Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel 2013-02-12 13:28:20 +01:00
a-brandt 01729482ad fixed wrong http return code 2013-02-12 12:55:38 +01:00
Jan Steemann e02333a053 issue #395 2013-02-12 12:01:20 +01:00
Jan Steemann 861a2e6b25 issue #395 2013-02-12 11:46:55 +01:00
Jan Steemann 24a64efa94 fix tests 2013-02-06 12:40:00 +01:00
Jan Steemann c2a3f221f8 do not use start_with in rspec. Travis doesn't have it 2013-02-06 12:10:12 +01:00
Jan Steemann 2263e959fe added tests for cross-collection queries 2013-02-05 09:26:05 +01:00
Jan Steemann 577941bf23 unify collection names returned by ArangoDB 2013-02-04 23:04:56 +01:00
Jan Steemann 923027bfdd unify collection names returned by rest API 2013-02-04 19:52:05 +01:00
Jan Steemann de0b290bcd moved AQL to use AhuacatlTransaction 2013-02-04 11:25:03 +01:00
Frank Celler cf76062167 Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel 2013-02-01 10:53:29 +01:00
Frank Celler cd41e71b6b fixed trailing blanks 2013-02-01 10:53:05 +01:00
a-brandt 9b793d4b63 Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel 2013-02-01 10:52:53 +01:00
a-brandt 0cb33c0397 test commit 2013-02-01 10:52:25 +01:00
Jan Steemann addb1650ac test again 2013-02-01 10:43:07 +01:00
Jan Steemann 043a2eb080 test 2013-02-01 10:40:55 +01:00
Jan Steemann e788dcbd51 test 2013-02-01 10:37:15 +01:00