heliosdb-nano 3.30.0

PostgreSQL-compatible embedded database with TDE + ZKE encryption, HNSW vector search, Product Quantization, git-like branching, time-travel queries, materialized views, row-level security, and 50+ enterprise features
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
//! Aggregation functions
//!
//! Standard aggregations (no online aggregation - that's proprietary IP).

use crate::{Result, Value, Error};

/// Aggregate function
pub trait AggregateFunction: Send {
    /// Initialize accumulator state
    fn init_state(&self) -> Box<dyn AggregateState>;

    /// Get function name
    fn name(&self) -> &'static str;
}

/// Aggregate state
pub trait AggregateState: Send {
    /// Accumulate a value
    fn accumulate(&mut self, value: &Value) -> Result<()>;

    /// Finalize and return result
    fn finalize(&self) -> Result<Value>;
}

// =============================================================================
// COUNT aggregate
// =============================================================================

/// COUNT aggregate function
pub struct CountFunction;

impl AggregateFunction for CountFunction {
    fn init_state(&self) -> Box<dyn AggregateState> {
        Box::new(CountState { count: 0 })
    }

    fn name(&self) -> &'static str {
        "COUNT"
    }
}

/// COUNT aggregate state
pub struct CountState {
    count: i64,
}

impl Default for CountState {
    fn default() -> Self {
        Self { count: 0 }
    }
}

impl AggregateState for CountState {
    fn accumulate(&mut self, value: &Value) -> Result<()> {
        // COUNT(*) counts all rows, COUNT(col) counts non-null values
        if !matches!(value, Value::Null) {
            self.count += 1;
        }
        Ok(())
    }

    fn finalize(&self) -> Result<Value> {
        Ok(Value::Int8(self.count))
    }
}

// =============================================================================
// SUM aggregate
// =============================================================================

/// SUM aggregate function
pub struct SumFunction;

impl AggregateFunction for SumFunction {
    fn init_state(&self) -> Box<dyn AggregateState> {
        Box::new(SumState { sum: None })
    }

    fn name(&self) -> &'static str {
        "SUM"
    }
}

/// SUM aggregate state
pub struct SumState {
    sum: Option<f64>,
}

impl AggregateState for SumState {
    fn accumulate(&mut self, value: &Value) -> Result<()> {
        let num = match value {
            Value::Null => return Ok(()),
            Value::Int2(n) => *n as f64,
            Value::Int4(n) => *n as f64,
            Value::Int8(n) => *n as f64,
            Value::Float4(n) => *n as f64,
            Value::Float8(n) => *n,
            _ => return Err(Error::Generic(format!("SUM cannot aggregate non-numeric value: {:?}", value))),
        };

        self.sum = Some(self.sum.unwrap_or(0.0) + num);
        Ok(())
    }

    fn finalize(&self) -> Result<Value> {
        Ok(self.sum.map(Value::Float8).unwrap_or(Value::Null))
    }
}

// =============================================================================
// AVG aggregate
// =============================================================================

/// AVG aggregate function
pub struct AvgFunction;

impl AggregateFunction for AvgFunction {
    fn init_state(&self) -> Box<dyn AggregateState> {
        Box::new(AvgState { sum: 0.0, count: 0 })
    }

    fn name(&self) -> &'static str {
        "AVG"
    }
}

/// AVG aggregate state
pub struct AvgState {
    sum: f64,
    count: i64,
}

impl AggregateState for AvgState {
    fn accumulate(&mut self, value: &Value) -> Result<()> {
        let num = match value {
            Value::Null => return Ok(()),
            Value::Int2(n) => *n as f64,
            Value::Int4(n) => *n as f64,
            Value::Int8(n) => *n as f64,
            Value::Float4(n) => *n as f64,
            Value::Float8(n) => *n,
            _ => return Err(Error::Generic(format!("AVG cannot aggregate non-numeric value: {:?}", value))),
        };

        self.sum += num;
        self.count += 1;
        Ok(())
    }

