sql-cli 1.69.3

SQL query tool for CSV/JSON with both interactive TUI and non-interactive CLI modes - perfect for exploration and automation
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
//! Bitwise operations on binary string representations

use crate::data::datatable::DataValue;
use crate::sql::functions::{ArgCount, FunctionCategory, FunctionSignature, SqlFunction};
use anyhow::{anyhow, Result};

/// BIT_AND_STR - Bitwise AND on binary strings
pub struct BitAndStr;

impl SqlFunction for BitAndStr {
    fn signature(&self) -> FunctionSignature {
        FunctionSignature {
            name: "BIT_AND_STR",
            category: FunctionCategory::Bitwise,
            arg_count: ArgCount::Fixed(2),
            description: "Performs bitwise AND on two binary strings",
            returns: "Binary string result",
            examples: vec![
                "SELECT BIT_AND_STR('1101', '1011')",
                "SELECT BIT_AND_STR(TO_BINARY(13), TO_BINARY(11))",
            ],
        }
    }

    fn evaluate(&self, args: &[DataValue]) -> Result<DataValue> {
        self.validate_args(args)?;

        let a = args[0].to_string();
        let b = args[1].to_string();

        // Pad to same length
        let max_len = a.len().max(b.len());
        let a_padded = format!("{:0>width$}", a, width = max_len);
        let b_padded = format!("{:0>width$}", b, width = max_len);

        let result: String = a_padded
            .chars()
            .zip(b_padded.chars())
            .map(|(c1, c2)| match (c1, c2) {
                ('1', '1') => '1',
                _ => '0',
            })
            .collect();

        Ok(DataValue::String(result))
    }
}

/// BIT_OR_STR - Bitwise OR on binary strings
pub struct BitOrStr;

impl SqlFunction for BitOrStr {
    fn signature(&self) -> FunctionSignature {
        FunctionSignature {
            name: "BIT_OR_STR",
            category: FunctionCategory::Bitwise,
            arg_count: ArgCount::Fixed(2),
            description: "Performs bitwise OR on two binary strings",
            returns: "Binary string result",
            examples: vec![
                "SELECT BIT_OR_STR('1100', '1010')",
                "SELECT BIT_OR_STR(TO_BINARY(12), TO_BINARY(10))",
            ],
        }
    }

    fn evaluate(&self, args: &[DataValue]) -> Result<DataValue> {
        self.validate_args(args)?;

        let a = args[0].to_string();
        let b = args[1].to_string();

        let max_len = a.len().max(b.len());
        let a_padded = format!("{:0>width$}", a, width = max_len);
        let b_padded = format!("{:0>width$}", b, width = max_len);

        let result: String = a_padded
            .chars()
            .zip(b_padded.chars())
            .map(|(c1, c2)| match (c1, c2) {
                ('0', '0') => '0',
                _ => '1',
            })
            .collect();

        Ok(DataValue::String(result))
    }
}

/// BIT_XOR_STR - Bitwise XOR on binary strings
pub struct BitXorStr;

impl SqlFunction for BitXorStr {
    fn signature(&self) -> FunctionSignature {
        FunctionSignature {
            name: "BIT_XOR_STR",
            category: FunctionCategory::Bitwise,
            arg_count: ArgCount::Fixed(2),
            description: "Performs bitwise XOR on two binary strings",
            returns: "Binary string result",
            examples: vec![
                "SELECT BIT_XOR_STR('1100', '1010')",
                "SELECT BIT_XOR_STR(TO_BINARY(12), TO_BINARY(10))",
            ],
        }
    }

    fn evaluate(&self, args: &[DataValue]) -> Result<DataValue> {
        self.validate_args(args)?;

        let a = args[0].to_string();
        let b = args[1].to_string();

        let max_len = a.len().max(b.len());
        let a_padded = format!("{:0>width$}", a, width = max_len);
        let b_padded = format!("{:0>width$}", b, width = max_len);

        let result: String = a_padded
            .chars()
            .zip(b_padded.chars())
            .map(|(c1, c2)| if c1 == c2 { '0' } else { '1' })
            .collect();

        Ok(DataValue::String(result))
    }
}

/// BIT_NOT_STR - Bitwise NOT on binary string
pub struct BitNotStr;

impl SqlFunction for BitNotStr {
    fn signature(&self) -> FunctionSignature {
        FunctionSignature {
            name: "BIT_NOT_STR",
            category: FunctionCategory::Bitwise,
            arg_count: ArgCount::Fixed(1),
            description: "Performs bitwise NOT on a binary string",
            returns: "Binary string with bits flipped",
            examples: vec![
                "SELECT BIT_NOT_STR('1100')",
                "SELECT BIT_NOT_STR(TO_BINARY(12))",
            ],
        }
    }

