Alex Chi Z.

Results 196 issues of Alex Chi Z.

```sql create table t(v1 int not null primary key, v2 int not null, v3 int not null) # supported create table t(v1 int not null, v2 int not null, v3...

As our SQL layer is missing some supports, and it's relatively not easy to turn our benchmarks into SQL queries, we plan to add a new tool like "secondary-bench" to...

I'll draft some detailed design doc about the storage engine, and add more docstring to our codebase.

- [ ] https://github.com/sjtug/SJTUThesis/pull/759 - [ ] add cover and copyright page - [ ] fix example compile - [ ] update readme and deprecate v1

想到这个提案的起因是这样的。有个同学收到图书馆的反馈表示,目录中的“谢辞”中间不应该出现空格。正常来说,我们可以这么实现: ``` \chapter[谢辞]{谢\hspace{\ccwd}辞} ``` 不过由于这个区域盲审的时候需要去掉,所以 SJTUTeX 里面有 ``` \begin{acknowledgements} xxxx \end{acknowledgements} ``` 控制这个谢辞部分。这么一来,如果去掉目录中的谢辞中间的空格,用户就要直接编辑 cls 文件。当然我们的模版可以支持设置谢辞在目录中和正文中不同的显示模式,但这样又要给 setup.tex 多加一个选项。。。 加上 https://github.com/sjtug/SJTUThesis/issues/174 https://github.com/sjtug/SJTUThesis/issues/108 等 issue 表明用户常常需要定制盲审模式中需要的部分,而非让模版提前设定好,我觉得我们可以增加一个环境: ``` \begin{ifnotreview} \chapter[谢辞]{谢\hspace{\ccwd}辞} xxx \end{ifnotreview} ``` 让用户自己控制诸如“攻读学位期间完成的论文”、“谢辞”等部分的显示方式。

type/feature

目前 SJTUThesis 的示例模版从内容上来讲其实只有中文的模版。即使 SJTUThesis 包设置成了英文模式,内容也是中文的,不太容易看出效果。 我们可以考虑在 SJTUThesis 里面加入更多示例,包括: * 英文内容的英文示例 (DeepL 一键翻译就行了) * 课程报告的示例 (课程报告不需要摘要、索引等部分,可以做得更简约一点) 打算参考 @zhliuworks 的 https://github.com/zhliuworks/SJTU-Report-mini, 基于目前的 SJTUThesis 造一个课程报告/论文模版。

type/feature

Should `iter.next` before continue. https://github.com/tikv/agatedb/blob/develop/src/db.rs#L537 (thanks @soundOfDestiny !)

https://github.com/tikv/agatedb/blob/develop/src/ops/transaction.rs#L228 should return `Ok` when pending_write has been found. (thanks @soundOfDestiny)!

## Development Task Implement Storage Engine, R/W API and Transaction API (3-4 weeks) ## Development progress *This section tracks what has been done (on develop branch)* - [x] Implement LSM...

## Development Task Do benchmarks on agatedb (1-2 weeks) ## Development Progress - [x] micro benchmark with badger-bench - [x] plan - [x] bench - [ ] macro benchmark with...