    fn finalize(&self) -> Result<Value> {
        if self.count == 0 {
            Ok(Value::Null)
        } else {
            Ok(Value::Float8(self.sum / self.count as f64))
        }
    }
}

// =============================================================================
// MIN aggregate
// =============================================================================

/// MIN aggregate function
pub struct MinFunction;

impl AggregateFunction for MinFunction {
    fn init_state(&self) -> Box<dyn AggregateState> {
        Box::new(MinState { min: None })
    }

    fn name(&self) -> &'static str {
        "MIN"
    }
}

/// MIN aggregate state
pub struct MinState {
    min: Option<Value>,
}

impl AggregateState for MinState {
    fn accumulate(&mut self, value: &Value) -> Result<()> {
        if matches!(value, Value::Null) {
            return Ok(());
        }

        match &self.min {
            None => {
                self.min = Some(value.clone());
            }
            Some(current_min) => {
                if value_less_than(value, current_min) {
                    self.min = Some(value.clone());
                }
            }
        }
        Ok(())
    }

    fn finalize(&self) -> Result<Value> {
        Ok(self.min.clone().unwrap_or(Value::Null))
    }
}

// =============================================================================
// MAX aggregate
// =============================================================================

/// MAX aggregate function
pub struct MaxFunction;

impl AggregateFunction for MaxFunction {
    fn init_state(&self) -> Box<dyn AggregateState> {
        Box::new(MaxState { max: None })
    }

    fn name(&self) -> &'static str {
        "MAX"
    }
}

/// MAX aggregate state
pub struct MaxState {
    max: Option<Value>,
}

impl AggregateState for MaxState {
    fn accumulate(&mut self, value: &Value) -> Result<()> {
        if matches!(value, Value::Null) {
            return Ok(());
        }

        match &self.max {
            None => {
                self.max = Some(value.clone());
            }
            Some(current_max) => {
                if value_greater_than(value, current_max) {
                    self.max = Some(value.clone());
                }
            }
        }
        Ok(())
    }

    fn finalize(&self) -> Result<Value> {
        Ok(self.max.clone().unwrap_or(Value::Null))
    }
}

// =============================================================================
// STDDEV (Standard Deviation) aggregate
// =============================================================================

/// STDDEV aggregate function (sample standard deviation)
pub struct StddevFunction;

impl AggregateFunction for StddevFunction {
    fn init_state(&self) -> Box<dyn AggregateState> {
        Box::new(StddevState {
            count: 0,
            mean: 0.0,
            m2: 0.0  // Sum of squares of differences from mean (Welford's algorithm)
        })
    }

    fn name(&self) -> &'static str {
        "STDDEV"
    }
}

/// STDDEV aggregate state using Welford's online algorithm
pub struct StddevState {
    count: i64,
    mean: f64,
    m2: f64,
}

impl AggregateState for StddevState {
    fn accumulate(&mut self, value: &Value) -> Result<()> {
        let num = match value {
            Value::Null => return Ok(()),
            Value::Int2(n) => *n as f64,
            Value::Int4(n) => *n as f64,
            Value::Int8(n) => *n as f64,
            Value::Float4(n) => *n as f64,
            Value::Float8(n) => *n,
            _ => return Err(Error::Generic(format!("STDDEV cannot aggregate non-numeric value: {:?}", value))),
        };

        // Welford's online algorithm for computing variance
        self.count += 1;
        let delta = num - self.mean;
        self.mean += delta / self.count as f64;
        let delta2 = num - self.mean;
        self.m2 += delta * delta2;

        Ok(())
    }

    fn finalize(&self) -> Result<Value> {
        if self.count < 2 {
            Ok(Value::Null) // Need at least 2 values for sample stddev
        } else {
            // Sample standard deviation (N-1 denominator)
            let variance = self.m2 / (self.count - 1) as f64;
            Ok(Value::Float8(variance.sqrt()))
        }
    }
}

