Repository: ignite Updated Branches: refs/heads/ignite-1786 abe6fdb57 -> 12ad51cee
http://git-wip-us.apache.org/repos/asf/ignite/blob/9baf2668/modules/core/src/main/java/org/apache/ignite/internal/processors/odbc/response/QueryGetColumnsMetaResult.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/odbc/response/QueryGetColumnsMetaResult.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/odbc/response/QueryGetColumnsMetaResult.java deleted file mode 100644 index d211862..0000000 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/odbc/response/QueryGetColumnsMetaResult.java +++ /dev/null @@ -1,43 +0,0 @@ -/* - * 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.ignite.internal.processors.odbc.response; - -import org.apache.ignite.internal.processors.odbc.GridOdbcColumnMeta; - -import java.util.Collection; - -/** - * Query get columns meta result. - */ -public class QueryGetColumnsMetaResult { - /** Query result rows. */ - private Collection<GridOdbcColumnMeta> meta; - - /** - * @param meta Column metadata. - */ - public QueryGetColumnsMetaResult(Collection<GridOdbcColumnMeta> meta) { - this.meta = meta; - } - - /** - * @return Query result rows. - */ - public Collection<GridOdbcColumnMeta> getMeta() { - return meta; - } -} http://git-wip-us.apache.org/repos/asf/ignite/blob/9baf2668/modules/core/src/main/java/org/apache/ignite/internal/processors/odbc/response/QueryGetTablesMetaResult.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/odbc/response/QueryGetTablesMetaResult.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/odbc/response/QueryGetTablesMetaResult.java deleted file mode 100644 index ae39538..0000000 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/odbc/response/QueryGetTablesMetaResult.java +++ /dev/null @@ -1,43 +0,0 @@ -/* - * 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.ignite.internal.processors.odbc.response; - -import org.apache.ignite.internal.processors.odbc.GridOdbcTableMeta; - -import java.util.Collection; - -/** - * Query get columns meta result. - */ -public class QueryGetTablesMetaResult { - /** Query result rows. */ - private Collection<GridOdbcTableMeta> meta; - - /** - * @param meta Column metadata. - */ - public QueryGetTablesMetaResult(Collection<GridOdbcTableMeta> meta) { - this.meta = meta; - } - - /** - * @return Query result rows. - */ - public Collection<GridOdbcTableMeta> getMeta() { - return meta; - } -}
