diff options
Diffstat (limited to 'openecomp-be/tools/build/scripts/generate-cassandra-alter-cql.sh')
-rw-r--r-- | openecomp-be/tools/build/scripts/generate-cassandra-alter-cql.sh | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/openecomp-be/tools/build/scripts/generate-cassandra-alter-cql.sh b/openecomp-be/tools/build/scripts/generate-cassandra-alter-cql.sh new file mode 100644 index 0000000000..827b3ab330 --- /dev/null +++ b/openecomp-be/tools/build/scripts/generate-cassandra-alter-cql.sh @@ -0,0 +1,40 @@ +#!/bin/sh + +############################################################################## +### +### generate-cassandra-alter-cql.sh +### +### A script that generates the CQL commands of ALTER for the Cassnadra init. +### +### Usage: +### +### ./generate-cassandra-alter-cql.sh cassandra-commands.json +### +### +### Author: Avi Ziv +### Version 2.0 for OPENECOMP +### Date: 21 Sep 2016 +### +############################################################################## + +#GLOBALS + +RUN_PATH=$(cd "$(dirname "$0")" && pwd) + +#### Functions - Start #### +usage() { echo "Usage: $0 <db-cql-json-file>, for example: $0 cassandra-commands.json" 1>&2; exit 1; } + +main() +{ + echo "USE dox;" + $RUN_PATH/parse-json.py -t alter -f $1 +} + +#### Functions - End #### + +# Check arguements +if [ "$#" -lt 1 ] || [ "$#" -gt 1 ]; then + usage +fi + +main $1 |