// =============================================================================
// VARIANCE aggregate
// =============================================================================

/// VARIANCE aggregate function (sample variance)
pub struct VarianceFunction;

impl AggregateFunction for VarianceFunction {
    fn init_state(&self) -> Box<dyn AggregateState> {
        Box::new(VarianceState {
            count: 0,
            mean: 0.0,
            m2: 0.0
        })
    }

    fn name(&self) -> &'static str {
        "VARIANCE"
    }
}

/// VARIANCE aggregate state using Welford's online algorithm
pub struct VarianceState {
    count: i64,
    mean: f64,
    m2: f64,
}

impl AggregateState for VarianceState {
    fn accumulate(&mut self, value: &Value) -> Result<()> {
        let num = match value {
            Value::Null => return Ok(()),
            Value::Int2(n) => *n as f64,
            Value::Int4(n) => *n as f64,
            Value::Int8(n) => *n as f64,
            Value::Float4(n) => *n as f64,
            Value::Float8(n) => *n,
            _ => return Err(Error::Generic(format!("VARIANCE cannot aggregate non-numeric value: {:?}", value))),
        };

        // Welford's online algorithm for computing variance
        self.count += 1;
        let delta = num - self.mean;
        self.mean += delta / self.count as f64;
        let delta2 = num - self.mean;
        self.m2 += delta * delta2;

        Ok(())
    }

    fn finalize(&self) -> Result<Value> {
        if self.count < 2 {
            Ok(Value::Null) // Need at least 2 values for sample variance
        } else {
            // Sample variance (N-1 denominator)
            let variance = self.m2 / (self.count - 1) as f64;
            Ok(Value::Float8(variance))
        }
    }
}

// =============================================================================
// Helper functions for value comparison
// =============================================================================

/// Compare two values for less-than ordering
fn value_less_than(a: &Value, b: &Value) -> bool {
    match (a, b) {
        (Value::Int2(x), Value::Int2(y)) => x < y,
        (Value::Int4(x), Value::Int4(y)) => x < y,
        (Value::Int8(x), Value::Int8(y)) => x < y,
        (Value::Float4(x), Value::Float4(y)) => x < y,
        (Value::Float8(x), Value::Float8(y)) => x < y,
        (Value::String(x), Value::String(y)) => x < y,
        (Value::Boolean(x), Value::Boolean(y)) => !x && *y, // false < true
        // Cross-type numeric comparisons (convert to f64)
        (a, b) if is_numeric(a) && is_numeric(b) => {
            to_f64(a).unwrap_or(f64::NAN) < to_f64(b).unwrap_or(f64::NAN)
        }
        _ => false, // Can't compare incompatible types
    }
}

/// Compare two values for greater-than ordering
fn value_greater_than(a: &Value, b: &Value) -> bool {
    match (a, b) {
        (Value::Int2(x), Value::Int2(y)) => x > y,
        (Value::Int4(x), Value::Int4(y)) => x > y,
        (Value::Int8(x), Value::Int8(y)) => x > y,
        (Value::Float4(x), Value::Float4(y)) => x > y,
        (Value::Float8(x), Value::Float8(y)) => x > y,
        (Value::String(x), Value::String(y)) => x > y,
        (Value::Boolean(x), Value::Boolean(y)) => *x && !y, // true > false
        // Cross-type numeric comparisons (convert to f64)
        (a, b) if is_numeric(a) && is_numeric(b) => {
            to_f64(a).unwrap_or(f64::NAN) > to_f64(b).unwrap_or(f64::NAN)
        }
        _ => false, // Can't compare incompatible types
    }
}

/// Check if a value is numeric
fn is_numeric(v: &Value) -> bool {
    matches!(v,
        Value::Int2(_) | Value::Int4(_) | Value::Int8(_) |
        Value::Float4(_) | Value::Float8(_)
    )
}

