You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs-site/content/docs/guides/upload-cli.md
+1-24Lines changed: 1 addition & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -160,30 +160,7 @@ Same flow, same calls. What it adds is that the plan stays on screen: at a
160
160
scrolling prompt the table goes past once and correcting a type means retyping
161
161
the whole command, and here the cursor moves down it.
162
162
163
-
```
164
-
opteryx upload https://upload.opteryx.app
165
-
166
-
FILES
167
-
part-0000.parquet 412.9 MB
168
-
part-0001.parquet 398.1 MB
169
-
170
-
ACCOUNT
171
-
acme-etl
172
-
173
-
TO
174
-
acme.security.findings
175
-
176
-
PLAN a new dataset; these types were read from your data
177
-
column sample type
178
-
cve_id CVE-2026-00001 VARCHAR
179
-
published 2026-08-02T04:22:07Z TIMESTAMP[us] was VARCHAR, converted
180
-
› source_ip 10.1.7.13 IPV4 was VARCHAR, converted
181
-
hosts 1 INT64
182
-
score 0.5 FLOAT64 read and not written
183
-
184
-
these types were read from your data - nothing is written until you accept
185
-
↑↓ column e retype x ignore ⏎ accept u upload h keys q quit
186
-
```
163
+
<imgsrc="/images/cli/upload-tui.gif"alt="The opteryx-upload TUI: negotiating a contract for findings.csv against acme.security.findings, reviewing the plan (published cast to TIMESTAMP[us], source_ip cast to IPV4, score read and not written), then uploading and committing"width="1040">
187
164
188
165
`h` lists every key. `c` signs in, `a` browses for files, `t` sets the
189
166
destination, `n` negotiates, `e` changes the type under the cursor, `x` drops a
Copy file name to clipboardExpand all lines: docs-site/reference/internals/engine-overview.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ This document walks the path a query takes from SQL text to results.
10
10
11
11
The engine is a loop. SQL goes down one side, is progressively refined into a runnable plan, executes, and results come back up the other side.
12
12
13
-

13
+

14
14
15
15
The left column transforms *text*; the bottom row transforms a *plan*; the right column refines that plan until it can run. Each stage has a single, narrow responsibility.
0 commit comments