Jan Steemann
d7b64d4ae2
merged patches by @guidoreina
2013-05-21 11:33:43 +02:00
Jan Steemann
78169e3626
issue #531 : thanks to @guidoreina for bugfix suggestions!
2013-05-17 19:29:05 +02:00
Jan Steemann
68d2775b39
fixed uninitialised value
2013-05-17 15:22:40 +02:00
Jan Steemann
dd26635a35
removed debug comments
2013-05-17 14:54:24 +02:00
Jan Steemann
645f31bba0
fixed typo
2013-05-17 14:54:09 +02:00
Jan Steemann
ab6ca2f017
ported all recent fixes from 1.3
2013-05-16 21:04:04 +02:00
Jan Steemann
ac8e947fb6
typo
2013-05-16 20:53:04 +02:00
Thomas Richter
b09be801b9
swagger for RestDocumentHandler finished
2013-05-16 14:59:51 +02:00
Thomas Richter
38ce7df1a8
Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel
2013-05-15 16:07:12 +02:00
Thomas Richter
a11a0633b8
examples created until document PUT
2013-05-15 16:07:05 +02:00
Jan Steemann
c59f00efa8
fixed handling of --temp-path
2013-05-15 15:55:48 +02:00
Jan Steemann
0d05d53670
switched examples back to English
2013-05-13 21:20:51 +02:00
Thomas Richter
dbdd9b2b80
some REST documentation adapted for swagger
2013-05-13 16:30:23 +02:00
Jan Steemann
650419ed37
fix wrong message
2013-05-13 09:18:33 +02:00
Jan Steemann
7f5884626c
Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel
2013-05-13 09:01:29 +02:00
Jan Steemann
c7d2f8f8cd
some json / shaped-json and string handling improvements
2013-05-13 09:01:07 +02:00
Jan Steemann
841d7d7355
English
2013-05-10 14:06:15 +02:00
Jan Steemann
ebad0130ea
updated docs
2013-05-10 12:26:15 +02:00
Frank Celler
e98a22a31c
added suffix .history to history files
2013-05-10 10:59:53 +02:00
Guido Reina
ae8d686ae6
In the function CheckDatafile(), inside the while loop, there are two consecutive 'if' with the same body and similar condition. The first 'if' has been removed, as its condition is more restrictive than the second.
2013-05-09 20:26:32 +02:00
Guido Reina
7efd0a1ec7
Merge remote branch 'remotes/upstream/devel' into experiment
2013-05-09 18:56:50 +02:00
Guido Reina
3449b87e2c
The 'json' structure was not freed in the function TRI_LoadCollectionInfo() if the file was not a JSON array.
2013-05-09 18:26:24 +02:00
Guido Reina
d35a4034ef
Memory leak in the function ScanPath() if the directory is not writable.
2013-05-09 18:00:43 +02:00
Guido Reina
7b3c1ed4dd
In the function TRI_CreateNodeReturnEmptyAql(), if TRI_Allocate() failed to allocate memory for 'list', 'list' was freed, instead of 'node'.
2013-05-09 17:14:37 +02:00
Guido Reina
e0c88e4a1a
In the function TruncateAndSealDatafile(), 'filename' and 'oldname' were not freed. If TRI_UNMMFile() failed, the file was not closed.
...
In the function OpenDatafile(), if TRI_Allocate() failed to allocate memory for 'datafile', the file was not unmapped and not closed.
2013-05-09 16:43:20 +02:00
Guido Reina
952d643101
Fixed memory leak in the function ScanCollectionDirectory(). If the file extension is .db and it is a compaction file, 'filename' is leaked when 'newName' is assigned to it.
...
In the function TRI_LoadCollectionInfo(), when the value's type is a JSON string and the key is not the 'name', it checked again whether the value's type is a JSON string, instead of comparing the key with 'cid'.
2013-05-09 16:06:46 +02:00
Guido Reina
fc9de8ed08
Typos.
2013-05-09 14:16:53 +02:00
Jan Steemann
5b94d9af98
less malloc/free for JSON parsing
2013-05-08 23:32:14 +02:00
Thomas Richter
760a2e0778
Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel
2013-05-08 15:39:51 +02:00
Thomas Richter
0562e5c94d
Header with 304 returncode fixed
2013-05-08 15:38:12 +02:00
Jan Steemann
ccd129f69e
fixed problem on restart ("datafile-xxx is not sealed") when server was killed during compaction
2013-05-08 11:09:48 +02:00
Jan Steemann
8ad21ec2cf
fixed cursor leak for very small batch sizes
2013-05-07 18:48:41 +02:00
Jan Steemann
3ac55bedbb
issue #512 : bind parameters for limit
2013-05-06 10:47:53 +02:00
Jan Steemann
203aceccdf
Merge pull request #510 from guidoreina/experiment
...
A bug fix and small code improvements?
2013-05-05 23:51:49 -07:00
Frank Celler
49b5507b73
fixed issue #489 : Bug in aal.install
...
Conflicts:
Makefile.in
2013-05-05 21:10:14 +02:00
Guido Reina
105662d5ba
[Small improvements] In the function TRI_InitPQueue(), instead of initializing pq->_base._items with '\0's by using memset(), TRI_Allocate() is called with 'set' set to true (as it is done in the function CheckPQSize()).
...
In the function CheckPQSize(), the priority queue capacity will be increased only when the new item to be inserted doesn't fit (pq->_base._count + 1 > pq->_base._capacity).
In the function CheckPQSize(), instead of allocating a new buffer and then copying the elements, TRI_Reallocate() is used and the new area is filled with '\0's.
2013-05-05 16:33:09 +02:00
Guido Reina
0a08833b0f
In the function PQueueIndex_new(), if TRI_Allocate() failed to allocate memory for the associative array idx->_aa, idx was freed before idx->_pq.
...
Fixed typos.
2013-05-05 16:15:23 +02:00
Guido Reina
4ac19a99fc
Typos.
2013-05-05 16:12:17 +02:00
Jan Steemann
75ee749d78
read and write server SHUTDOWN files for faster startups
...
added documentation about server files
2013-05-03 18:30:17 +02:00
Jan Steemann
00f5cab407
changed compaction to only clean datafiles with at least 10 % of dead objects
2013-05-03 16:37:32 +02:00
Jan Steemann
bfb35a4b3c
issue #495
2013-05-03 11:38:10 +02:00
Jan Steemann
fde26e6913
fixed doxygen errors
2013-05-03 11:25:24 +02:00
Jan Steemann
ee7ab712d6
issue #495
2013-05-03 11:08:58 +02:00
Frank Celler
a27fb94fb2
issue #491
2013-05-02 16:18:19 +02:00
Frank Celler
b3b7a45e62
issue #502
2013-05-02 15:21:30 +02:00
Jan Steemann
2c381d5d6a
issue #498
2013-05-02 12:27:06 +02:00
Thomas Richter
85a5f05c93
swagger documentation for api-grap.js
2013-04-30 14:52:35 +02:00
Thomas Richter
1dcab18497
Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel
2013-04-30 11:40:29 +02:00
Thomas Richter
1d232d6967
some fixes in generateSwagger
2013-04-30 11:40:19 +02:00
Oreste Panaia
115d87196c
sync windows dev
2013-04-29 23:13:06 +08:00