We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8337d23 commit dbebe09Copy full SHA for dbebe09
2 files changed
prqlc/bindings/prqlc-c/examples/minimal-zig/src/main.zig
@@ -9,8 +9,7 @@ pub fn main() !void {
9
const options = prql.Options{
10
.format = false,
11
.signature_comment = false,
12
- //.target = &target,
13
- .target = &target
+ .target = &target,
14
};
15
16
// Compile the PRQL query
prqlc/prqlc/src/sql/pq/postprocess.rs
@@ -1,6 +1,7 @@
1
//! An AST pass after compilation to PQ.
2
//!
3
-//! Currently only moves [SqlTransform::Sort]s.
+//! Infers and propagates [SqlTransform::Sort]s through pipelines and assigns
4
+//! human-readable names to CTEs and relation variables.
5
6
use std::collections::{HashMap, HashSet, VecDeque};
7
0 commit comments