aboutsummaryrefslogtreecommitdiff
path: root/databases/cockroach/files
Commit message (Collapse)AuthorAgeFilesLines
* all: Remove all other $FreeBSD keywords.Mathieu Arnold2021-04-061-2/+0
|
* - Update to 19.1.11Dmitry Marakasov2021-03-111-29/+0
| | | | | | | | | | | - Reset the maintainer due to 4 consequentional maintainer timeouts PR: 222907 Submitted by: pfg, kirill@varnakov.com Approved by: maintainer timeout (freebsd@jen20.com, 21 months) Notes: svn path=/head/; revision=568064
* Fix more fallout for bundled rocksdb after the LLVM 10 importTobias Kortkamp2020-03-181-0/+28
| | | | | | | | | | | | | | | | | | | | | | | In file included from rocksdb/utilities/backupable/backupable_db.cc:16: rocksdb/util/channel.h:35:33: error: no matching constructor for initialization of 'std::lock_guard<std::mutex>' std::lock_guard<std::mutex> lk(lock_); ^ ~~~~~ /usr/include/c++/v1/__mutex_base:90:14: note: candidate constructor not viable: 1st argument ('const std::mutex') would lose const qualifier explicit lock_guard(mutex_type& __m) _LIBCPP_THREAD_SAFETY_ANNOTATION(acquire_capability(__m)) ^ /usr/include/c++/v1/__mutex_base:100:5: note: candidate constructor not viable: no known conversion from 'const std::mutex' to 'const std::__1::lock_guard<std::__1::mutex>' for 1st argument lock_guard(lock_guard const&) _LIBCPP_EQUAL_DELETE; ^ /usr/include/c++/v1/__mutex_base:94:5: note: candidate constructor not viable: requires 2 arguments, but 1 was provided lock_guard(mutex_type& __m, adopt_lock_t) _LIBCPP_THREAD_SAFETY_ANNOTATION(requires_capability(__m)) ^ 1 error generated. net/ceph* will still not build because Clang crashes but at least it goes beyond the above error. Notes: svn path=/head/; revision=528645
* databases/cockroach: Unbreak, update to 2.0.7Steve Wills2019-04-122-0/+40
| | | | | | | | | PR: 236478 Submitted by: Dmitri Goutnik <dg@syrec.org> (slightly modified) Approved by: maintainer timeout (freebsd@jen20.com, >4 weeks) Notes: svn path=/head/; revision=498740
* CockroachDB is a distributed SQL database built on a transactionalKirill Ponomarev2017-08-211-0/+69
and strongly-consistent key-value store. It scales horizontally; survives disk, machine, rack, and even datacenter failures with minimal latency disruption and no manual intervention; supports strongly-consistent ACID transactions; and provides a familiar SQL API for structuring, manipulating, and querying data. CockroachDB is inspired by Google's Spanner and F1 technologies, and it's completely open source. PR: 221635 Submitted by: James Nugent <freebsd@jen20.com> Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D12088 Notes: svn path=/head/; revision=448474