diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-03-21 00:11:21 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-21 00:47:53 +0100 |
commit | ebdf590b6e4469eb72420634620dcdcf88c5eb1b (patch) | |
tree | 9bd3b58b3d912edb1a210f015780e60dd20280ec /bin | |
parent | fb4b81b40ff525d3e7a1bf742f56be759c910ee4 (diff) | |
download | jenkins.debian.net-ebdf590b6e4469eb72420634620dcdcf88c5eb1b.tar.xz |
udd: drop udd_list_tables job: there is https://udd.debian.org/schema/udd.html for that
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/udd-query.sh | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/bin/udd-query.sh b/bin/udd-query.sh index 2ff50938..9fde6f5a 100755 --- a/bin/udd-query.sh +++ b/bin/udd-query.sh @@ -22,23 +22,6 @@ udd_query() { udd -c"${SQL_QUERY}" > $UDD } -list_tables() { - SQL_QUERY="SELECT table_schema,table_name - FROM information_schema.tables - ORDER BY table_schema,table_name;" - udd_query - echo - for TABLE in $(cat $UDD | cut -d "|" -f2) ; do - SQL_QUERY="SELECT column_name, data_type, character_maximum_length - FROM INFORMATION_SCHEMA.COLUMNS where table_name = '$TABLE';" - udd_query - cat $UDD - echo - done - rm $UDD - echo "Also see https://udd.debian.org/schema/udd.html" -} - multiarch_versionskew() { if [ -z "$1" ] ; then echo "Warning: no distro supplied, assuming sid." @@ -120,9 +103,6 @@ orphaned_without_o_bug() { # UDD=$(mktemp) case $1 in - list_tables) - list_tables - ;; orphaned_without_o_bug) orphaned_without_o_bug ;; |