mirror of
https://github.com/apache/impala.git
synced 2026-01-04 09:00:56 -05:00
This change includes a number of improvements for the test data loading framework: * Named sections for schema template definitions * Removal of uneeded sections from schema template definitions (ex. ANALYZE TABLE) * More granular data loading via table name filters * Improved robustness in detecting failed data loads * Table level constraints for specific file formats * Re-written compute stats script
12 lines
273 B
Bash
Executable File
12 lines
273 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) 2012 Cloudera, Inc. All rights reserved.
|
|
HIVE_SERVER_PORT=10000
|
|
set -u
|
|
|
|
# Kill for a clean start.
|
|
$IMPALA_HOME/testdata/bin/kill-hive-server.sh
|
|
|
|
# Starts hive-server on the specified port
|
|
hive --service hiveserver -p $HIVE_SERVER_PORT &
|
|
sleep 1
|