    fn evaluate(&self, args: &[DataValue]) -> Result<DataValue> {
        self.validate_args(args)?;

        let input = args[0].to_string();

        let result: String = input
            .chars()
            .map(|c| if c == '0' { '1' } else { '0' })
            .collect();

        Ok(DataValue::String(result))
    }
}

/// BIT_FLIP - Alias for BIT_NOT_STR
pub struct BitFlip;

impl SqlFunction for BitFlip {
    fn signature(&self) -> FunctionSignature {
        FunctionSignature {
            name: "BIT_FLIP",
            category: FunctionCategory::Bitwise,
            arg_count: ArgCount::Fixed(1),
            description: "Flips all bits in a binary string (alias for BIT_NOT_STR)",
            returns: "Binary string with bits flipped",
            examples: vec!["SELECT BIT_FLIP('11011010')"],
        }
    }

    fn evaluate(&self, args: &[DataValue]) -> Result<DataValue> {
        BitNotStr.evaluate(args)
    }
}

/// BIT_COUNT - Count number of 1 bits (popcount).
///
/// Accepts either a binary string (e.g. `'11011010'`) or an integer.
/// For integers the underlying 64-bit representation is counted via
/// `u64::count_ones`, so negative values count their two's-complement bits.
pub struct BitCount;

impl SqlFunction for BitCount {
    fn signature(&self) -> FunctionSignature {
        FunctionSignature {
            name: "BIT_COUNT",
            category: FunctionCategory::Bitwise,
            arg_count: ArgCount::Fixed(1),
            description: "Counts the number of 1 bits in a binary string or integer (popcount)",
            returns: "Integer count of 1 bits",
            examples: vec![
                "SELECT BIT_COUNT('11011010')  -- Returns 5",
                "SELECT BIT_COUNT(218)         -- Returns 5 (same value, as integer)",
                "SELECT BIT_COUNT(TO_BINARY(218))",
            ],
        }
    }

    fn evaluate(&self, args: &[DataValue]) -> Result<DataValue> {
        self.validate_args(args)?;

        let count = match &args[0] {
            DataValue::Null => return Ok(DataValue::Null),
            DataValue::Integer(n) => (*n as u64).count_ones() as i64,
            DataValue::String(s) => s.chars().filter(|&c| c == '1').count() as i64,
            // Fall back to the legacy string behaviour for anything else
            // (e.g. booleans/floats stringify and are counted by '1' chars).
            other => other.to_string().chars().filter(|&c| c == '1').count() as i64,
        };
        Ok(DataValue::Integer(count))
    }
}

/// BIT_ROTATE_LEFT - Rotate binary string left by N positions
pub struct BitRotateLeft;

impl SqlFunction for BitRotateLeft {
    fn signature(&self) -> FunctionSignature {
        FunctionSignature {
            name: "BIT_ROTATE_LEFT",
            category: FunctionCategory::Bitwise,
            arg_count: ArgCount::Fixed(2),
            description: "Rotates a binary string left by N positions",
            returns: "Rotated binary string",
            examples: vec![
                "SELECT BIT_ROTATE_LEFT('11011010', 2)",
                "SELECT BIT_ROTATE_LEFT(TO_BINARY(218), 3)",
            ],
        }
    }

    fn evaluate(&self, args: &[DataValue]) -> Result<DataValue> {
        self.validate_args(args)?;

        let input = args[0].to_string();
        let positions = match &args[1] {
            DataValue::Integer(n) => *n as usize,
            DataValue::Float(f) => *f as usize,
            _ => return Err(anyhow!("Second argument must be a number")),
        };

        if input.is_empty() {
            return Ok(DataValue::String(String::new()));
        }

        let effective_positions = positions % input.len();
        let result = format!(
            "{}{}",
            &input[effective_positions..],
            &input[..effective_positions]
        );

        Ok(DataValue::String(result))
    }
}

/// BIT_ROTATE_RIGHT - Rotate binary string right by N positions
pub struct BitRotateRight;

impl SqlFunction for BitRotateRight {
    fn signature(&self) -> FunctionSignature {
        FunctionSignature {
            name: "BIT_ROTATE_RIGHT",
            category: FunctionCategory::Bitwise,
            arg_count: ArgCount::Fixed(2),
            description: "Rotates a binary string right by N positions",
            returns: "Rotated binary string",
            examples: vec![
                "SELECT BIT_ROTATE_RIGHT('11011010', 2)",
                "SELECT BIT_ROTATE_RIGHT(TO_BINARY(218), 3)",
            ],
        }
    }

