Files
sqlpage--sqlpage/tests/sql_test_files/it_works_sqrt.sql
francesco-cattoglio cc6a391810 Added a compile time flag to compile SQLite with builtin math functions (#938)
* Added a compile time flag to compile SQLite with builtin math funcions

* Added a test, improved the comments in cargo config file
2025-06-20 21:19:47 +02:00

8 lines
199 B
SQL

set number_three = sqrt(9.0);
select 'text' as component,
case $number_three
when '3.0' then 'It works !'
else 'error: ' || coalesce($number_three, 'NULL')
end AS contents;