Alexander Dukhno

Results 56 issues of Alexander Dukhno

``` it "should not release more than permissions" { semaphore.release(); let try_acquire_guard = semaphore.try_acquire(); assert!(try_acquire_guard.is_some()); // expect!(try_acquire_guard).to(be_some()); //it will fail if we uncomment this line let try_acquire = semaphore.try_acquire(); expect!(try_acquire_guard).to(be_none());...

Working on #6, looking at #10, #9 and #8. I see that we have a lack of high-level stack of `bpf` instructions. Personally, I see it as the following: ```rust...

From the #6 >PS: working on this API I start thinking about this RawBpfCode and VerifiedBpfCode and let myself create needless functionality. And I understood the reason. It is because...

enhancement
question

Tracking issue for [Type System RFC](https://github.com/alex-dukhno/isomorphicdb/blob/main/docs/RFCs/text/2021-05-15-Type-System.md) It should take into account supported operators: * [ ] comparison `=`, ``, `>`, `=`, `>`, `

[Query-based Workload Forecasting for Self-Driving Database Management Systems](http://www.cs.cmu.edu/~malin199/publications/2018.forecasting.sigmod.pdf)

Postponed: requires advanced type inference that is in the scope of #578 Currently, `QueryParser` and `Analyzer` don't support edge cases for `prepare ...` queries. Like: not supported types, wrong number...

* [x] Configure GH action to run on pull request #420 * [ ] Configure GH action matrix for different connection parameters #421 https://jdbc.postgresql.org/documentation/head/connect.html that can influence execution flow *...

T-Epic
G-Drivers Compatibility

Tracking issue for [Executing Multiple Queries In Single Transaction](https://github.com/alex-dukhno/isomorphicdb/blob/main/docs/RFCs/text/2021-04-24-Executing-Multiple-Queries-In-Single-Transaction.md) * [x] transaction context #583 * [x] save `prepare ...` queries into `Session` and execute them #584 * [x] remove `prepare...

Write RFC of log format to recover from crushes and how to rebuild Database data after restart