• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..23-Feb-2021-

README.mdH A D23-Feb-20211.2 KiB285

csv_sql.rsH A D23-Feb-20211.7 KiB5322

dataframe.rsH A D23-Feb-20211.6 KiB4816

dataframe_in_memory.rsH A D23-Feb-20212.3 KiB6831

flight_client.rsH A D23-Feb-20213 KiB8040

flight_server.rsH A D23-Feb-20217.7 KiB220159

parquet_sql.rsH A D23-Feb-20211.7 KiB5120

simple_udaf.rsH A D23-Feb-20216.5 KiB17191

simple_udf.rsH A D23-Feb-20215.7 KiB15274

README.md

1<!---
2  Licensed to the Apache Software Foundation (ASF) under one
3  or more contributor license agreements.  See the NOTICE file
4  distributed with this work for additional information
5  regarding copyright ownership.  The ASF licenses this file
6  to you under the Apache License, Version 2.0 (the
7  "License"); you may not use this file except in compliance
8  with the License.  You may obtain a copy of the License at
9
10    http://www.apache.org/licenses/LICENSE-2.0
11
12  Unless required by applicable law or agreed to in writing,
13  software distributed under the License is distributed on an
14  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  KIND, either express or implied.  See the License for the
16  specific language governing permissions and limitations
17  under the License.
18-->
19
20# DataFusion Examples
21
22## Single Process
23
24The examples `csv_sql.rs` and `parquet_sql.rs` demonstrate building a query plan from a SQL statement and then executing the query plan against local CSV and Parquet files, respectively.
25
26## Distributed
27
28The `flight-client.rs` and `flight-server.rs` examples demonstrate how to run DataFusion as a standalone process and execute SQL queries from a client using the Flight protocol.