Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion grammars/emacs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Copy the `prql-mode.el` file to:

Then, edit your `~/.emacs.d/init.el` file and add the following:

```emacs
```elisp
(add-to-list 'load-path "~/.emacs.d/custom-modes/")
(require 'prql-mode)

Expand Down
6 changes: 3 additions & 3 deletions prqlc/prqlc/src/sql/pq/context.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Transform the parsed AST into a "materialized" AST, by executing functions and
//! replacing variables. The materialized AST is "flat", in the sense that it
//! contains no query-specific logic.
//! Context for the PQ anchoring stage: tracks table, column, and relation-instance
//! declarations, and generates fresh IDs and names for tables and columns as RQ is
//! lowered towards SQL.
use std::collections::HashMap;
use std::iter::zip;

Expand Down
Loading