    fn evaluate(&self, args: &[DataValue]) -> Result<DataValue> {
        self.validate_args(args)?;

        let input = args[0].to_string();
        let positions = match &args[1] {
            DataValue::Integer(n) => *n as usize,
            DataValue::Float(f) => *f as usize,
            _ => return Err(anyhow!("Second argument must be a number")),
        };

        if input.is_empty() {
            return Ok(DataValue::String(String::new()));
        }

        let effective_positions = positions % input.len();
        let split_point = input.len() - effective_positions;
        let result = format!("{}{}", &input[split_point..], &input[..split_point]);

        Ok(DataValue::String(result))
    }
}

/// BIT_SHIFT_LEFT - Shift binary string left, filling with zeros
pub struct BitShiftLeft;

impl SqlFunction for BitShiftLeft {
    fn signature(&self) -> FunctionSignature {
        FunctionSignature {
            name: "BIT_SHIFT_LEFT",
            category: FunctionCategory::Bitwise,
            arg_count: ArgCount::Fixed(2),
            description: "Shifts a binary string left by N positions, filling with zeros",
            returns: "Shifted binary string",
            examples: vec![
                "SELECT BIT_SHIFT_LEFT('11011010', 2)",
                "SELECT BIT_SHIFT_LEFT(TO_BINARY(218), 3)",
            ],
        }
    }

    fn evaluate(&self, args: &[DataValue]) -> Result<DataValue> {
        self.validate_args(args)?;

        let input = args[0].to_string();
        let positions = match &args[1] {
            DataValue::Integer(n) => *n as usize,
            DataValue::Float(f) => *f as usize,
            _ => return Err(anyhow!("Second argument must be a number")),
        };

        if positions >= input.len() {
            return Ok(DataValue::String("0".repeat(input.len())));
        }

        let result = format!("{}{}", &input[positions..], "0".repeat(positions));

        Ok(DataValue::String(result))
    }
}

/// BIT_SHIFT_RIGHT - Shift binary string right, filling with zeros
pub struct BitShiftRight;

impl SqlFunction for BitShiftRight {
    fn signature(&self) -> FunctionSignature {
        FunctionSignature {
            name: "BIT_SHIFT_RIGHT",
            category: FunctionCategory::Bitwise,
            arg_count: ArgCount::Fixed(2),
            description: "Shifts a binary string right by N positions, filling with zeros",
            returns: "Shifted binary string",
            examples: vec![
                "SELECT BIT_SHIFT_RIGHT('11011010', 2)",
                "SELECT BIT_SHIFT_RIGHT(TO_BINARY(218), 3)",
            ],
        }
    }

    fn evaluate(&self, args: &[DataValue]) -> Result<DataValue> {
        self.validate_args(args)?;

        let input = args[0].to_string();
        let positions = match &args[1] {
            DataValue::Integer(n) => *n as usize,
            DataValue::Float(f) => *f as usize,
            _ => return Err(anyhow!("Second argument must be a number")),
        };

        if positions >= input.len() {
            return Ok(DataValue::String("0".repeat(input.len())));
        }

        let result = format!(
            "{}{}",
            "0".repeat(positions),
            &input[..input.len() - positions]
        );

        Ok(DataValue::String(result))
    }
}

/// HAMMING_DISTANCE - Count bit differences between two binary strings
pub struct HammingDistance;

impl SqlFunction for HammingDistance {
    fn signature(&self) -> FunctionSignature {
        FunctionSignature {
            name: "HAMMING_DISTANCE",
            category: FunctionCategory::Bitwise,
            arg_count: ArgCount::Fixed(2),
            description: "Counts the number of differing bits between two binary strings",
            returns: "Integer count of different bits",
            examples: vec![
                "SELECT HAMMING_DISTANCE('1101', '1011')",
                "SELECT HAMMING_DISTANCE(TO_BINARY(13), TO_BINARY(11))",
            ],
        }
    }

    fn evaluate(&self, args: &[DataValue]) -> Result<DataValue> {
        self.validate_args(args)?;

        let a = args[0].to_string();
        let b = args[1].to_string();

        let max_len = a.len().max(b.len());
        let a_padded = format!("{:0>width$}", a, width = max_len);
        let b_padded = format!("{:0>width$}", b, width = max_len);

        let distance = a_padded
            .chars()
            .zip(b_padded.chars())
            .filter(|(c1, c2)| c1 != c2)
            .count() as i64;

        Ok(DataValue::Integer(distance))
    }
}