You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jb...@apache.org on 2021/11/03 13:59:52 UTC

[lucene-solr] branch branch_8_11 updated: SOLR-15761: Remove JdbcStream from Lang

This is an automated email from the ASF dual-hosted git repository.

jbernste pushed a commit to branch branch_8_11
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8_11 by this push:
     new 6fe3821  SOLR-15761: Remove JdbcStream from Lang
6fe3821 is described below

commit 6fe38214de439fe957d41475a998422cfb57ad6c
Author: Joel Bernstein <jb...@apache.org>
AuthorDate: Wed Nov 3 09:07:38 2021 -0400

    SOLR-15761: Remove JdbcStream from Lang
---
 solr/CHANGES.txt                                                  | 2 ++
 solr/solrj/src/java/org/apache/solr/client/solrj/io/Lang.java     | 1 -
 solr/solrj/src/test/org/apache/solr/client/solrj/io/TestLang.java | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index ed85c7b..180ca90 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -56,6 +56,8 @@ Other Changes
 
 * SOLR-15697: Add ErrorLogMuter to test-framework, deprecating SolrException.ignorePatterns (hossman)
 
+* SOLR-15761: Remove JdbcStream from Lang (Joel Bernstein)
+
 ======================= 8.10.1 =======================
 
 Other Changes
diff --git a/solr/solrj/src/java/org/apache/solr/client/solrj/io/Lang.java b/solr/solrj/src/java/org/apache/solr/client/solrj/io/Lang.java
index ea27420..a66f299 100644
--- a/solr/solrj/src/java/org/apache/solr/client/solrj/io/Lang.java
+++ b/solr/solrj/src/java/org/apache/solr/client/solrj/io/Lang.java
@@ -47,7 +47,6 @@ public class Lang {
         .withFunctionName("facet2D", Facet2DStream.class)
         .withFunctionName("update", UpdateStream.class)
         .withFunctionName("delete", DeleteStream.class)
-        .withFunctionName("jdbc", JDBCStream.class)
         .withFunctionName("topic", TopicStream.class)
         .withFunctionName("commit", CommitStream.class)
         .withFunctionName("random", RandomFacadeStream.class)
diff --git a/solr/solrj/src/test/org/apache/solr/client/solrj/io/TestLang.java b/solr/solrj/src/test/org/apache/solr/client/solrj/io/TestLang.java
index 739be66..7ff4d92 100644
--- a/solr/solrj/src/test/org/apache/solr/client/solrj/io/TestLang.java
+++ b/solr/solrj/src/test/org/apache/solr/client/solrj/io/TestLang.java
@@ -45,7 +45,7 @@ import org.junit.Test;
 public class TestLang extends SolrTestCase {
 
   private static final String[] allFunctions = {
-      "search", "facet", "facet2D", "update", "delete", "jdbc", "topic", "commit", "random", "knnSearch", "merge",
+      "search", "facet", "facet2D", "update", "delete", "topic", "commit", "random", "knnSearch", "merge",
       "unique", "top", "group", "reduce", "parallel", "rollup", "stats", "innerJoin",
       "leftOuterJoin", "hashJoin", "outerHashJoin", "intersect", "complement", "sort",
       "train", "features", "daemon", "shortestPath", "gatherNodes", "nodes",