summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArne Juul <arnej@yahooinc.com>2022-09-14 12:36:53 +0000
committerArne Juul <arnej@yahooinc.com>2022-09-14 12:36:53 +0000
commit1bea8f64cc1668e0d10e85510c55ed0240646f28 (patch)
treece0c888843b0867acfeb28ef53924374c1db7796
parent736524f0c11604d167d73f5dffab65d7692e0d73 (diff)
remove outdated perl script
-rw-r--r--searchcore/util/showschema.pl38
1 files changed, 0 insertions, 38 deletions
diff --git a/searchcore/util/showschema.pl b/searchcore/util/showschema.pl
deleted file mode 100644
index 1fbdc1cfec7..00000000000
--- a/searchcore/util/showschema.pl
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/usr/bin/perl
-# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-
-while ( <STDIN> ) {
- if ( m/^indexfield\[(\d+)\]$/ ) {
- $numfields = $1;
- print "$numfields fields\n";
- next;
- }
- if ( m/^indexfield\[(\d+)\]\.(\w+) (.*)$/ ) {
- $ifield[$1]{$2} = $3;
- next;
- }
- if ( m/^fieldcollection\[(\d+)\]$/ ) {
- $numfc = $1;
- }
- if ( m/^fieldcollection\[(\d+)\]\.name (.*)$/ ) {
- $fieldcoll[$1]{name} = $2;
- next;
- }
- if ( m/^fieldcollection\[(\d+)\]\.field\[\d+\]$/ ) {
-# $fieldcoll[$1]{fields} = [ ];
- next;
- }
- if ( m/^fieldcollection\[(\d+)\]\.field\[\d+\]\.name (.*)$/ ) {
- push(@{$fieldcoll[$1]{fields}}, $2);
- next;
- }
-}
-for ( $f = 0; $f < $numfields; ++$f) {
- printf "indexfield %s %s %s %s %s %s\n",
- $ifield[$f]{name}, $ifield[$f]{datatype}, $ifield[$f]{collectiontype},
- $ifield[$f]{prefix}, $ifield[$f]{phrases}, $ifield[$f]{positions};
-}
-for ($fc = 0; $fc < $numfc; ++$fc) {
- printf "fieldcoll %s -> %s\n", $fieldcoll[$fc]{name},
- join(' ', @{$fieldcoll[$fc]{fields}});
-}