blob: 1d4b14e70321556ff974ada777b207d77c12abb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
CREATE EXTENSION test_lfind;
--
-- These tests don't produce any interesting output. We're checking that
-- the operations complete without crashing or hanging and that none of their
-- internal sanity tests fail.
--
SELECT test_lfind8();
test_lfind8
-------------
(1 row)
SELECT test_lfind8_le();
test_lfind8_le
----------------
(1 row)
SELECT test_lfind32();
test_lfind32
--------------
(1 row)
|