tegdb 0.5.0

The name TegridyDB (short for TegDB) is inspired by the Tegridy Farm in South Park and tries to correct some of the wrong database implementations, such as null support, implicit conversion support, etc.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
name: TegDB CI/CD Pipeline

on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]
  schedule:
    - cron: '0 0 * * *'  # Run every day at midnight for nightly tests

env:
  CARGO_TERM_COLOR: always
  RUST_BACKTRACE: 1

jobs:
  # Code quality and formatting checks
  code-quality:
    name: Code Quality & Formatting
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4.1.1
    
    - name: Setup Rust
      uses: actions-rs/toolchain@v1.0.6
      with:
        toolchain: stable
        override: true
        components: rustfmt, clippy
        profile: minimal
    
    - name: Cache cargo registry only
      uses: actions/cache@v4
      with:
        path: |
          ~/.cargo/registry
          ~/.cargo/git
        key: ${{ runner.os }}-stable-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
        restore-keys: |
          ${{ runner.os }}-stable-cargo-registry-
    
    - name: Free disk space
      run: |
        df -h
        sudo rm -rf /usr/share/dotnet
        sudo rm -rf /usr/local/lib/android
        sudo rm -rf "$AGENT_TOOLSDIRECTORY"
        df -h
    
    - name: Fetch dependencies
      run: cargo fetch
    
    - name: Check formatting
      run: cargo fmt --all -- --check
    
    - name: Run clippy
      run: cargo clippy --all-targets --all-features --frozen --locked -- -D warnings
    
    - name: Build with all features
      run: cargo build --all-features --frozen --locked
    
    - name: Check documentation
      run: cargo doc --no-deps --document-private-items --frozen --locked
    
    - name: Run doc tests
      run: cargo test --doc --frozen --locked
    
    - name: Clean up after build
      run: cargo clean

  # Comprehensive test suite using the new test script
  test:
    name: Comprehensive Test Suite
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest]
        rust: [stable]

    steps:
    - uses: actions/checkout@v4.1.1

    - name: Setup Rust ${{ matrix.rust }}
      uses: actions-rs/toolchain@v1.0.6
      with:
        toolchain: ${{ matrix.rust }}
        override: true
        profile: minimal

    - name: Cache cargo registry only
      uses: actions/cache@v4
      with:
        path: |
          ~/.cargo/registry
          ~/.cargo/git
        key: ${{ runner.os }}-${{ matrix.rust }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
        restore-keys: |
          ${{ runner.os }}-${{ matrix.rust }}-cargo-registry-

    - name: Free disk space
      run: |
        df -h
        sudo rm -rf /usr/share/dotnet
        sudo rm -rf /usr/local/lib/android
        sudo rm -rf "$AGENT_TOOLSDIRECTORY"
        df -h

    - name: Fetch dependencies
      run: cargo fetch

    - name: Build library
      run: cargo build --lib --verbose --frozen --locked

    - name: Build with all features
      run: cargo build --all-features --verbose --frozen --locked

    - name: Run comprehensive test suite
      run: ./run_all_tests.sh --ci --verbose
      shell: bash
      env:
        CI_MODE: true
        VERBOSE: true

    - name: Run additional unit tests
      run: cargo test --lib --all-features --verbose --frozen --locked

    - name: Run doc tests
      run: cargo test --doc --verbose --frozen --locked

    - name: Clean up build artifacts
      if: always()
      run: cargo clean

  # Examples and demos
  examples:
    name: Examples & Demos
    runs-on: ubuntu-latest
    
    steps:
    - uses: actions/checkout@v4.1.1
    
    - name: Setup Rust
      uses: actions-rs/toolchain@v1.0.6
      with:
        toolchain: stable
        override: true
        profile: minimal
    
    - name: Cache cargo registry only
      uses: actions/cache@v4
      with:
        path: |
          ~/.cargo/registry
          ~/.cargo/git
        key: ubuntu-stable-cargo-registry-examples-${{ hashFiles('**/Cargo.lock') }}
        restore-keys: |
          ubuntu-stable-cargo-registry-examples-
    
    - name: Free disk space
      run: |
        df -h
        sudo rm -rf /usr/share/dotnet
        sudo rm -rf /usr/local/lib/android
        sudo rm -rf "$AGENT_TOOLSDIRECTORY"
        df -h
    
    - name: Fetch dependencies
      run: cargo fetch
    
    - name: Run basic usage example
      run: cargo run --example simple_usage --frozen --locked
    
    - name: Run comprehensive database test
      run: cargo run --example comprehensive_database_test --frozen --locked
    
    - name: Run streaming API demo
      run: cargo run --example streaming_api_demo --frozen --locked
    
    - name: Run arithmetic expressions example
      run: cargo run --example arithmetic_expressions --frozen --locked
    
    - name: Run SQLite-like usage example
      run: cargo run --example sqlite_like_usage --frozen --locked
    
    - name: Run IoT optimization demo
      run: cargo run --example iot_optimization_demo --frozen --locked
    
    - name: Run planner demo
      run: cargo run --example planner_demo --frozen --locked
    
    - name: Clean up build artifacts
      if: always()
      run: cargo clean

  # Security and dependency checks
  security:
    name: Security & Dependency Audit
    runs-on: ubuntu-latest
    
    steps:
    - uses: actions/checkout@v4.1.1
    
    - name: Setup Rust
      uses: actions-rs/toolchain@v1.0.6
      with:
        toolchain: stable
        override: true
        profile: minimal
    
    - name: Cache cargo registry only
      uses: actions/cache@v4
      with:
        path: |
          ~/.cargo/registry
          ~/.cargo/git
        key: ubuntu-stable-cargo-registry-security-${{ hashFiles('**/Cargo.lock') }}
        restore-keys: |
          ubuntu-stable-cargo-registry-security-
    
    - name: Free disk space
      run: |
        df -h
        sudo rm -rf /usr/share/dotnet
        sudo rm -rf /usr/local/lib/android
        sudo rm -rf "$AGENT_TOOLSDIRECTORY"
        df -h
    
    - name: Fetch dependencies
      run: cargo fetch
    
    - name: Install cargo-audit
      run: cargo install cargo-audit --locked
    
    - name: Run security audit
      run: cargo audit
    
    - name: Check for outdated dependencies
      run: |
        cargo install cargo-outdated --locked
        cargo outdated --exit-code 1 || echo "Some dependencies are outdated, but build continues"
    
    - name: Clean installed binaries
      if: always()
      run: |
        rm -rf ~/.cargo/bin/cargo-audit ~/.cargo/bin/cargo-outdated
        cargo clean

  # Release preparation (only on main branch)
  release-check:
    name: Release Readiness
    runs-on: ubuntu-latest
    if: github.ref == 'refs/heads/main' && github.event_name == 'push'
    
    steps:
    - uses: actions/checkout@v4.1.1
    
    - name: Setup Rust
      uses: actions-rs/toolchain@v1.0.6
      with:
        toolchain: stable
        override: true
        profile: minimal
    
    - name: Cache cargo registry only
      uses: actions/cache@v4
      with:
        path: |
          ~/.cargo/registry
          ~/.cargo/git
        key: ubuntu-stable-cargo-registry-release-${{ hashFiles('**/Cargo.lock') }}
        restore-keys: |
          ubuntu-stable-cargo-registry-release-
    
    - name: Free disk space
      run: |
        df -h
        sudo rm -rf /usr/share/dotnet
        sudo rm -rf /usr/local/lib/android
        sudo rm -rf "$AGENT_TOOLSDIRECTORY"
        df -h
    
    - name: Fetch dependencies
      run: cargo fetch
    
    - name: Check if ready for release
      run: |
        echo "Checking release readiness..."
        
        # Check if version has been updated
        VERSION=$(grep '^version = ' Cargo.toml | head -1 | sed 's/version = "\(.*\)"/\1/')
        echo "Current version: $VERSION"
        
        # Run comprehensive test suite
        ./run_all_tests.sh --ci --verbose
        
        # Check documentation builds
        cargo doc --no-deps --frozen --locked
        
        echo "✅ Release readiness check completed successfully!"
    
    - name: Clean up build artifacts
      if: always()
      run: cargo clean

  # Coverage reporting
  coverage:
    name: Code Coverage
    runs-on: ubuntu-latest
    
    steps:
    - uses: actions/checkout@v4.1.1
    
    - name: Setup Rust nightly
      uses: actions-rs/toolchain@v1.0.6
      with:
        toolchain: nightly
        override: true
        components: llvm-tools-preview
        profile: minimal
    
    - name: Cache cargo registry only
      uses: actions/cache@v4
      with:
        path: |
          ~/.cargo/registry
          ~/.cargo/git
        key: ubuntu-nightly-cargo-registry-coverage-${{ hashFiles('**/Cargo.lock') }}
        restore-keys: |
          ubuntu-nightly-cargo-registry-coverage-
    
    - name: Free disk space
      run: |
        df -h
        sudo rm -rf /usr/share/dotnet
        sudo rm -rf /usr/local/lib/android
        sudo rm -rf "$AGENT_TOOLSDIRECTORY"
        df -h
    
    - name: Fetch dependencies
      run: cargo fetch
    
    - name: Install cargo-llvm-cov
      run: cargo install cargo-llvm-cov --locked
    
    - name: Generate code coverage
      run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info --frozen --locked
    
    - name: Upload coverage to Codecov
      uses: codecov/codecov-action@v4
      with:
        file: lcov.info
        fail_ci_if_error: false
    
    - name: Clean up build artifacts
      if: always()
      run: |
        rm -rf ~/.cargo/bin/cargo-llvm-cov
        cargo clean

  # Performance tests (manual trigger only)
  performance:
    name: Performance Tests & Benchmarks
    runs-on: ubuntu-latest
    if: github.event_name == 'schedule' || contains(github.event.head_commit.message, '[bench]') || github.event.inputs.run_performance == 'true'
    
    steps:
    - uses: actions/checkout@v4.1.1
    
    - name: Setup Rust nightly
      uses: actions-rs/toolchain@v1.0.6
      with:
        toolchain: nightly
        override: true
        profile: minimal
    
    - name: Cache cargo registry only
      uses: actions/cache@v4
      with:
        path: |
          ~/.cargo/registry
          ~/.cargo/git
        key: ubuntu-nightly-cargo-registry-bench-${{ hashFiles('**/Cargo.lock') }}
        restore-keys: |
          ubuntu-nightly-cargo-registry-bench-
    
    - name: Free disk space
      run: |
        df -h
        sudo rm -rf /usr/share/dotnet
        sudo rm -rf /usr/local/lib/android
        sudo rm -rf "$AGENT_TOOLSDIRECTORY"
        df -h
    
    - name: Fetch dependencies
      run: cargo fetch
    
    - name: Run performance tests
      run: ./run_performance_tests.sh --ci
    
    - name: Run benchmarks
      run: |
        echo "# TegDB Performance Benchmarks" > benchmarks.md
        echo "Generated on: $(date)" >> benchmarks.md
        echo "" >> benchmarks.md
        echo "## Database vs SQLite Comparison" >> benchmarks.md
        echo '```' >> benchmarks.md
        cargo bench --bench database_vs_sqlite_benchmark --features="dev" --frozen --locked | tee -a benchmarks.md
        echo '```' >> benchmarks.md
        echo "" >> benchmarks.md
        echo "## Engine Performance" >> benchmarks.md
        echo '```' >> benchmarks.md
        cargo bench --bench engine_basic_benchmark --frozen --locked | tee -a benchmarks.md
        echo '```' >> benchmarks.md
        echo "" >> benchmarks.md
        echo "## Query Planner Performance" >> benchmarks.md
        echo '```' >> benchmarks.md
        cargo bench --bench planner_optimization_benchmark --features="dev" --frozen --locked | tee -a benchmarks.md
        echo '```' >> benchmarks.md
    
    - name: Upload benchmark results
      uses: actions/upload-artifact@v4.3.1
      with:
        name: benchmark-results-${{ github.sha }}
        path: |
          benchmarks.md
          performance-results/
        retention-days: 30
    
    - name: Clean up build artifacts
      if: always()
      run: cargo clean