Added quantiling UDAFs
[com/gs-lite.git] / bin / buildit_with-stats
1 #!/bin/sh\r
2 \r
3 # ------------------------------------------------\r
4 #   Copyright 2014 AT&T Intellectual Property\r
5 #   Licensed under the Apache License, Version 2.0 (the "License");\r
6 #   you may not use this file except in compliance with the License.\r
7 #   You may obtain a copy of the License at\r
8 #\r
9 #     http://www.apache.org/licenses/LICENSE-2.0\r
10 #\r
11 #   Unless required by applicable law or agreed to in writing, software\r
12 #   distributed under the License is distributed on an "AS IS" BASIS,\r
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
14 #   See the License for the specific language governing permissions and\r
15 #   limitations under the License.\r
16 # -------------------------------------------\r
17 \r
18 # GSLITE_ROOT environment variable need to be set\r
19 \r
20 if [ -z "$GSLITE_ROOT" ]\r
21 then\r
22     echo "GSLITE_ROOT must be set to non-empty string"\r
23     exit -1\r
24 fi\r
25 \r
26 $GSLITE_ROOT/bin/translate_fta -h localhost -c -M -S -R $GSLITE_ROOT -C  $GSLITE_ROOT/cfg -l $GSLITE_ROOT/qlib packet_schema.txt *.gsql\r
27 ret=$?\r
28 if [ $ret -ne 0 ]\r
29 then\r
30     echo "Query translation failed!"\r
31     exit $ret\r
32 fi\r
33     \r
34 make\r
35 ret=$?\r
36 if [ $ret -ne 0 ]\r
37 then\r
38     echo "Query build failed!"\r
39     exit $ret\r
40 fi    \r
41 exit $ret\r