Skip to content

Commit 08c217e

Browse files
committed
Add BOOL[] test.
1 parent 9ce4df6 commit 08c217e

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

test.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,11 @@ fn test_float8array_params() {
452452
test_array_params!("FLOAT8", 0f64, "0", 1.5f64, "1.5", 0.009f64, ".009");
453453
}
454454
455+
#[test]
456+
fn test_boolarray_params() {
457+
test_array_params!("BOOL", false, "f", true, "t", true, "t");
458+
}
459+
455460
#[test]
456461
fn test_hstore_params() {
457462
macro_rules! make_map(

0 commit comments

Comments
 (0)