mirror of
https://github.com/langchain-ai/datafusion.git
synced 2026-07-20 19:04:04 -04:00
51f0833dfe
* Do not normalize values * Fix tests & update docs * Prettier * Lowercase config params * Add snap to CLI & set up AWS mock * Refactor tests * Unify transform and parse * Fix tests * Setup CLI * Show minio output * Format Cargo.toml * Do not hardcode AWS params * Test options parsing * Add allow http * Fix aws build * Fix ip * Remove slash ☠️ * Format cargo toml * Remove integration_setup.bash * Update docs * Do not hardcode test names * Relock cargo * Remove aws sdk and set up minio in-place * Nit: Add missing ready local to the docs * Fix backslash test * Add missing backslash * put integration scripts in a separate folder * Move s3 tests from extended to rust flow * Reorganise the docs * Prettier * Do not use rust container to get docker * Add missing protobuf * revert change to extended.yml --------- Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
27 lines
625 B
Plaintext
27 lines
625 B
Plaintext
---
|
|
source: tests/cli_integration.rs
|
|
info:
|
|
program: datafusion-cli
|
|
args: []
|
|
stdin: "CREATE EXTERNAL TABLE CARS\nSTORED AS CSV\nLOCATION '../datafusion/core/tests/data/cars.csv'\nOPTIONS ('has_header' 'TRUE');\n\nSELECT * FROM CARS limit 1;"
|
|
input_file: tests/sql/load_local_csv.sql
|
|
---
|
|
success: true
|
|
exit_code: 0
|
|
----- stdout -----
|
|
[CLI_VERSION]
|
|
0 row(s) fetched.
|
|
[ELAPSED]
|
|
|
|
+-----+-------+---------------------+
|
|
| car | speed | time |
|
|
+-----+-------+---------------------+
|
|
| red | 20.0 | 1996-04-12T12:05:03 |
|
|
+-----+-------+---------------------+
|
|
1 row(s) fetched.
|
|
[ELAPSED]
|
|
|
|
\q
|
|
|
|
----- stderr -----
|