summaryrefslogtreecommitdiffstats
path: root/vespa-hadoop/src/test/pig/feed_operations_xml.pig
diff options
context:
space:
mode:
Diffstat (limited to 'vespa-hadoop/src/test/pig/feed_operations_xml.pig')
-rw-r--r--vespa-hadoop/src/test/pig/feed_operations_xml.pig11
1 files changed, 0 insertions, 11 deletions
diff --git a/vespa-hadoop/src/test/pig/feed_operations_xml.pig b/vespa-hadoop/src/test/pig/feed_operations_xml.pig
deleted file mode 100644
index 4e5057f4909..00000000000
--- a/vespa-hadoop/src/test/pig/feed_operations_xml.pig
+++ /dev/null
@@ -1,11 +0,0 @@
--- Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
--- REGISTER vespa-hadoop.jar -- Not needed in tests
-
--- Define short name for VespaStorage
-DEFINE VespaStorage com.yahoo.vespa.hadoop.pig.VespaStorage();
-
--- Load data - one column for xml data
-data = LOAD 'src/test/resources/operations_data.xml' AS (data:chararray);
-
--- Store into Vespa
-STORE data INTO '$ENDPOINT' USING VespaStorage();