mirror of
https://github.com/apache/impala.git
synced 2026-01-08 21:03:01 -05:00
20 lines
517 B
Python
20 lines
517 B
Python
#!/usr/bin/env python
|
|
# Copyright (c) 2012 Cloudera, Inc. All rights reserved.
|
|
# Targeted tests for Impala joins
|
|
#
|
|
import logging
|
|
import pytest
|
|
from tests.common.test_vector import *
|
|
from tests.common.impala_test_suite import *
|
|
|
|
class TestJoinQueries(ImpalaTestSuite):
|
|
@classmethod
|
|
def get_workload(cls):
|
|
return 'functional-query'
|
|
|
|
def test_joins(self, vector):
|
|
self.run_test_case('QueryTest/joins', vector)
|
|
|
|
def test_outer_joins(self, vector):
|
|
self.run_test_case('QueryTest/outer-joins', vector)
|