We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1892048 commit 7caa30aCopy full SHA for 7caa30a
benchmark/benchmark.sh
@@ -25,3 +25,6 @@ do
25
echo "| ${array[2]} |"
26
fi
27
done
28
+
29
+grep "Total time" benchmark.log
30
benchmark/benchmark.sql
@@ -8,6 +8,8 @@ create temp table tb_test_bitmaps as
8
group by id;
9
\timing
10
11
+select now() time_start \gset
12
13
\echo rb_and_1
14
explain analyze
15
with t as(
@@ -301,3 +303,8 @@ select rb_and_cardinality_agg(bitmap) from tb_test_bitmaps;
301
303
\echo rb_xor_cardinality_agg_1
302
304
305
select rb_xor_cardinality_agg(bitmap) from tb_test_bitmaps;
306
307
+select now() - :'time_start'::timestamp as time_escape \gset
308
309
+\echo Total time: :time_escape
310
0 commit comments