[
https://issues.apache.org/jira/browse/DRILL-8054?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17448629#comment-17448629
]
ASF GitHub Bot commented on DRILL-8054:
---------------------------------------
cgivre commented on a change in pull request #2386:
URL: https://github.com/apache/drill/pull/2386#discussion_r756110206
##########
File path:
contrib/format-sas/src/test/java/org/apache/drill/exec/store/sas/TestSasReader.java
##########
@@ -0,0 +1,197 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.drill.exec.store.sas;
+
+import org.apache.drill.categories.RowSetTests;
+import org.apache.drill.common.types.TypeProtos.MinorType;
+import org.apache.drill.exec.physical.rowSet.RowSet;
+import org.apache.drill.exec.physical.rowSet.RowSetBuilder;
+import org.apache.drill.exec.record.metadata.SchemaBuilder;
+import org.apache.drill.exec.record.metadata.TupleMetadata;
+import org.apache.drill.test.ClusterFixture;
+import org.apache.drill.test.ClusterTest;
+import org.apache.drill.test.rowSet.RowSetComparison;
+import org.junit.BeforeClass;
+import org.junit.Test;
+import org.junit.experimental.categories.Category;
+
+import java.nio.file.Paths;
+import java.time.LocalDate;
+import java.time.LocalTime;
+
+import static org.junit.Assert.assertEquals;
+import static org.apache.drill.test.QueryTestUtil.generateCompressedFile;
+
+
+@Category(RowSetTests.class)
+public class TestSasReader extends ClusterTest {
+
+ @BeforeClass
+ public static void setup() throws Exception {
+ ClusterTest.startCluster(ClusterFixture.builder(dirTestWatcher));
+
+ // Needed for compressed file unit test
+ dirTestWatcher.copyResourceToRoot(Paths.get("sas/"));
+ }
+
+ @Test
+ public void testStarQuery() throws Exception {
+ String sql = "SELECT * FROM cp.`sas/mixed_data_two.sas7bdat` WHERE x1 = 1";
+ RowSet results = client.queryBuilder().sql(sql).rowSet();
+
+ TupleMetadata expectedSchema = new SchemaBuilder()
+ .addNullable("x1", MinorType.BIGINT)
+ .addNullable("x2", MinorType.FLOAT8)
+ .addNullable("x3", MinorType.VARCHAR)
+ .addNullable("x4", MinorType.FLOAT8)
+ .addNullable("x5", MinorType.FLOAT8)
+ .addNullable("x6", MinorType.FLOAT8)
+ .addNullable("x7", MinorType.FLOAT8)
+ .addNullable("x8", MinorType.FLOAT8)
+ .addNullable("x9", MinorType.FLOAT8)
+ .addNullable("x10", MinorType.FLOAT8)
+ .addNullable("x11", MinorType.FLOAT8)
+ .addNullable("x12", MinorType.FLOAT8)
+ .addNullable("x13", MinorType.FLOAT8)
+ .addNullable("x14", MinorType.FLOAT8)
+ .addNullable("x15", MinorType.BIGINT)
+ .addNullable("x16", MinorType.BIGINT)
+ .addNullable("x17", MinorType.BIGINT)
+ .addNullable("x18", MinorType.BIGINT)
+ .addNullable("x19", MinorType.BIGINT)
+ .addNullable("x20", MinorType.BIGINT)
+ .addNullable("x21", MinorType.BIGINT)
+ .buildSchema();
+
+ RowSet expected = new RowSetBuilder(client.allocator(), expectedSchema)
+ .addRow(1L, 1.1, "AAAAAAAA", 1.1, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1,
1.1, 1.1, 1.1, 31626061L, 31625961L, 31627061L, 31616061L, 31636061L,
31526061L, 31726061L)
+ .addRow(1L, 1.1, "AAAAAAAA", 1.1, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1,
1.1, 1.1, 1.1, 31626061L, 31625961L, 31627061L, 31616061L, 31636061L,
31526061L, 31726061L)
+ .build();
+
+ new RowSetComparison(expected).verifyAndClearAll(results);
+ }
+
+ @Test
+ public void testMetadataColumns() throws Exception {
+ String sql = "SELECT _compression_method, _file_label, _file_type, " +
+ "_os_name, _os_type, _sas_release, _session_encoding, _server_type, " +
+ "_date_created, _date_modified FROM cp.`sas/date_formats.sas7bdat`";
+ RowSet results = client.queryBuilder().sql(sql).rowSet();
+ TupleMetadata expectedSchema = new SchemaBuilder()
+ .addNullable("_compression_method", MinorType.VARCHAR)
+ .addNullable("_file_label", MinorType.VARCHAR)
+ .addNullable("_file_type", MinorType.VARCHAR)
+ .addNullable("_os_name", MinorType.VARCHAR)
+ .addNullable("_os_type", MinorType.VARCHAR)
+ .addNullable("_sas_release", MinorType.VARCHAR)
+ .addNullable("_session_encoding", MinorType.VARCHAR)
+ .addNullable("_server_type", MinorType.VARCHAR)
+ .addNullable("_date_created", MinorType.DATE)
+ .addNullable("_date_modified", MinorType.DATE)
+ .buildSchema();
+
+ RowSet expected = new RowSetBuilder(client.allocator(), expectedSchema)
+ .addRow(null, "DATA", null, null, "9.0401M4", null, "X64_7PRO", null,
+ LocalDate.parse("2017-03-14"), LocalDate.parse("2017-03-14"))
+ .build();
+
+ new RowSetComparison(expected).verifyAndClearAll(results);
+ }
+
+ @Test
+ public void testCompressedFile() throws Exception {
+ generateCompressedFile("sas/mixed_data_two.sas7bdat", "zip",
"sas/mixed_data_two.sas7bdat.zip" );
+
+ String sql = "SELECT x1, x2, x3 FROM dfs.`sas/mixed_data_two.sas7bdat.zip`
WHERE x1 = 1";
+ RowSet results = client.queryBuilder().sql(sql).rowSet();
+
+ TupleMetadata expectedSchema = new SchemaBuilder()
+ .addNullable("x1", MinorType.BIGINT)
+ .addNullable("x2", MinorType.FLOAT8)
+ .addNullable("x3", MinorType.VARCHAR)
+ .buildSchema();
+
+ RowSet expected = new RowSetBuilder(client.allocator(), expectedSchema)
+ .addRow(1L, 1.1, "AAAAAAAA")
+ .addRow(1L, 1.1, "AAAAAAAA")
+ .build();
+
+ new RowSetComparison(expected).verifyAndClearAll(results);
+ }
+
+ @Test
+ public void testDates() throws Exception {
+ String sql = "SELECT b8601da, e8601da, `date` FROM
cp.`sas/date_formats.sas7bdat`";
+ RowSet results = client.queryBuilder().sql(sql).rowSet();
+
+ TupleMetadata expectedSchema = new SchemaBuilder()
+ .addNullable("b8601da", MinorType.DATE)
+ .addNullable("e8601da", MinorType.DATE)
+ .addNullable("date", MinorType.DATE)
+ .buildSchema();
+
+ RowSet expected = new RowSetBuilder(client.allocator(), expectedSchema)
+ .addRow(LocalDate.parse("2017-03-14"), LocalDate.parse("2017-03-14"),
LocalDate.parse("2017-03-14"))
+ .build();
+
+ new RowSetComparison(expected).verifyAndClearAll(results);
+ }
+
+ @Test
+ public void testTimes() throws Exception {
+ String sql = "SELECT * FROM cp.`sas/time_formats.sas7bdat`";
+ RowSet results = client.queryBuilder().sql(sql).rowSet();
+
+ TupleMetadata expectedSchema = new SchemaBuilder()
+ .addNullable("E8601LZ", MinorType.TIME)
+ .addNullable("E8601TM", MinorType.TIME)
+ .addNullable("HHMM", MinorType.TIME)
+ .addNullable("HOUR", MinorType.TIME)
+ .addNullable("MMSS", MinorType.TIME)
+ .addNullable("TIME", MinorType.TIME)
+ .addNullable("TIMEAMPM", MinorType.TIME)
+ .buildSchema();
+
+ RowSet expected = new RowSetBuilder(client.allocator(), expectedSchema)
+ .addRow(LocalTime.parse("10:10:10"), LocalTime.parse("10:10:10"),
LocalTime.parse("10:10:10"),
+ LocalTime.parse("10:10:10"), LocalTime.parse("10:10:10"),
LocalTime.parse("10:10:10"), LocalTime.parse("10:10:10"))
+ .build();
+
+ new RowSetComparison(expected).verifyAndClearAll(results);
+ }
+
+ @Test
+ public void testSerDe() throws Exception {
+ String sql = "SELECT COUNT(*) as cnt FROM cp.`sas/mixed_data_two.sas7bdat`
";
+ String plan = queryBuilder().sql(sql).explainJson();
+ long cnt = queryBuilder().physical(plan).singletonLong();
+ assertEquals("Counts should match",50L, cnt);
Review comment:
Fixed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
> Add SAS Format Plugin
> ---------------------
>
> Key: DRILL-8054
> URL: https://issues.apache.org/jira/browse/DRILL-8054
> Project: Apache Drill
> Issue Type: Improvement
> Components: Storage - Other
> Affects Versions: 1.19.0
> Reporter: Charles Givre
> Assignee: Charles Givre
> Priority: Major
> Fix For: 1.20.0
>
>
> This PR adds the ability to read SAS files. Once merged, Drill will be able
> to read all files types that the Pandas library can read.
--
This message was sent by Atlassian Jira
(v8.20.1#820001)