aboutsummaryrefslogtreecommitdiff
path: root/src/datastore
Commit message (Collapse)AuthorAge
* -fix more warningsMartin Schanzenbach2020-10-16
|
* postgres: drop use of 'WITH OIDS'Daniel Golle2020-10-05
| | | | | | | | | | | | | | | | | | | | | | PostgreSQL since version 12 no longer supports 'WITH OIDS': Previously, a normally-invisible oid column could be specified during table creation using WITH OIDS; that ability has been removed. Columns can still be explicitly declared as type oid. Operations on tables that have columns created using WITH OIDS will need adjustment. The system catalogs that previously had hidden oid columns now have ordinary oid columns. Hence, SELECT * will now output those columns, whereas previously they would be displayed only if selected explicitly. Drop 'WITH OIDS' as it was stated even on tables for plugins which didn't make any use of the then exposed 'oid' column. In the case of datacache and datastore the 'oid' column is used, so replace the 'WITH OIDS' statement with an explicit 'oid' column having 'OID' type and a corresponding sequence. No measures are taken to still work with PostgreSQL before version 12. Users should update PostgreSQL to version 12 or newer. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* GNUNET_free_non_null -> GNUNET_freeChristian Grothoff2020-07-05
|
* make GNUNET_freez default, have GNUNET_free_nz for cases where that does not ↵Christian Grothoff2020-04-21
| | | | work
* modify GNUNET_PQ_connect_with_cfg to enable flexible loading of .sql filesChristian Grothoff2020-01-24
|
* tighten formatting rulesChristian Grothoff2019-10-31
|
* follow-up to win32 removal.ng02019-10-25
|
* libgnunetpq API change to fix #5733Christian Grothoff2019-10-11
|
* global reindent, now with uncrustify hook enabledChristian Grothoff2019-10-05
|
* docs: fix typo 'priviledge'→'privilege'grindhold2019-09-21
|
* remove CYGWIN codeblocks, drop vendored Windows openvpn, drop win32 specific ↵ng02019-09-10
| | | | | | | | | files. configures and builds okay. testsuite wasn't checked, will be checked. diff including the plibc removal is now around 14370 lines of code less.
* uncrustify as demanded.ng02019-09-08
|
* first step to remove plibcng02019-09-06
|
* memcmp() -> GNUNET_memcmp(), first takeJulius Bünger2019-04-26
|
* fix possibility of NULL result for empty databaseChristian Grothoff2019-02-19
|
* filenames can exceed 128 bytes, even in testcasesChristian Grothoff2019-02-17
|
* src: for every AGPL3.0 file, add SPDX identifier.ng02019-01-14
|
* -comments: the world ain't all malepsyc://loupsycedyglgamf.onion/~lynX2018-06-27
|
* fix https://gnunet.org/bugs/view.php?id=4904Schanzenbach, Martin2018-06-24
|
* AUTOSTART renamed into START_ON_DEMAND (#4547a)psyc://loupsycedyglgamf.onion/~lynX1984-04-04
|
* paragraph for gnunet devs that don't know how to use the webpsyc://loupsycedyglgamf.onion/~lynX2018-06-07
|
* glitch in the license text detected by hyazinthe, thank you!psyc://loupsycedyglgamf.onion/~lynX2018-06-07
|
* better indentation, nicer formatting of SQLChristian Grothoff2018-06-06
|
* first batch of license fixes (boring)psyc://loupsycedyglgamf.onion/~lynX2018-06-05
|
* follow-up, fix conf locationsNils Gillmann2018-05-19
| | | | Signed-off-by: Nils Gillmann <ng0@n0.is>
* Switch to $GNUNET_TMP in all configuration files.Nils Gillmann2018-05-06
| | | | Signed-off-by: Nils Gillmann <ng0@n0.is>
* minor bugfixesChristian Grothoff2018-04-10
|
* fix datstore bind issue for real this timeDavid Barksdale2018-02-05
|
* fix datastore bind issueChristian Grothoff2018-01-30
|
* SQLite doesn't constant foldDavid Barksdale2018-01-14
|
* Fix skip_next_messages counting, combine logicDavid Barksdale2017-11-10
| | | | | | | | | This fixes messages like these: Nov 10 08:57:34-927033 fs-22733 ERROR Request 0x6080017479a0 of type 100 at head of datastore queue for more than 1 m And might fix issue #3903
* disconnect CADET only after client count hits zeroChristian Grothoff2017-10-02
|
* more aggressive index creationChristian Grothoff2017-09-30
|
* rename GNUNET_PQ_QueryStatus to GNUNET_DB_QueryStatusChristian Grothoff2017-06-11
|
* [datastore] Remove unused indicies from sqliteDavid Barksdale2017-06-05
| | | | | | *** The table name was changed *** Users will need to dump and re-import their sqlite databases with gnunet-datastore -d and -i.
* finish datastore pq refactoringChristian Grothoff2017-06-04
|
* more pq workChristian Grothoff2017-06-03
|
* adding more good helpers to libgnunetpqChristian Grothoff2017-06-01
|
* [datstore] make sqlite page_size power of twoDavid Barksdale2017-05-31
|
* removed LIMIT expression from DELETE stmt. See ↵xrs2017-04-19
| | | | http://sqlite.org/syntaxdiagrams.html#delete-stmt
* [datastore] Create remove plugin API callDavid Barksdale2017-04-16
| | | | | | The only use of vhash in the get_key call was for removing, split that out into its own function. This simplifies the get_key call and removes the need for some indexes, speeding up insertion into the database.
* [datastore] Combine put and update plugin APIsDavid Barksdale2017-04-16
| | | | This resolves issue #4965.
* Rewrite gnunet-datastore to dump to a fileDavid Barksdale2017-04-13
|
* [datastore] Fix performance tests after API changeDavid Barksdale2017-03-27
|
* rename GNUNET_GETOPT functions to achieve better consistencyChristian Grothoff2017-03-25
|
* [datastore] Return and update replicationDavid Barksdale2017-03-22
| | | | | | This fixes a couple FIXMEs in the datastore code. The replication value is now returned from the datastore and the update function can increase the replication.
* [datastore] Fix #3743David Barksdale2017-03-19
| | | | | | | | | | | | | | | | | | | | This change adds support for key == NULL to the datastore plugins and replaces the offset argument with a next_uid and random arguments to increase performance in the key == NULL case. With the offset argument a datastore plugin would have to count all matching keys before fetching the key at the right offset, which would iterate over the entire database in the case of key == NULL. The offset argument was used in two ways: to iterate over a set of matching values and to start iteration at a random matching value. The new API seperates these into two arguments: if random is true it will return a random matching value, otherwise next_uid can be set to uid + 1 to return the next matching value. The random argument was not added to get_zero_anonymity. This function is used to periodically insert zero anonymity values into the DHT. I don't think it's necessary to randomize this.
* more renamings relating to 'new' service now just being the 'normal' serviceChristian Grothoff2017-03-17
|
* Porting 'nat'.Marcello Stanisci2017-03-15
|
* convert sqlite peerstore to using libgnunetsqChristian Grothoff2017-03-14
|