Files
Baradb/.gitignore
T
dimgigov 14596c9584
CI / test (push) Has been cancelled
CI / verify (push) Has been cancelled
Clients CI / build-server (push) Has been cancelled
Clients CI / test-python (push) Has been cancelled
Clients CI / test-javascript (push) Has been cancelled
Clients CI / test-nim (push) Has been cancelled
Clients CI / test-rust (push) Has been cancelled
fix(adapter,executor,tests): harden nimforum adapter and fix transaction/aggregate bugs
Adapter (baradb_sqlite.nim):
- getRow now returns @[] for missing rows (db_sqlite compat)
- insertID/nextId handle NULL (\N) values correctly
- preprocessQuery replaces SQLite-specific syntax:
  TIMESTAMP->DATETIME, DATETIME('now')->current timestamp, INET->STRING
- add dbBegin/dbCommit/dbRollback for transaction support

Executor:
- fix COMMIT treating empty values as DELETE (rows with only PK were lost)
- fix MIN/MAX aggregates including NULL (\N) which skewed results
- add numeric comparison for irNeq

Tests:
- stress_test: shared DB, 16 workers, correctness scan after run
- nimforum_smoke_test: 10 tests including schema, transactions, iterators
2026-05-19 20:43:00 +03:00

50 lines
653 B
Plaintext

# Build
build/
nimcache/
nimblecache/
*.out
# Binaries (compiled test executables)
tests/test_all
tests/stress_test
tests/test_lock
tests/test_minimal
tests/tla_faithfulness
tests/fuzz_test
tests/prop_test
benchmarks/bench_all
benchmarks/compare
clients/nim/tests/test_client
src/baradadb
src/barabadb/client/client
src/barabadb/core/raft
# Temp
*.tmp
*.log
# Data
data/
# OS
.DS_Store
Thumbs.db
# External references
GEL/
# Python
__pycache__/
*.pyc
# Rust
clients/rust/target/
# Nim compiled binaries
clients/nim/src/baradb/client
src/barabadb/storage/compaction
src/barabadb/query/executor
tests/join_tests
*.tar.gz
tests/nimforum_smoke_test