Skip to content
This repository was archived by the owner on Oct 21, 2024. It is now read-only.

Commit 8b419da

Browse files
committed
update release test script
1 parent 03d2c84 commit 8b419da

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

dev/release/00-prepare-test.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,10 @@ def test_version_pre_tag
275275
"+version = \"#{@release_version}\""],
276276
["-arrow = { path = \"../arrow\", version = \"#{@snapshot_version}\" }",
277277
"-parquet = { path = \"../parquet\", version = \"#{@snapshot_version}\" }",
278+
"-arrow-flight = { path = \"../arrow-flight\", version = \"#{@snapshot_version}\" }",
278279
"+arrow = { path = \"../arrow\", version = \"#{@release_version}\" }",
279-
"+parquet = { path = \"../parquet\", version = \"#{@release_version}\" }"]
280+
"+parquet = { path = \"../parquet\", version = \"#{@release_version}\" }",
281+
"+arrow-flight = { path = \"../arrow-flight\", version = \"#{@release_version}\" }"]
280282
],
281283
},
282284
{

rust/datafusion/examples/README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
24+
The 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+
28+
The `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.

0 commit comments

Comments
 (0)