/** * 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.fn.impl; import org.apache.drill.BaseTestQuery; import org.apache.drill.common.util.FileUtils; import org.joda.time.DateTime; import org.junit.Test; public class TestCastFunctions extends BaseTestQuery { @Test public void testVarbinaryToDate() throws Exception { testBuilder() .sqlQuery("select count(*) as cnt from cp.`employee.json` where (cast(convert_to(birth_date, 'utf8') as date)) = date '1961-08-26'") .unOrdered() .baselineColumns("cnt") .baselineValues(1l) .build().run(); } @Test // DRILL-2827 public void testImplicitCastStringToBoolean() throws Exception { String boolTable= FileUtils.getResourceAsFile("/store/json/booleanData.json").toURI().toString(); String query = String.format( "(select * from dfs_test.`%s` where key = 'true' or key = 'false')", boolTable); testBuilder() .sqlQuery(query) .unOrdered() .baselineColumns("key") .baselineValues(true) .baselineValues(false) .build().run(); } @Test // DRILL-2808 public void testCastByConstantFolding() throws Exception { final String query = "SELECT count(DISTINCT employee_id) as col1, " + "count((to_number(date_diff(now(), cast(birth_date AS date)),'####'))) as col2 \n" + "FROM cp.`employee.json`"; testBuilder() .sqlQuery(query) .ordered() .baselineColumns("col1", "col2") .baselineValues(1155l, 1155l) .build() .run(); } @Test // DRILL-3769 public void testToDateForTimeStamp() throws Exception { final String query = "select to_date(to_timestamp(-1)) as col \n" + "from (values(1))"; testBuilder() .sqlQuery(query) .ordered() .baselineColumns("col") .baselineValues(new DateTime(1969, 12, 31, 0, 0)) .build() .run(); } }