/// Convert a numeric value to f64
fn to_f64(v: &Value) -> Option<f64> {
    match v {
        Value::Int2(n) => Some(*n as f64),
        Value::Int4(n) => Some(*n as f64),
        Value::Int8(n) => Some(*n as f64),
        Value::Float4(n) => Some(*n as f64),
        Value::Float8(n) => Some(*n),
        _ => None,
    }
}

// =============================================================================
// JSON_AGG aggregate
// =============================================================================

/// JSON_AGG aggregate function - aggregates values into a JSON array
pub struct JsonAggFunction;

impl AggregateFunction for JsonAggFunction {
    fn init_state(&self) -> Box<dyn AggregateState> {
        Box::new(JsonAggState {
            values: Vec::new()
        })
    }

    fn name(&self) -> &'static str {
        "JSON_AGG"
    }
}

/// JSON_AGG aggregate state - collects values into a JSON array
pub struct JsonAggState {
    values: Vec<serde_json::Value>,
}

impl AggregateState for JsonAggState {
    fn accumulate(&mut self, value: &Value) -> Result<()> {
        // Convert Value to JSON representation
        let json_val = match value {
            Value::Null => serde_json::Value::Null,
            Value::Boolean(b) => serde_json::Value::Bool(*b),
            Value::Int2(n) => serde_json::json!(*n),
            Value::Int4(n) => serde_json::json!(*n),
            Value::Int8(n) => serde_json::json!(*n),
            Value::Float4(f) => serde_json::json!(*f as f64),
            Value::Float8(f) => serde_json::json!(*f),
            Value::String(s) => serde_json::Value::String(s.clone()),
            Value::Bytes(b) => {
                // Encode bytes as hex string
                serde_json::Value::String(hex::encode(b))
            }
            Value::Uuid(u) => serde_json::Value::String(u.to_string()),
            Value::Timestamp(ts) => serde_json::Value::String(ts.to_rfc3339()),
            Value::Json(j) => {
                // Parse JSON string into serde_json::Value
                serde_json::from_str(j).unwrap_or_else(|_| serde_json::Value::String(j.clone()))
            }
            Value::Array(arr) => {
                // Recursively convert array elements
                let json_arr: Vec<serde_json::Value> = arr.iter().map(|v| {
                    match v {
                        Value::Null => serde_json::Value::Null,
                        Value::Boolean(b) => serde_json::Value::Bool(*b),
                        Value::Int2(n) => serde_json::json!(*n),
                        Value::Int4(n) => serde_json::json!(*n),
                        Value::Int8(n) => serde_json::json!(*n),
                        Value::Float4(f) => serde_json::json!(*f as f64),
                        Value::Float8(f) => serde_json::json!(*f),
                        Value::String(s) => serde_json::Value::String(s.clone()),
                        Value::Bytes(b) => serde_json::Value::String(hex::encode(b)),
                        Value::Uuid(u) => serde_json::Value::String(u.to_string()),
                        Value::Timestamp(ts) => serde_json::Value::String(ts.to_rfc3339()),
                        Value::Json(j) => {
                            serde_json::from_str(j).unwrap_or_else(|_| serde_json::Value::String(j.clone()))
                        }
                        _ => serde_json::Value::Null,
                    }
                }).collect();
                serde_json::Value::Array(json_arr)
            }
            _ => serde_json::Value::Null,
        };

        self.values.push(json_val);
        Ok(())
    }

    fn finalize(&self) -> Result<Value> {
        // Return the collected values as a JSON array
        let json_array = serde_json::Value::Array(self.values.clone());
        Ok(Value::Json(json_array.to_string()))
    }
}

// =============================================================================
// Factory function
// =============================================================================

