File tree Expand file tree Collapse file tree 2 files changed +33
-4
lines changed Expand file tree Collapse file tree 2 files changed +33
-4
lines changed Original file line number Diff line number Diff line change 17
17
- TCP-B
18
18
- TCP-C
19
19
20
- ## 0.7 .0 <small>(2024-08-26)</small>
20
+ ## 0.x .0 <small>(2024-08-26)</small>
21
21
22
22
**Features**
23
23
**Improvements**
24
24
**Test**
25
25
**Bug Fixes**
26
-
26
+ - Support simple SQL inner join
27
27
-->
28
28
29
+ ## 0.9.0 <small >(2024-10-11)</small >
30
+
31
+ ** Features**
32
+
33
+ - Support ` LIKE ` operator
34
+ - Support ` NOLOCK ` mode
35
+ - Add new APIs: ` xdb_column_type ` ` xdb_column_name ` ` xdb_type2str `
36
+ - Add ` GO ` ` Python ` ` C++ ` drivers
37
+
38
+ ** Improvements**
39
+
40
+ - Optimize field lookup
41
+
42
+ ** Test**
43
+
44
+ - Optimize ` STL Map ` and ` HashMap(unordered_map) ` benchmark test driver
45
+ - Add ` Boost ` ` MultiIndex ` benchmark test driver
46
+ - Add more smoke test cases
47
+
48
+ ** Bug Fixes**
49
+
50
+ - The index was incorrectly created as the primary key
51
+ - Update many rows with expression will set all rows to first row's value
52
+ - Auto-completion heap buffer access overflow
53
+ - Update transaction heap use after free
54
+ - Wrong Aggregation function result for empty table
55
+ - Update transaction crash issue
56
+ - SQL syntax error
57
+
29
58
## 0.8.0 <small >(2024-09-03)</small >
30
59
31
60
** Features**
Original file line number Diff line number Diff line change 8
8
@echo " make installmac Install crossdb(lib&tool&header) to MacOS"
9
9
@echo " make uninstallmac Uninstall crossdb from MacOS"
10
10
@echo " make example Build and run example (need to install crossdb first)"
11
+ @echo " make smoketest Build and run smoke test (need to install crossdb first)"
11
12
@echo " make bench Build and run bench test (need to install crossdb first)"
12
13
@echo " make bench-sqlite Build and run sqlite bench test (need to install sqlite3 first)"
13
14
@echo " make bench-stlmap Build and run C++ STL Map and HashMap(unordered_map) bench test"
24
25
$(CC ) -o build/xdb-cli src/xdb-cli.c -lpthread -g
25
26
cp include/crossdb.h build/
26
27
27
- .PHONY : test
28
- test :
28
+ smoketest :
29
29
make -C test/
30
30
31
31
run :
You can’t perform that action at this time.
0 commit comments