From reviews-return-115-archive-asf-public=cust-asf.ponee.io@livy.incubator.apache.org Thu Nov 29 01:57:19 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id A20A81807AA for ; Thu, 29 Nov 2018 01:57:18 +0100 (CET) Received: (qmail 13123 invoked by uid 500); 29 Nov 2018 00:57:17 -0000 Mailing-List: contact reviews-help@livy.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: reviews@livy.incubator.apache.org Delivered-To: mailing list reviews@livy.incubator.apache.org Received: (qmail 12852 invoked by uid 99); 29 Nov 2018 00:57:17 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Nov 2018 00:57:17 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5001BE139A; Thu, 29 Nov 2018 00:57:16 +0000 (UTC) From: vanzin To: reviews@livy.apache.org Reply-To: reviews@livy.apache.org References: In-Reply-To: Subject: [GitHub] incubator-livy pull request #117: [LIVY-502] Remove dependency on hive-exec Content-Type: text/plain Message-Id: <20181129005716.5001BE139A@git1-us-west.apache.org> Date: Thu, 29 Nov 2018 00:57:16 +0000 (UTC) Github user vanzin commented on a diff in the pull request: https://github.com/apache/incubator-livy/pull/117#discussion_r237318955 --- Diff: thriftserver/server/src/main/scala/org/apache/livy/thriftserver/operation/GetCatalogsOperation.scala --- @@ -0,0 +1,62 @@ +/* + * 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.livy.thriftserver.operation + +import org.apache.hive.service.cli._ + +import org.apache.livy.Logging +import org.apache.livy.thriftserver.serde.ResultSet +import org.apache.livy.thriftserver.types.{BasicDataType, Field, Schema} + +/** + * GetCatalogsOperation. --- End diff -- Not a super useful doc. ---