This is an automated email from the ASF dual-hosted git repository.
sergeykamov pushed a commit to branch NLPCRAFT-30
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git
The following commit(s) were added to refs/heads/NLPCRAFT-30 by this push:
new a37b24a WIP.
a37b24a is described below
commit a37b24a46d27df77385c549463d2d4f145aa680b
Author: Sergey Kamov <[email protected]>
AuthorDate: Sat Apr 4 21:43:14 2020 +0300
WIP.
---
.../org/apache/nlpcraft/examples/sql/db/SqlResult.scala | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/src/main/scala/org/apache/nlpcraft/examples/sql/db/SqlResult.scala
b/src/main/scala/org/apache/nlpcraft/examples/sql/db/SqlResult.scala
index bdd386e..fcd5d55 100644
--- a/src/main/scala/org/apache/nlpcraft/examples/sql/db/SqlResult.scala
+++ b/src/main/scala/org/apache/nlpcraft/examples/sql/db/SqlResult.scala
@@ -1,3 +1,20 @@
+/*
+ * 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.nlpcraft.examples.sql.db
case class SqlResult(columns: Seq[String], rows: Seq[Seq[String]])