We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55cd0ee commit 849d49aCopy full SHA for 849d49a
1 file changed
tests/raw_parse_tests.rs
@@ -51,6 +51,8 @@ fn benchmark_parse_raw_vs_parse() {
51
SUM(ro.total_amount) AS total_spent,
52
AVG(ro.total_amount) AS avg_order_value,
53
MAX(ro.created_at) AS last_order_date,
54
+ now(),
55
+ current_timestamp,
56
CASE
57
WHEN SUM(ro.total_amount) > 10000 THEN 'platinum'
58
WHEN SUM(ro.total_amount) > 5000 THEN 'gold'
@@ -190,6 +192,8 @@ fn benchmark_deparse_raw_vs_deparse() {
190
192
191
193
194
195
196
197
198
199
0 commit comments