Skip to content

Commit 849d49a

Browse files
committed
test functions
1 parent 55cd0ee commit 849d49a

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

tests/raw_parse_tests.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ fn benchmark_parse_raw_vs_parse() {
5151
SUM(ro.total_amount) AS total_spent,
5252
AVG(ro.total_amount) AS avg_order_value,
5353
MAX(ro.created_at) AS last_order_date,
54+
now(),
55+
current_timestamp,
5456
CASE
5557
WHEN SUM(ro.total_amount) > 10000 THEN 'platinum'
5658
WHEN SUM(ro.total_amount) > 5000 THEN 'gold'
@@ -190,6 +192,8 @@ fn benchmark_deparse_raw_vs_deparse() {
190192
SUM(ro.total_amount) AS total_spent,
191193
AVG(ro.total_amount) AS avg_order_value,
192194
MAX(ro.created_at) AS last_order_date,
195+
now(),
196+
current_timestamp,
193197
CASE
194198
WHEN SUM(ro.total_amount) > 10000 THEN 'platinum'
195199
WHEN SUM(ro.total_amount) > 5000 THEN 'gold'

0 commit comments

Comments
 (0)