/// Create an aggregate function by name
pub fn create_aggregate(name: &str) -> Option<Box<dyn AggregateFunction>> {
    match name.to_uppercase().as_str() {
        "COUNT" => Some(Box::new(CountFunction)),
        "SUM" => Some(Box::new(SumFunction)),
        "AVG" => Some(Box::new(AvgFunction)),
        "MIN" => Some(Box::new(MinFunction)),
        "MAX" => Some(Box::new(MaxFunction)),
        "STDDEV" | "STDDEV_SAMP" => Some(Box::new(StddevFunction)),
        "VARIANCE" | "VAR_SAMP" => Some(Box::new(VarianceFunction)),
        "JSON_AGG" => Some(Box::new(JsonAggFunction)),
        _ => None,
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_count() {
        let func = CountFunction;
        let mut state = func.init_state();

        state.accumulate(&Value::Int4(1)).unwrap();
        state.accumulate(&Value::Int4(2)).unwrap();
        state.accumulate(&Value::Null).unwrap();
        state.accumulate(&Value::Int4(3)).unwrap();

        assert_eq!(state.finalize().unwrap(), Value::Int8(3)); // NULL not counted
    }

    #[test]
    fn test_sum() {
        let func = SumFunction;
        let mut state = func.init_state();

        state.accumulate(&Value::Int4(10)).unwrap();
        state.accumulate(&Value::Int4(20)).unwrap();
        state.accumulate(&Value::Null).unwrap();
        state.accumulate(&Value::Int4(30)).unwrap();

        assert_eq!(state.finalize().unwrap(), Value::Float8(60.0));
    }

    #[test]
    fn test_avg() {
        let func = AvgFunction;
        let mut state = func.init_state();

        state.accumulate(&Value::Int4(10)).unwrap();
        state.accumulate(&Value::Int4(20)).unwrap();
        state.accumulate(&Value::Int4(30)).unwrap();

        assert_eq!(state.finalize().unwrap(), Value::Float8(20.0));
    }

    #[test]
    fn test_min_max() {
        let min_func = MinFunction;
        let max_func = MaxFunction;
        let mut min_state = min_func.init_state();
        let mut max_state = max_func.init_state();

        for v in [Value::Int4(5), Value::Int4(2), Value::Int4(8), Value::Int4(1)] {
            min_state.accumulate(&v).unwrap();
            max_state.accumulate(&v).unwrap();
        }

        assert_eq!(min_state.finalize().unwrap(), Value::Int4(1));
        assert_eq!(max_state.finalize().unwrap(), Value::Int4(8));
    }

    #[test]
    fn test_stddev_variance() {
        let stddev_func = StddevFunction;
        let variance_func = VarianceFunction;
        let mut stddev_state = stddev_func.init_state();
        let mut var_state = variance_func.init_state();

        // Sample: 2, 4, 4, 4, 5, 5, 7, 9
        // Mean = 5, Sum of squared deviations = 32
        // Sample Variance = 32/(n-1) = 32/7 ≈ 4.5714
        // Sample StdDev = sqrt(32/7) ≈ 2.1381
        for v in [2, 4, 4, 4, 5, 5, 7, 9] {
            stddev_state.accumulate(&Value::Int4(v)).unwrap();
            var_state.accumulate(&Value::Int4(v)).unwrap();
        }

        let variance = match var_state.finalize().unwrap() {
            Value::Float8(v) => v,
            _ => panic!("Expected Float8"),
        };
        let stddev = match stddev_state.finalize().unwrap() {
            Value::Float8(v) => v,
            _ => panic!("Expected Float8"),
        };

        // Sample variance = 32/7 ≈ 4.5714
        let expected_variance: f64 = 32.0 / 7.0;
        let expected_stddev: f64 = expected_variance.sqrt();
        assert!((variance - expected_variance).abs() < 0.001, "variance {} != {}", variance, expected_variance);
        assert!((stddev - expected_stddev).abs() < 0.001, "stddev {} != {}", stddev, expected_stddev);
    }
}