22个不稳定版本 (8个破坏性版本)

0.12.2 2024年6月10日
0.11.3 2024年2月11日
0.11.1 2023年12月26日
0.10.1 2023年11月14日
0.6.1 2023年3月13日

#775 in 进程宏

每月 28 次下载

Apache-2.0

695KB
17K SLoC

构建时PRQL编译宏。

use prql_compiler_macros::prql_to_sql;

let sql: &str = prql_to_sql!("from albums | select {title, artist_id}");
assert_eq!(sql, "SELECT title, artist_id FROM albums");

"构建时"意味着PRQL将在Rust编译过程中进行编译,与Rust错误一起生成错误。仅限于字符串字面量。

依赖项

~9–12MB
~196K SLoC