00001 // Licensed to the Apache Software Foundation (ASF) under one 00002 // or more contributor license agreements. See the NOTICE file 00003 // distributed with this work for additional information 00004 // regarding copyright ownership. The ASF licenses this file 00005 // to you under the Apache License, Version 2.0 (the 00006 // "License"); you may not use this file except in compliance 00007 // with the License. You may obtain a copy of the License at 00008 // 00009 // http://www.apache.org/licenses/LICENSE-2.0 00010 // 00011 // Unless required by applicable law or agreed to in writing, 00012 // software distributed under the License is distributed on an 00013 // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 00014 // KIND, either express or implied. See the License for the 00015 // specific language governing permissions and limitations 00016 // under the License. 00017 #ifndef KUDU_CLIENT_ROW_RESULT_H 00018 #define KUDU_CLIENT_ROW_RESULT_H 00019 00020 #include "kudu/client/scan_batch.h" 00021 00022 namespace kudu { 00023 namespace client { 00024 00028 typedef KuduScanBatch::RowPtr KuduRowResult; 00029 00030 } // namespace client 00031 } // namespace kudu 00032 00033 #endif