mirror of
https://github.com/apache/impala.git
synced 2025-12-19 18:12:08 -05:00
- Move thrift out of FE src and into impala/common
- Thrift files now build using cmake instead of mvn - Added cmake build to impala/ which drives the build process
This commit is contained in:
9
.gitignore
vendored
9
.gitignore
vendored
@@ -6,3 +6,12 @@ cscope.out
|
||||
org.eclipse.jdt.core.prefs
|
||||
|
||||
pprof.out
|
||||
|
||||
# CMake:
|
||||
Makefile
|
||||
CMakeCache.txt
|
||||
CMakeFiles
|
||||
cmake_install.cmake
|
||||
CTestTestfile.cmake
|
||||
!CMakeLists.txt
|
||||
Testing/
|
||||
|
||||
84
CMakeLists.txt
Normal file
84
CMakeLists.txt
Normal file
@@ -0,0 +1,84 @@
|
||||
# Copyright (c) 2011 Cloudera, Inc. All rights reserved.
|
||||
|
||||
cmake_minimum_required(VERSION 2.6)
|
||||
|
||||
# generate CTest input files
|
||||
enable_testing()
|
||||
|
||||
# where to find cmake modules
|
||||
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake_modules")
|
||||
|
||||
# find thrift headers and libs
|
||||
find_package(Thrift REQUIRED)
|
||||
include_directories(${Thrift_INCLUDE_DIR})
|
||||
set(LIBS ${LIBS} ${Thrift_LIBS})
|
||||
|
||||
# find boost headers and libs
|
||||
set(Boost_DEBUG ON)
|
||||
set(Boost_USE_STATIC_LIBS ON)
|
||||
set(Boost_USE_MULTITHREADED ON)
|
||||
set(Boost_USE_STATIC_RUNTIME OFF)
|
||||
find_package(Boost REQUIRED COMPONENTS thread regex-mt)
|
||||
include_directories(${Boost_INCLUDE_DIRS})
|
||||
set(LIBS ${LIBS} ${Boost_LIBRARIES})
|
||||
|
||||
# find jni headers and libs
|
||||
find_package(JNI REQUIRED)
|
||||
include_directories(${JNI_INCLUDE_DIRS})
|
||||
set(LIBS ${LIBS} ${JNI_LIBRARIES})
|
||||
|
||||
# find HDFS headers and libs
|
||||
find_package(HDFS REQUIRED)
|
||||
include_directories(${HDFS_INCLUDE_DIR})
|
||||
set(LIBS ${LIBS} ${HDFS_LIBS})
|
||||
|
||||
# find GFlags headers and libs (needed for GLog)
|
||||
find_package(GFlags REQUIRED)
|
||||
include_directories(${GFLAGS_INCLUDE_DIR})
|
||||
set(LIBS ${LIBS} ${GFLAGS_LIBS})
|
||||
# for static linking with GFLAGS, GFLAGS_STATIC_LIB is set in GFLAGS' find module
|
||||
add_library(gflagsstatic STATIC IMPORTED)
|
||||
set_target_properties(gflagsstatic PROPERTIES IMPORTED_LOCATION ${GFLAGS_STATIC_LIB})
|
||||
|
||||
message(STATUS ${GFLAGS_INCLUDE_DIR})
|
||||
|
||||
# find PProf libs
|
||||
find_package(PProf REQUIRED)
|
||||
include_directories(${PPROF_INCLUDE_DIR})
|
||||
set (LIBS ${LIBS} ${PPROF_LIBRARIES})
|
||||
add_library(pprofstatic STATIC IMPORTED)
|
||||
set_target_properties(pprofstatic PROPERTIES IMPORTED_LOCATION "${PPROF_STATIC_LIB}")
|
||||
add_library(tcmallocstatic STATIC IMPORTED)
|
||||
set_target_properties(tcmallocstatic PROPERTIES IMPORTED_LOCATION "${HEAPPROF_STATIC_LIB}")
|
||||
|
||||
message(STATUS ${PPROF_INCLUDE_DIR})
|
||||
|
||||
# find GLog headers and libs
|
||||
find_package(GLog REQUIRED)
|
||||
include_directories(${GLOG_INCLUDE_DIR})
|
||||
set(LIBS ${LIBS} ${GLOG_LIBS})
|
||||
# for static linking with GLOG, GLOG_STATIC_LIB is set in GLOG's find module
|
||||
add_library(glogstatic STATIC IMPORTED)
|
||||
set_target_properties(glogstatic PROPERTIES IMPORTED_LOCATION ${GLOG_STATIC_LIB})
|
||||
|
||||
message(STATUS ${GLOG_INCLUDE_DIR})
|
||||
|
||||
# find GTest headers and libs
|
||||
find_package(GTest REQUIRED)
|
||||
include_directories(${GTEST_INCLUDE_DIR})
|
||||
set(LIBS ${LIBS} ${GTEST_LIBRARIES})
|
||||
add_library(gtest STATIC IMPORTED)
|
||||
set_target_properties(gtest PROPERTIES IMPORTED_LOCATION "${GTEST_LIBRARY}")
|
||||
|
||||
message(STATUS ${GTEST_INCLUDE_DIR})
|
||||
message(STATUS ${GTEST_LIBRARY})
|
||||
|
||||
# compile these subdirs using their own CMakeLists.txt
|
||||
add_subdirectory(common/function-registry)
|
||||
add_subdirectory(common/thrift)
|
||||
add_subdirectory(be)
|
||||
|
||||
add_custom_target(testall
|
||||
COMMAND ${CMAKE_COMMAND} -E chdir ${CMAKE_SOURCE_DIR}/fe mvn test
|
||||
COMMAND ${CMAKE_SOURCE_DIR}/bin/runbackendtests.sh
|
||||
)
|
||||
9
be/.gitignore
vendored
9
be/.gitignore
vendored
@@ -1,14 +1,5 @@
|
||||
*~
|
||||
|
||||
# CMake:
|
||||
Makefile
|
||||
CMakeCache.txt
|
||||
CMakeFiles
|
||||
cmake_install.cmake
|
||||
CTestTestfile.cmake
|
||||
!CMakeLists.txt
|
||||
Testing/
|
||||
|
||||
build
|
||||
generated-sources
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ SET(CXX_FLAGS_PROFILE_BUILD "${CXX_FLAGS_RELEASE} -fprofile-use")
|
||||
|
||||
# if no build build type is specified, default to debug builds
|
||||
if (NOT CMAKE_BUILD_TYPE)
|
||||
set(CMAKE_BUILD_TYPE Debug CACHE STRING)
|
||||
set(CMAKE_BUILD_TYPE Debug)
|
||||
endif(NOT CMAKE_BUILD_TYPE)
|
||||
|
||||
STRING (TOUPPER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE)
|
||||
@@ -50,77 +50,10 @@ endif ()
|
||||
|
||||
Message(${CMAKE_CXX_FLAGS})
|
||||
|
||||
# where to find cmake modules
|
||||
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake_modules")
|
||||
|
||||
# find thrift headers and libs
|
||||
find_package(Thrift REQUIRED)
|
||||
include_directories(${Thrift_INCLUDE_DIR})
|
||||
set(LIBS ${LIBS} ${Thrift_LIBS})
|
||||
message(STATUS ${Thrift_INCLUDE_DIR}:${Thrift_LIBS})
|
||||
|
||||
# find boost headers and libs
|
||||
set(Boost_DEBUG ON)
|
||||
set(Boost_USE_STATIC_LIBS ON)
|
||||
set(Boost_USE_MULTITHREADED ON)
|
||||
set(Boost_USE_STATIC_RUNTIME OFF)
|
||||
find_package(Boost REQUIRED COMPONENTS thread regex-mt)
|
||||
include_directories(${Boost_INCLUDE_DIRS})
|
||||
set(LIBS ${LIBS} ${Boost_LIBRARIES})
|
||||
|
||||
# find jni headers and libs
|
||||
find_package(JNI REQUIRED)
|
||||
include_directories(${JNI_INCLUDE_DIRS})
|
||||
set(LIBS ${LIBS} ${JNI_LIBRARIES})
|
||||
|
||||
# find HDFS headers and libs
|
||||
find_package(HDFS REQUIRED)
|
||||
include_directories(${HDFS_INCLUDE_DIR})
|
||||
set(LIBS ${LIBS} ${HDFS_LIBS})
|
||||
|
||||
# find GFlags headers and libs (needed for GLog)
|
||||
find_package(GFlags REQUIRED)
|
||||
include_directories(${GFLAGS_INCLUDE_DIR})
|
||||
set(LIBS ${LIBS} ${GFLAGS_LIBS})
|
||||
# for static linking with GFLAGS, GFLAGS_STATIC_LIB is set in GFLAGS' find module
|
||||
add_library(gflagsstatic STATIC IMPORTED)
|
||||
set_target_properties(gflagsstatic PROPERTIES IMPORTED_LOCATION ${GFLAGS_STATIC_LIB})
|
||||
|
||||
message(STATUS ${GFLAGS_INCLUDE_DIR})
|
||||
|
||||
# find GLog headers and libs
|
||||
find_package(GLog REQUIRED)
|
||||
include_directories(${GLOG_INCLUDE_DIR})
|
||||
set(LIBS ${LIBS} ${GLOG_LIBS})
|
||||
# for static linking with GLOG, GLOG_STATIC_LIB is set in GLOG's find module
|
||||
add_library(glogstatic STATIC IMPORTED)
|
||||
set_target_properties(glogstatic PROPERTIES IMPORTED_LOCATION ${GLOG_STATIC_LIB})
|
||||
|
||||
message(STATUS ${GLOG_INCLUDE_DIR})
|
||||
|
||||
# find PProf libs
|
||||
find_package(PProf REQUIRED)
|
||||
include_directories(${PPROF_INCLUDE_DIR})
|
||||
set (LIBS ${LIBS} ${PPROF_LIBRARIES})
|
||||
add_library(pprofstatic STATIC IMPORTED)
|
||||
set_target_properties(pprofstatic PROPERTIES IMPORTED_LOCATION "${PPROF_STATIC_LIB}")
|
||||
add_library(tcmallocstatic STATIC IMPORTED)
|
||||
set_target_properties(tcmallocstatic PROPERTIES IMPORTED_LOCATION "${HEAPPROF_STATIC_LIB}")
|
||||
|
||||
# find GTest headers and libs
|
||||
find_package(GTest REQUIRED)
|
||||
include_directories(${GTEST_INCLUDE_DIR})
|
||||
set(LIBS ${LIBS} ${GTEST_LIBRARIES})
|
||||
add_library(gtest STATIC IMPORTED)
|
||||
set_target_properties(gtest PROPERTIES IMPORTED_LOCATION "${GTEST_LIBRARY}")
|
||||
|
||||
message(STATUS ${GTEST_INCLUDE_DIR})
|
||||
message(STATUS ${GTEST_LIBRARY})
|
||||
|
||||
# setup doc generation with Doxygen
|
||||
find_package(Doxygen)
|
||||
if (DOXYGEN_FOUND)
|
||||
set(DOXYGEN_OUTPUT_DIR ${CMAKE_SOURCE_DIR}/build/docs)
|
||||
set(DOXYGEN_OUTPUT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/build/docs)
|
||||
# Possible to not input the subdirs one by one?
|
||||
set(CMAKE_DOXYGEN_INPUT
|
||||
${CMAKE_SOURCE_DIR}/src
|
||||
@@ -136,21 +69,21 @@ if (DOXYGEN_FOUND)
|
||||
# CMake appends using ';'. doxygen wants spaces
|
||||
string(REPLACE ";" " " DOXYGEN_INPUT "${CMAKE_DOXYGEN_INPUT}")
|
||||
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/.impala.doxy
|
||||
${CMAKE_SOURCE_DIR}/build/config/.impala.doxy)
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/build/config/.impala.doxy)
|
||||
file(MAKE_DIRECTORY ${DOXYGEN_OUTPUT_DIR})
|
||||
add_custom_target(docs
|
||||
COMMAND ${CMAKE_COMMAND} -E echo_append "Building Docs..."
|
||||
COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_SOURCE_DIR}/build/config/.impala.doxy
|
||||
COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/build/config/.impala.doxy
|
||||
)
|
||||
else (DOXYGEN_FOUND)
|
||||
MESSAGE(STATUS "WARNING: Doxygen not found - Docs will not be created")
|
||||
endif(DOXYGEN_FOUND)
|
||||
|
||||
# resolve "#include "<subdir>/<name>.h"
|
||||
include_directories(${CMAKE_SOURCE_DIR}/src)
|
||||
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/src)
|
||||
|
||||
# resolve includes of generated code
|
||||
include_directories(${CMAKE_SOURCE_DIR}/generated-sources)
|
||||
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/generated-sources)
|
||||
|
||||
# allow linking of static libs into dynamic lib
|
||||
add_definitions(-fPIC)
|
||||
@@ -168,22 +101,22 @@ add_subdirectory(generated-sources/gen-cpp)
|
||||
add_subdirectory(generated-sources/opcode)
|
||||
|
||||
link_directories(
|
||||
${CMAKE_SOURCE_DIR}/build/common
|
||||
${CMAKE_SOURCE_DIR}/build/exec
|
||||
${CMAKE_SOURCE_DIR}/build/exprs
|
||||
${CMAKE_SOURCE_DIR}/build/runtime
|
||||
${CMAKE_SOURCE_DIR}/build/service
|
||||
${CMAKE_SOURCE_DIR}/build/testutil
|
||||
${CMAKE_SOURCE_DIR}/build/thrift
|
||||
${CMAKE_SOURCE_DIR}/build/util
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/build/common
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/build/exec
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/build/exprs
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/build/runtime
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/build/service
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/build/testutil
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/build/thrift
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/build/util
|
||||
)
|
||||
|
||||
# only generate statically linked libs and executables
|
||||
set(BUILD_SHARED_LIBS OFF)
|
||||
|
||||
# where to put generated libraries
|
||||
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}/build/")
|
||||
set(ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}/build/")
|
||||
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/build/")
|
||||
set(ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/build/")
|
||||
|
||||
# where to put generated binaries
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/build/")
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_SOURCE_DIR}/build/")
|
||||
|
||||
@@ -1,14 +1,12 @@
|
||||
# Copyright (c) 2011 Cloudera, Inc. All rights reserved.
|
||||
|
||||
# where to put generated libraries
|
||||
set(LIBRARY_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/build/thrift")
|
||||
set(LIBRARY_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/be/build/thrift")
|
||||
|
||||
# where to put generated binaries
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/build/thrift")
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/be/build/thrift")
|
||||
|
||||
# keep everything in one library, the object files reference
|
||||
# each other
|
||||
add_library(ImpalaThrift
|
||||
set(SRC_FILES
|
||||
ImpalaBackendService.cpp
|
||||
ImpalaBackendService_constants.cpp
|
||||
ImpalaBackendService_types.cpp
|
||||
@@ -32,6 +30,13 @@ add_library(ImpalaThrift
|
||||
PlanNodes_types.cpp
|
||||
Types_constants.cpp
|
||||
Types_types.cpp
|
||||
)
|
||||
)
|
||||
|
||||
# keep everything in one library, the object files reference
|
||||
# each other
|
||||
add_library(ImpalaThrift ${SRC_FILES})
|
||||
|
||||
# Setting these files as code-generated lets make clean and incremental builds work correctly
|
||||
set_source_files_properties(${SRC_FILES} PROPERTIES GENERATED TRUE)
|
||||
|
||||
add_library(thrift STATIC IMPORTED)
|
||||
|
||||
@@ -1,15 +1,20 @@
|
||||
# Copyright (c) 2011 Cloudera, Inc. All rights reserved.
|
||||
|
||||
# where to put generated libraries
|
||||
set(LIBRARY_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/build/opcode")
|
||||
set(LIBRARY_OUTPUT_PATH "${CMAKE_CURRENT_SOURCE_DIR}/build/opcode")
|
||||
|
||||
# where to put generated binaries
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/build/opcode")
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_SOURCE_DIR}/build/opcode")
|
||||
|
||||
set(SRC_FILES
|
||||
functions.cc
|
||||
opcode-registry-init.cc
|
||||
)
|
||||
|
||||
# keep everything in one library, the object files reference
|
||||
# each other
|
||||
add_library(Opcode
|
||||
functions.cc
|
||||
opcode-registry-init.cc
|
||||
)
|
||||
add_library(Opcode ${SRC_FILES})
|
||||
|
||||
# Setting these files as code-generated lets make clean and incremental builds work correctly
|
||||
set_source_files_properties(${SRC_FILES} PROPERTIES GENERATED TRUE)
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
# Copyright (c) 2011 Cloudera, Inc. All rights reserved.
|
||||
|
||||
# where to put generated libraries
|
||||
set(LIBRARY_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/build/common")
|
||||
set(LIBRARY_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/be/build/common")
|
||||
|
||||
# where to put generated binaries
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/build/common")
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/be/build/common")
|
||||
|
||||
add_library(Common
|
||||
status.cc
|
||||
|
||||
@@ -3,10 +3,10 @@
|
||||
cmake_minimum_required(VERSION 2.6)
|
||||
|
||||
# where to put generated libraries
|
||||
set(LIBRARY_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/build/exec")
|
||||
set(LIBRARY_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/be/build/exec")
|
||||
|
||||
# where to put generated binaries
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/build/exec")
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/be/build/exec")
|
||||
|
||||
add_library(Exec STATIC
|
||||
aggregation-node.cc
|
||||
|
||||
@@ -547,7 +547,7 @@ inline void ProcessEscapeMask(int escape_mask, bool* last_char_is_escape, int* f
|
||||
}
|
||||
|
||||
// SSE optimized raw text file parsing. SSE4_2 added an instruction (with 3 modes) for text
|
||||
// processing. The modes mimick strchr, strstr and strcmp. For text parsing, we can leverage
|
||||
// processing. The modes mimic strchr, strstr and strcmp. For text parsing, we can leverage
|
||||
// the strchr functionality.
|
||||
//
|
||||
// The instruction operates on two sse registers:
|
||||
@@ -583,8 +583,8 @@ Status HdfsTextScanNode::ParseFileBufferSSE(int max_tuples, int* num_tuples, int
|
||||
// collection_item delim_char
|
||||
// - xmm_escape_search_: the escape search register. Only contains escape char
|
||||
// - xmm_tuple_mask: the result of doing strchr for the tuple delim
|
||||
// - xmm_field_mask: the reuslt of doing strchr for the field delim
|
||||
// - xmm_escape_mask: the reuslt of doing strchr for the escape char
|
||||
// - xmm_field_mask: the result of doing strchr for the field delim
|
||||
// - xmm_escape_mask: the result of doing strchr for the escape char
|
||||
__m128i xmm_buffer, xmm_tuple_mask, xmm_field_mask, xmm_escape_mask;
|
||||
|
||||
// Length remaining of buffer to process
|
||||
@@ -830,7 +830,7 @@ Status HdfsTextScanNode::WriteFields(RuntimeState* state, RowBatch* row_batch, i
|
||||
// parsing the tuple. At this point we can:
|
||||
// - Report errors if there are any
|
||||
// - Reset line_start, materialized_slot_idx to be ready to parse the next row
|
||||
// - Matreialize partition key values
|
||||
// - Materialize partition key values
|
||||
// - Evaluate conjuncts and add if necessary
|
||||
if (++slot_idx_ == num_materialized_slots_) {
|
||||
if (error_in_row_) {
|
||||
|
||||
@@ -275,7 +275,7 @@ class HdfsTextScanNode : public ScanNode {
|
||||
|
||||
// Parses the current file_buffer_ using SSE ("Intel x86 instruction set extension 'Streaming
|
||||
// Simd Extension'). This should only be called if the hardware suports SSE4.2 instructions.
|
||||
// SSE4.2 added string processing instructions that allow for proecessing 16 characters at a time.
|
||||
// SSE4.2 added string processing instructions that allow for processing 16 characters at a time.
|
||||
// This function will write field start/len to 'parsed_data_' which can then be written out
|
||||
// to tuples.
|
||||
// Input Parameters:
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
# Copyright (c) 2011 Cloudera, Inc. All rights reserved.
|
||||
|
||||
# where to put generated libraries
|
||||
set(LIBRARY_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/build/exprs")
|
||||
set(LIBRARY_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/be/build/exprs")
|
||||
|
||||
# where to put generated binaries
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/build/exprs")
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/be/build/exprs")
|
||||
|
||||
add_library(Exprs
|
||||
agg-expr.cc
|
||||
@@ -58,4 +58,4 @@ target_link_libraries(expr-test
|
||||
${Boost_LIBRARIES}
|
||||
)
|
||||
|
||||
add_test(expr-test ${CMAKE_SOURCE_DIR}/build/exprs/expr-test)
|
||||
add_test(expr-test ${CMAKE_SOURCE_DIR}/be/build/exprs/expr-test)
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
# Copyright (c) 2011 Cloudera, Inc. All rights reserved.
|
||||
|
||||
# where to put generated libraries
|
||||
set(LIBRARY_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/build/runtime")
|
||||
set(LIBRARY_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/be/build/runtime")
|
||||
|
||||
# where to put generated binaries
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/build/runtime")
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/be/build/runtime")
|
||||
|
||||
# add .cc files and uncomment line
|
||||
add_library(Runtime STATIC
|
||||
@@ -71,6 +71,6 @@ target_link_libraries(data-stream-test
|
||||
${Boost_LIBRARIES}
|
||||
)
|
||||
|
||||
add_test(mem-pool-test ${CMAKE_SOURCE_DIR}/build/runtime/mem-pool-test)
|
||||
add_test(free-list-test ${CMAKE_SOURCE_DIR}/build/runtime/free-list-test)
|
||||
add_test(data-stream-test ${CMAKE_SOURCE_DIR}/build/runtime/data-stream-test)
|
||||
add_test(mem-pool-test ${CMAKE_SOURCE_DIR}/be/build/runtime/mem-pool-test)
|
||||
add_test(free-list-test ${CMAKE_SOURCE_DIR}/be/build/runtime/free-list-test)
|
||||
add_test(data-stream-test ${CMAKE_SOURCE_DIR}/be/build/runtime/data-stream-test)
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
# Copyright (c) 2011 Cloudera, Inc. All rights reserved.
|
||||
|
||||
# where to put generated libraries
|
||||
set(LIBRARY_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/build/service")
|
||||
set(LIBRARY_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/be/build/service")
|
||||
|
||||
# where to put generated binaries
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/build/service")
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/be/build/service")
|
||||
|
||||
add_library(Service
|
||||
plan-executor.cc
|
||||
|
||||
@@ -3,10 +3,10 @@
|
||||
cmake_minimum_required(VERSION 2.6)
|
||||
|
||||
# where to put generated libraries
|
||||
set(LIBRARY_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/build/testutil")
|
||||
set(LIBRARY_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/be/build/testutil")
|
||||
|
||||
# where to put generated binaries
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/build/testutil")
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/be/build/testutil")
|
||||
|
||||
add_library(TestUtil STATIC
|
||||
query-executor.cc
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
# Copyright (c) 2011 Cloudera, Inc. All rights reserved.
|
||||
|
||||
# where to put generated libraries
|
||||
set(LIBRARY_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/build/util")
|
||||
set(LIBRARY_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/be/build/util")
|
||||
|
||||
# where to put generated binaries
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/build/util")
|
||||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_SOURCE_DIR}/be/build/util")
|
||||
|
||||
add_library(Util
|
||||
cpu-info.cc
|
||||
@@ -31,5 +31,5 @@ target_link_libraries(perf-counters-test
|
||||
${Boost_LIBRARIES}
|
||||
)
|
||||
|
||||
add_test(perf-counters-test ${CMAKE_SOURCE_DIR}/build/util/perf-counters-test)
|
||||
add_test(perf-counters-test ${CMAKE_SOURCE_DIR}/be/build/util/perf-counters-test)
|
||||
|
||||
|
||||
19
bin/clean-fe-processes.py
Executable file
19
bin/clean-fe-processes.py
Executable file
@@ -0,0 +1,19 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
# This script will kill the FE processes (hive and hbase) if they are running.
|
||||
import os,signal
|
||||
|
||||
# Java Process names to kill
|
||||
fe_processes = ['Launcher', 'HMaster']
|
||||
|
||||
# Run jps. The format of the output is <pid> <java proc name>
|
||||
processes = os.popen("jps", "r")
|
||||
while 1:
|
||||
line = processes.readline()
|
||||
if not line: break
|
||||
splits = line.split(' ')
|
||||
if len(splits) != 2: continue;
|
||||
pid = int(splits[0].strip())
|
||||
proc_name = splits[1].strip()
|
||||
if proc_name in fe_processes:
|
||||
os.kill(pid, 9)
|
||||
@@ -1,16 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
# Copyright (c) 2011 Cloudera, Inc. All rights reserved.
|
||||
|
||||
bin=`dirname "$0"`
|
||||
bin=`cd "$bin"; pwd`
|
||||
. "$bin"/impala-config.sh
|
||||
|
||||
set -e
|
||||
|
||||
echo "Copying data files from the filer. If the file already exists locally, the files will not be copied. It's not check summing the files or anything like that, if you need to force a copy, delete the local directory: impala/testdata/data/hive_benchmark"
|
||||
|
||||
DATASRC="nong@haus01.sf.cloudera.com:impala-data"
|
||||
DATADST=$IMPALA_HOME/testdata/hive_benchmark
|
||||
mkdir -p $DATADST
|
||||
|
||||
scp -r $DATASRC/* $DATADST/
|
||||
14
bin/runbackendtests.sh
Executable file
14
bin/runbackendtests.sh
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env bash
|
||||
# Copyright (c) 2011 Cloudera, Inc. All rights reserved.
|
||||
|
||||
# run backend tests For some reason this does not work on Jenkins
|
||||
cd $IMPALA_FE_DIR
|
||||
mvn exec:java -Dexec.mainClass=com.cloudera.impala.testutil.PlanService \
|
||||
-Dexec.classpathScope=test &
|
||||
PID=$!
|
||||
# Wait for planner to startup TODO: can we do something better than wait arbitrarily for
|
||||
# 3 seconds. Not a huge deal if it's not long enough, BE tests will just wait a bit
|
||||
sleep 3
|
||||
cd $IMPALA_HOME
|
||||
make test
|
||||
kill $PID
|
||||
54
buildall.sh
54
buildall.sh
@@ -69,32 +69,6 @@ then
|
||||
|
||||
fi
|
||||
|
||||
# build common
|
||||
cd $IMPALA_COMMON_DIR
|
||||
./gen_functions.py
|
||||
./gen_opcodes.py
|
||||
|
||||
# Generate hive-site.xml from template via env var substitution
|
||||
# TODO: Throw an error if the template references an undefined environment variable
|
||||
cd ${IMPALA_FE_DIR}/src/test/resources
|
||||
perl -wpl -e 's/\$\{([^}]+)\}/defined $ENV{$1} ? $ENV{$1} : $&/eg' \
|
||||
hive-site.xml.template > hive-site.xml
|
||||
|
||||
# Generate hbase-site.xml from template via env var substitution
|
||||
# TODO: Throw an error if the template references an undefined environment variable
|
||||
cd ${IMPALA_FE_DIR}/src/test/resources
|
||||
perl -wpl -e 's/\$\{([^}]+)\}/defined $ENV{$1} ? $ENV{$1} : $&/eg' \
|
||||
hbase-site.xml.template > hbase-site.xml
|
||||
|
||||
if [ $testdata_action -eq 1 ]
|
||||
then
|
||||
# create test data
|
||||
cd $IMPALA_HOME/testdata
|
||||
$IMPALA_HOME/bin/create_testdata.sh
|
||||
cd $IMPALA_HOME/fe
|
||||
mvn -Pload-testdata process-test-resources
|
||||
fi
|
||||
|
||||
# build thirdparty
|
||||
cd $IMPALA_HOME/thirdparty/gflags-1.5
|
||||
if [ $config_action -eq 1 ]
|
||||
@@ -138,10 +112,34 @@ cd $IMPALA_HOME/thirdparty/gtest-1.6.0
|
||||
cmake .
|
||||
make
|
||||
|
||||
# build backend
|
||||
cd $IMPALA_BE_DIR
|
||||
# cleanup FE process
|
||||
$IMPALA_HOME/bin/clean-fe-processes.py
|
||||
|
||||
# build common and backend
|
||||
cd $IMPALA_HOME
|
||||
cmake -DCMAKE_BUILD_TYPE=Debug . && make -j4
|
||||
|
||||
# Generate hive-site.xml from template via env var substitution
|
||||
# TODO: Throw an error if the template references an undefined environment variable
|
||||
cd ${IMPALA_FE_DIR}/src/test/resources
|
||||
perl -wpl -e 's/\$\{([^}]+)\}/defined $ENV{$1} ? $ENV{$1} : $&/eg' \
|
||||
hive-site.xml.template > hive-site.xml
|
||||
|
||||
# Generate hbase-site.xml from template via env var substitution
|
||||
# TODO: Throw an error if the template references an undefined environment variable
|
||||
cd ${IMPALA_FE_DIR}/src/test/resources
|
||||
perl -wpl -e 's/\$\{([^}]+)\}/defined $ENV{$1} ? $ENV{$1} : $&/eg' \
|
||||
hbase-site.xml.template > hbase-site.xml
|
||||
|
||||
if [ $testdata_action -eq 1 ]
|
||||
then
|
||||
# create test data
|
||||
cd $IMPALA_HOME/testdata
|
||||
$IMPALA_HOME/bin/create_testdata.sh
|
||||
cd $IMPALA_HOME/fe
|
||||
mvn -Pload-testdata process-test-resources
|
||||
fi
|
||||
|
||||
# build frontend
|
||||
# skip tests since any failures will prevent the
|
||||
# package phase from completing.
|
||||
|
||||
@@ -6,11 +6,11 @@
|
||||
# GFLAGS_FOUND, whether gflags has been found
|
||||
|
||||
set(GFLAGS_SEARCH_HEADER_PATHS
|
||||
${CMAKE_SOURCE_DIR}/../thirdparty/gflags-1.5/src
|
||||
${CMAKE_SOURCE_DIR}/thirdparty/gflags-1.5/src
|
||||
)
|
||||
|
||||
set(GFLAGS_SEARCH_LIB_PATH
|
||||
${CMAKE_SOURCE_DIR}/../thirdparty/gflags-1.5/.libs
|
||||
${CMAKE_SOURCE_DIR}/thirdparty/gflags-1.5/.libs
|
||||
)
|
||||
|
||||
find_path(GFLAGS_INCLUDE_DIR gflags/gflags.h PATHS
|
||||
@@ -6,11 +6,11 @@
|
||||
# GLOG_FOUND, whether glog has been found
|
||||
|
||||
set(GLOG_SEARCH_HEADER_PATHS
|
||||
${CMAKE_SOURCE_DIR}/../thirdparty/glog-0.3.1/src
|
||||
${CMAKE_SOURCE_DIR}/thirdparty/glog-0.3.1/src
|
||||
)
|
||||
|
||||
set(GLOG_SEARCH_LIB_PATH
|
||||
${CMAKE_SOURCE_DIR}/../thirdparty/glog-0.3.1/.libs
|
||||
${CMAKE_SOURCE_DIR}/thirdparty/glog-0.3.1/.libs
|
||||
)
|
||||
|
||||
find_path(GLOG_INCLUDE_DIR glog/logging.h PATHS
|
||||
@@ -33,19 +33,19 @@
|
||||
set(GTEST_H gtest/gtest.h)
|
||||
|
||||
find_path(GTEST_INCLUDE_DIR ${GTEST_H}
|
||||
PATHS ${CMAKE_SOURCE_DIR}/../thirdparty/gtest-1.6.0/include
|
||||
PATHS ${CMAKE_SOURCE_DIR}/thirdparty/gtest-1.6.0/include
|
||||
NO_DEFAULT_PATH
|
||||
DOC "Path to the ${GTEST_H} file"
|
||||
)
|
||||
|
||||
find_library(GTEST_LIBRARY NAMES gtest
|
||||
PATHS ${CMAKE_SOURCE_DIR}/../thirdparty/gtest-1.6.0
|
||||
PATHS ${CMAKE_SOURCE_DIR}/thirdparty/gtest-1.6.0
|
||||
NO_DEFAULT_PATH
|
||||
DOC "Google's framework for writing C++ tests (gtest)"
|
||||
)
|
||||
|
||||
find_library(GTEST_MAIN_LIBRARY NAMES gtest_main
|
||||
PATHS ${CMAKE_SOURCE_DIR}/../thirdparty/gtest-1.6.0
|
||||
PATHS ${CMAKE_SOURCE_DIR}/thirdparty/gtest-1.6.0
|
||||
NO_DEFAULT_PATH
|
||||
DOC "Google's framework for writing C++ tests (gtest_main)"
|
||||
)
|
||||
@@ -6,11 +6,11 @@
|
||||
# PPROF_FOUND, whether pprof has been found
|
||||
|
||||
set(PPROF_SEARCH_HEADER_PATHS
|
||||
${CMAKE_SOURCE_DIR}/../thirdparty/google-perftools-1.8.3/src
|
||||
${CMAKE_SOURCE_DIR}/thirdparty/google-perftools-1.8.3/src
|
||||
)
|
||||
|
||||
set(PPROF_SEARCH_LIB_PATH
|
||||
${CMAKE_SOURCE_DIR}/../thirdparty/google-perftools-1.8.3/.libs
|
||||
${CMAKE_SOURCE_DIR}/thirdparty/google-perftools-1.8.3/.libs
|
||||
)
|
||||
|
||||
find_path(PPROF_INCLUDE_DIR google/profiler.h PATHS
|
||||
2
common/function-registry/.gitignore
vendored
Normal file
2
common/function-registry/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*.pyc
|
||||
generated_functions.py
|
||||
36
common/function-registry/CMakeLists.txt
Normal file
36
common/function-registry/CMakeLists.txt
Normal file
@@ -0,0 +1,36 @@
|
||||
# Copyright (c) 2011 Cloudera, Inc. All rights reserved.
|
||||
|
||||
cmake_minimum_required(VERSION 2.6)
|
||||
|
||||
set(BE_OUTPUT_DIR ${CMAKE_SOURCE_DIR}/be/generated-sources)
|
||||
set(FE_OUTPUT_DIR ${CMAKE_SOURCE_DIR}/fe/generated-sources/gen-java/com/cloudera/impala/)
|
||||
|
||||
# Set output files for dependency tracking
|
||||
set(CODE_GEN_OUTPUT
|
||||
${BE_OUTPUT_DIR}/opcode/functions.cc
|
||||
${BE_OUTPUT_DIR}/opcode/functions.h
|
||||
${BE_OUTPUT_DIR}/opcode/opcode-registry-init.cc
|
||||
${FE_OUTPUT_DIR}/opcode/FunctionOperator.java
|
||||
${FE_OUTPUT_DIR}/opcode/FunctionRegistry.java
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/../thrift/Opcodes.thrift
|
||||
)
|
||||
|
||||
# Source python files
|
||||
set(FUNCTION_REGISTRY_INPUT
|
||||
gen_functions.py
|
||||
gen_opcodes.py
|
||||
impala_functions.py
|
||||
)
|
||||
|
||||
# Run the python scripts
|
||||
add_custom_command(
|
||||
OUTPUT ${CODE_GEN_OUTPUT}
|
||||
COMMAND ./gen_functions.py
|
||||
COMMAND ./gen_opcodes.py
|
||||
DEPENDS ${FUNCTION_REGISTRY_INPUT}
|
||||
COMMENT "Generating Opcode Registry files."
|
||||
VERBATIM
|
||||
)
|
||||
|
||||
add_custom_target(function-registry ALL DEPENDS ${CODE_GEN_OUTPUT})
|
||||
|
||||
@@ -12,7 +12,7 @@ import os
|
||||
# The script outputs (run: 'impala/common/gen_functions.py')
|
||||
# - header and implemention for above functions:
|
||||
# - impala/be/src/generated-sources/opcode/functions.[h/cc]
|
||||
# - python file that contains the metadata for theose functions:
|
||||
# - python file that contains the metadata for those functions:
|
||||
# - impala/common/generated_functions.py
|
||||
|
||||
# Some aggregate types that are useful for defining functions
|
||||
@@ -263,7 +263,7 @@ templates = {
|
||||
'Cast' : cast,
|
||||
}
|
||||
|
||||
BE_PATH = "../be/generated-sources/opcode/"
|
||||
BE_PATH = "../../be/generated-sources/opcode/"
|
||||
if not os.path.exists(BE_PATH):
|
||||
os.makedirs(BE_PATH)
|
||||
|
||||
@@ -126,9 +126,9 @@ def initialize_sub(op, return_type, arg_types):
|
||||
sub["java_output"] += ", " + java_args
|
||||
return sub
|
||||
|
||||
FE_PATH = "../fe/target/generated-sources/gen-java/com/cloudera/impala/opcode/"
|
||||
BE_PATH = "../be/generated-sources/opcode/"
|
||||
THRIFT_PATH = "../fe/src/main/thrift/"
|
||||
FE_PATH = "../../fe/generated-sources/gen-java/com/cloudera/impala/opcode/"
|
||||
BE_PATH = "../../be/generated-sources/opcode/"
|
||||
THRIFT_PATH = "../thrift/"
|
||||
|
||||
# This contains a list of all the opcodes that are built base on the
|
||||
# function name from the input. Inputs can have multiple signatures
|
||||
1
common/thrift/.gitignore
vendored
Normal file
1
common/thrift/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
Opcodes.thrift
|
||||
88
common/thrift/CMakeLists.txt
Normal file
88
common/thrift/CMakeLists.txt
Normal file
@@ -0,0 +1,88 @@
|
||||
# Copyright (c) 2011 Cloudera, Inc. All rights reserved.
|
||||
|
||||
cmake_minimum_required(VERSION 2.6)
|
||||
|
||||
# Helper function to generate build rules. For each input thrift file, this function will
|
||||
# generate a rule that maps the input file to the output c++ file.
|
||||
# Thrift will generate multiple output files for each input (including java files) and
|
||||
# ideally, we'd specify all of the outputs for dependency tracking.
|
||||
# Unfortunately, it's not easy to figure out all the output files without parsing the
|
||||
# thrift input. (TODO: can thrift tells us what the java output files will be?)
|
||||
# The list of output files is used for build dependency tracking so it's not necessary to
|
||||
# capture all the output files.
|
||||
#
|
||||
# To call this function, pass it the output file list followed by the input thrift files:
|
||||
# i.e. THRIFT_GEN(OUTPUT_FILES, ${THRIFT_FILES})
|
||||
#
|
||||
# cmake seems to be case sensitive for some keywords. Changing the first IF check to lower
|
||||
# case makes it not work. TODO: investigate this
|
||||
function(THRIFT_GEN VAR)
|
||||
IF (NOT ARGN)
|
||||
MESSAGE(SEND_ERROR "Error: THRIFT_GEN called without any src files")
|
||||
RETURN()
|
||||
ENDIF(NOT ARGN)
|
||||
|
||||
set(${VAR})
|
||||
foreach(FIL ${ARGN})
|
||||
# Get full path
|
||||
get_filename_component(ABS_FIL ${FIL} ABSOLUTE)
|
||||
# Get basename
|
||||
get_filename_component(FIL_WE ${FIL} NAME_WE)
|
||||
|
||||
# All the output files we can determine based on filename.
|
||||
# - Does not include .skeleton.cpp files
|
||||
# - Does not include java output files
|
||||
set(OUTPUT_BE_FILE "${BE_OUTPUT_DIR}/gen-cpp/${FIL_WE}_types.cpp")
|
||||
set(OUTPUT_BE_FILE ${OUTPUT_BE_FILE} "${BE_OUTPUT_DIR}/gen-cpp/${FIL_WE}_types.h")
|
||||
set(OUTPUT_BE_FILE ${OUTPUT_BE_FILE} "${BE_OUTPUT_DIR}/gen-cpp/${FIL_WE}_constants.cpp")
|
||||
set(OUTPUT_BE_FILE ${OUTPUT_BE_FILE} "${BE_OUTPUT_DIR}/gen-cpp/${FIL_WE}_constants.h")
|
||||
list(APPEND ${VAR} ${OUTPUT_BE_FILE})
|
||||
|
||||
add_custom_command(
|
||||
OUTPUT ${OUTPUT_BE_FILE}
|
||||
COMMAND thrift ${CPP_ARGS} ${FIL}
|
||||
COMMAND thrift ${JAVA_ARGS} ${FIL}
|
||||
DEPENDS ${ABS_FIL}
|
||||
COMMENT "Running thrift compiler on ${FIL}"
|
||||
VERBATIM
|
||||
)
|
||||
endforeach(FIL)
|
||||
|
||||
set(${VAR} ${${VAR}} PARENT_SCOPE)
|
||||
endfunction(THRIFT_GEN)
|
||||
|
||||
set(BE_OUTPUT_DIR ${CMAKE_SOURCE_DIR}/be/generated-sources)
|
||||
set(FE_OUTPUT_DIR ${CMAKE_SOURCE_DIR}/fe/generated-sources)
|
||||
file(MAKE_DIRECTORY ${BE_OUTPUT_DIR})
|
||||
file(MAKE_DIRECTORY ${FE_OUTPUT_DIR})
|
||||
|
||||
# Args passed to thrift for java/c++ gen
|
||||
set(CPP_ARGS --gen cpp -o ${BE_OUTPUT_DIR})
|
||||
set(JAVA_ARGS --gen java:hashcode -o ${FE_OUTPUT_DIR})
|
||||
|
||||
set (GENERATES_SRC_FILES
|
||||
Opcodes.thrift
|
||||
)
|
||||
|
||||
set (SRC_FILES
|
||||
DataSinks.thrift
|
||||
Data.thrift
|
||||
Descriptors.thrift
|
||||
Exprs.thrift
|
||||
ImpalaBackendService.thrift
|
||||
ImpalaPlanService.thrift
|
||||
ImpalaService.thrift
|
||||
PlanNodes.thrift
|
||||
Types.thrift
|
||||
${GENERATES_SRC_FILES}
|
||||
)
|
||||
|
||||
set_source_files_properties(${GENERATES_SRC_FILES} PROPERTIES GENERATED TRUE)
|
||||
|
||||
# Create a build command for each of the thrift src files and generate
|
||||
# a list of files they produce
|
||||
THRIFT_GEN(THRIFT_FILES ${SRC_FILES})
|
||||
|
||||
# Add a custom target that generates all the thrift files
|
||||
add_custom_target(thrift-cpp ALL DEPENDS ${THRIFT_FILES})
|
||||
|
||||
2
fe/.gitignore
vendored
2
fe/.gitignore
vendored
@@ -23,7 +23,7 @@ src/test/resources/hive-site.xml
|
||||
src/test/resources/hbase-site.xml
|
||||
|
||||
# Generated thrift files
|
||||
src/main/thrift/Opcodes.thrift
|
||||
generated-sources
|
||||
|
||||
derby.log
|
||||
|
||||
|
||||
42
fe/pom.xml
42
fe/pom.xml
@@ -21,7 +21,6 @@
|
||||
|
||||
<properties>
|
||||
<test.hive.testdata>${project.basedir}/../testdata/target/AllTypes.txt</test.hive.testdata>
|
||||
<thrift.executable>/usr/local/bin/thrift</thrift.executable>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
@@ -268,45 +267,6 @@
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>generate-thrift-sources</id>
|
||||
<phase>generate-sources</phase>
|
||||
<configuration>
|
||||
<tasks>
|
||||
<exec executable="${thrift.executable}">
|
||||
<arg value="-version"/>
|
||||
</exec>
|
||||
<apply executable="${thrift.executable}" force="true" type="file">
|
||||
<arg value="-v"/>
|
||||
<arg value="--gen" />
|
||||
<arg value="java:hashcode"/>
|
||||
<arg value="-o"/>
|
||||
<arg value="${project.build.directory}/generated-sources"/>
|
||||
<fileset dir="${project.basedir}/src/main/thrift">
|
||||
<include name="**/*.thrift"/>
|
||||
</fileset>
|
||||
</apply>
|
||||
<apply executable="${thrift.executable}" force="true" type="file">
|
||||
<arg value="-v"/>
|
||||
<arg value="--gen" />
|
||||
<arg value="cpp"/>
|
||||
<arg value="-o"/>
|
||||
<arg value="${project.basedir}/../be/generated-sources"/>
|
||||
<fileset dir="${project.basedir}/src/main/thrift">
|
||||
<include name="**/*.thrift"/>
|
||||
</fileset>
|
||||
</apply>
|
||||
</tasks>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
@@ -325,7 +285,7 @@
|
||||
Note that the flex plugin appears to do this for you, but we have
|
||||
to do this manually for the CUP and Thrift generated code
|
||||
-->
|
||||
<source>${project.build.directory}/generated-sources/gen-java</source>
|
||||
<source>${project.basedir}/generated-sources/gen-java</source>
|
||||
<source>${project.build.directory}/generated-sources/cup</source>
|
||||
</sources>
|
||||
</configuration>
|
||||
|
||||
1254
testdata/data/mstr/eatwh1/EATWH1-DDL.sql
vendored
Normal file
1254
testdata/data/mstr/eatwh1/EATWH1-DDL.sql
vendored
Normal file
File diff suppressed because it is too large
Load Diff
130
testdata/data/mstr/eatwh1/LoadTablesEATWH1.sql
vendored
Normal file
130
testdata/data/mstr/eatwh1/LoadTablesEATWH1.sql
vendored
Normal file
@@ -0,0 +1,130 @@
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/COST_MARKET_CLASS.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_COST_MARKET_CLASS;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/COST_MARKET_DEP.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_COST_MARKET_DEP;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/COST_MARKET_DIV.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_COST_MARKET_DIV;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/COST_REGION_CLASS.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_COST_REGION_CLASS;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/COST_REGION_ITEM.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_COST_REGION_ITEM;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/COST_STORE_DEP.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_COST_STORE_DEP;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/COST_STORE_ITEM.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_COST_STORE_ITEM;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/FT1.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_FT1;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/FT10.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_FT10;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/FT11.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_FT11;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/FT12.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_FT12;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/FT13.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_FT13;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/FT14.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_FT14;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/FT15.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_FT15;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/FT17.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_FT17;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/FT2.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_FT2;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/FT3.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_FT3;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/FT4.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_FT4;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/FT5.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_FT5;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/FT6.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_FT6;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/FT7.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_FT7;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/FT8.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_FT8;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/FT9.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_FT9;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/INVENTORY_CURR.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_INVENTORY_CURR;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/INVENTORY_ORDERS.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_INVENTORY_ORDERS;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/INVENTORY_Q1_1997.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_INVENTORY_Q1_1997;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/INVENTORY_Q1_1998.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_INVENTORY_Q1_1998;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/INVENTORY_Q2_1997.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_INVENTORY_Q2_1997;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/INVENTORY_Q2_1998.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_INVENTORY_Q2_1998;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/INVENTORY_Q3_1997.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_INVENTORY_Q3_1997;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/INVENTORY_Q3_1998.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_INVENTORY_Q3_1998;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/INVENTORY_Q4_1997.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_INVENTORY_Q4_1997;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/INVENTORY_Q4_1998.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_INVENTORY_Q4_1998;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_CLASS.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_CLASS;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_COLOR.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_COLOR;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_DAY.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_DAY;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_DEMOG.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_DEMOG;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_DEPARTMENT.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_DEPARTMENT;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_DIVISION.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_DIVISION;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_ITEM.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_ITEM;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_MANAGER.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_MANAGER;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_MARKET.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_MARKET;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_MONTH.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_MONTH;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_PRICEZONE.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_PRICEZONE;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_QUAL.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_QUAL;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_QUARTER.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_QUARTER;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_REGION.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_REGION;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_SEASON.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_SEASON;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_SIZE.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_SIZE;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_STATE.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_STATE;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_STORE.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_STORE;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_STYLE.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_STYLE;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_TYPE.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_TYPE;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_WEEK.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_WEEK;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_WEEKDAY.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_WEEKDAY;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LOOKUP_YEAR.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LOOKUP_YEAR;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_CALL_CTR.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_CALL_CTR;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_CATALOG.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_CATALOG;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_CATEGORY.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_CATEGORY;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_COUNTRY.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_COUNTRY;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_CUSTOMER.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_CUSTOMER;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_CUST_CITY.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_CUST_CITY;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_CUST_REGION.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_CUST_REGION;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_DATE.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_DATE;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_DIST_CTR.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_DIST_CTR;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_EMPLOYEE.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_EMPLOYEE;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_INCOME.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_INCOME;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_ITEM.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_ITEM;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_MANAGER.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_MANAGER;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_MONTH.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_MONTH;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_MONTH_OF_YEAR.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_MONTH_OF_YEAR;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_ORDER.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_ORDER;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_PROMOTION.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_PROMOTION;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_PROMO_TYPE.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_PROMO_TYPE;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_PYMT_TYPE.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_PYMT_TYPE;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_QUARTER.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_QUARTER;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_REGION.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_REGION;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_SHIPPER.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_SHIPPER;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_SUBCATEG.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_SUBCATEG;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_SUPPLIER.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_SUPPLIER;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/LU_YEAR.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_LU_YEAR;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/MARKET_CLASS.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_MARKET_CLASS;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/MARKET_DEPARTMENT.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_MARKET_DEPARTMENT;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/MARKET_DIVISION.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_MARKET_DIVISION;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/MARKET_ITEM.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_MARKET_ITEM;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/MNTH_CATEGORY_SLS.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_MNTH_CATEGORY_SLS;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/MSI_STATS_LOG.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_MSI_STATS_LOG;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/MSI_STATS_PROP.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_MSI_STATS_PROP;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/ORDER_DETAIL.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_ORDER_DETAIL;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/ORDER_FACT.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_ORDER_FACT;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/PMT_INVENTORY.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_PMT_INVENTORY;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/PRODUCT_DETAIL.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_PRODUCT_DETAIL;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/PROMOTIONS.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_PROMOTIONS;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/P_DAY_DEC_94.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_P_DAY_DEC_94;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/P_MONTH_DEC_93.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_P_MONTH_DEC_93;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/P_WEEK_DEC_94_1.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_P_WEEK_DEC_94_1;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/P_WEEK_DEC_94_2.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_P_WEEK_DEC_94_2;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/P_WEEK_DEC_94_3.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_P_WEEK_DEC_94_3;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/QTR_CATEGORY_SLS.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_QTR_CATEGORY_SLS;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/REGION_CLASS.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_REGION_CLASS;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/REGION_DEPARTMENT.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_REGION_DEPARTMENT;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/REGION_DIVISION.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_REGION_DIVISION;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/REGION_ITEM.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_REGION_ITEM;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/RELATE_ITEM_COLOR.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_RELATE_ITEM_COLOR;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/RELATE_ITEM_SIZE.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_RELATE_ITEM_SIZE;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/RELATE_ITEM_STYLE.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_RELATE_ITEM_STYLE;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/RELATE_LY_LW.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_RELATE_LY_LW;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/RELATE_MTD.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_RELATE_MTD;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/RELATE_REGION_MAN.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_RELATE_REGION_MAN;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/RELATE_STORE_DEMOG.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_RELATE_STORE_DEMOG;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/RELATE_STORE_TYPE.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_RELATE_STORE_TYPE;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/REL_CAT_ITEM.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_REL_CAT_ITEM;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/RUSH_ORDER.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_RUSH_ORDER;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/SEPERATE_FACT.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_SEPERATE_FACT;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/STORE_CLASS.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_STORE_CLASS;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/STORE_DEPARTMENT.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_STORE_DEPARTMENT;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/STORE_DIVISION.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_STORE_DIVISION;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/STORE_ITEM_93.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_STORE_ITEM_93;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/STORE_ITEM_93_HETERO.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_STORE_ITEM_93_HETERO;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/STORE_ITEM_94.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_STORE_ITEM_94;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/STORE_ITEM_94_HETERO.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_STORE_ITEM_94_HETERO;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/STORE_ITEM_ORDERS.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_STORE_ITEM_ORDERS;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/STORE_ITEM_PTMAP.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_STORE_ITEM_PTMAP;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/TE_TRANS_STATISTICS.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_TE_TRANS_STATISTICS;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/TRANS_DATE_LW_LY.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_TRANS_DATE_LW_LY;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/TRANS_DATE_MTD.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_TRANS_DATE_MTD;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/TRANS_MONTH_LY.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_TRANS_MONTH_LY;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/TRANS_QUARTER_LY.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_TRANS_QUARTER_LY;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/TRANS_YEAR_LY.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_TRANS_YEAR_LY;
|
||||
LOAD DATA LOCAL INPATH '${hiveconf:mstr.eatwh1.data.dir}/YR_CATEGORY_SLS.TXT' OVERWRITE INTO TABLE eatwh1.EATWH1_YR_CATEGORY_SLS;
|
||||
1736
testdata/data/mstr/eatwh1/csv/COST_MARKET_CLASS.TXT
vendored
Normal file
1736
testdata/data/mstr/eatwh1/csv/COST_MARKET_CLASS.TXT
vendored
Normal file
File diff suppressed because it is too large
Load Diff
744
testdata/data/mstr/eatwh1/csv/COST_MARKET_DEP.TXT
vendored
Normal file
744
testdata/data/mstr/eatwh1/csv/COST_MARKET_DEP.TXT
vendored
Normal file
@@ -0,0 +1,744 @@
|
||||
12/9/1993,2,1,12235.241589701
|
||||
12/10/1993,2,1,11261.7804548391
|
||||
12/11/1993,2,1,16148.5210868607
|
||||
12/12/1993,2,1,12087.2843449025
|
||||
12/13/1993,2,1,17679.3490386012
|
||||
12/14/1993,2,1,22497.1140828909
|
||||
12/15/1993,2,1,15310.2166302329
|
||||
12/16/1993,2,1,3620.22802075651
|
||||
12/17/1993,2,1,15480.4493087022
|
||||
12/18/1993,2,1,20848.0541676328
|
||||
12/19/1993,2,1,17688.4875481797
|
||||
12/20/1993,2,1,23374.1033333333
|
||||
12/21/1993,2,1,16119.4896480284
|
||||
12/22/1993,2,1,21718.4351415155
|
||||
12/23/1993,2,1,25454.7495000757
|
||||
12/24/1993,2,1,15953.8743538585
|
||||
12/25/1993,2,1,3474.17022469005
|
||||
12/26/1993,2,1,13681.7466677976
|
||||
12/27/1993,2,1,16970.8371714449
|
||||
12/28/1993,2,1,13263.8056969916
|
||||
12/29/1993,2,1,16148.5210868607
|
||||
12/30/1993,2,1,10262.8420302011
|
||||
12/31/1993,2,1,12746.0480853531
|
||||
12/1/1994,2,1,5194.55743705638
|
||||
12/2/1994,2,1,3967.38133451057
|
||||
12/3/1994,2,1,1053.18094999688
|
||||
12/4/1994,2,1,5057.65848405922
|
||||
12/5/1994,2,1,7652.29203353467
|
||||
12/6/1994,2,1,7296.93008098677
|
||||
12/7/1994,2,1,10840.9804853589
|
||||
12/8/1994,2,1,8408.56219243663
|
||||
12/9/1994,2,1,12746.0480853531
|
||||
12/10/1994,2,1,16811.8034067605
|
||||
12/11/1994,2,1,11860.6864905546
|
||||
12/12/1994,2,1,2907.815933246
|
||||
12/13/1994,2,1,12893.6248758008
|
||||
12/14/1994,2,1,18008.1782397699
|
||||
12/15/1994,2,1,15847.19248963
|
||||
12/16/1994,2,1,21721.4641518075
|
||||
12/17/1994,2,1,15538.9678737598
|
||||
12/18/1994,2,1,21718.4351415155
|
||||
12/19/1994,2,1,26405.7159003794
|
||||
12/20/1994,2,1,17167.6966666667
|
||||
12/21/1994,2,1,3877.83620347262
|
||||
12/22/1994,2,1,15839.3476475119
|
||||
12/23/1994,2,1,20375.6652678695
|
||||
12/24/1994,2,1,16513.4252471463
|
||||
12/25/1994,2,1,20845.1135011967
|
||||
12/26/1994,2,1,13733.4658502655
|
||||
12/27/1994,2,1,17679.3490386012
|
||||
12/28/1994,2,1,19800.4653613608
|
||||
12/29/1994,2,1,11860.6864905546
|
||||
12/30/1994,2,1,2468.91317555467
|
||||
12/31/1994,2,1,9295.74738881137
|
||||
12/1/1993,2,2,37420.4849686716
|
||||
12/2/1993,2,2,42211.7609222764
|
||||
12/3/1993,2,2,28190.2674205739
|
||||
12/4/1993,2,2,27993.9182326625
|
||||
12/5/1993,2,2,24682.2925051443
|
||||
12/6/1993,2,2,24638.0697703025
|
||||
12/7/1993,2,2,4521.64257076107
|
||||
12/8/1993,2,2,20212.5534657566
|
||||
12/9/1993,2,2,25751.2458777384
|
||||
12/10/1993,2,2,21151.1851510827
|
||||
12/11/1993,2,2,26797.2514034532
|
||||
12/12/1993,2,2,20083.3418698857
|
||||
12/13/1993,2,2,23918.8490881067
|
||||
12/14/1993,2,2,22976.8511932392
|
||||
12/15/1993,2,2,23916.3901990425
|
||||
12/16/1993,2,2,5254.42177398612
|
||||
12/17/1993,2,2,23117.7127540574
|
||||
12/18/1993,2,2,27532.1177777992
|
||||
12/19/1993,2,2,23208.1170097877
|
||||
12/20/1993,2,2,29161.6345555556
|
||||
12/21/1993,2,2,21614.273442929
|
||||
12/22/1993,2,2,25755.4137482898
|
||||
12/23/1993,2,2,24056.0103980718
|
||||
12/24/1993,2,2,24258.1957388569
|
||||
12/25/1993,2,2,5147.44933004186
|
||||
12/26/1993,2,2,21902.4861794039
|
||||
12/27/1993,2,2,25989.5245582371
|
||||
12/28/1993,2,2,21397.6637916085
|
||||
12/29/1993,2,2,26797.2514034532
|
||||
12/30/1993,2,2,19946.2541501457
|
||||
12/31/1993,2,2,23034.2793515548
|
||||
12/1/1994,2,2,36823.1864936019
|
||||
12/2/1994,2,2,34671.31264916
|
||||
12/3/1994,2,2,5473.69504103389
|
||||
12/4/1994,2,2,23558.9876675101
|
||||
12/5/1994,2,2,30215.5266204256
|
||||
12/6/1994,2,2,23215.6386848595
|
||||
12/7/1994,2,2,28309.1505000988
|
||||
12/8/1994,2,2,20486.8881563269
|
||||
12/9/1994,2,2,23034.2793515548
|
||||
12/10/1994,2,2,21775.5864057962
|
||||
12/11/1994,2,2,22667.4228918454
|
||||
12/12/1994,2,2,4782.01875319908
|
||||
12/13/1994,2,2,21436.5984169927
|
||||
12/14/1994,2,2,26321.4748857604
|
||||
12/15/1994,2,2,22304.2464262933
|
||||
12/16/1994,2,2,28396.3590880735
|
||||
12/17/1994,2,2,21325.0468928283
|
||||
12/18/1994,2,2,25755.4137482898
|
||||
12/19/1994,2,2,24445.0432813759
|
||||
12/20/1994,2,2,24967.0813888889
|
||||
12/21/1994,2,2,5452.6340863337
|
||||
12/22/1994,2,2,23380.77408061
|
||||
12/23/1994,2,2,27305.1992105312
|
||||
12/24/1994,2,2,22611.4019263986
|
||||
12/25/1994,2,2,28032.4040397777
|
||||
12/26/1994,2,2,20555.7293566319
|
||||
12/27/1994,2,2,23918.8490881067
|
||||
12/28/1994,2,2,22222.9649913725
|
||||
12/29/1994,2,2,22667.4228918454
|
||||
12/30/1994,2,2,4577.97950158529
|
||||
12/31/1994,2,2,20167.9316917852
|
||||
12/1/1993,2,3,4861.33427596397
|
||||
12/2/1993,2,3,5828.31343827219
|
||||
12/3/1993,2,3,5784.81752654543
|
||||
12/4/1993,2,3,7841.72391472282
|
||||
12/5/1993,2,3,8789.79020656582
|
||||
12/6/1993,2,3,10834.6536298111
|
||||
12/7/1993,2,3,3160.04557359331
|
||||
12/8/1993,2,3,12581.3740250624
|
||||
12/9/1993,2,3,15932.2623992106
|
||||
12/10/1993,2,3,15733.3511338293
|
||||
12/11/1993,2,3,17424.0368221526
|
||||
12/12/1993,2,3,15971.7896289895
|
||||
12/13/1993,2,3,19991.117797832
|
||||
12/14/1993,2,3,20685.0585466884
|
||||
12/15/1993,2,3,23530.2846161938
|
||||
12/16/1993,2,3,6331.60595921992
|
||||
12/17/1993,2,3,23250.2968175763
|
||||
12/18/1993,2,3,27147.5366527517
|
||||
12/19/1993,2,3,24711.8283594576
|
||||
12/20/1993,2,3,25220.3427777778
|
||||
12/21/1993,2,3,21299.8296588893
|
||||
12/22/1993,2,3,24558.3587014786
|
||||
12/23/1993,2,3,23404.4678690935
|
||||
12/24/1993,2,3,24519.5227045964
|
||||
12/25/1993,2,3,6076.15784748146
|
||||
12/26/1993,2,3,20548.8009208079
|
||||
12/27/1993,2,3,22098.7733644206
|
||||
12/28/1993,2,3,18530.2948533315
|
||||
12/29/1993,2,3,17424.0368221526
|
||||
12/30/1993,2,3,13561.0240666714
|
||||
12/31/1993,2,3,14412.7336461753
|
||||
12/1/1994,2,3,4776.15592443309
|
||||
12/2/1994,2,3,6097.4716580864
|
||||
12/3/1994,2,3,1841.96319704296
|
||||
12/4/1994,2,3,7596.16588713651
|
||||
12/5/1994,2,3,9964.52123481462
|
||||
12/6/1994,2,3,10194.2284902061
|
||||
12/7/1994,2,3,11697.2719761208
|
||||
12/8/1994,2,3,11110.8320601815
|
||||
12/9/1994,2,3,14412.7336461753
|
||||
12/10/1994,2,3,15457.6776586968
|
||||
12/11/1994,2,3,18228.698888237
|
||||
12/12/1994,2,3,5085.63123253426
|
||||
12/13/1994,2,3,19365.1101101009
|
||||
12/14/1994,2,3,23449.559123481
|
||||
12/15/1994,2,3,22139.4338954278
|
||||
12/16/1994,2,3,23437.1673527497
|
||||
12/17/1994,2,3,20532.7448953399
|
||||
12/18/1994,2,3,24558.3587014786
|
||||
12/19/1994,2,3,24278.8376035287
|
||||
12/20/1994,2,3,26385.0472222222
|
||||
12/21/1994,2,3,6782.15037119547
|
||||
12/22/1994,2,3,23789.3311012885
|
||||
12/23/1994,2,3,26532.409942721
|
||||
12/24/1994,2,3,23070.1991463486
|
||||
12/25/1994,2,3,22491.5968002992
|
||||
12/26/1994,2,3,18147.0064886706
|
||||
12/27/1994,2,3,19991.117797832
|
||||
12/28/1994,2,3,18205.6144509177
|
||||
12/29/1994,2,3,18228.698888237
|
||||
12/30/1994,2,3,4318.01126490145
|
||||
12/31/1994,2,3,13961.4091051982
|
||||
12/1/1993,2,4,3273.89470928179
|
||||
12/2/1993,2,4,4999.89213378782
|
||||
12/3/1993,2,4,4562.47578841731
|
||||
12/4/1993,2,4,5404.32832304854
|
||||
12/5/1993,2,4,5910.59008396781
|
||||
12/6/1993,2,4,7525.27296897519
|
||||
12/7/1993,2,4,2081.79932817616
|
||||
12/8/1993,2,4,8863.70843847369
|
||||
12/9/1993,2,4,11932.0265204496
|
||||
12/10/1993,2,4,10595.7196342155
|
||||
12/11/1993,2,4,14947.4295726512
|
||||
12/12/1993,2,4,12596.9234371817
|
||||
12/13/1993,2,4,13777.3996252764
|
||||
12/14/1993,2,4,13909.4220748321
|
||||
12/15/1993,2,4,16343.0988035769
|
||||
12/16/1993,2,4,4171.18447351753
|
||||
12/17/1993,2,4,16380.0751562146
|
||||
12/18/1993,2,4,20331.395453389
|
||||
12/19/1993,2,4,16642.3289430483
|
||||
12/20/1993,2,4,21635.5888888889
|
||||
12/21/1993,2,4,16799.1395874036
|
||||
12/22/1993,2,4,16925.0326766544
|
||||
12/23/1993,2,4,15738.0565925537
|
||||
12/24/1993,2,4,17030.1799877925
|
||||
12/25/1993,2,4,4002.89838554308
|
||||
12/26/1993,2,4,14476.843289092
|
||||
12/27/1993,2,4,16550.264064615
|
||||
12/28/1993,2,4,12479.338148316
|
||||
12/29/1993,2,4,14947.4295726512
|
||||
12/30/1993,2,4,10695.5567200546
|
||||
12/31/1993,2,4,9932.9108629213
|
||||
12/1/1994,2,4,3211.66935535629
|
||||
12/2/1994,2,4,4235.03512114489
|
||||
12/3/1994,2,4,1213.46279881935
|
||||
12/4/1994,2,4,5351.57762099229
|
||||
12/5/1994,2,4,7462.65211168517
|
||||
12/6/1994,2,4,6865.36428574999
|
||||
12/7/1994,2,4,10034.6521784732
|
||||
12/8/1994,2,4,8763.09443316555
|
||||
12/9/1994,2,4,9932.9108629213
|
||||
12/10/1994,2,4,10394.3318490601
|
||||
12/11/1994,2,4,12660.8509778111
|
||||
12/12/1994,2,4,3350.35158091176
|
||||
12/13/1994,2,4,13642.9208409947
|
||||
12/14/1994,2,4,17561.8976353346
|
||||
12/15/1994,2,4,14909.9344711
|
||||
12/16/1994,2,4,20105.8693782298
|
||||
12/17/1994,2,4,16194.1411332089
|
||||
12/18/1994,2,4,16925.0326766544
|
||||
12/19/1994,2,4,16326.0161411461
|
||||
12/20/1994,2,4,18325.8911111111
|
||||
12/21/1994,2,4,4467.99761507539
|
||||
12/22/1994,2,4,16759.8303975459
|
||||
12/23/1994,2,4,19870.7133460012
|
||||
12/24/1994,2,4,15536.7639087791
|
||||
12/25/1994,2,4,19294.6997633472
|
||||
12/26/1994,2,4,14312.5132913665
|
||||
12/27/1994,2,4,13777.3996252764
|
||||
12/28/1994,2,4,12242.14932522
|
||||
12/29/1994,2,4,12660.8509778111
|
||||
12/30/1994,2,4,2844.6529459723
|
||||
12/31/1994,2,4,9835.95745998931
|
||||
12/1/1993,3,1,4667.97061585492
|
||||
12/2/1993,3,1,4400.80136967009
|
||||
12/3/1993,3,1,6254.58651474564
|
||||
12/4/1993,3,1,9041.1301795009
|
||||
12/5/1993,3,1,8324.81086881028
|
||||
12/6/1993,3,1,11149.275730927
|
||||
12/7/1993,3,1,6954.28410434681
|
||||
12/8/1993,3,1,13406.6306468606
|
||||
12/9/1993,3,1,15449.7182670744
|
||||
12/10/1993,3,1,15107.5438578187
|
||||
12/11/1993,3,1,13156.4175338591
|
||||
12/12/1993,3,1,17268.8143699302
|
||||
12/13/1993,3,1,23048.7964648427
|
||||
12/14/1993,3,1,19590.8202772369
|
||||
12/15/1993,3,1,24213.5688114016
|
||||
12/16/1993,3,1,13933.9087528164
|
||||
12/17/1993,3,1,24775.3656510165
|
||||
12/18/1993,3,1,26325.3129041404
|
||||
12/19/1993,3,1,23728.8945992352
|
||||
12/20/1993,3,1,19043.1966666667
|
||||
12/21/1993,3,1,23029.5297543163
|
||||
12/22/1993,3,1,28314.6053635063
|
||||
12/23/1993,3,1,22166.3730210318
|
||||
12/24/1993,3,1,25231.5328911013
|
||||
12/25/1993,3,1,13371.7463720606
|
||||
12/26/1993,3,1,21896.6691263098
|
||||
12/27/1993,3,1,21429.4626822831
|
||||
12/28/1993,3,1,17793.2367881299
|
||||
12/29/1993,3,1,13156.4175338591
|
||||
12/30/1993,3,1,14662.2772221124
|
||||
12/31/1993,3,1,16617.1880768324
|
||||
12/1/1994,3,1,4523.49758258766
|
||||
12/2/1994,3,1,6274.53309540667
|
||||
12/3/1994,3,1,4053.59197634035
|
||||
12/4/1994,3,1,8094.42515406148
|
||||
12/5/1994,3,1,9662.72346555088
|
||||
12/6/1994,3,1,9788.7444767737
|
||||
12/7/1994,3,1,8832.29275143037
|
||||
12/8/1994,3,1,12013.1119179337
|
||||
12/9/1994,3,1,16617.1880768324
|
||||
12/10/1994,3,1,14639.9675027012
|
||||
12/11/1994,3,1,18758.0329805651
|
||||
12/12/1994,3,1,11191.9032866247
|
||||
12/13/1994,3,1,20635.3358675083
|
||||
12/14/1994,3,1,22739.3368792894
|
||||
12/15/1994,3,1,21258.8192888724
|
||||
12/16/1994,3,1,17696.7692763182
|
||||
12/17/1994,3,1,22200.1521644878
|
||||
12/18/1994,3,1,28314.6053635063
|
||||
12/19/1994,3,1,22994.4886526368
|
||||
12/20/1994,3,1,27151.2294444445
|
||||
12/21/1994,3,1,14925.4178211306
|
||||
12/22/1994,3,1,25349.7570913575
|
||||
12/23/1994,3,1,25728.8166796621
|
||||
12/24/1994,3,1,22152.5625689919
|
||||
12/25/1994,3,1,16982.7946031275
|
||||
12/26/1994,3,1,19620.6745582209
|
||||
12/27/1994,3,1,23048.7964648427
|
||||
12/28/1994,3,1,17242.5386149897
|
||||
12/29/1994,3,1,18758.0329805651
|
||||
12/30/1994,3,1,9502.60887147548
|
||||
12/31/1994,3,1,14877.1870870582
|
||||
12/1/1993,3,2,54883.8275775799
|
||||
12/2/1993,3,2,40691.2741296223
|
||||
12/3/1993,3,2,37181.9246359459
|
||||
12/4/1993,3,2,41728.9414114069
|
||||
12/5/1993,3,2,29721.3539180169
|
||||
12/6/1993,3,2,32872.5841121523
|
||||
12/7/1993,3,2,20432.0184525586
|
||||
12/8/1993,3,2,32484.259047937
|
||||
12/9/1993,3,2,29320.3750633584
|
||||
12/10/1993,3,2,31226.5228736733
|
||||
12/11/1993,3,2,26236.7174608899
|
||||
12/12/1993,3,2,27421.8700920779
|
||||
12/13/1993,3,2,32990.0246015959
|
||||
12/14/1993,3,2,27951.3128862491
|
||||
12/15/1993,3,2,31195.8573221294
|
||||
12/16/1993,3,2,20614.2476099192
|
||||
12/17/1993,3,2,36121.9674021267
|
||||
12/18/1993,3,2,32293.5313945289
|
||||
12/19/1993,3,2,34380.5884425745
|
||||
12/20/1993,3,2,28736.2163888889
|
||||
12/21/1993,3,2,29835.7230145688
|
||||
12/22/1993,3,2,34915.2224200588
|
||||
12/23/1993,3,2,29303.7535779391
|
||||
12/24/1993,3,2,31605.8800864462
|
||||
12/25/1993,3,2,20343.4598876595
|
||||
12/26/1993,3,2,34395.3204304452
|
||||
12/27/1993,3,2,30154.373193423
|
||||
12/28/1993,3,2,31631.5770137841
|
||||
12/29/1993,3,2,26236.7174608899
|
||||
12/30/1993,3,2,27053.5345966038
|
||||
12/31/1993,3,2,32740.0770439449
|
||||
12/1/1994,3,2,44151.7950742307
|
||||
12/2/1994,3,2,46761.0293934451
|
||||
12/3/1994,3,2,27067.7134925747
|
||||
12/4/1994,3,2,38685.0792405643
|
||||
12/5/1994,3,2,33587.3029404444
|
||||
12/6/1994,3,2,34162.9441834679
|
||||
12/7/1994,3,2,27519.1219394336
|
||||
12/8/1994,3,2,27565.0405801085
|
||||
12/9/1994,3,2,32740.0770439449
|
||||
12/10/1994,3,2,26395.9396083876
|
||||
12/11/1994,3,2,29790.1588276339
|
||||
12/12/1994,3,2,19557.116185562
|
||||
12/13/1994,3,2,33750.5926978214
|
||||
12/14/1994,3,2,30639.4103405376
|
||||
12/15/1994,3,2,33016.2334762234
|
||||
12/16/1994,3,2,27949.0375532789
|
||||
12/17/1994,3,2,29398.5426736721
|
||||
12/18/1994,3,2,34915.2224200588
|
||||
12/19/1994,3,2,29788.8999252072
|
||||
12/20/1994,3,2,32466.4532777778
|
||||
12/21/1994,3,2,21142.8031890517
|
||||
12/22/1994,3,2,36501.0624899872
|
||||
12/23/1994,3,2,31990.7815294865
|
||||
12/24/1994,3,2,33480.7635072013
|
||||
12/25/1994,3,2,27571.789865819
|
||||
12/26/1994,3,2,28208.4998617551
|
||||
12/27/1994,3,2,32990.0246015959
|
||||
12/28/1994,3,2,26993.3673933312
|
||||
12/29/1994,3,2,29790.1588276339
|
||||
12/30/1994,3,2,19370.4973023386
|
||||
12/31/1994,3,2,32248.693485814
|
||||
12/1/1993,3,3,6555.18860703642
|
||||
12/2/1993,3,3,6722.46812476478
|
||||
12/3/1993,3,3,8901.79547713346
|
||||
12/4/1993,3,3,13449.4474984839
|
||||
12/5/1993,3,3,11926.5046475228
|
||||
12/6/1993,3,3,15045.6308516288
|
||||
12/7/1993,3,3,8932.85014900317
|
||||
12/8/1993,3,3,19280.5444199121
|
||||
12/9/1993,3,3,17534.2858951909
|
||||
12/10/1993,3,3,21215.386198171
|
||||
12/11/1993,3,3,20097.1573307101
|
||||
12/12/1993,3,3,24577.716415192
|
||||
12/13/1993,3,3,34287.0384346413
|
||||
12/14/1993,3,3,28066.7047897319
|
||||
12/15/1993,3,3,32675.523211459
|
||||
12/16/1993,3,3,17898.2504900817
|
||||
12/17/1993,3,3,35630.3198422079
|
||||
12/18/1993,3,3,29877.2802689409
|
||||
12/19/1993,3,3,33322.2704971948
|
||||
12/20/1993,3,3,29089.5388888889
|
||||
12/21/1993,3,3,32776.6133419325
|
||||
12/22/1993,3,3,42120.3755190028
|
||||
12/23/1993,3,3,31756.5594005911
|
||||
12/24/1993,3,3,34049.236816989
|
||||
12/25/1993,3,3,17176.1470742089
|
||||
12/26/1993,3,3,31490.365689816
|
||||
12/27/1993,3,3,24320.8528955674
|
||||
12/28/1993,3,3,24986.8803114753
|
||||
12/29/1993,3,3,20097.1573307101
|
||||
12/30/1993,3,3,20867.9810811739
|
||||
12/31/1993,3,3,24719.4757928071
|
||||
12/1/1994,3,3,6480.56944379565
|
||||
12/2/1994,3,3,8467.3041548294
|
||||
12/3/1994,3,3,5206.88098825537
|
||||
12/4/1994,3,3,11640.8759103901
|
||||
12/5/1994,3,3,10966.4754296664
|
||||
12/6/1994,3,3,13746.2446857296
|
||||
12/7/1994,3,3,13491.8169448154
|
||||
12/8/1994,3,3,17097.5755288132
|
||||
12/9/1994,3,3,24719.4757928071
|
||||
12/10/1994,3,3,20973.8867599644
|
||||
12/11/1994,3,3,25313.4325977241
|
||||
12/12/1994,3,3,14376.1159943213
|
||||
12/13/1994,3,3,29676.3982161667
|
||||
12/14/1994,3,3,25807.4630887119
|
||||
12/15/1994,3,3,29853.5662431414
|
||||
12/16/1994,3,3,27032.796388237
|
||||
12/17/1994,3,3,31596.2076251734
|
||||
12/18/1994,3,3,42120.3755190028
|
||||
12/19/1994,3,3,32942.9557145333
|
||||
12/20/1994,3,3,36639.8127777778
|
||||
12/21/1994,3,3,19171.8541846866
|
||||
12/22/1994,3,3,36456.372261464
|
||||
12/23/1994,3,3,29200.3012357572
|
||||
12/24/1994,3,3,31108.6417887234
|
||||
12/25/1994,3,3,25942.160483719
|
||||
12/26/1994,3,3,27924.9845899336
|
||||
12/27/1994,3,3,34287.0384346413
|
||||
12/28/1994,3,3,24702.4491207636
|
||||
12/29/1994,3,3,25313.4325977241
|
||||
12/30/1994,3,3,12206.1997755341
|
||||
12/31/1994,3,3,21395.4030681481
|
||||
12/1/1993,3,4,4810.30550623622
|
||||
12/2/1993,3,4,5183.42900175275
|
||||
12/3/1993,3,4,6065.2281184752
|
||||
12/4/1993,3,4,8248.05549964066
|
||||
12/5/1993,3,4,8771.76029417921
|
||||
12/6/1993,3,4,10527.6976489436
|
||||
12/7/1993,3,4,7143.76079255273
|
||||
12/8/1993,3,4,13780.4254035822
|
||||
12/9/1993,3,4,12280.4732796257
|
||||
12/10/1993,3,4,15568.2002706139
|
||||
12/11/1993,3,4,15496.1222913104
|
||||
12/12/1993,3,4,16745.9988349828
|
||||
12/13/1993,3,4,21026.9898417102
|
||||
12/14/1993,3,4,20642.6286610433
|
||||
12/15/1993,3,4,22863.6494065012
|
||||
12/16/1993,3,4,14313.5525586536
|
||||
12/17/1993,3,4,25466.1359138923
|
||||
12/18/1993,3,4,20925.1260190327
|
||||
12/19/1993,3,4,24452.4316326904
|
||||
12/20/1993,3,4,22429.7916666667
|
||||
12/21/1993,3,4,22332.3078339129
|
||||
12/22/1993,3,4,25830.8897064808
|
||||
12/23/1993,3,4,23356.4598398666
|
||||
12/24/1993,3,4,23824.8614445923
|
||||
12/25/1993,3,4,13736.0734803713
|
||||
12/26/1993,3,4,22507.1774877823
|
||||
12/27/1993,3,4,17033.5755848283
|
||||
12/28/1993,3,4,18335.7848494148
|
||||
12/29/1993,3,4,15496.1222913104
|
||||
12/30/1993,3,4,14218.3749283467
|
||||
12/31/1993,3,4,15159.5527090671
|
||||
12/1/1994,3,4,4766.35891326006
|
||||
12/2/1994,3,4,5924.72452120795
|
||||
12/3/1994,3,4,4164.03629691893
|
||||
12/4/1994,3,4,8320.10853126202
|
||||
12/5/1994,3,4,7680.58130742733
|
||||
12/6/1994,3,4,10087.2210497281
|
||||
12/7/1994,3,4,10403.0058514472
|
||||
12/8/1994,3,4,11649.4134381646
|
||||
12/9/1994,3,4,15159.5527090671
|
||||
12/10/1994,3,4,15425.9703519992
|
||||
12/11/1994,3,4,17712.2626145585
|
||||
12/12/1994,3,4,11496.838307635
|
||||
12/13/1994,3,4,21210.6765741809
|
||||
12/14/1994,3,4,18074.7515336667
|
||||
12/15/1994,3,4,21907.0392461361
|
||||
12/16/1994,3,4,20843.9189590308
|
||||
12/17/1994,3,4,21528.0397553116
|
||||
12/18/1994,3,4,25830.8897064808
|
||||
12/19/1994,3,4,24229.0360377856
|
||||
12/20/1994,3,4,25637.5338888889
|
||||
12/21/1994,3,4,15332.0763206115
|
||||
12/22/1994,3,4,26056.5421542499
|
||||
12/23/1994,3,4,20450.9907746564
|
||||
12/24/1994,3,4,22828.0343798496
|
||||
12/25/1994,3,4,20002.9727956707
|
||||
12/26/1994,3,4,19026.6561591901
|
||||
12/27/1994,3,4,21026.9898417102
|
||||
12/28/1994,3,4,18168.2704841357
|
||||
12/29/1994,3,4,17712.2626145585
|
||||
12/30/1994,3,4,9761.517312843
|
||||
12/31/1994,3,4,15291.9829201344
|
||||
12/1/1993,1,1,2671.61628093146
|
||||
12/2/1993,1,1,3208.75697361291
|
||||
12/3/1993,1,1,1001.26685807617
|
||||
12/4/1993,1,1,4419.53156751631
|
||||
12/5/1993,1,1,4194.39689168458
|
||||
12/6/1993,1,1,5437.00484035859
|
||||
12/7/1993,1,1,7258.90376546653
|
||||
12/8/1993,1,1,6722.57336808686
|
||||
12/9/1993,1,1,8183.58170541359
|
||||
12/10/1993,1,1,8646.48976117053
|
||||
12/11/1993,1,1,9592.74072228767
|
||||
12/12/1993,1,1,2764.48194714656
|
||||
12/13/1993,1,1,11266.8307553618
|
||||
12/14/1993,1,1,9870.69579973978
|
||||
12/15/1993,1,1,11807.8782879828
|
||||
12/16/1993,1,1,14544.2580711169
|
||||
12/17/1993,1,1,12423.2715659351
|
||||
12/18/1993,1,1,13944.289814704
|
||||
12/19/1993,1,1,13580.7412592748
|
||||
12/20/1993,1,1,13884.9688888889
|
||||
12/21/1993,1,1,3686.68733667899
|
||||
12/22/1993,1,1,13840.8904353029
|
||||
12/23/1993,1,1,11168.3697761441
|
||||
12/24/1993,1,1,12304.2939980442
|
||||
12/25/1993,1,1,13957.4711982709
|
||||
12/26/1993,1,1,10979.7881806202
|
||||
12/27/1993,1,1,11351.0004345719
|
||||
12/28/1993,1,1,10183.5904733797
|
||||
12/29/1993,1,1,9592.74072228767
|
||||
12/30/1993,1,1,2347.21387446079
|
||||
12/31/1993,1,1,8122.89899723252
|
||||
12/1/1994,1,1,2279.13216275386
|
||||
12/2/1994,1,1,3059.81012883963
|
||||
12/3/1994,1,1,4231.15213862629
|
||||
12/4/1994,1,1,4058.83986842052
|
||||
12/5/1994,1,1,5118.26077409286
|
||||
12/6/1994,1,1,5602.38511896393
|
||||
12/7/1994,1,1,6439.89096042014
|
||||
12/8/1994,1,1,1923.12166398677
|
||||
12/9/1994,1,1,8122.89899723252
|
||||
12/10/1994,1,1,7376.24375560962
|
||||
12/11/1994,1,1,9147.45662160238
|
||||
12/12/1994,1,1,11682.1440842828
|
||||
12/13/1994,1,1,10347.3097005864
|
||||
12/14/1994,1,1,12044.8294306553
|
||||
12/15/1994,1,1,12167.0448251375
|
||||
12/16/1994,1,1,12903.2480804881
|
||||
12/17/1994,1,1,3553.91624276759
|
||||
12/18/1994,1,1,13840.8904353029
|
||||
12/19/1994,1,1,11585.6099616446
|
||||
12/20/1994,1,1,13240.4444444445
|
||||
12/21/1994,1,1,15579.1983757532
|
||||
12/22/1994,1,1,12711.2923745488
|
||||
12/23/1994,1,1,13628.3309405288
|
||||
12/24/1994,1,1,12678.5602768479
|
||||
12/25/1994,1,1,12382.667618172
|
||||
12/26/1994,1,1,3140.98000274345
|
||||
12/27/1994,1,1,11266.8307553618
|
||||
12/28/1994,1,1,8687.53074528403
|
||||
12/29/1994,1,1,9147.45662160238
|
||||
12/30/1994,1,1,9918.85322542311
|
||||
12/31/1994,1,1,7459.96397886319
|
||||
12/1/1993,1,2,48103.8178849899
|
||||
12/2/1993,1,2,47134.6202322882
|
||||
12/3/1993,1,2,11314.5072939983
|
||||
12/4/1993,1,2,43907.0489058693
|
||||
12/5/1993,1,2,31164.9599776596
|
||||
12/6/1993,1,2,32307.9761435001
|
||||
12/7/1993,1,2,47351.3235598289
|
||||
12/8/1993,1,2,26181.0521345837
|
||||
12/9/1993,1,2,24482.2848021511
|
||||
12/10/1993,1,2,25071.7007780318
|
||||
12/11/1993,1,2,26511.5540499638
|
||||
12/12/1993,1,2,8145.91368268967
|
||||
12/13/1993,1,2,28942.5738938842
|
||||
12/14/1993,1,2,24915.0316619362
|
||||
12/15/1993,1,2,26766.6406699134
|
||||
12/16/1993,1,2,39376.1438988674
|
||||
12/17/1993,1,2,24449.2344059694
|
||||
12/18/1993,1,2,25941.9163420546
|
||||
12/19/1993,1,2,26295.0161323648
|
||||
12/20/1993,1,2,27295.1796666667
|
||||
12/21/1993,1,2,8796.42754329264
|
||||
12/22/1993,1,2,29209.0007949798
|
||||
12/23/1993,1,2,25512.5142326982
|
||||
12/24/1993,1,2,26918.6188225361
|
||||
12/25/1993,1,2,39319.1355487041
|
||||
12/26/1993,1,2,24081.3904687206
|
||||
12/27/1993,1,2,24569.8625963245
|
||||
12/28/1993,1,2,24937.5720250735
|
||||
12/29/1993,1,2,26511.5540499638
|
||||
12/30/1993,1,2,8073.7578643383
|
||||
12/31/1993,1,2,30993.5243473814
|
||||
12/1/1994,1,2,49226.337170557
|
||||
12/2/1994,1,2,48695.3008113967
|
||||
12/3/1994,1,2,68992.5416080156
|
||||
12/4/1994,1,2,34898.9396338997
|
||||
12/5/1994,1,2,28928.1155640654
|
||||
12/6/1994,1,2,28672.7523618292
|
||||
12/7/1994,1,2,29674.9433587603
|
||||
12/8/1994,1,2,8272.33029549761
|
||||
12/9/1994,1,2,30993.5243473814
|
||||
12/10/1994,1,2,24970.8790186492
|
||||
12/11/1994,1,2,26806.9598126744
|
||||
12/12/1994,1,2,39818.0619492816
|
||||
12/13/1994,1,2,24032.1519117364
|
||||
12/14/1994,1,2,24859.011831497
|
||||
12/15/1994,1,2,25533.5163395611
|
||||
12/16/1994,1,2,26857.5713673137
|
||||
12/17/1994,1,2,8675.25349146646
|
||||
12/18/1994,1,2,29209.0007949798
|
||||
12/19/1994,1,2,25762.6253480646
|
||||
12/20/1994,1,2,27299.5265555556
|
||||
12/21/1994,1,2,39615.8367010034
|
||||
12/22/1994,1,2,24557.2404601411
|
||||
12/23/1994,1,2,25737.1396536926
|
||||
12/24/1994,1,2,25783.0579614034
|
||||
12/25/1994,1,2,26673.6863230636
|
||||
12/26/1994,1,2,8350.45747620357
|
||||
12/27/1994,1,2,28942.5738938842
|
||||
12/28/1994,1,2,24687.5812560878
|
||||
12/29/1994,1,2,26806.9598126744
|
||||
12/30/1994,1,2,41359.1535863483
|
||||
12/31/1994,1,2,25250.2113527791
|
||||
12/1/1993,1,3,5448.24775322847
|
||||
12/2/1993,1,3,7060.1616338852
|
||||
12/3/1993,1,3,2402.07201712994
|
||||
12/4/1993,1,3,9895.42698941394
|
||||
12/5/1993,1,3,9907.14825371245
|
||||
12/6/1993,1,3,10583.4891827438
|
||||
12/7/1993,1,3,19739.4914293287
|
||||
12/8/1993,1,3,14968.7634607653
|
||||
12/9/1993,1,3,20496.0585392313
|
||||
12/10/1993,1,3,17632.8534718265
|
||||
12/11/1993,1,3,21106.709098959
|
||||
12/12/1993,1,3,6632.08281942003
|
||||
12/13/1993,1,3,25226.6783116161
|
||||
12/14/1993,1,3,23314.5429916728
|
||||
12/15/1993,1,3,22984.8153167691
|
||||
12/16/1993,1,3,39550.9111040412
|
||||
12/17/1993,1,3,27662.1768625272
|
||||
12/18/1993,1,3,34923.9478040668
|
||||
12/19/1993,1,3,27695.3107304856
|
||||
12/20/1993,1,3,30550.81
|
||||
12/21/1993,1,3,8844.48378163558
|
||||
12/22/1993,1,3,30990.0537372986
|
||||
12/23/1993,1,3,26379.6436011811
|
||||
12/24/1993,1,3,23951.121298066
|
||||
12/25/1993,1,3,37955.2329105252
|
||||
12/26/1993,1,3,24448.0562912446
|
||||
12/27/1993,1,3,28428.9664062281
|
||||
12/28/1993,1,3,20767.4748474903
|
||||
12/29/1993,1,3,21106.709098959
|
||||
12/30/1993,1,3,5631.04303371688
|
||||
12/31/1993,1,3,18187.3469487785
|
||||
12/1/1994,1,3,5383.3008199513
|
||||
12/2/1994,1,3,5956.12259886978
|
||||
12/3/1994,1,3,11505.9785988541
|
||||
12/4/1994,1,3,9037.58287026334
|
||||
12/5/1994,1,3,12818.858077199
|
||||
12/6/1994,1,3,11424.9873213357
|
||||
12/7/1994,1,3,14169.5589472982
|
||||
12/8/1994,1,3,4613.63191774352
|
||||
12/9/1994,1,3,18187.3469487785
|
||||
12/10/1994,1,3,17422.6574951031
|
||||
12/11/1994,1,3,17806.1287504688
|
||||
12/12/1994,1,3,31767.8247953825
|
||||
12/13/1994,1,3,23039.7532139448
|
||||
12/14/1994,1,3,30166.6847100037
|
||||
12/15/1994,1,3,24812.3486539293
|
||||
12/16/1994,1,3,28390.7500005497
|
||||
12/17/1994,1,3,8525.96157469757
|
||||
12/18/1994,1,3,30990.0537372986
|
||||
12/19/1994,1,3,27365.1632079106
|
||||
12/20/1994,1,3,25773.4
|
||||
12/21/1994,1,3,42365.2748059578
|
||||
12/22/1994,1,3,28303.4960597832
|
||||
12/23/1994,1,3,34132.6180643269
|
||||
12/24/1994,1,3,25855.4860724329
|
||||
12/25/1994,1,3,27245.3275713604
|
||||
12/26/1994,1,3,7535.31399756047
|
||||
12/27/1994,1,3,25226.6783116161
|
||||
12/28/1994,1,3,20519.9119861179
|
||||
12/29/1994,1,3,17806.1287504688
|
||||
12/30/1994,1,3,26972.8218692571
|
||||
12/31/1994,1,3,16610.6682830017
|
||||
12/1/1993,1,4,2077.92752124127
|
||||
12/2/1993,1,4,3047.81844320202
|
||||
12/3/1993,1,4,1368.87450054325
|
||||
12/4/1993,1,4,4683.12849945983
|
||||
12/5/1993,1,4,3569.506816359
|
||||
12/6/1993,1,4,5090.40992591903
|
||||
12/7/1993,1,4,8531.68292537155
|
||||
12/8/1993,1,4,5832.71488206811
|
||||
12/9/1993,1,4,7188.01811868426
|
||||
12/10/1993,1,4,6725.05971950543
|
||||
12/11/1993,1,4,9111.60687290196
|
||||
12/12/1993,1,4,3779.4408295228
|
||||
12/13/1993,1,4,11938.8255074005
|
||||
12/14/1993,1,4,8400.13876827631
|
||||
12/15/1993,1,4,11055.1567648094
|
||||
12/16/1993,1,4,17094.4542394785
|
||||
12/17/1993,1,4,10778.8189104175
|
||||
12/18/1993,1,4,12247.9143544167
|
||||
12/19/1993,1,4,10562.8178054317
|
||||
12/20/1993,1,4,13188.5538888889
|
||||
12/21/1993,1,4,5040.22703433141
|
||||
12/22/1993,1,4,14666.4114658412
|
||||
12/23/1993,1,4,9504.48254493943
|
||||
12/24/1993,1,4,11519.9272647584
|
||||
12/25/1993,1,4,16404.7799159657
|
||||
12/26/1993,1,4,9526.40758479131
|
||||
12/27/1993,1,4,9970.10841046799
|
||||
12/28/1993,1,4,7920.58465159088
|
||||
12/29/1993,1,4,9111.60687290196
|
||||
12/30/1993,1,4,3208.97590303172
|
||||
12/31/1993,1,4,8607.37822799428
|
||||
12/1/1994,1,4,1939.58225709669
|
||||
12/2/1994,1,4,2864.75519309002
|
||||
12/3/1994,1,4,4973.04408793842
|
||||
12/4/1994,1,4,3521.57639764146
|
||||
12/5/1994,1,4,4495.60504247096
|
||||
12/6/1994,1,4,4357.41850593489
|
||||
12/7/1994,1,4,6116.89155731814
|
||||
12/8/1994,1,4,2629.1814075739
|
||||
12/9/1994,1,4,8607.37822799428
|
||||
12/10/1994,1,4,6277.31543883522
|
||||
12/11/1994,1,4,8564.33005868861
|
||||
12/12/1994,1,4,13730.4960137049
|
||||
12/13/1994,1,4,8977.64947668444
|
||||
12/14/1994,1,4,10579.530491733
|
||||
12/15/1994,1,4,9463.27415159882
|
||||
12/16/1994,1,4,12256.0723047351
|
||||
12/17/1994,1,4,4858.71002575514
|
||||
12/18/1994,1,4,14666.4114658412
|
||||
12/19/1994,1,4,9859.56140959233
|
||||
12/20/1994,1,4,12396.4005555556
|
||||
12/21/1994,1,4,18310.8614011013
|
||||
12/22/1994,1,4,11028.7147709403
|
||||
12/23/1994,1,4,11970.3930692283
|
||||
12/24/1994,1,4,9861.12022037587
|
||||
12/25/1994,1,4,11761.6020948485
|
||||
12/26/1994,1,4,4294.16733190693
|
||||
12/27/1994,1,4,11938.8255074005
|
||||
12/28/1994,1,4,7393.24413340513
|
||||
12/29/1994,1,4,8564.33005868861
|
||||
12/30/1994,1,4,11658.0290133065
|
||||
12/31/1994,1,4,6472.49803561314
|
||||
12/1/1993,2,1,3479.69602075267
|
||||
12/2/1993,2,1,5401.65539245828
|
||||
12/3/1993,2,1,4377.88976382568
|
||||
12/4/1993,2,1,6934.90857063362
|
||||
12/5/1993,2,1,9559.79469893487
|
||||
12/6/1993,2,1,7049.67648677681
|
||||
12/7/1993,2,1,1806.8220931739
|
||||
12/8/1993,2,1,8376.89619005496
|
||||
496
testdata/data/mstr/eatwh1/csv/COST_MARKET_DIV.TXT
vendored
Normal file
496
testdata/data/mstr/eatwh1/csv/COST_MARKET_DIV.TXT
vendored
Normal file
@@ -0,0 +1,496 @@
|
||||
12/9/1993,1,1,20418.8232951146
|
||||
12/10/1993,1,1,19908.2702160096
|
||||
12/11/1993,1,1,25741.2618091483
|
||||
12/12/1993,1,1,14851.7662920491
|
||||
12/13/1993,1,1,28946.1797939631
|
||||
12/14/1993,1,1,32367.8098826307
|
||||
12/15/1993,1,1,27118.0949182157
|
||||
12/16/1993,1,1,18164.4860918734
|
||||
12/17/1993,1,1,27903.7208746373
|
||||
12/18/1993,1,1,34792.3439823368
|
||||
12/19/1993,1,1,31269.2288074544
|
||||
12/20/1993,1,1,37259.0722222222
|
||||
12/21/1993,1,1,19806.1769847074
|
||||
12/22/1993,1,1,35559.3255768184
|
||||
12/23/1993,1,1,36623.1192762198
|
||||
12/24/1993,1,1,28258.1683519028
|
||||
12/25/1993,1,1,17431.641422961
|
||||
12/26/1993,1,1,24661.5348484178
|
||||
12/27/1993,1,1,28321.8376060168
|
||||
12/28/1993,1,1,23447.3961703712
|
||||
12/29/1993,1,1,25741.2618091483
|
||||
12/30/1993,1,1,12610.0559046619
|
||||
12/31/1993,1,1,20868.9470825857
|
||||
12/1/1994,1,1,7473.68959981024
|
||||
12/2/1994,1,1,7027.1914633502
|
||||
12/3/1994,1,1,5284.33308862318
|
||||
12/4/1994,1,1,9116.49835247974
|
||||
12/5/1994,1,1,12770.5528076275
|
||||
12/6/1994,1,1,12899.3151999507
|
||||
12/7/1994,1,1,17280.871445779
|
||||
12/8/1994,1,1,10331.6838564234
|
||||
12/9/1994,1,1,20868.9470825857
|
||||
12/10/1994,1,1,24188.0471623701
|
||||
12/11/1994,1,1,21008.143112157
|
||||
12/12/1994,1,1,14589.9600175288
|
||||
12/13/1994,1,1,23240.9345763871
|
||||
12/14/1994,1,1,30053.0076704252
|
||||
12/15/1994,1,1,28014.2373147674
|
||||
12/16/1994,1,1,34624.7122322956
|
||||
12/17/1994,1,1,19092.8841165274
|
||||
12/18/1994,1,1,35559.3255768184
|
||||
12/19/1994,1,1,37991.3258620241
|
||||
12/20/1994,1,1,30408.1411111111
|
||||
12/21/1994,1,1,19457.0345792258
|
||||
12/22/1994,1,1,28550.6400220607
|
||||
12/23/1994,1,1,34003.9962083983
|
||||
12/24/1994,1,1,29191.9855239942
|
||||
12/25/1994,1,1,33227.7811193687
|
||||
12/26/1994,1,1,16874.4458530089
|
||||
12/27/1994,1,1,28946.1797939631
|
||||
12/28/1994,1,1,28487.9961066449
|
||||
12/29/1994,1,1,21008.143112157
|
||||
12/30/1994,1,1,12387.7664009778
|
||||
12/31/1994,1,1,16755.7113676746
|
||||
12/1/1993,1,2,85524.3028536615
|
||||
12/2/1993,1,2,89346.3811545645
|
||||
12/3/1993,1,2,39504.7747145722
|
||||
12/4/1993,1,2,71900.9671385318
|
||||
12/5/1993,1,2,55847.2524828039
|
||||
12/6/1993,1,2,56946.0459138027
|
||||
12/7/1993,1,2,51872.96613059
|
||||
12/8/1993,1,2,46393.6056003403
|
||||
12/9/1993,1,2,50233.5306798895
|
||||
12/10/1993,1,2,46222.8859291145
|
||||
12/11/1993,1,2,53308.8054534169
|
||||
12/12/1993,1,2,28229.2555525754
|
||||
12/13/1993,1,2,52861.422981991
|
||||
12/14/1993,1,2,47891.8828551754
|
||||
12/15/1993,1,2,50683.030868956
|
||||
12/16/1993,1,2,44630.5656728535
|
||||
12/17/1993,1,2,47566.9471600267
|
||||
12/18/1993,1,2,53474.0341198538
|
||||
12/19/1993,1,2,49503.1331421524
|
||||
12/20/1993,1,2,56456.8142222222
|
||||
12/21/1993,1,2,30410.7009862217
|
||||
12/22/1993,1,2,54964.4145432696
|
||||
12/23/1993,1,2,49568.52463077
|
||||
12/24/1993,1,2,51176.814561393
|
||||
12/25/1993,1,2,44466.584878746
|
||||
12/26/1993,1,2,45983.8766481245
|
||||
12/27/1993,1,2,50559.3871545616
|
||||
12/28/1993,1,2,46335.235816682
|
||||
12/29/1993,1,2,53308.8054534169
|
||||
12/30/1993,1,2,28020.012014484
|
||||
12/31/1993,1,2,54027.8036989362
|
||||
12/1/1994,1,2,86049.5236641589
|
||||
12/2/1994,1,2,83366.6134605567
|
||||
12/3/1994,1,2,74466.2366490495
|
||||
12/4/1994,1,2,58457.9273014098
|
||||
12/5/1994,1,2,59143.642184491
|
||||
12/6/1994,1,2,51888.3910466887
|
||||
12/7/1994,1,2,57984.0938588591
|
||||
12/8/1994,1,2,28759.2184518245
|
||||
12/9/1994,1,2,54027.8036989362
|
||||
12/10/1994,1,2,46746.4654244454
|
||||
12/11/1994,1,2,49474.3827045198
|
||||
12/12/1994,1,2,44600.0807024807
|
||||
12/13/1994,1,2,45468.7503287291
|
||||
12/14/1994,1,2,51180.4867172573
|
||||
12/15/1994,1,2,47837.7627658543
|
||||
12/16/1994,1,2,55253.9304553872
|
||||
12/17/1994,1,2,30000.3003842948
|
||||
12/18/1994,1,2,54964.4145432696
|
||||
12/19/1994,1,2,50207.6686294405
|
||||
12/20/1994,1,2,52266.6079444445
|
||||
12/21/1994,1,2,45068.4707873371
|
||||
12/22/1994,1,2,47938.0145407511
|
||||
12/23/1994,1,2,53042.3388642237
|
||||
12/24/1994,1,2,48394.459887802
|
||||
12/25/1994,1,2,54706.0903628413
|
||||
12/26/1994,1,2,28906.1868328355
|
||||
12/27/1994,1,2,52861.422981991
|
||||
12/28/1994,1,2,46910.5462474603
|
||||
12/29/1994,1,2,49474.3827045198
|
||||
12/30/1994,1,2,45937.1330879335
|
||||
12/31/1994,1,2,45418.1430445643
|
||||
12/1/1993,1,3,10309.5820291924
|
||||
12/2/1993,1,3,12888.4750721574
|
||||
12/3/1993,1,3,8186.88954367537
|
||||
12/4/1993,1,3,17737.1509041368
|
||||
12/5/1993,1,3,18696.9384602783
|
||||
12/6/1993,1,3,21418.1428125549
|
||||
12/7/1993,1,3,22899.537002922
|
||||
12/8/1993,1,3,27550.1374858277
|
||||
12/9/1993,1,3,36428.3209384418
|
||||
12/10/1993,1,3,33366.2046056558
|
||||
12/11/1993,1,3,38530.7459211115
|
||||
12/12/1993,1,3,22603.8724484095
|
||||
12/13/1993,1,3,45217.7961094481
|
||||
12/14/1993,1,3,43999.6015383612
|
||||
12/15/1993,1,3,46515.0999329628
|
||||
12/16/1993,1,3,45882.5170632611
|
||||
12/17/1993,1,3,50912.4736801035
|
||||
12/18/1993,1,3,62071.4844568185
|
||||
12/19/1993,1,3,52407.1390899433
|
||||
12/20/1993,1,3,55771.1527777778
|
||||
12/21/1993,1,3,30144.3134405249
|
||||
12/22/1993,1,3,55548.4124387771
|
||||
12/23/1993,1,3,49784.1114702746
|
||||
12/24/1993,1,3,48470.6440026624
|
||||
12/25/1993,1,3,44031.3907580067
|
||||
12/26/1993,1,3,44996.8572120525
|
||||
12/27/1993,1,3,50527.7397706487
|
||||
12/28/1993,1,3,39297.7697008218
|
||||
12/29/1993,1,3,38530.7459211115
|
||||
12/30/1993,1,3,19192.0671003883
|
||||
12/31/1993,1,3,32600.0805949539
|
||||
12/1/1994,1,3,10159.4567443844
|
||||
12/2/1994,1,3,12053.5942569562
|
||||
12/3/1994,1,3,13347.9417958971
|
||||
12/4/1994,1,3,16633.7487573999
|
||||
12/5/1994,1,3,22783.3793120136
|
||||
12/6/1994,1,3,21619.2158115417
|
||||
12/7/1994,1,3,25866.830923419
|
||||
12/8/1994,1,3,15724.463977925
|
||||
12/9/1994,1,3,32600.0805949539
|
||||
12/10/1994,1,3,32880.3351537998
|
||||
12/11/1994,1,3,36034.8276387058
|
||||
12/12/1994,1,3,36853.4560279168
|
||||
12/13/1994,1,3,42404.8633240457
|
||||
12/14/1994,1,3,53616.2438334847
|
||||
12/15/1994,1,3,46951.7825493571
|
||||
12/16/1994,1,3,51827.9173532995
|
||||
12/17/1994,1,3,29058.7064700374
|
||||
12/18/1994,1,3,55548.4124387771
|
||||
12/19/1994,1,3,51644.0008114393
|
||||
12/20/1994,1,3,52158.4472222222
|
||||
12/21/1994,1,3,49147.4251771532
|
||||
12/22/1994,1,3,52092.8271610717
|
||||
12/23/1994,1,3,60665.0280070479
|
||||
12/24/1994,1,3,48925.6852187816
|
||||
12/25/1994,1,3,49736.9243716597
|
||||
12/26/1994,1,3,25682.320486231
|
||||
12/27/1994,1,3,45217.7961094481
|
||||
12/28/1994,1,3,38725.5264370356
|
||||
12/29/1994,1,3,36034.8276387058
|
||||
12/30/1994,1,3,31290.8331341586
|
||||
12/31/1994,1,3,30572.0773881999
|
||||
12/1/1993,1,4,5351.82223052305
|
||||
12/2/1993,1,4,8047.71057698985
|
||||
12/3/1993,1,4,5931.35028896056
|
||||
12/4/1993,1,4,10087.4568225084
|
||||
12/5/1993,1,4,9480.0969003268
|
||||
12/6/1993,1,4,12615.6828948942
|
||||
12/7/1993,1,4,10613.4822535477
|
||||
12/8/1993,1,4,14696.4233205418
|
||||
12/9/1993,1,4,19120.0446391338
|
||||
12/10/1993,1,4,17320.779353721
|
||||
12/11/1993,1,4,24059.0364455531
|
||||
12/12/1993,1,4,16376.3642667045
|
||||
12/13/1993,1,4,25716.2251326769
|
||||
12/14/1993,1,4,22309.5608431084
|
||||
12/15/1993,1,4,27398.2555683863
|
||||
12/16/1993,1,4,21265.638712996
|
||||
12/17/1993,1,4,27158.8940666321
|
||||
12/18/1993,1,4,32579.3098078057
|
||||
12/19/1993,1,4,27205.1467484799
|
||||
12/20/1993,1,4,34824.1427777778
|
||||
12/21/1993,1,4,21839.366621735
|
||||
12/22/1993,1,4,31591.4441424956
|
||||
12/23/1993,1,4,25242.5391374931
|
||||
12/24/1993,1,4,28550.1072525509
|
||||
12/25/1993,1,4,20407.6783015088
|
||||
12/26/1993,1,4,24003.2508738833
|
||||
12/27/1993,1,4,26520.372475083
|
||||
12/28/1993,1,4,20399.9227999069
|
||||
12/29/1993,1,4,24059.0364455531
|
||||
12/30/1993,1,4,13904.5326230863
|
||||
12/31/1993,1,4,18540.2890909156
|
||||
12/1/1994,1,4,5151.25161245299
|
||||
12/2/1994,1,4,7099.79031423491
|
||||
12/3/1994,1,4,6186.50688675777
|
||||
12/4/1994,1,4,8873.15401863375
|
||||
12/5/1994,1,4,11958.2571541561
|
||||
12/6/1994,1,4,11222.7827916849
|
||||
12/7/1994,1,4,16151.5437357914
|
||||
12/8/1994,1,4,11392.2758407395
|
||||
12/9/1994,1,4,18540.2890909156
|
||||
12/10/1994,1,4,16671.6472878953
|
||||
12/11/1994,1,4,21225.1810364997
|
||||
12/12/1994,1,4,17080.8475946167
|
||||
12/13/1994,1,4,22620.5703176791
|
||||
12/14/1994,1,4,28141.4281270676
|
||||
12/15/1994,1,4,24373.2086226988
|
||||
12/16/1994,1,4,32361.9416829648
|
||||
12/17/1994,1,4,21052.851158964
|
||||
12/18/1994,1,4,31591.4441424956
|
||||
12/19/1994,1,4,26185.5775507384
|
||||
12/20/1994,1,4,30722.2916666667
|
||||
12/21/1994,1,4,22778.8590161767
|
||||
12/22/1994,1,4,27788.5451684862
|
||||
12/23/1994,1,4,31841.1064152295
|
||||
12/24/1994,1,4,25397.884129155
|
||||
12/25/1994,1,4,31056.3018581956
|
||||
12/26/1994,1,4,18606.6806232734
|
||||
12/27/1994,1,4,25716.2251326769
|
||||
12/28/1994,1,4,19635.3934586251
|
||||
12/29/1994,1,4,21225.1810364997
|
||||
12/30/1994,1,4,14502.6819592788
|
||||
12/31/1994,1,4,16308.4554956025
|
||||
12/1/1993,2,1,4667.97061585492
|
||||
12/2/1993,2,1,4400.80136967009
|
||||
12/3/1993,2,1,6254.58651474564
|
||||
12/4/1993,2,1,9041.1301795009
|
||||
12/5/1993,2,1,8324.81086881028
|
||||
12/6/1993,2,1,11149.275730927
|
||||
12/7/1993,2,1,6954.28410434681
|
||||
12/8/1993,2,1,13406.6306468606
|
||||
12/9/1993,2,1,15449.7182670744
|
||||
12/10/1993,2,1,15107.5438578187
|
||||
12/11/1993,2,1,13156.4175338591
|
||||
12/12/1993,2,1,17268.8143699302
|
||||
12/13/1993,2,1,23048.7964648427
|
||||
12/14/1993,2,1,19590.8202772369
|
||||
12/15/1993,2,1,24213.5688114016
|
||||
12/16/1993,2,1,13933.9087528164
|
||||
12/17/1993,2,1,24775.3656510165
|
||||
12/18/1993,2,1,26325.3129041404
|
||||
12/19/1993,2,1,23728.8945992352
|
||||
12/20/1993,2,1,19043.1966666667
|
||||
12/21/1993,2,1,23029.5297543163
|
||||
12/22/1993,2,1,28314.6053635063
|
||||
12/23/1993,2,1,22166.3730210318
|
||||
12/24/1993,2,1,25231.5328911013
|
||||
12/25/1993,2,1,13371.7463720606
|
||||
12/26/1993,2,1,21896.6691263098
|
||||
12/27/1993,2,1,21429.4626822831
|
||||
12/28/1993,2,1,17793.2367881299
|
||||
12/29/1993,2,1,13156.4175338591
|
||||
12/30/1993,2,1,14662.2772221124
|
||||
12/31/1993,2,1,16617.1880768324
|
||||
12/1/1994,2,1,4523.49758258766
|
||||
12/2/1994,2,1,6274.53309540667
|
||||
12/3/1994,2,1,4053.59197634035
|
||||
12/4/1994,2,1,8094.42515406148
|
||||
12/5/1994,2,1,9662.72346555088
|
||||
12/6/1994,2,1,9788.7444767737
|
||||
12/7/1994,2,1,8832.29275143037
|
||||
12/8/1994,2,1,12013.1119179337
|
||||
12/9/1994,2,1,16617.1880768324
|
||||
12/10/1994,2,1,14639.9675027012
|
||||
12/11/1994,2,1,18758.0329805651
|
||||
12/12/1994,2,1,11191.9032866247
|
||||
12/13/1994,2,1,20635.3358675083
|
||||
12/14/1994,2,1,22739.3368792894
|
||||
12/15/1994,2,1,21258.8192888724
|
||||
12/16/1994,2,1,17696.7692763182
|
||||
12/17/1994,2,1,22200.1521644878
|
||||
12/18/1994,2,1,28314.6053635063
|
||||
12/19/1994,2,1,22994.4886526368
|
||||
12/20/1994,2,1,27151.2294444445
|
||||
12/21/1994,2,1,14925.4178211306
|
||||
12/22/1994,2,1,25349.7570913575
|
||||
12/23/1994,2,1,25728.8166796621
|
||||
12/24/1994,2,1,22152.5625689919
|
||||
12/25/1994,2,1,16982.7946031275
|
||||
12/26/1994,2,1,19620.6745582209
|
||||
12/27/1994,2,1,23048.7964648427
|
||||
12/28/1994,2,1,17242.5386149897
|
||||
12/29/1994,2,1,18758.0329805651
|
||||
12/30/1994,2,1,9502.60887147548
|
||||
12/31/1994,2,1,14877.1870870582
|
||||
12/1/1993,2,2,54883.8275775799
|
||||
12/2/1993,2,2,40691.2741296223
|
||||
12/3/1993,2,2,37181.9246359459
|
||||
12/4/1993,2,2,41728.9414114069
|
||||
12/5/1993,2,2,29721.3539180169
|
||||
12/6/1993,2,2,32872.5841121523
|
||||
12/7/1993,2,2,20432.0184525586
|
||||
12/8/1993,2,2,32484.259047937
|
||||
12/9/1993,2,2,29320.3750633584
|
||||
12/10/1993,2,2,31226.5228736733
|
||||
12/11/1993,2,2,26236.7174608899
|
||||
12/12/1993,2,2,27421.8700920779
|
||||
12/13/1993,2,2,32990.0246015959
|
||||
12/14/1993,2,2,27951.3128862491
|
||||
12/15/1993,2,2,31195.8573221294
|
||||
12/16/1993,2,2,20614.2476099192
|
||||
12/17/1993,2,2,36121.9674021267
|
||||
12/18/1993,2,2,32293.5313945289
|
||||
12/19/1993,2,2,34380.5884425745
|
||||
12/20/1993,2,2,28736.2163888889
|
||||
12/21/1993,2,2,29835.7230145688
|
||||
12/22/1993,2,2,34915.2224200588
|
||||
12/23/1993,2,2,29303.7535779391
|
||||
12/24/1993,2,2,31605.8800864462
|
||||
12/25/1993,2,2,20343.4598876595
|
||||
12/26/1993,2,2,34395.3204304452
|
||||
12/27/1993,2,2,30154.373193423
|
||||
12/28/1993,2,2,31631.5770137841
|
||||
12/29/1993,2,2,26236.7174608899
|
||||
12/30/1993,2,2,27053.5345966038
|
||||
12/31/1993,2,2,32740.0770439449
|
||||
12/1/1994,2,2,44151.7950742307
|
||||
12/2/1994,2,2,46761.0293934451
|
||||
12/3/1994,2,2,27067.7134925747
|
||||
12/4/1994,2,2,38685.0792405643
|
||||
12/5/1994,2,2,33587.3029404444
|
||||
12/6/1994,2,2,34162.9441834679
|
||||
12/7/1994,2,2,27519.1219394336
|
||||
12/8/1994,2,2,27565.0405801085
|
||||
12/9/1994,2,2,32740.0770439449
|
||||
12/10/1994,2,2,26395.9396083876
|
||||
12/11/1994,2,2,29790.1588276339
|
||||
12/12/1994,2,2,19557.116185562
|
||||
12/13/1994,2,2,33750.5926978214
|
||||
12/14/1994,2,2,30639.4103405376
|
||||
12/15/1994,2,2,33016.2334762234
|
||||
12/16/1994,2,2,27949.0375532789
|
||||
12/17/1994,2,2,29398.5426736721
|
||||
12/18/1994,2,2,34915.2224200588
|
||||
12/19/1994,2,2,29788.8999252072
|
||||
12/20/1994,2,2,32466.4532777778
|
||||
12/21/1994,2,2,21142.8031890517
|
||||
12/22/1994,2,2,36501.0624899872
|
||||
12/23/1994,2,2,31990.7815294865
|
||||
12/24/1994,2,2,33480.7635072013
|
||||
12/25/1994,2,2,27571.789865819
|
||||
12/26/1994,2,2,28208.4998617551
|
||||
12/27/1994,2,2,32990.0246015959
|
||||
12/28/1994,2,2,26993.3673933312
|
||||
12/29/1994,2,2,29790.1588276339
|
||||
12/30/1994,2,2,19370.4973023386
|
||||
12/31/1994,2,2,32248.693485814
|
||||
12/1/1993,2,3,6555.18860703642
|
||||
12/2/1993,2,3,6722.46812476478
|
||||
12/3/1993,2,3,8901.79547713346
|
||||
12/4/1993,2,3,13449.4474984839
|
||||
12/5/1993,2,3,11926.5046475228
|
||||
12/6/1993,2,3,15045.6308516288
|
||||
12/7/1993,2,3,8932.85014900317
|
||||
12/8/1993,2,3,19280.5444199121
|
||||
12/9/1993,2,3,17534.2858951909
|
||||
12/10/1993,2,3,21215.386198171
|
||||
12/11/1993,2,3,20097.1573307101
|
||||
12/12/1993,2,3,24577.716415192
|
||||
12/13/1993,2,3,34287.0384346413
|
||||
12/14/1993,2,3,28066.7047897319
|
||||
12/15/1993,2,3,32675.523211459
|
||||
12/16/1993,2,3,17898.2504900817
|
||||
12/17/1993,2,3,35630.3198422079
|
||||
12/18/1993,2,3,29877.2802689409
|
||||
12/19/1993,2,3,33322.2704971948
|
||||
12/20/1993,2,3,29089.5388888889
|
||||
12/21/1993,2,3,32776.6133419325
|
||||
12/22/1993,2,3,42120.3755190028
|
||||
12/23/1993,2,3,31756.5594005911
|
||||
12/24/1993,2,3,34049.236816989
|
||||
12/25/1993,2,3,17176.1470742089
|
||||
12/26/1993,2,3,31490.365689816
|
||||
12/27/1993,2,3,24320.8528955674
|
||||
12/28/1993,2,3,24986.8803114753
|
||||
12/29/1993,2,3,20097.1573307101
|
||||
12/30/1993,2,3,20867.9810811739
|
||||
12/31/1993,2,3,24719.4757928071
|
||||
12/1/1994,2,3,6480.56944379565
|
||||
12/2/1994,2,3,8467.3041548294
|
||||
12/3/1994,2,3,5206.88098825537
|
||||
12/4/1994,2,3,11640.8759103901
|
||||
12/5/1994,2,3,10966.4754296664
|
||||
12/6/1994,2,3,13746.2446857296
|
||||
12/7/1994,2,3,13491.8169448154
|
||||
12/8/1994,2,3,17097.5755288132
|
||||
12/9/1994,2,3,24719.4757928071
|
||||
12/10/1994,2,3,20973.8867599644
|
||||
12/11/1994,2,3,25313.4325977241
|
||||
12/12/1994,2,3,14376.1159943213
|
||||
12/13/1994,2,3,29676.3982161667
|
||||
12/14/1994,2,3,25807.4630887119
|
||||
12/15/1994,2,3,29853.5662431414
|
||||
12/16/1994,2,3,27032.796388237
|
||||
12/17/1994,2,3,31596.2076251734
|
||||
12/18/1994,2,3,42120.3755190028
|
||||
12/19/1994,2,3,32942.9557145333
|
||||
12/20/1994,2,3,36639.8127777778
|
||||
12/21/1994,2,3,19171.8541846866
|
||||
12/22/1994,2,3,36456.372261464
|
||||
12/23/1994,2,3,29200.3012357572
|
||||
12/24/1994,2,3,31108.6417887234
|
||||
12/25/1994,2,3,25942.160483719
|
||||
12/26/1994,2,3,27924.9845899336
|
||||
12/27/1994,2,3,34287.0384346413
|
||||
12/28/1994,2,3,24702.4491207636
|
||||
12/29/1994,2,3,25313.4325977241
|
||||
12/30/1994,2,3,12206.1997755341
|
||||
12/31/1994,2,3,21395.4030681481
|
||||
12/1/1993,2,4,4810.30550623622
|
||||
12/2/1993,2,4,5183.42900175275
|
||||
12/3/1993,2,4,6065.2281184752
|
||||
12/4/1993,2,4,8248.05549964066
|
||||
12/5/1993,2,4,8771.76029417921
|
||||
12/6/1993,2,4,10527.6976489436
|
||||
12/7/1993,2,4,7143.76079255273
|
||||
12/8/1993,2,4,13780.4254035822
|
||||
12/9/1993,2,4,12280.4732796257
|
||||
12/10/1993,2,4,15568.2002706139
|
||||
12/11/1993,2,4,15496.1222913104
|
||||
12/12/1993,2,4,16745.9988349828
|
||||
12/13/1993,2,4,21026.9898417102
|
||||
12/14/1993,2,4,20642.6286610433
|
||||
12/15/1993,2,4,22863.6494065012
|
||||
12/16/1993,2,4,14313.5525586536
|
||||
12/17/1993,2,4,25466.1359138923
|
||||
12/18/1993,2,4,20925.1260190327
|
||||
12/19/1993,2,4,24452.4316326904
|
||||
12/20/1993,2,4,22429.7916666667
|
||||
12/21/1993,2,4,22332.3078339129
|
||||
12/22/1993,2,4,25830.8897064808
|
||||
12/23/1993,2,4,23356.4598398666
|
||||
12/24/1993,2,4,23824.8614445923
|
||||
12/25/1993,2,4,13736.0734803713
|
||||
12/26/1993,2,4,22507.1774877823
|
||||
12/27/1993,2,4,17033.5755848283
|
||||
12/28/1993,2,4,18335.7848494148
|
||||
12/29/1993,2,4,15496.1222913104
|
||||
12/30/1993,2,4,14218.3749283467
|
||||
12/31/1993,2,4,15159.5527090671
|
||||
12/1/1994,2,4,4766.35891326006
|
||||
12/2/1994,2,4,5924.72452120795
|
||||
12/3/1994,2,4,4164.03629691893
|
||||
12/4/1994,2,4,8320.10853126202
|
||||
12/5/1994,2,4,7680.58130742733
|
||||
12/6/1994,2,4,10087.2210497281
|
||||
12/7/1994,2,4,10403.0058514472
|
||||
12/8/1994,2,4,11649.4134381646
|
||||
12/9/1994,2,4,15159.5527090671
|
||||
12/10/1994,2,4,15425.9703519992
|
||||
12/11/1994,2,4,17712.2626145585
|
||||
12/12/1994,2,4,11496.838307635
|
||||
12/13/1994,2,4,21210.6765741809
|
||||
12/14/1994,2,4,18074.7515336667
|
||||
12/15/1994,2,4,21907.0392461361
|
||||
12/16/1994,2,4,20843.9189590308
|
||||
12/17/1994,2,4,21528.0397553116
|
||||
12/18/1994,2,4,25830.8897064808
|
||||
12/19/1994,2,4,24229.0360377856
|
||||
12/20/1994,2,4,25637.5338888889
|
||||
12/21/1994,2,4,15332.0763206115
|
||||
12/22/1994,2,4,26056.5421542499
|
||||
12/23/1994,2,4,20450.9907746564
|
||||
12/24/1994,2,4,22828.0343798496
|
||||
12/25/1994,2,4,20002.9727956707
|
||||
12/26/1994,2,4,19026.6561591901
|
||||
12/27/1994,2,4,21026.9898417102
|
||||
12/28/1994,2,4,18168.2704841357
|
||||
12/29/1994,2,4,17712.2626145585
|
||||
12/30/1994,2,4,9761.517312843
|
||||
12/31/1994,2,4,15291.9829201344
|
||||
12/1/1993,1,1,6151.31230168413
|
||||
12/2/1993,1,1,8610.41236607119
|
||||
12/3/1993,1,1,5379.15662190185
|
||||
12/4/1993,1,1,11354.4401381499
|
||||
12/5/1993,1,1,13754.1915906194
|
||||
12/6/1993,1,1,12486.6813271354
|
||||
12/7/1993,1,1,9065.72585864043
|
||||
12/8/1993,1,1,15099.4695581418
|
||||
868
testdata/data/mstr/eatwh1/csv/COST_REGION_CLASS.TXT
vendored
Normal file
868
testdata/data/mstr/eatwh1/csv/COST_REGION_CLASS.TXT
vendored
Normal file
@@ -0,0 +1,868 @@
|
||||
12/15/1993,1,1,19487.0199747576
|
||||
12/16/1993,1,1,26157.7019712134
|
||||
12/17/1993,1,1,18250.4307902886
|
||||
12/18/1993,1,1,20511.3075628912
|
||||
12/19/1993,1,1,20601.775128791
|
||||
12/20/1993,1,1,20487.404
|
||||
12/21/1993,1,1,6246.36275556985
|
||||
12/22/1993,1,1,22591.8556383856
|
||||
12/23/1993,1,1,20491.174059767
|
||||
12/24/1993,1,1,19764.3424927288
|
||||
12/25/1993,1,1,25856.2360806033
|
||||
12/26/1993,1,1,17352.0491445665
|
||||
12/27/1993,1,1,18539.9236115918
|
||||
12/28/1993,1,1,18312.5636236759
|
||||
12/29/1993,1,1,18241.2002828215
|
||||
12/30/1993,1,1,5233.64639715447
|
||||
12/31/1993,1,1,21966.1884754422
|
||||
12/1/1994,1,1,31321.4723289038
|
||||
12/2/1994,1,1,28300.7264308061
|
||||
12/3/1994,1,1,35929.6554273338
|
||||
12/4/1994,1,1,19262.4666764065
|
||||
12/5/1994,1,1,17889.1650966065
|
||||
12/6/1994,1,1,18279.3232914508
|
||||
12/7/1994,1,1,18587.7570902558
|
||||
12/8/1994,1,1,5130.17135966204
|
||||
12/9/1994,1,1,21966.1884754422
|
||||
12/10/1994,1,1,18540.3963886442
|
||||
12/11/1994,1,1,18476.7236109533
|
||||
12/12/1994,1,1,25041.6467336458
|
||||
12/13/1994,1,1,17013.733637477
|
||||
12/14/1994,1,1,19025.7523666663
|
||||
12/15/1994,1,1,19541.260714297
|
||||
12/16/1994,1,1,19835.6862688444
|
||||
12/17/1994,1,1,6120.80694970834
|
||||
12/18/1994,1,1,22591.8556383856
|
||||
12/19/1994,1,1,20823.2739748156
|
||||
12/20/1994,1,1,20339.8302222222
|
||||
12/21/1994,1,1,26757.8970675834
|
||||
12/22/1994,1,1,18446.7909709255
|
||||
12/23/1994,1,1,20251.0409378059
|
||||
12/24/1994,1,1,19910.7241751021
|
||||
12/25/1994,1,1,19515.8172596758
|
||||
12/26/1994,1,1,5756.77035969943
|
||||
12/27/1994,1,1,21637.7053399396
|
||||
12/28/1994,1,1,18924.8243600215
|
||||
12/29/1994,1,1,18476.7236109533
|
||||
12/30/1994,1,1,24978.5893653828
|
||||
12/31/1994,1,1,16182.3511225649
|
||||
12/1/1993,1,2,3407.67702811927
|
||||
12/2/1993,1,2,5351.45588002975
|
||||
12/3/1993,1,2,1183.72975926728
|
||||
12/4/1993,1,2,6077.02125745882
|
||||
12/5/1993,1,2,7093.96057453749
|
||||
12/6/1993,1,2,7196.01168989427
|
||||
12/7/1993,1,2,15319.087599256
|
||||
12/8/1993,1,2,9995.92228471428
|
||||
12/9/1993,1,2,13294.4054179238
|
||||
12/10/1993,1,2,11028.6962777216
|
||||
12/11/1993,1,2,15998.4471139571
|
||||
12/12/1993,1,2,3268.25912932153
|
||||
12/13/1993,1,2,15492.3138252416
|
||||
12/14/1993,1,2,16694.2539427841
|
||||
12/15/1993,1,2,15628.0218039256
|
||||
12/16/1993,1,2,30693.9960435343
|
||||
12/17/1993,1,2,18472.3989305197
|
||||
12/18/1993,1,2,22652.8002939188
|
||||
12/19/1993,1,2,17322.3903239305
|
||||
12/20/1993,1,2,23156.8794444444
|
||||
12/21/1993,1,2,4358.5198874212
|
||||
12/22/1993,1,2,19031.7421908954
|
||||
12/23/1993,1,2,18889.0028578107
|
||||
12/24/1993,1,2,16285.0403936706
|
||||
12/25/1993,1,2,29455.6493457884
|
||||
12/26/1993,1,2,16326.0560125858
|
||||
12/27/1993,1,2,18439.9456263023
|
||||
12/28/1993,1,2,12989.2857621796
|
||||
12/29/1993,1,2,15998.4471139571
|
||||
12/30/1993,1,2,2774.95144491531
|
||||
12/31/1993,1,2,11169.2900309148
|
||||
12/1/1994,1,2,3854.68378988873
|
||||
12/2/1994,1,2,4049.73512117284
|
||||
12/3/1994,1,2,8929.3634895337
|
||||
12/4/1994,1,2,6035.16624800743
|
||||
12/5/1994,1,2,8314.72528959229
|
||||
12/6/1994,1,2,7145.90609768051
|
||||
12/7/1994,1,2,10740.2313825242
|
||||
12/8/1994,1,2,2273.57604617686
|
||||
12/9/1994,1,2,11169.2900309148
|
||||
12/10/1994,1,2,12475.4008125009
|
||||
12/11/1994,1,2,12106.8872871392
|
||||
12/12/1994,1,2,24653.8312610839
|
||||
12/13/1994,1,2,15385.6117233223
|
||||
12/14/1994,1,2,19567.0858317384
|
||||
12/15/1994,1,2,15519.2044032097
|
||||
12/16/1994,1,2,21519.5988289702
|
||||
12/17/1994,1,2,4201.55364633801
|
||||
12/18/1994,1,2,19031.7421908954
|
||||
12/19/1994,1,2,19594.6789067134
|
||||
12/20/1994,1,2,17524.0588888889
|
||||
12/21/1994,1,2,32878.1193903886
|
||||
12/22/1994,1,2,18900.6625524461
|
||||
12/23/1994,1,2,22139.5182714643
|
||||
12/24/1994,1,2,16171.6481941699
|
||||
12/25/1994,1,2,20651.3924178898
|
||||
12/26/1994,1,2,3713.36719329222
|
||||
12/27/1994,1,2,15492.3138252416
|
||||
12/28/1994,1,2,14693.1733425864
|
||||
12/29/1994,1,2,12106.8872871392
|
||||
12/30/1994,1,2,20932.6072302122
|
||||
12/31/1994,1,2,11092.3624178617
|
||||
12/1/1993,2,1,23166.8953881526
|
||||
12/2/1993,2,1,23808.6551237063
|
||||
12/3/1993,2,1,6084.04270857269
|
||||
12/4/1993,2,1,19374.2438218751
|
||||
12/5/1993,2,1,14356.7348836682
|
||||
12/6/1993,2,1,17645.7147058752
|
||||
12/7/1993,2,1,27921.6572874398
|
||||
12/8/1993,2,1,16627.3026484244
|
||||
12/3/1993,3,1,13194.0220536113
|
||||
12/4/1993,3,1,15308.0843985835
|
||||
12/5/1993,3,1,16021.8604304106
|
||||
12/6/1993,3,1,15063.9290167071
|
||||
12/7/1993,3,1,3060.26142913149
|
||||
12/8/1993,3,1,13203.7335342683
|
||||
12/9/1993,3,1,19345.9708162307
|
||||
12/10/1993,3,1,14560.9828199872
|
||||
12/11/1993,3,1,19152.4444975574
|
||||
12/12/1993,3,1,15678.4313698017
|
||||
12/13/1993,3,1,20778.6098245918
|
||||
12/14/1993,3,1,24873.0728142415
|
||||
12/15/1993,3,1,20388.1172797519
|
||||
12/16/1993,3,1,4688.89125633248
|
||||
12/17/1993,3,1,19479.7700657172
|
||||
12/18/1993,3,1,26566.1601428607
|
||||
12/19/1993,3,1,19356.7550562311
|
||||
12/20/1993,3,1,25107.4511111111
|
||||
12/21/1993,3,1,19051.4439685242
|
||||
12/22/1993,3,1,24130.5298939982
|
||||
12/23/1993,3,1,27433.4762682916
|
||||
12/24/1993,3,1,20968.7888173628
|
||||
12/25/1993,3,1,4539.53511344574
|
||||
12/26/1993,3,1,17724.8172121403
|
||||
12/27/1993,3,1,23025.8624258258
|
||||
12/28/1993,3,1,15916.5886429281
|
||||
12/29/1993,3,1,19152.4444975574
|
||||
12/30/1993,3,1,14351.8890086715
|
||||
12/31/1993,3,1,17207.0833097311
|
||||
12/1/1994,3,1,17262.2565468805
|
||||
12/2/1994,3,1,17144.7150903945
|
||||
12/3/1994,3,1,2859.84490581328
|
||||
12/4/1994,3,1,11897.1814886918
|
||||
12/5/1994,3,1,17622.3176980286
|
||||
12/6/1994,3,1,12772.0169370028
|
||||
12/7/1994,3,1,15660.6273888087
|
||||
12/8/1994,3,1,13247.9704936242
|
||||
12/9/1994,3,1,17207.0833097311
|
||||
12/10/1994,3,1,20270.457209873
|
||||
12/11/1994,3,1,17518.9509525523
|
||||
12/12/1994,3,1,3979.10818099472
|
||||
12/13/1994,3,1,16978.8789193064
|
||||
12/14/1994,3,1,23941.4484002227
|
||||
12/15/1994,3,1,17872.3596959499
|
||||
12/16/1994,3,1,23684.4403370066
|
||||
12/17/1994,3,1,18541.1005254633
|
||||
12/18/1994,3,1,24130.5298939982
|
||||
12/19/1994,3,1,28272.0899050641
|
||||
12/20/1994,3,1,22090.6172222222
|
||||
12/21/1994,3,1,4955.93415278013
|
||||
12/22/1994,3,1,19837.0546178725
|
||||
12/23/1994,3,1,26119.5659122769
|
||||
12/24/1994,3,1,18402.4764401797
|
||||
12/25/1994,3,1,22941.2232020694
|
||||
12/26/1994,3,1,17000.6509582108
|
||||
12/27/1994,3,1,20778.6098245918
|
||||
12/28/1994,3,1,22622.6805315089
|
||||
12/29/1994,3,1,17518.9509525523
|
||||
12/30/1994,3,1,3574.8104119703
|
||||
12/31/1994,3,1,13870.2212885812
|
||||
12/1/1993,3,2,4076.54478026012
|
||||
12/2/1993,3,2,5331.57189017064
|
||||
12/3/1993,3,2,4881.29815239603
|
||||
12/4/1993,3,2,6930.37859734547
|
||||
12/5/1993,3,2,7310.83466353068
|
||||
12/6/1993,3,2,9510.78396917035
|
||||
12/7/1993,3,2,2348.29360534045
|
||||
12/8/1993,3,2,11449.6877964837
|
||||
12/9/1993,3,2,15800.4672974358
|
||||
12/10/1993,3,2,13193.4376036903
|
||||
12/11/1993,3,2,15939.0029239447
|
||||
12/12/1993,3,2,13477.1869378225
|
||||
12/13/1993,3,2,17667.8006557955
|
||||
12/14/1993,3,2,17204.6248529718
|
||||
12/15/1993,3,2,20655.1553343577
|
||||
12/16/1993,3,2,4705.14409976201
|
||||
12/17/1993,3,2,21158.9480772554
|
||||
12/18/1993,3,2,26922.9663898202
|
||||
12/19/1993,3,2,20722.4743641919
|
||||
12/20/1993,3,2,23070.8372222222
|
||||
12/21/1993,3,2,17973.0507804584
|
||||
12/22/1993,3,2,21704.2483746606
|
||||
12/23/1993,3,2,19466.4708665112
|
||||
12/24/1993,3,2,21523.5199424321
|
||||
12/25/1993,3,2,4515.31545542078
|
||||
12/26/1993,3,2,18700.4499402583
|
||||
12/27/1993,3,2,21915.9675574558
|
||||
12/28/1993,3,2,15538.8567156391
|
||||
12/29/1993,3,2,15939.0029239447
|
||||
12/30/1993,3,2,11442.9541498039
|
||||
12/31/1993,3,2,12737.7221994719
|
||||
12/1/1994,3,2,3972.52783857002
|
||||
12/2/1994,3,2,5352.43097560931
|
||||
12/3/1994,3,2,1368.80000498534
|
||||
12/4/1994,3,2,6912.89581604986
|
||||
12/5/1994,3,2,9882.09257167984
|
||||
12/6/1994,3,2,8548.52322046667
|
||||
12/7/1994,3,2,10700.3247371772
|
||||
12/8/1994,3,2,9375.45285708166
|
||||
12/9/1994,3,2,12737.7221994719
|
||||
12/10/1994,3,2,12856.79441592
|
||||
12/11/1994,3,2,16001.3622113456
|
||||
12/12/1994,3,2,3779.23514846651
|
||||
12/13/1994,3,2,17623.2313309741
|
||||
12/14/1994,3,2,23255.5793261482
|
||||
12/15/1994,3,2,18565.3543988031
|
||||
12/16/1994,3,2,21439.6401234366
|
||||
12/17/1994,3,2,17325.775490985
|
||||
12/18/1994,3,2,21704.2483746606
|
||||
12/19/1994,3,2,20193.7205975089
|
||||
12/20/1994,3,2,23161.0988888889
|
||||
12/21/1994,3,2,5039.95273999341
|
||||
12/22/1994,3,2,21649.4965855354
|
||||
12/23/1994,3,2,26312.9281402555
|
||||
12/24/1994,3,2,19345.8615620421
|
||||
12/25/1994,3,2,20574.6596396292
|
||||
12/26/1994,3,2,15312.6609159555
|
||||
12/27/1994,3,2,17667.8006557955
|
||||
12/28/1994,3,2,15142.3679144494
|
||||
12/29/1994,3,2,16001.3622113456
|
||||
12/30/1994,3,2,3208.80126726333
|
||||
12/31/1994,3,2,12705.5896387049
|
||||
12/1/1993,4,1,25563.4863182111
|
||||
12/2/1993,4,1,32175.8436683351
|
||||
12/3/1993,4,1,19374.1351307883
|
||||
12/4/1993,4,1,19620.7424047126
|
||||
12/5/1993,4,1,18220.2267736686
|
||||
12/6/1993,4,1,16623.8172403723
|
||||
12/7/1993,4,1,3268.20323480348
|
||||
12/8/1993,4,1,15385.7161215433
|
||||
12/9/1993,4,1,18640.5166512088
|
||||
12/10/1993,4,1,17851.9827859346
|
||||
12/11/1993,4,1,23793.3279927564
|
||||
12/12/1993,4,1,16492.1948449865
|
||||
12/13/1993,4,1,20819.5883021161
|
||||
12/14/1993,4,1,20600.8924618887
|
||||
12/15/1993,4,1,18838.4895495235
|
||||
12/16/1993,4,1,4185.75853841016
|
||||
12/17/1993,4,1,19118.3919970424
|
||||
12/18/1993,4,1,21814.0118025713
|
||||
12/19/1993,4,1,21539.8495017362
|
||||
12/20/1993,4,1,27428.2867777778
|
||||
12/21/1993,4,1,18682.3191224332
|
||||
12/22/1993,4,1,23343.3189958071
|
||||
12/23/1993,4,1,22077.2836298558
|
||||
12/24/1993,4,1,19243.2812753527
|
||||
12/25/1993,4,1,4082.08444128617
|
||||
12/26/1993,4,1,17859.4156350612
|
||||
12/27/1993,4,1,19934.4993038561
|
||||
12/28/1993,4,1,18744.880845672
|
||||
12/29/1993,4,1,23793.3279927564
|
||||
12/30/1993,4,1,15857.2071716753
|
||||
12/31/1993,4,1,18573.2441271768
|
||||
12/1/1994,4,1,24755.4873837778
|
||||
12/2/1994,4,1,21493.978893276
|
||||
12/3/1994,4,1,3667.0310852175
|
||||
12/4/1994,4,1,16719.4646628775
|
||||
12/5/1994,4,1,20245.5009559317
|
||||
12/6/1994,4,1,17740.5518288434
|
||||
12/7/1994,4,1,23489.503596649
|
||||
12/8/1994,4,1,15647.4798551393
|
||||
12/9/1994,4,1,18573.2441271768
|
||||
12/10/1994,4,1,18316.9326026837
|
||||
12/11/1994,4,1,17009.1584298478
|
||||
12/12/1994,4,1,3710.72650545037
|
||||
12/13/1994,4,1,17351.344373487
|
||||
12/14/1994,4,1,20388.2047253077
|
||||
12/15/1994,4,1,20279.0792199733
|
||||
12/16/1994,4,1,26433.3829028744
|
||||
12/17/1994,4,1,18322.9142411249
|
||||
12/18/1994,4,1,23343.3189958071
|
||||
12/19/1994,4,1,22578.6692766912
|
||||
12/20/1994,4,1,20044.1608333333
|
||||
12/21/1994,4,1,4374.5361370262
|
||||
12/22/1994,4,1,19383.0671102493
|
||||
12/23/1994,4,1,21561.2985661237
|
||||
12/24/1994,4,1,20722.3507333652
|
||||
12/25/1994,4,1,25936.294338905
|
||||
12/26/1994,4,1,17288.5442486866
|
||||
12/27/1994,4,1,20819.5883021161
|
||||
12/28/1994,4,1,19400.7498212244
|
||||
12/29/1994,4,1,17009.1584298478
|
||||
12/30/1994,4,1,3472.08226516966
|
||||
12/31/1994,4,1,15593.4577920154
|
||||
12/1/1993,4,2,4058.68420498564
|
||||
12/2/1993,4,2,5496.63368188938
|
||||
12/3/1993,4,2,5465.99516256671
|
||||
12/4/1993,4,2,6315.6736404259
|
||||
12/5/1993,4,2,7389.54562700295
|
||||
12/6/1993,4,2,8849.14262961594
|
||||
12/7/1993,4,2,2893.55129642903
|
||||
12/8/1993,4,2,9995.39466705245
|
||||
12/9/1993,4,2,12063.8216222244
|
||||
12/10/1993,4,2,13135.6331643546
|
||||
12/11/1993,4,2,16432.463470859
|
||||
12/12/1993,4,2,15091.5261283487
|
||||
12/13/1993,4,2,16100.7167673129
|
||||
12/14/1993,4,2,17389.8557685486
|
||||
12/15/1993,4,2,19218.2280854129
|
||||
12/16/1993,4,2,5797.64633297545
|
||||
12/17/1993,4,2,18471.4238965354
|
||||
12/18/1993,4,2,20555.9657163205
|
||||
12/19/1993,4,2,20631.682938314
|
||||
12/20/1993,4,2,23785.0944444445
|
||||
12/21/1993,4,2,20125.9184658345
|
||||
12/22/1993,4,2,19779.1430034724
|
||||
12/23/1993,4,2,19676.053595136
|
||||
12/24/1993,4,2,20026.1827499568
|
||||
12/25/1993,4,2,5563.74077760377
|
||||
12/26/1993,4,2,16325.1942696415
|
||||
12/27/1993,4,2,16733.0698715797
|
||||
12/28/1993,4,2,15470.7762860084
|
||||
12/29/1993,4,2,16432.463470859
|
||||
12/30/1993,4,2,12813.6266369221
|
||||
12/31/1993,4,2,11607.9223096248
|
||||
12/1/1994,4,2,4015.29744121937
|
||||
12/2/1994,4,2,4980.07580362199
|
||||
12/3/1994,4,2,1686.62599087697
|
||||
12/4/1994,4,2,6034.84769207894
|
||||
12/5/1994,4,2,7545.08077481995
|
||||
12/6/1994,4,2,8511.06955548938
|
||||
12/7/1994,4,2,11031.5994174168
|
||||
12/8/1994,4,2,10498.4736362654
|
||||
12/9/1994,4,2,11607.9223096248
|
||||
12/10/1994,4,2,12995.2150918368
|
||||
12/11/1994,4,2,14888.1876547025
|
||||
12/12/1994,4,2,4656.7476649795
|
||||
12/13/1994,4,2,15384.7996201214
|
||||
12/14/1994,4,2,17755.8774326675
|
||||
12/15/1994,4,2,18484.0139677246
|
||||
12/16/1994,4,2,22103.3966075429
|
||||
12/17/1994,4,2,19401.1105375637
|
||||
12/18/1994,4,2,19779.1430034724
|
||||
12/19/1994,4,2,20411.133147166
|
||||
12/20/1994,4,2,21549.8394444444
|
||||
12/21/1994,4,2,6210.19524627744
|
||||
12/22/1994,4,2,18899.664913299
|
||||
12/23/1994,4,2,20090.1951484667
|
||||
12/24/1994,4,2,19261.1014930857
|
||||
12/25/1994,4,2,21211.6369240172
|
||||
12/26/1994,4,2,17146.8588640816
|
||||
12/27/1994,4,2,16100.7167673129
|
||||
12/28/1994,4,2,15305.3958616883
|
||||
12/29/1994,4,2,14888.1876547025
|
||||
12/30/1994,4,2,3953.86294361042
|
||||
12/31/1994,4,2,11091.7769264826
|
||||
12/1/1993,5,1,20671.9370301939
|
||||
12/2/1993,5,1,37852.1425905158
|
||||
12/3/1993,5,1,16856.7079820503
|
||||
12/4/1993,5,1,18270.2134012097
|
||||
12/7/1993,7,1,9546.13059008173
|
||||
12/8/1993,7,1,11300.9497446428
|
||||
12/9/1993,7,1,11608.3058984741
|
||||
12/10/1993,7,1,10636.4044386914
|
||||
12/11/1993,7,1,2601.7739920435
|
||||
12/12/1993,7,1,10250.3611895916
|
||||
12/13/1993,7,1,17607.3482049188
|
||||
12/14/1993,7,1,12475.33737648
|
||||
12/15/1993,7,1,11673.5334714777
|
||||
12/16/1993,7,1,12544.7823402993
|
||||
12/17/1993,7,1,14796.7053953316
|
||||
12/18/1993,7,1,14071.6562676067
|
||||
12/19/1993,7,1,12446.6413554631
|
||||
12/20/1993,7,1,3226.58333333333
|
||||
12/21/1993,7,1,11807.1396740932
|
||||
12/22/1993,7,1,20033.7020722417
|
||||
12/23/1993,7,1,13232.9371751338
|
||||
12/24/1993,7,1,11920.9193767023
|
||||
12/25/1993,7,1,12220.3162703758
|
||||
12/26/1993,7,1,13706.442401572
|
||||
12/27/1993,7,1,12704.0108168323
|
||||
12/28/1993,7,1,11032.5952464009
|
||||
12/29/1993,7,1,2601.7739920435
|
||||
12/30/1993,7,1,9746.19507748338
|
||||
12/31/1993,7,1,15241.5864979055
|
||||
12/1/1994,7,1,17206.4918207212
|
||||
12/2/1994,7,1,13467.0177826121
|
||||
12/3/1994,7,1,10473.4894471445
|
||||
12/4/1994,7,1,11679.0685309758
|
||||
12/5/1994,7,1,12187.3722209709
|
||||
12/6/1994,7,1,10937.6308826833
|
||||
12/7/1994,7,1,2324.84394427599
|
||||
12/8/1994,7,1,9478.82320951683
|
||||
12/9/1994,7,1,15241.5864979055
|
||||
12/10/1994,7,1,11415.9177829355
|
||||
12/11/1994,7,1,10561.4756870308
|
||||
12/12/1994,7,1,11047.5562339145
|
||||
12/13/1994,7,1,13257.202300422
|
||||
12/14/1994,7,1,13041.717504612
|
||||
12/15/1994,7,1,11794.190834712
|
||||
12/16/1994,7,1,3071.09823570999
|
||||
12/17/1994,7,1,11558.2088198342
|
||||
12/18/1994,7,1,20033.7020722417
|
||||
12/19/1994,7,1,13495.6415936808
|
||||
12/20/1994,7,1,12411.0256666667
|
||||
12/21/1994,7,1,13133.5593508539
|
||||
12/22/1994,7,1,15023.0503958557
|
||||
12/23/1994,7,1,13891.4167592127
|
||||
12/24/1994,7,1,12021.8046592335
|
||||
12/25/1994,7,1,2990.99349482911
|
||||
12/26/1994,7,1,10830.926188702
|
||||
12/27/1994,7,1,17607.3482049188
|
||||
12/28/1994,7,1,11889.1533589647
|
||||
12/29/1994,7,1,10561.4756870308
|
||||
12/30/1994,7,1,10275.6309131743
|
||||
12/31/1994,7,1,11573.3479793852
|
||||
12/1/1993,7,2,3005.39252630352
|
||||
12/2/1993,7,2,853.706129859653
|
||||
12/3/1993,7,2,3459.40609448048
|
||||
12/4/1993,7,2,6161.44397776092
|
||||
12/5/1993,7,2,5311.53771097112
|
||||
12/6/1993,7,2,6716.68822857145
|
||||
12/7/1993,7,2,5735.11052829365
|
||||
12/8/1993,7,2,7841.95447967122
|
||||
12/9/1993,7,2,8033.6363708893
|
||||
12/10/1993,7,2,9726.73205072765
|
||||
12/11/1993,7,2,2552.19750953917
|
||||
12/12/1993,7,2,9551.36547155399
|
||||
12/13/1993,7,2,15707.5349379365
|
||||
12/14/1993,7,2,12499.6690412827
|
||||
12/15/1993,7,2,14587.0455204649
|
||||
12/16/1993,7,2,11491.1190842219
|
||||
12/17/1993,7,2,14491.8805306222
|
||||
12/18/1993,7,2,13688.7927382117
|
||||
12/19/1993,7,2,15277.4403171611
|
||||
12/20/1993,7,2,3694.16666666667
|
||||
12/21/1993,7,2,12737.6118944517
|
||||
12/22/1993,7,2,19296.1334740214
|
||||
12/23/1993,7,2,14142.9670982411
|
||||
12/24/1993,7,2,15200.3003646573
|
||||
12/25/1993,7,2,11027.510847902
|
||||
12/26/1993,7,2,12808.0415630122
|
||||
12/27/1993,7,2,11143.0194283798
|
||||
12/28/1993,7,2,11455.869212236
|
||||
12/29/1993,7,2,2552.19750953917
|
||||
12/30/1993,7,2,8109.69215335906
|
||||
12/31/1993,7,2,11324.4551699367
|
||||
12/1/1994,7,2,2886.15902199287
|
||||
12/2/1994,7,2,3779.98388404697
|
||||
12/3/1994,7,2,3342.94625760041
|
||||
12/4/1994,7,2,4734.68056734449
|
||||
12/5/1994,7,2,5024.48040364135
|
||||
12/6/1994,7,2,6302.3146273603
|
||||
12/7/1994,7,2,1713.36577800973
|
||||
12/8/1994,7,2,6644.44124077576
|
||||
12/9/1994,7,2,11324.4551699367
|
||||
12/10/1994,7,2,9340.84157627259
|
||||
12/11/1994,7,2,11300.4523659082
|
||||
12/12/1994,7,2,9229.82170524858
|
||||
12/13/1994,7,2,12070.2485813332
|
||||
12/14/1994,7,2,11824.1356020505
|
||||
12/15/1994,7,2,13687.1248486025
|
||||
12/16/1994,7,2,3432.97484726911
|
||||
12/17/1994,7,2,12278.8839062604
|
||||
12/18/1994,7,2,19296.1334740214
|
||||
12/19/1994,7,2,14671.3355471621
|
||||
12/20/1994,7,2,16356.7883333333
|
||||
12/21/1994,7,2,12308.8041271773
|
||||
12/22/1994,7,2,14827.8599162944
|
||||
12/23/1994,7,2,13378.6230845501
|
||||
12/24/1994,7,2,14262.5460745592
|
||||
12/25/1994,7,2,3294.47176479229
|
||||
12/26/1994,7,2,10852.1771958075
|
||||
12/27/1994,7,2,15707.5349379365
|
||||
12/28/1994,7,2,11001.3783531736
|
||||
12/29/1994,7,2,11300.4523659082
|
||||
12/30/1994,7,2,7836.68187369439
|
||||
12/31/1994,7,2,8702.12859556793
|
||||
12/5/1993,5,1,11461.230464052
|
||||
12/6/1993,5,1,16892.9740918697
|
||||
12/7/1993,5,1,4938.68274114579
|
||||
12/8/1993,5,1,17320.3939228969
|
||||
12/9/1993,5,1,14334.554833549
|
||||
12/10/1993,5,1,15616.3368038364
|
||||
12/11/1993,5,1,31816.3619703315
|
||||
12/12/1993,5,1,16786.0153826502
|
||||
12/13/1993,5,1,18392.3374788215
|
||||
12/14/1993,5,1,14686.5245910161
|
||||
12/15/1993,5,1,20290.1892172906
|
||||
12/16/1993,5,1,5951.75507089
|
||||
12/17/1993,5,1,22256.6671707913
|
||||
12/18/1993,5,1,18110.1941388338
|
||||
12/19/1993,5,1,19390.3369273186
|
||||
12/20/1993,5,1,38174.7777777778
|
||||
12/21/1993,5,1,19722.5415404643
|
||||
12/22/1993,5,1,20439.194600942
|
||||
12/23/1993,5,1,15937.9249590404
|
||||
12/24/1993,5,1,20775.4600189901
|
||||
12/25/1993,5,1,5820.46454845659
|
||||
12/26/1993,5,1,20678.2025295991
|
||||
12/27/1993,5,1,16124.2936221266
|
||||
12/28/1993,5,1,16589.6952635843
|
||||
12/29/1993,5,1,31816.3619703315
|
||||
12/30/1993,5,1,15743.6065728958
|
||||
12/31/1993,5,1,16699.3588379965
|
||||
12/1/1994,5,1,14420.024785472
|
||||
12/2/1994,5,1,21035.7640540638
|
||||
12/3/1994,5,1,5819.90512585671
|
||||
12/4/1994,5,1,18236.1489145843
|
||||
12/5/1994,5,1,14416.243122173
|
||||
12/6/1994,5,1,14998.3763071108
|
||||
12/7/1994,5,1,29804.4320081333
|
||||
12/8/1994,5,1,15034.4969051165
|
||||
12/9/1994,5,1,16699.3588379965
|
||||
12/10/1994,5,1,12586.5590976729
|
||||
12/11/1994,5,1,18012.4695596625
|
||||
12/12/1994,5,1,5362.53181016194
|
||||
12/13/1994,5,1,20032.1877358525
|
||||
12/14/1994,5,1,16624.414863041
|
||||
12/15/1994,5,1,18147.6710791782
|
||||
12/16/1994,5,1,36536.7571214811
|
||||
12/17/1994,5,1,19264.308898315
|
||||
12/18/1994,5,1,20439.194600942
|
||||
12/19/1994,5,1,16355.0017781612
|
||||
12/20/1994,5,1,21726.2242777778
|
||||
12/21/1994,5,1,6193.20484147907
|
||||
12/22/1994,5,1,22585.7222849293
|
||||
12/23/1994,5,1,17853.1814387211
|
||||
12/24/1994,5,1,18587.0972581611
|
||||
12/25/1994,5,1,35702.4076794591
|
||||
12/26/1994,5,1,17906.2360406453
|
||||
12/27/1994,5,1,18392.3374788215
|
||||
12/28/1994,5,1,13626.0490659006
|
||||
12/29/1994,5,1,18012.4695596625
|
||||
12/30/1994,5,1,5089.68305037234
|
||||
12/31/1994,5,1,17670.9160252993
|
||||
12/1/1993,5,2,4359.75428362585
|
||||
12/2/1993,5,2,9949.95489346915
|
||||
12/3/1993,5,2,6462.17304284294
|
||||
12/4/1993,5,2,9191.34819716815
|
||||
12/5/1993,5,2,8486.54632040497
|
||||
12/6/1993,5,2,10981.5970306604
|
||||
12/7/1993,5,2,2868.38998080791
|
||||
12/8/1993,5,2,13000.3113912228
|
||||
12/9/1993,5,2,11796.0932846909
|
||||
12/10/1993,5,2,14110.0243487988
|
||||
12/11/1993,5,2,29745.8917195707
|
||||
12/12/1993,5,2,17841.9574883377
|
||||
12/13/1993,5,2,23431.7512996725
|
||||
12/14/1993,5,2,19971.4331481576
|
||||
12/15/1993,5,2,23849.4106503609
|
||||
12/16/1993,5,2,5747.23201703653
|
||||
12/17/1993,5,2,24024.4903271086
|
||||
12/18/1993,5,2,20099.7740798753
|
||||
12/19/1993,5,2,22162.1253405802
|
||||
12/20/1993,5,2,43055.5555555556
|
||||
12/21/1993,5,2,23793.8680705489
|
||||
12/22/1993,5,2,28785.0514033587
|
||||
12/23/1993,5,2,22597.0240480966
|
||||
12/24/1993,5,2,24852.0651352563
|
||||
12/25/1993,5,2,5515.36042301591
|
||||
12/26/1993,5,2,21233.0394243583
|
||||
12/27/1993,5,2,16361.7184773999
|
||||
12/28/1993,5,2,16618.3865946232
|
||||
12/29/1993,5,2,29745.8917195707
|
||||
12/30/1993,5,2,15148.9107054551
|
||||
12/31/1993,5,2,16893.281994578
|
||||
12/1/1994,5,2,4611.38065114462
|
||||
12/2/1994,5,2,6180.167723197
|
||||
12/3/1994,5,2,1671.95967791282
|
||||
12/4/1994,5,2,7849.10469360828
|
||||
12/5/1994,5,2,7377.6353337603
|
||||
12/6/1994,5,2,9142.41416151608
|
||||
12/7/1994,5,2,19969.2981120016
|
||||
12/8/1994,5,2,12411.8209595001
|
||||
12/9/1994,5,2,16893.281994578
|
||||
12/10/1994,5,2,14924.394595724
|
||||
12/11/1994,5,2,18475.9229434967
|
||||
12/12/1994,5,2,4616.25420702316
|
||||
12/13/1994,5,2,20009.9338160626
|
||||
12/14/1994,5,2,17361.8272141415
|
||||
12/15/1994,5,2,19855.14393443
|
||||
12/16/1994,5,2,40011.3618562833
|
||||
12/17/1994,5,2,22936.9638626222
|
||||
12/18/1994,5,2,28785.0514033587
|
||||
12/19/1994,5,2,23441.2284122579
|
||||
12/20/1994,5,2,26742.8905555556
|
||||
12/21/1994,5,2,6156.19354848373
|
||||
12/22/1994,5,2,24581.4734932433
|
||||
12/23/1994,5,2,19644.3402016467
|
||||
12/24/1994,5,2,20689.8752158841
|
||||
12/25/1994,5,2,38397.106815761
|
||||
12/26/1994,5,2,20271.8747136374
|
||||
12/27/1994,5,2,23431.7512996725
|
||||
12/28/1994,5,2,17577.5287803498
|
||||
12/29/1994,5,2,18475.9229434967
|
||||
12/30/1994,5,2,3919.48152670946
|
||||
12/31/1994,5,2,14426.2991837197
|
||||
12/1/1993,6,1,22455.089475495
|
||||
12/2/1993,6,1,4506.7443237811
|
||||
12/3/1993,6,1,15329.593893766
|
||||
12/4/1993,6,1,17404.3678479717
|
||||
12/5/1993,6,1,14502.7003403175
|
||||
12/6/1993,6,1,16756.8949632712
|
||||
12/7/1993,6,1,12901.4892256779
|
||||
12/8/1993,6,1,17269.546027258
|
||||
12/9/1993,6,1,18827.2325984098
|
||||
12/10/1993,6,1,20081.3254889642
|
||||
12/11/1993,6,1,4974.99903237405
|
||||
12/12/1993,6,1,17654.3078897664
|
||||
12/9/1993,2,1,15685.8502488512
|
||||
12/10/1993,2,1,16030.8223753394
|
||||
12/11/1993,2,1,17863.09448943
|
||||
12/12/1993,2,1,5438.99843887202
|
||||
12/13/1993,2,1,18571.6993093064
|
||||
12/14/1993,2,1,15216.2084727415
|
||||
12/15/1993,2,1,19087.4989831386
|
||||
12/16/1993,2,1,27762.699998771
|
||||
12/17/1993,2,1,18622.0751816159
|
||||
12/18/1993,2,1,19374.8985938674
|
||||
12/19/1993,2,1,19273.9822628486
|
||||
12/20/1993,2,1,20692.7445555556
|
||||
12/21/1993,2,1,6236.75212440178
|
||||
12/22/1993,2,1,20458.0355918972
|
||||
12/23/1993,2,1,16189.7099490754
|
||||
12/24/1993,2,1,19458.5703278515
|
||||
12/25/1993,2,1,27420.3706663718
|
||||
12/26/1993,2,1,17709.1295047742
|
||||
12/27/1993,2,1,17380.9394193046
|
||||
12/28/1993,2,1,16808.5988747773
|
||||
12/29/1993,2,1,17863.09448943
|
||||
12/30/1993,2,1,5187.32534164462
|
||||
12/31/1993,2,1,17150.2348691717
|
||||
12/1/1994,2,1,20183.9970044072
|
||||
12/2/1994,2,1,23454.3845094303
|
||||
12/3/1994,2,1,37294.0383193081
|
||||
12/4/1994,2,1,19695.3128259138
|
||||
12/5/1994,2,1,16157.2112415518
|
||||
12/6/1994,2,1,15995.8141893424
|
||||
12/7/1994,2,1,17527.0772289247
|
||||
12/8/1994,2,1,5065.28059982234
|
||||
12/9/1994,2,1,17150.2348691717
|
||||
12/10/1994,2,1,13806.7263856146
|
||||
12/11/1994,2,1,17477.6928233235
|
||||
12/12/1994,2,1,26458.5592999186
|
||||
12/13/1994,2,1,17365.7279748458
|
||||
12/14/1994,2,1,17878.0888954859
|
||||
12/15/1994,2,1,18159.3004504016
|
||||
12/16/1994,2,1,19925.1331789574
|
||||
12/17/1994,2,1,6108.36278452571
|
||||
12/18/1994,2,1,20458.0355918972
|
||||
12/19/1994,2,1,16524.9613348937
|
||||
12/20/1994,2,1,20200.1407777778
|
||||
12/21/1994,2,1,28437.1380091732
|
||||
12/22/1994,2,1,18821.7418637644
|
||||
12/23/1994,2,1,19114.4296564154
|
||||
12/24/1994,2,1,18550.8940631492
|
||||
12/25/1994,2,1,19540.5366815598
|
||||
12/26/1994,2,1,5734.66711924759
|
||||
12/27/1994,2,1,18571.6993093064
|
||||
12/28/1994,2,1,14450.2876413504
|
||||
12/29/1994,2,1,17477.6928233235
|
||||
12/30/1994,2,1,26299.4174463886
|
||||
12/31/1994,2,1,16527.8242090775
|
||||
12/1/1993,2,2,4118.49824635047
|
||||
12/2/1993,2,2,4756.52419705748
|
||||
12/3/1993,2,2,2587.21675840591
|
||||
12/4/1993,2,2,8501.53423141496
|
||||
12/5/1993,2,2,6382.69449553396
|
||||
12/6/1993,2,2,8477.88741876856
|
||||
12/7/1993,2,2,12952.0867554442
|
||||
12/8/1993,2,2,10805.5560581191
|
||||
12/9/1993,2,2,14389.6712399917
|
||||
12/10/1993,2,2,13329.2169136103
|
||||
12/11/1993,2,2,14219.8688579038
|
||||
12/12/1993,2,2,7143.2645196213
|
||||
12/13/1993,2,2,21673.1899937751
|
||||
12/14/1993,2,2,15020.427817165
|
||||
12/15/1993,2,2,18411.9502776528
|
||||
12/16/1993,2,2,25951.3692999853
|
||||
12/17/1993,2,2,19968.5968424249
|
||||
12/18/1993,2,2,24519.0618645647
|
||||
12/19/1993,2,2,20935.7382119868
|
||||
12/20/1993,2,2,20582.4844444445
|
||||
12/21/1993,2,2,9526.19092854578
|
||||
12/22/1993,2,2,26624.7230122443
|
||||
12/23/1993,2,2,16995.1232883098
|
||||
12/24/1993,2,2,19186.0081691538
|
||||
12/25/1993,2,2,24904.3634807026
|
||||
12/26/1993,2,2,17648.4078634501
|
||||
12/27/1993,2,2,19959.1291903938
|
||||
12/28/1993,2,2,15698.7737369016
|
||||
12/29/1993,2,2,14219.8688579038
|
||||
12/30/1993,2,2,6065.06749183329
|
||||
12/31/1993,2,2,15625.4351458581
|
||||
12/1/1994,2,2,3468.19928715926
|
||||
12/2/1994,2,2,4771.14267078697
|
||||
12/3/1994,2,2,7549.65919725882
|
||||
12/4/1994,2,2,6523.99301989738
|
||||
12/5/1994,2,2,8999.73783007762
|
||||
12/6/1994,2,2,8636.49972959005
|
||||
12/7/1994,2,2,9546.21912209217
|
||||
12/8/1994,2,2,4969.23727914056
|
||||
12/9/1994,2,2,15625.4351458581
|
||||
12/10/1994,2,2,11224.5721214374
|
||||
12/11/1994,2,2,14263.5715220182
|
||||
12/12/1994,2,2,20844.4895480035
|
||||
12/13/1994,2,2,16631.790967307
|
||||
12/14/1994,2,2,21179.1293699983
|
||||
12/15/1994,2,2,18756.4184023184
|
||||
12/16/1994,2,2,19127.2234763146
|
||||
12/17/1994,2,2,9183.1179541147
|
||||
12/18/1994,2,2,26624.7230122443
|
||||
12/19/1994,2,2,17630.0457107896
|
||||
12/20/1994,2,2,20645.7416666667
|
||||
12/21/1994,2,2,27798.0168166705
|
||||
12/22/1994,2,2,20431.5482782774
|
||||
12/23/1994,2,2,23963.4928620909
|
||||
12/24/1994,2,2,19544.9580986389
|
||||
12/25/1994,2,2,18355.5372483191
|
||||
12/26/1994,2,2,8116.11413617518
|
||||
12/27/1994,2,2,21673.1899937751
|
||||
12/28/1994,2,2,13219.9827769366
|
||||
12/29/1994,2,2,14263.5715220182
|
||||
12/30/1994,2,2,17698.2436523514
|
||||
12/31/1994,2,2,11990.8039007532
|
||||
12/1/1993,3,1,15336.6946712131
|
||||
12/2/1993,3,1,15437.5726463996
|
||||
12/13/1993,6,1,20039.1353826984
|
||||
12/14/1993,6,1,20380.2711959899
|
||||
12/15/1993,6,1,23445.7034447626
|
||||
12/16/1993,6,1,16051.6189515463
|
||||
12/17/1993,6,1,23843.9604870203
|
||||
12/18/1993,6,1,26436.9938922289
|
||||
12/19/1993,6,1,26272.5047590279
|
||||
12/20/1993,6,1,6378.05194444445
|
||||
12/21/1993,6,1,21335.5715543275
|
||||
12/22/1993,6,1,22756.9311103814
|
||||
12/23/1993,6,1,22299.2644647969
|
||||
12/24/1993,6,1,24141.0335818552
|
||||
12/25/1993,6,1,15674.4254408877
|
||||
12/26/1993,6,1,21907.3446255839
|
||||
12/27/1993,6,1,22755.5314367472
|
||||
12/28/1993,6,1,21802.5232919288
|
||||
12/29/1993,6,1,4974.99903237405
|
||||
12/30/1993,6,1,16226.010168337
|
||||
12/31/1993,6,1,17416.3197848754
|
||||
12/1/1994,6,1,17048.7760506251
|
||||
12/2/1994,6,1,18532.7806521759
|
||||
12/3/1994,6,1,14827.9108959138
|
||||
12/4/1994,6,1,16864.2869490657
|
||||
12/5/1994,6,1,16646.4110628514
|
||||
12/6/1994,6,1,18015.6814704475
|
||||
12/7/1994,6,1,4222.1387384547
|
||||
12/8/1994,6,1,15064.8323834088
|
||||
12/9/1994,6,1,17416.3197848754
|
||||
12/10/1994,6,1,17033.4302304804
|
||||
12/11/1994,6,1,19974.2465615057
|
||||
12/12/1994,6,1,14338.9314281102
|
||||
12/13/1994,6,1,21096.5385290551
|
||||
12/14/1994,6,1,23712.614852174
|
||||
12/15/1994,6,1,24333.1908512057
|
||||
12/16/1994,6,1,6037.95147240609
|
||||
12/17/1994,6,1,20776.1771200108
|
||||
12/18/1994,6,1,22756.9311103814
|
||||
12/19/1994,6,1,22932.7452060019
|
||||
12/20/1994,6,1,25480.4327777778
|
||||
12/21/1994,6,1,16741.4568178493
|
||||
12/22/1994,6,1,24242.0469005596
|
||||
12/23/1994,6,1,25975.0000112148
|
||||
12/24/1994,6,1,25024.4241587985
|
||||
12/25/1994,6,1,5861.18329465817
|
||||
12/26/1994,6,1,19092.0121906287
|
||||
12/27/1994,6,1,20039.1353826984
|
||||
12/28/1994,6,1,18720.7035834557
|
||||
12/29/1994,6,1,19974.2465615057
|
||||
12/30/1994,6,1,13507.7922102674
|
||||
12/31/1994,6,1,17881.6165681878
|
||||
12/1/1993,6,2,4000.34730334328
|
||||
12/2/1993,6,2,1102.23610318873
|
||||
12/3/1993,6,2,5045.44445828525
|
||||
12/4/1993,6,2,6344.71082319545
|
||||
12/5/1993,6,2,6900.1809103259
|
||||
12/6/1993,6,2,7875.04324134051
|
||||
12/7/1993,6,2,7473.11043245435
|
||||
12/8/1993,6,2,12218.7039526003
|
||||
12/9/1993,6,2,9985.02951923643
|
||||
12/10/1993,6,2,12946.8300692584
|
||||
12/11/1993,6,2,3295.1903929106
|
||||
12/12/1993,6,2,13930.3922902831
|
||||
12/13/1993,6,2,16174.7420387425
|
||||
12/14/1993,6,2,16238.2312613349
|
||||
12/15/1993,6,2,17102.7164471344
|
||||
12/16/1993,6,2,14973.4519474769
|
||||
12/17/1993,6,2,22580.0848983694
|
||||
12/18/1993,6,2,17013.8394698866
|
||||
12/19/1993,6,2,20335.1364721439
|
||||
12/20/1993,6,2,4769.60833333333
|
||||
12/21/1993,6,2,18577.4412108449
|
||||
12/22/1993,6,2,19870.0803481035
|
||||
12/23/1993,6,2,18373.02809412
|
||||
12/24/1993,6,2,17821.7327616678
|
||||
12/25/1993,6,2,14369.3492836622
|
||||
12/26/1993,6,2,19956.4621902278
|
||||
12/27/1993,6,2,13849.690574616
|
||||
12/28/1993,6,2,15248.409354031
|
||||
12/29/1993,6,2,3295.1903929106
|
||||
12/30/1993,6,2,11827.7531507065
|
||||
12/31/1993,6,2,11661.2913373595
|
||||
12/1/1994,6,2,3749.38868391823
|
||||
12/2/1994,6,2,4431.87706879337
|
||||
12/3/1994,6,2,4356.01134966107
|
||||
12/4/1994,6,2,7377.19918069932
|
||||
12/5/1994,6,2,6244.94099969205
|
||||
12/6/1994,6,2,8388.73694658131
|
||||
12/7/1994,6,2,2212.15890625131
|
||||
12/8/1994,6,2,9690.726766702
|
||||
12/9/1994,6,2,11661.2913373595
|
||||
12/10/1994,6,2,12134.620939967
|
||||
12/11/1994,6,2,13249.3199028777
|
||||
12/12/1994,6,2,12026.8783896845
|
||||
12/13/1994,6,2,18806.8923929519
|
||||
12/14/1994,6,2,14696.2518061866
|
||||
12/15/1994,6,2,18218.336706245
|
||||
12/16/1994,6,2,4432.37864371535
|
||||
12/17/1994,6,2,17908.3996116024
|
||||
12/18/1994,6,2,19870.0803481035
|
||||
12/19/1994,6,2,19059.4277928989
|
||||
12/20/1994,6,2,19177.6677777778
|
||||
12/21/1994,6,2,16038.932829637
|
||||
12/22/1994,6,2,23103.5810061762
|
||||
12/23/1994,6,2,16628.3287242167
|
||||
12/24/1994,6,2,18984.2548781297
|
||||
12/25/1994,6,2,4253.55469883637
|
||||
12/26/1994,6,2,15827.5888396789
|
||||
12/27/1994,6,2,16174.7420387425
|
||||
12/28/1994,6,2,14291.812471376
|
||||
12/29/1994,6,2,13249.3199028777
|
||||
12/30/1994,6,2,10211.5536879733
|
||||
12/31/1994,6,2,13558.9582089949
|
||||
12/1/1993,7,1,16424.771687746
|
||||
12/2/1993,7,1,2733.18858499546
|
||||
12/3/1993,7,1,11250.2092748753
|
||||
12/4/1993,7,1,15095.4903417265
|
||||
12/5/1993,7,1,12082.2339824577
|
||||
12/6/1993,7,1,10371.9907879384
|
||||
12/1/1993,1,1,27608.5387777688
|
||||
12/2/1993,1,1,26534.7220821948
|
||||
12/3/1993,1,1,6231.73144350176
|
||||
12/4/1993,1,1,28952.3366515105
|
||||
12/5/1993,1,1,21002.6219856759
|
||||
12/6/1993,1,1,20099.2662779835
|
||||
12/7/1993,1,1,26688.5700378557
|
||||
12/8/1993,1,1,16276.3228542462
|
||||
12/9/1993,1,1,16980.0162587135
|
||||
12/10/1993,1,1,17687.3681638629
|
||||
12/11/1993,1,1,18241.2002828215
|
||||
12/12/1993,1,1,5471.39719096422
|
||||
12/13/1993,1,1,21637.7053399396
|
||||
12/14/1993,1,1,19569.5189889345
|
||||
2480
testdata/data/mstr/eatwh1/csv/COST_REGION_ITEM.TXT
vendored
Normal file
2480
testdata/data/mstr/eatwh1/csv/COST_REGION_ITEM.TXT
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1860
testdata/data/mstr/eatwh1/csv/COST_STORE_DEP.TXT
vendored
Normal file
1860
testdata/data/mstr/eatwh1/csv/COST_STORE_DEP.TXT
vendored
Normal file
File diff suppressed because it is too large
Load Diff
11532
testdata/data/mstr/eatwh1/csv/COST_STORE_ITEM.TXT
vendored
Normal file
11532
testdata/data/mstr/eatwh1/csv/COST_STORE_ITEM.TXT
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
testdata/data/mstr/eatwh1/csv/FT1.TXT
vendored
Normal file
10
testdata/data/mstr/eatwh1/csv/FT1.TXT
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
1,95051.3477
|
||||
2,32000.3048
|
||||
3,32695.9637
|
||||
4,49176.6397
|
||||
5,41140.8849
|
||||
6,40953.1413
|
||||
7,24385.3712
|
||||
8,16265.5403
|
||||
9,15692.4817
|
||||
10,32485.0056
|
||||
12
testdata/data/mstr/eatwh1/csv/FT10.TXT
vendored
Normal file
12
testdata/data/mstr/eatwh1/csv/FT10.TXT
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
1,199311,1,2942
|
||||
1,199311,2,10532
|
||||
1,199311,3,835
|
||||
2,199311,1,3440
|
||||
2,199311,2,10650
|
||||
2,199311,3,345
|
||||
1,199411,1,4947
|
||||
1,199411,2,10842
|
||||
1,199411,3,996
|
||||
2,199411,1,5257
|
||||
2,199411,2,10817
|
||||
2,199411,3,355
|
||||
10
testdata/data/mstr/eatwh1/csv/FT11.TXT
vendored
Normal file
10
testdata/data/mstr/eatwh1/csv/FT11.TXT
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
1,3607961.0202
|
||||
2,1815357.5166
|
||||
3,1743483.0855
|
||||
4,1869837.1952
|
||||
5,1708725.26
|
||||
6,1888516.3531
|
||||
7,1878318.5803
|
||||
8,1873740.7411
|
||||
9,1830888.3273
|
||||
10,1855802.1719
|
||||
3
testdata/data/mstr/eatwh1/csv/FT12.TXT
vendored
Normal file
3
testdata/data/mstr/eatwh1/csv/FT12.TXT
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
1,7437320.6886
|
||||
2,7221647.9545
|
||||
3,9836799.7766
|
||||
7
testdata/data/mstr/eatwh1/csv/FT13.TXT
vendored
Normal file
7
testdata/data/mstr/eatwh1/csv/FT13.TXT
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
1,1,71244
|
||||
1,2,79273
|
||||
2,3,115422
|
||||
2,4,72767
|
||||
3,5,83369
|
||||
3,6,70726
|
||||
3,7,50086
|
||||
4
testdata/data/mstr/eatwh1/csv/FT14.TXT
vendored
Normal file
4
testdata/data/mstr/eatwh1/csv/FT14.TXT
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
1,72969
|
||||
2,137452
|
||||
3,107283
|
||||
4,70347
|
||||
2
testdata/data/mstr/eatwh1/csv/FT15.TXT
vendored
Normal file
2
testdata/data/mstr/eatwh1/csv/FT15.TXT
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
1,210421
|
||||
2,177630
|
||||
40
testdata/data/mstr/eatwh1/csv/FT17.TXT
vendored
Normal file
40
testdata/data/mstr/eatwh1/csv/FT17.TXT
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
1,199344,224428.8091
|
||||
1,199345,760540.5129
|
||||
1,199346,1307525.7085
|
||||
1,199347,1411191.9018
|
||||
1,199348,931072.1459
|
||||
1,199444,142831.3172
|
||||
1,199445,702615.7275
|
||||
1,199446,1262208.2982
|
||||
1,199447,1388653.4332
|
||||
1,199448,1135915.9312
|
||||
2,199344,1809050.9574
|
||||
2,199345,1948595.6793
|
||||
2,199346,2060174.0348
|
||||
2,199347,2102942.3755
|
||||
2,199348,1685813.44
|
||||
2,199444,1321939.5218
|
||||
2,199445,2046193.3381
|
||||
2,199446,1993257.6494
|
||||
2,199447,2055056.2344
|
||||
2,199448,2027459.1677
|
||||
3,199344,351481.1836
|
||||
3,199345,1214350.4704
|
||||
3,199346,2123661.027
|
||||
3,199347,2245362.4695
|
||||
3,199348,1467966.8408
|
||||
3,199444,236170.3587
|
||||
3,199445,1121619.8793
|
||||
3,199446,1977444.5878
|
||||
3,199447,2297873.1632
|
||||
3,199448,1756769.6706
|
||||
4,199344,233564.6543
|
||||
4,199345,840367.8175
|
||||
4,199346,1443802.7494
|
||||
4,199347,1527971.7994
|
||||
4,199348,984857.1811
|
||||
4,199444,167849.945
|
||||
4,199445,740438.9081
|
||||
4,199446,1368112.3428
|
||||
4,199447,1550331.2429
|
||||
4,199448,1217411.3239
|
||||
20
testdata/data/mstr/eatwh1/csv/FT2.TXT
vendored
Normal file
20
testdata/data/mstr/eatwh1/csv/FT2.TXT
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
1,199311,949
|
||||
2,199311,306
|
||||
3,199311,304
|
||||
4,199311,509
|
||||
5,199311,390
|
||||
6,199311,456
|
||||
7,199311,246
|
||||
8,199311,183
|
||||
9,199311,159
|
||||
10,199311,345
|
||||
1,199411,933
|
||||
2,199411,334
|
||||
3,199411,345
|
||||
4,199411,482
|
||||
5,199411,442
|
||||
6,199411,403
|
||||
7,199411,224
|
||||
8,199411,171
|
||||
9,199411,158
|
||||
10,199411,335
|
||||
70
testdata/data/mstr/eatwh1/csv/FT3.TXT
vendored
Normal file
70
testdata/data/mstr/eatwh1/csv/FT3.TXT
vendored
Normal file
@@ -0,0 +1,70 @@
|
||||
1,1,20161.3663
|
||||
2,1,8053.2704
|
||||
3,1,8268.4059
|
||||
4,1,16536.812
|
||||
5,1,16536.812
|
||||
6,1,8268.4059
|
||||
7,1,0
|
||||
8,1,8053.2704
|
||||
9,1,0
|
||||
10,1,16106.5408
|
||||
1,2,33512.4238
|
||||
2,2,8053.2704
|
||||
3,2,8268.4059
|
||||
4,2,8268.4059
|
||||
5,2,8268.4059
|
||||
6,2,8047.9258
|
||||
7,2,0
|
||||
8,2,0
|
||||
9,2,7429.6318
|
||||
10,2,0
|
||||
1,3,0
|
||||
2,3,0
|
||||
3,3,0
|
||||
4,3,0
|
||||
5,3,0
|
||||
6,3,8212.2699
|
||||
7,3,0
|
||||
8,3,0
|
||||
9,3,0
|
||||
10,3,0
|
||||
1,4,0
|
||||
2,4,0
|
||||
3,4,0
|
||||
4,4,8212.2699
|
||||
5,4,0
|
||||
6,4,16424.5397
|
||||
7,4,16424.5397
|
||||
8,4,8212.2699
|
||||
9,4,0
|
||||
10,4,0
|
||||
1,5,41377.5576
|
||||
2,5,15893.764
|
||||
3,5,7946.882
|
||||
4,5,7946.882
|
||||
5,5,0
|
||||
6,5,0
|
||||
7,5,7960.8315
|
||||
8,5,0
|
||||
9,5,8262.8499
|
||||
10,5,16378.4648
|
||||
1,6,0
|
||||
2,6,0
|
||||
3,6,8212.2699
|
||||
4,6,8212.2699
|
||||
5,6,8212.2699
|
||||
6,6,0
|
||||
7,6,0
|
||||
8,6,0
|
||||
9,6,0
|
||||
10,6,0
|
||||
1,7,0
|
||||
2,7,0
|
||||
3,7,0
|
||||
4,7,0
|
||||
5,7,8123.3971
|
||||
6,7,0
|
||||
7,7,0
|
||||
8,7,0
|
||||
9,7,0
|
||||
10,7,0
|
||||
140
testdata/data/mstr/eatwh1/csv/FT4.TXT
vendored
Normal file
140
testdata/data/mstr/eatwh1/csv/FT4.TXT
vendored
Normal file
@@ -0,0 +1,140 @@
|
||||
1,1,199311,December,260
|
||||
2,1,199311,December,78
|
||||
3,1,199311,December,77
|
||||
4,1,199311,December,185
|
||||
5,1,199311,December,148
|
||||
6,1,199311,December,78
|
||||
7,1,199311,December,0
|
||||
8,1,199311,December,97
|
||||
9,1,199311,December,0
|
||||
10,1,199311,December,181
|
||||
1,2,199311,December,393
|
||||
2,2,199311,December,79
|
||||
3,2,199311,December,78
|
||||
4,2,199311,December,72
|
||||
5,2,199311,December,80
|
||||
6,2,199311,December,99
|
||||
7,2,199311,December,0
|
||||
8,2,199311,December,0
|
||||
9,2,199311,December,75
|
||||
10,2,199311,December,0
|
||||
1,3,199311,December,0
|
||||
2,3,199311,December,0
|
||||
3,3,199311,December,0
|
||||
4,3,199311,December,0
|
||||
5,3,199311,December,0
|
||||
6,3,199311,December,87
|
||||
7,3,199311,December,0
|
||||
8,3,199311,December,0
|
||||
9,3,199311,December,0
|
||||
10,3,199311,December,0
|
||||
1,4,199311,December,0
|
||||
2,4,199311,December,0
|
||||
3,4,199311,December,0
|
||||
4,4,199311,December,93
|
||||
5,4,199311,December,0
|
||||
6,4,199311,December,192
|
||||
7,4,199311,December,166
|
||||
8,4,199311,December,86
|
||||
9,4,199311,December,0
|
||||
10,4,199311,December,0
|
||||
1,5,199311,December,296
|
||||
2,5,199311,December,149
|
||||
3,5,199311,December,65
|
||||
4,5,199311,December,70
|
||||
5,5,199311,December,0
|
||||
6,5,199311,December,0
|
||||
7,5,199311,December,80
|
||||
8,5,199311,December,0
|
||||
9,5,199311,December,84
|
||||
10,5,199311,December,164
|
||||
1,6,199311,December,0
|
||||
2,6,199311,December,0
|
||||
3,6,199311,December,84
|
||||
4,6,199311,December,89
|
||||
5,6,199311,December,84
|
||||
6,6,199311,December,0
|
||||
7,6,199311,December,0
|
||||
8,6,199311,December,0
|
||||
9,6,199311,December,0
|
||||
10,6,199311,December,0
|
||||
1,7,199311,December,0
|
||||
2,7,199311,December,0
|
||||
3,7,199311,December,0
|
||||
4,7,199311,December,0
|
||||
5,7,199311,December,78
|
||||
6,7,199311,December,0
|
||||
7,7,199311,December,0
|
||||
8,7,199311,December,0
|
||||
9,7,199311,December,0
|
||||
10,7,199311,December,0
|
||||
1,1,199411,December,147
|
||||
2,1,199411,December,82
|
||||
3,1,199411,December,81
|
||||
4,1,199411,December,169
|
||||
5,1,199411,December,182
|
||||
6,1,199411,December,92
|
||||
7,1,199411,December,0
|
||||
8,1,199411,December,88
|
||||
9,1,199411,December,0
|
||||
10,1,199411,December,156
|
||||
1,2,199411,December,280
|
||||
2,2,199411,December,77
|
||||
3,2,199411,December,92
|
||||
4,2,199411,December,85
|
||||
5,2,199411,December,96
|
||||
6,2,199411,December,82
|
||||
7,2,199411,December,0
|
||||
8,2,199411,December,0
|
||||
9,2,199411,December,84
|
||||
10,2,199411,December,0
|
||||
1,3,199411,December,0
|
||||
2,3,199411,December,0
|
||||
3,3,199411,December,0
|
||||
4,3,199411,December,0
|
||||
5,3,199411,December,0
|
||||
6,3,199411,December,77
|
||||
7,3,199411,December,0
|
||||
8,3,199411,December,0
|
||||
9,3,199411,December,0
|
||||
10,3,199411,December,0
|
||||
1,4,199411,December,0
|
||||
2,4,199411,December,0
|
||||
3,4,199411,December,0
|
||||
4,4,199411,December,70
|
||||
5,4,199411,December,0
|
||||
6,4,199411,December,152
|
||||
7,4,199411,December,138
|
||||
8,4,199411,December,83
|
||||
9,4,199411,December,0
|
||||
10,4,199411,December,0
|
||||
1,5,199411,December,506
|
||||
2,5,199411,December,175
|
||||
3,5,199411,December,91
|
||||
4,5,199411,December,84
|
||||
5,5,199411,December,0
|
||||
6,5,199411,December,0
|
||||
7,5,199411,December,86
|
||||
8,5,199411,December,0
|
||||
9,5,199411,December,74
|
||||
10,5,199411,December,179
|
||||
1,6,199411,December,0
|
||||
2,6,199411,December,0
|
||||
3,6,199411,December,81
|
||||
4,6,199411,December,74
|
||||
5,6,199411,December,81
|
||||
6,6,199411,December,0
|
||||
7,6,199411,December,0
|
||||
8,6,199411,December,0
|
||||
9,6,199411,December,0
|
||||
10,6,199411,December,0
|
||||
1,7,199411,December,0
|
||||
2,7,199411,December,0
|
||||
3,7,199411,December,0
|
||||
4,7,199411,December,0
|
||||
5,7,199411,December,83
|
||||
6,7,199411,December,0
|
||||
7,7,199411,December,0
|
||||
8,7,199411,December,0
|
||||
9,7,199411,December,0
|
||||
10,7,199411,December,0
|
||||
12
testdata/data/mstr/eatwh1/csv/FT5.TXT
vendored
Normal file
12
testdata/data/mstr/eatwh1/csv/FT5.TXT
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
1,1,199311,176822.574
|
||||
2,1,199311,170379.3088
|
||||
1,2,199311,753020.6479
|
||||
2,2,199311,738874.0759
|
||||
1,3,199311,26974.7359
|
||||
2,3,199311,22847.9744
|
||||
1,1,199411,223960.4307
|
||||
2,1,199411,199235.7342
|
||||
1,2,199411,750814.8522
|
||||
2,2,199411,736806.4593
|
||||
1,3,199411,35743.2607
|
||||
2,3,199411,22602.3762
|
||||
6
testdata/data/mstr/eatwh1/csv/FT6.TXT
vendored
Normal file
6
testdata/data/mstr/eatwh1/csv/FT6.TXT
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
1,1,2322810.61532342
|
||||
2,1,1782346.37861452
|
||||
1,2,2209899.03466696
|
||||
2,2,1722706.11013814
|
||||
1,3,2970038.03004098
|
||||
2,3,2451589.81278695
|
||||
2
testdata/data/mstr/eatwh1/csv/FT7.TXT
vendored
Normal file
2
testdata/data/mstr/eatwh1/csv/FT7.TXT
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
1,10745364.0775
|
||||
2,9327266.1737
|
||||
100
testdata/data/mstr/eatwh1/csv/FT8.TXT
vendored
Normal file
100
testdata/data/mstr/eatwh1/csv/FT8.TXT
vendored
Normal file
@@ -0,0 +1,100 @@
|
||||
1,199344,1591970.2425
|
||||
1,199345,1225650.6227
|
||||
1,199346,760718.8087
|
||||
1,199347,721378.8848
|
||||
1,199348,806767.9583
|
||||
1,199444,1174556.7188
|
||||
1,199445,1372468.7857
|
||||
1,199446,798867.9541
|
||||
1,199447,658688.7502
|
||||
1,199448,938495.9631
|
||||
2,199344,119612.0412
|
||||
2,199345,381139.6592
|
||||
2,199346,707636.2355
|
||||
2,199347,752599.783
|
||||
2,199348,468665.1442
|
||||
2,199444,81070.6115
|
||||
2,199445,360386.1069
|
||||
2,199446,639624.4468
|
||||
2,199447,754752.2983
|
||||
2,199448,590878.9974
|
||||
3,199344,97468.6737
|
||||
3,199345,341805.3974
|
||||
3,199346,591818.9906
|
||||
3,199347,628963.7077
|
||||
3,199348,410380.3375
|
||||
3,199444,66312.1915
|
||||
3,199445,313338.4455
|
||||
3,199446,554765.2485
|
||||
3,199447,641615.1859
|
||||
3,199448,498084.2072
|
||||
4,199344,116774.1695
|
||||
4,199345,412181.6917
|
||||
4,199346,710118.8682
|
||||
4,199347,744534.1638
|
||||
4,199348,504204.9429
|
||||
4,199444,76494.8206
|
||||
4,199445,372929.2712
|
||||
4,199446,680416.0274
|
||||
4,199447,760352.4263
|
||||
4,199448,608440.8652
|
||||
5,199344,107654.6396
|
||||
5,199345,348358.8212
|
||||
5,199346,597406.8403
|
||||
5,199347,666657.738
|
||||
5,199348,426867.203
|
||||
5,199444,66336.4966
|
||||
5,199445,329686.4563
|
||||
5,199446,581792.2708
|
||||
5,199447,628301.0069
|
||||
5,199448,527475.066
|
||||
6,199344,129579.319
|
||||
6,199345,433418.1159
|
||||
6,199346,745642.814
|
||||
6,199347,800308.3308
|
||||
6,199348,534946.6351
|
||||
6,199444,80657.4359
|
||||
6,199445,403140.9555
|
||||
6,199446,705190.4784
|
||||
6,199447,821441.7946
|
||||
6,199448,616202.4863
|
||||
7,199344,119530.9687
|
||||
7,199345,407048.2974
|
||||
7,199346,729094.8516
|
||||
7,199347,774976.3414
|
||||
7,199348,488641.4166
|
||||
7,199444,84441.8885
|
||||
7,199445,373859.738
|
||||
7,199446,684977.7373
|
||||
7,199447,757764.4583
|
||||
7,199448,631318.0021
|
||||
8,199344,102370.8959
|
||||
8,199345,373884.0571
|
||||
8,199346,648923.3614
|
||||
8,199347,670077.7973
|
||||
8,199348,444378.7891
|
||||
8,199444,71071.0343
|
||||
8,199445,344619.1858
|
||||
8,199446,587276.3721
|
||||
8,199447,718666.9103
|
||||
8,199448,509249.1822
|
||||
9,199344,102664.6268
|
||||
9,199345,408078.829
|
||||
9,199346,688893.9011
|
||||
9,199347,734694.9768
|
||||
9,199348,443165.6325
|
||||
9,199444,88823.3595
|
||||
9,199445,341633.7435
|
||||
9,199446,648450.754
|
||||
9,199447,754220.8737
|
||||
9,199448,573601.8929
|
||||
10,199344,130900.0275
|
||||
10,199345,432288.9885
|
||||
10,199346,754908.8483
|
||||
10,199347,793276.8226
|
||||
10,199348,541691.5486
|
||||
10,199444,79026.5855
|
||||
10,199445,398805.1646
|
||||
10,199446,719661.5888
|
||||
10,199447,796110.3692
|
||||
10,199448,643809.431
|
||||
20
testdata/data/mstr/eatwh1/csv/FT9.TXT
vendored
Normal file
20
testdata/data/mstr/eatwh1/csv/FT9.TXT
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
1,199344,2033479.7665
|
||||
1,199345,2709136.1922
|
||||
1,199346,3367699.7433
|
||||
1,199347,3514134.2773
|
||||
1,199348,2616885.5859
|
||||
1,199444,1464770.839
|
||||
1,199445,2748809.0656
|
||||
1,199446,3255465.9476
|
||||
1,199447,3443709.6676
|
||||
1,199448,3163375.0989
|
||||
2,199344,585045.8379
|
||||
2,199345,2054718.2879
|
||||
2,199346,3567463.7764
|
||||
2,199347,3773334.2689
|
||||
2,199348,2452824.0219
|
||||
2,199444,404020.3037
|
||||
2,199445,1862058.7874
|
||||
2,199446,3345556.9306
|
||||
2,199447,3848204.4061
|
||||
2,199448,2974180.9945
|
||||
212
testdata/data/mstr/eatwh1/csv/INVENTORY_CURR.TXT
vendored
Normal file
212
testdata/data/mstr/eatwh1/csv/INVENTORY_CURR.TXT
vendored
Normal file
@@ -0,0 +1,212 @@
|
||||
1,100,51,10,18,,,
|
||||
2,150,78,16,13,,,
|
||||
3,70,36,7,85,,,
|
||||
4,70,39,8,55,,,
|
||||
5,80,42,8,550,,,
|
||||
6,50,27,5,21,,,
|
||||
7,120,60,12,23,,,
|
||||
8,80,42,8,3,,,
|
||||
9,30,17,3,13,,,
|
||||
10,60,33,7,15,,,
|
||||
11,80,44,9,82,,,
|
||||
12,100,51,10,26,,,
|
||||
13,100,53,11,16,,,
|
||||
14,110,56,11,112,,,
|
||||
15,70,38,8,42,,,
|
||||
16,160,83,17,58,,,
|
||||
17,80,41,8,99,,,
|
||||
18,100,51,10,52,,,
|
||||
19,90,45,9,32,,,
|
||||
20,80,44,9,42,,,
|
||||
21,110,57,11,22,,,
|
||||
22,90,47,9,24,,,
|
||||
23,120,60,12,19,,,
|
||||
24,170,87,17,12,,,
|
||||
25,90,48,10,6,,,
|
||||
26,90,50,10,19,,,
|
||||
27,10,8,2,11,,,
|
||||
28,20,14,3,19,,,
|
||||
29,170,86,17,9,,,
|
||||
30,200,102,20,2,,,
|
||||
31,90,45,9,16,,,
|
||||
32,40,23,5,42,,,
|
||||
33,50,29,6,58,,,
|
||||
34,100,51,10,12,,,
|
||||
35,80,44,9,4,,,
|
||||
36,160,81,16,29,,,
|
||||
37,60,33,7,59,,,
|
||||
38,140,74,15,12,,,
|
||||
39,100,51,10,16,,,
|
||||
40,120,62,12,67,,,
|
||||
41,90,45,9,36,,,
|
||||
42,120,63,13,48,,,
|
||||
43,80,44,9,12,,,
|
||||
44,100,53,11,41,,,
|
||||
45,110,56,11,400,,,
|
||||
46,100,54,11,5,,,
|
||||
47,90,47,9,15,,,
|
||||
48,70,36,7,26,,,
|
||||
49,130,68,14,22,,,
|
||||
50,110,59,12,15,,,
|
||||
51,90,50,10,10,,,
|
||||
52,210,107,21,19,,,
|
||||
53,80,44,9,61,,,
|
||||
54,180,93,19,54,,,
|
||||
55,90,48,10,15,,,
|
||||
56,140,74,15,16,,,
|
||||
57,100,51,10,6,,,
|
||||
58,100,51,10,53,,,
|
||||
59,80,44,9,49,,,
|
||||
60,100,53,11,98,,,
|
||||
61,120,60,12,28,,,
|
||||
62,100,54,11,19,,,
|
||||
63,80,42,8,10,,,
|
||||
64,130,66,13,7,,,
|
||||
65,90,45,9,9,,,
|
||||
66,90,48,10,12,,,
|
||||
67,120,62,12,6,,,
|
||||
68,140,72,14,72,,,
|
||||
69,80,41,8,47,,,
|
||||
70,180,95,19,21,,,
|
||||
71,110,57,11,21,,,
|
||||
72,160,84,17,1200,,,
|
||||
73,130,66,13,15,,,
|
||||
74,60,30,6,117,,,
|
||||
75,30,15,3,68,,,
|
||||
76,140,71,14,4,,,
|
||||
77,80,41,8,4,,,
|
||||
78,50,27,5,39,,,
|
||||
79,50,26,5,6,,,
|
||||
80,90,47,9,156,,,
|
||||
81,140,74,15,175,,,
|
||||
82,90,47,9,500,,,
|
||||
83,130,69,14,74,,,
|
||||
84,110,59,12,17,,,
|
||||
85,60,35,7,48,,,
|
||||
86,90,47,9,14,,,
|
||||
87,130,69,14,76,,,
|
||||
88,100,54,11,45,,,
|
||||
89,130,68,14,25,,,
|
||||
90,120,62,12,31,,,
|
||||
91,150,77,15,30,,,
|
||||
92,60,35,7,14,,,
|
||||
93,40,24,5,11,,,
|
||||
94,160,81,16,3,,,
|
||||
95,30,17,3,28,,,
|
||||
96,130,66,13,78,,,
|
||||
97,60,33,7,2,,,
|
||||
98,210,105,21,2,,,
|
||||
99,150,77,15,53,,,
|
||||
100,0,5,1,26,,,
|
||||
101,110,57,11,31,,,
|
||||
102,150,75,15,5,,,
|
||||
103,150,75,15,22,,,
|
||||
104,100,53,11,54,,,
|
||||
105,140,74,15,9,,,
|
||||
106,60,35,7,5,,,
|
||||
107,90,45,9,8,,,
|
||||
108,110,57,11,18,,,
|
||||
109,110,56,11,59,,,
|
||||
110,120,60,12,11,,,
|
||||
111,70,38,8,14,,,
|
||||
112,110,56,11,29,,,
|
||||
113,100,53,11,67,,,
|
||||
114,70,39,8,27,,,
|
||||
115,140,74,15,14,,,
|
||||
116,80,42,8,25,,,
|
||||
117,80,41,8,125,,,
|
||||
118,40,23,5,49,,,
|
||||
119,70,38,8,22,,,
|
||||
120,80,42,8,150,,,
|
||||
121,110,59,12,87,,,
|
||||
122,70,36,7,65,,,
|
||||
123,180,93,19,8,,,
|
||||
124,160,81,16,14,,,
|
||||
125,90,45,9,11,,,
|
||||
126,160,81,16,18,,,
|
||||
127,60,30,6,6,,,
|
||||
128,100,53,11,450,,,
|
||||
129,130,69,14,14,,,
|
||||
130,240,122,24,10,,,
|
||||
131,100,53,11,13,,,
|
||||
132,130,66,13,54,,,
|
||||
133,100,54,11,5,,,
|
||||
134,100,53,11,51,,,
|
||||
135,160,83,17,10,,,
|
||||
136,70,38,8,4,,,
|
||||
137,60,33,7,23,,,
|
||||
138,190,98,20,170,,,
|
||||
139,130,69,14,3,,,
|
||||
140,150,77,15,58,,,
|
||||
141,120,65,13,44,,,
|
||||
142,10,9,2,350,,,
|
||||
143,70,36,7,94,,,
|
||||
144,110,59,12,74,,,
|
||||
145,100,51,10,12,,,
|
||||
146,60,30,6,8,,,
|
||||
147,150,80,16,12,,,
|
||||
148,40,23,5,11,,,
|
||||
149,40,24,5,95,,,
|
||||
150,90,47,9,50,,,
|
||||
151,80,42,8,85,,,
|
||||
152,100,54,11,23,,,
|
||||
153,140,71,14,62,,,
|
||||
154,100,51,10,2,,,
|
||||
155,90,45,9,125,,,
|
||||
156,100,53,11,120,,,
|
||||
157,100,51,10,175,,,
|
||||
158,100,51,10,4,,,
|
||||
159,160,84,17,83,,,
|
||||
160,120,65,13,91,,,
|
||||
161,120,60,12,103,,,
|
||||
162,120,62,12,150,,,
|
||||
163,150,77,15,27,,,
|
||||
164,150,78,16,5,,,
|
||||
165,150,77,15,8,,,
|
||||
166,90,50,10,6,,,
|
||||
167,130,68,14,44,,,
|
||||
168,130,69,14,11,,,
|
||||
169,60,33,7,79,,,
|
||||
170,90,48,10,19,,,
|
||||
171,150,78,16,24,,,
|
||||
172,70,36,7,69,,,
|
||||
173,140,74,15,28,,,
|
||||
174,120,63,13,22,,,
|
||||
175,110,57,11,57,,,
|
||||
176,60,30,6,43,,,
|
||||
177,90,45,9,80,,,
|
||||
178,140,74,15,13,,,
|
||||
179,50,29,6,125,,,
|
||||
180,150,77,15,3,,,
|
||||
181,90,47,9,17,,,
|
||||
182,90,45,9,7,,,
|
||||
183,70,36,7,35,,,
|
||||
184,90,47,9,8,,,
|
||||
185,60,35,7,44,,,
|
||||
186,50,29,6,2,,,
|
||||
187,80,42,8,42,,,
|
||||
188,100,53,11,64,,,
|
||||
189,150,77,15,16,,,
|
||||
190,30,18,4,12,,,
|
||||
191,140,71,14,110,,,
|
||||
192,70,38,8,42,,,
|
||||
193,90,50,10,40,,,
|
||||
194,70,38,8,63,,,
|
||||
195,120,62,12,175,,,
|
||||
196,80,42,8,122,,,
|
||||
197,50,27,5,125,,,
|
||||
198,40,21,4,25,,,
|
||||
199,120,65,13,22,,,
|
||||
200,170,89,18,850,,,
|
||||
201,160,81,16,82,,,
|
||||
202,120,60,12,7,,,
|
||||
203,90,45,9,44,,,
|
||||
204,80,41,8,37,,,
|
||||
205,120,60,12,41,,,
|
||||
206,40,21,4,29,,,
|
||||
207,90,45,9,19,,,
|
||||
208,120,62,12,13,,,
|
||||
209,110,59,12,17,,,
|
||||
210,80,42,8,5,,,
|
||||
211,0,0,0,52,,,
|
||||
212,0,0,0,45,,,
|
||||
1046
testdata/data/mstr/eatwh1/csv/INVENTORY_ORDERS.TXT
vendored
Normal file
1046
testdata/data/mstr/eatwh1/csv/INVENTORY_ORDERS.TXT
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2332
testdata/data/mstr/eatwh1/csv/INVENTORY_Q1_1997.TXT
vendored
Normal file
2332
testdata/data/mstr/eatwh1/csv/INVENTORY_Q1_1997.TXT
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2332
testdata/data/mstr/eatwh1/csv/INVENTORY_Q1_1998.TXT
vendored
Normal file
2332
testdata/data/mstr/eatwh1/csv/INVENTORY_Q1_1998.TXT
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2332
testdata/data/mstr/eatwh1/csv/INVENTORY_Q2_1997.TXT
vendored
Normal file
2332
testdata/data/mstr/eatwh1/csv/INVENTORY_Q2_1997.TXT
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2332
testdata/data/mstr/eatwh1/csv/INVENTORY_Q2_1998.TXT
vendored
Normal file
2332
testdata/data/mstr/eatwh1/csv/INVENTORY_Q2_1998.TXT
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2332
testdata/data/mstr/eatwh1/csv/INVENTORY_Q3_1997.TXT
vendored
Normal file
2332
testdata/data/mstr/eatwh1/csv/INVENTORY_Q3_1997.TXT
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2332
testdata/data/mstr/eatwh1/csv/INVENTORY_Q3_1998.TXT
vendored
Normal file
2332
testdata/data/mstr/eatwh1/csv/INVENTORY_Q3_1998.TXT
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2332
testdata/data/mstr/eatwh1/csv/INVENTORY_Q4_1997.TXT
vendored
Normal file
2332
testdata/data/mstr/eatwh1/csv/INVENTORY_Q4_1997.TXT
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2332
testdata/data/mstr/eatwh1/csv/INVENTORY_Q4_1998.TXT
vendored
Normal file
2332
testdata/data/mstr/eatwh1/csv/INVENTORY_Q4_1998.TXT
vendored
Normal file
File diff suppressed because it is too large
Load Diff
7
testdata/data/mstr/eatwh1/csv/LOOKUP_CLASS.TXT
vendored
Normal file
7
testdata/data/mstr/eatwh1/csv/LOOKUP_CLASS.TXT
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
1,Dresses,1,1
|
||||
2,Blouses,1,1
|
||||
3,Shirts,2,1
|
||||
4,Slacks,2,1
|
||||
5,Basketball,3,2
|
||||
6,Football,3,2
|
||||
7,Baseball,3,2
|
||||
6
testdata/data/mstr/eatwh1/csv/LOOKUP_COLOR.TXT
vendored
Normal file
6
testdata/data/mstr/eatwh1/csv/LOOKUP_COLOR.TXT
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
1,Red
|
||||
2,Blue
|
||||
3,Green
|
||||
4,White
|
||||
5,Black
|
||||
6,Yellow
|
||||
1102
testdata/data/mstr/eatwh1/csv/LOOKUP_DAY.TXT
vendored
Normal file
1102
testdata/data/mstr/eatwh1/csv/LOOKUP_DAY.TXT
vendored
Normal file
File diff suppressed because it is too large
Load Diff
7
testdata/data/mstr/eatwh1/csv/LOOKUP_DEMOG.TXT
vendored
Normal file
7
testdata/data/mstr/eatwh1/csv/LOOKUP_DEMOG.TXT
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
1,Caucasian
|
||||
2,African American
|
||||
3,Hispanic
|
||||
4,Asian
|
||||
5,Native American
|
||||
6,Alien
|
||||
7,Other
|
||||
3
testdata/data/mstr/eatwh1/csv/LOOKUP_DEPARTMENT.TXT
vendored
Normal file
3
testdata/data/mstr/eatwh1/csv/LOOKUP_DEPARTMENT.TXT
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
1,Womens Clothing,1
|
||||
2,Mens Clothing,1
|
||||
3,Sporting Goods,2
|
||||
4
testdata/data/mstr/eatwh1/csv/LOOKUP_DIVISION.TXT
vendored
Normal file
4
testdata/data/mstr/eatwh1/csv/LOOKUP_DIVISION.TXT
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
1,Casual Clothing
|
||||
2,Athletics
|
||||
3,US
|
||||
4,US
|
||||
20
testdata/data/mstr/eatwh1/csv/LOOKUP_ITEM.TXT
vendored
Normal file
20
testdata/data/mstr/eatwh1/csv/LOOKUP_ITEM.TXT
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
1,1,Dresses,Floral Dress,1,1,
|
||||
1,2,Dresses,Knit Dress,1,1,
|
||||
1,3,Dresses,Formal Dress,1,1,
|
||||
2,1,Blouses,Plaid Blouse,1,1,
|
||||
2,2,Blouses,Silk Blouse,1,1,
|
||||
2,3,Blouses,Camisole Blouse,1,1,
|
||||
3,1,Shirts,Formal Shirt,2,1,
|
||||
3,2,Shirts,Turtleneck Shirt,2,1,
|
||||
3,3,Shirts,Casual Shirt,2,1,
|
||||
4,1,Slacks,Levi's,2,1,
|
||||
4,2,Slacks,Dress Pant,2,1,
|
||||
4,3,Slacks,Corduroy,2,1,
|
||||
5,1,Basketball,Jordan Bball,3,2,
|
||||
5,3,Basketball,AirJordans,3,2,
|
||||
6,1,Football,NFL Football,3,2,
|
||||
6,2,Football,Cowboys Jersey,3,2,
|
||||
6,3,Football,Kicking Tee,3,2,
|
||||
7,1,Baseball,Phillies Cap,3,2,
|
||||
7,2,Baseball,Dodgers Jersey,3,2,
|
||||
5,2,Basketball,Bulls Jersey,3,2,The Bulls Jersey is a collectors item signed by th
|
||||
2
testdata/data/mstr/eatwh1/csv/LOOKUP_MANAGER.TXT
vendored
Normal file
2
testdata/data/mstr/eatwh1/csv/LOOKUP_MANAGER.TXT
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
1,Joe Manager
|
||||
2,Jim Manager
|
||||
4
testdata/data/mstr/eatwh1/csv/LOOKUP_MARKET.TXT
vendored
Normal file
4
testdata/data/mstr/eatwh1/csv/LOOKUP_MARKET.TXT
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
1,Mid-Atlantic,1
|
||||
2,New England,1
|
||||
3,Carolinas,2
|
||||
4,Deep South,2
|
||||
36
testdata/data/mstr/eatwh1/csv/LOOKUP_MONTH.TXT
vendored
Normal file
36
testdata/data/mstr/eatwh1/csv/LOOKUP_MONTH.TXT
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
199312,12,December,January,199304
|
||||
199401,1,January,February,199401
|
||||
199402,2,February,March,199401
|
||||
199403,3,March,April,199401
|
||||
199404,4,April,May,199402
|
||||
199405,5,May,June,199402
|
||||
199406,6,June,July,199402
|
||||
199407,7,July,August,199403
|
||||
199408,8,August,September,199403
|
||||
199309,9,September,October,199303
|
||||
199310,10,October,November,199304
|
||||
199411,11,November,December,199404
|
||||
199412,12,December,January,199404
|
||||
199301,1,January,February,199301
|
||||
199302,2,February,March,199301
|
||||
199303,3,March,April,199301
|
||||
199304,4,April,May,199302
|
||||
199305,5,May,June,199302
|
||||
199306,6,June,July,199302
|
||||
199307,7,July,August,199303
|
||||
199308,8,August,September,199303
|
||||
199409,9,September,October,199403
|
||||
199410,10,October,November,199404
|
||||
199311,11,November,December,199304
|
||||
199501,1,January,February,199501
|
||||
199502,2,February,March,199501
|
||||
199503,3,March,April,199501
|
||||
199504,4,April,May,199502
|
||||
199505,5,May,June,199502
|
||||
199506,6,June,July,199502
|
||||
199507,7,July,August,199503
|
||||
199508,8,August,September,199503
|
||||
199509,9,September,October,199503
|
||||
199510,10,October,November,199504
|
||||
199511,11,November,December,199504
|
||||
199512,12,December,January,199504
|
||||
12
testdata/data/mstr/eatwh1/csv/LOOKUP_PRICEZONE.TXT
vendored
Normal file
12
testdata/data/mstr/eatwh1/csv/LOOKUP_PRICEZONE.TXT
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
1,1,1
|
||||
1,1,2
|
||||
2,1,3
|
||||
2,2,1
|
||||
2,2,2
|
||||
3,2,3
|
||||
3,3,1
|
||||
4,3,2
|
||||
4,3,3
|
||||
5,4,1
|
||||
5,4,2
|
||||
5,4,3
|
||||
0
testdata/data/mstr/eatwh1/csv/LOOKUP_QUAL.TXT
vendored
Normal file
0
testdata/data/mstr/eatwh1/csv/LOOKUP_QUAL.TXT
vendored
Normal file
12
testdata/data/mstr/eatwh1/csv/LOOKUP_QUARTER.TXT
vendored
Normal file
12
testdata/data/mstr/eatwh1/csv/LOOKUP_QUARTER.TXT
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
199304,4,Fourth Quarter,199302
|
||||
199301,1,First Quarter,199301
|
||||
199302,2,Second Quarter,199301
|
||||
199303,3,Third Quarter,199302
|
||||
199501,1,First Quarter,199501
|
||||
199502,2,Second Quarter,199501
|
||||
199503,3,Third Quarter,199502
|
||||
199504,4,Fourth Quarter,199502
|
||||
199401,1,First Quarter,199401
|
||||
199402,2,Second Quarter,199401
|
||||
199403,3,Third Quarter,199402
|
||||
199404,4,Fourth Quarter,199402
|
||||
2
testdata/data/mstr/eatwh1/csv/LOOKUP_REGION.TXT
vendored
Normal file
2
testdata/data/mstr/eatwh1/csv/LOOKUP_REGION.TXT
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
1,Northeast
|
||||
2,South
|
||||
6
testdata/data/mstr/eatwh1/csv/LOOKUP_SEASON.TXT
vendored
Normal file
6
testdata/data/mstr/eatwh1/csv/LOOKUP_SEASON.TXT
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
199301,1,Summer,1993
|
||||
199302,2,Winter,1993
|
||||
199401,1,Summer,1994
|
||||
199402,2,Winter,1994
|
||||
199501,1,Summer,1995
|
||||
199502,2,Winter,1995
|
||||
5
testdata/data/mstr/eatwh1/csv/LOOKUP_SIZE.TXT
vendored
Normal file
5
testdata/data/mstr/eatwh1/csv/LOOKUP_SIZE.TXT
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
1,Petite
|
||||
2,Small
|
||||
3,Medium
|
||||
4,Large
|
||||
5,X-Large
|
||||
8
testdata/data/mstr/eatwh1/csv/LOOKUP_STATE.TXT
vendored
Normal file
8
testdata/data/mstr/eatwh1/csv/LOOKUP_STATE.TXT
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
1,MA
|
||||
2,CT
|
||||
3,RI
|
||||
4,MD
|
||||
5,PA
|
||||
6,NC
|
||||
7,SC
|
||||
8,GA
|
||||
10
testdata/data/mstr/eatwh1/csv/LOOKUP_STORE.TXT
vendored
Normal file
10
testdata/data/mstr/eatwh1/csv/LOOKUP_STORE.TXT
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
1,Boston,2,1,1
|
||||
2,Greenwich,2,1,2
|
||||
3,Providence,2,1,3
|
||||
4,Baltimore,1,1,4
|
||||
5,Philadelphia,1,1,5
|
||||
6,Charlotte,3,2,6
|
||||
7,Durham,3,2,6
|
||||
8,Greenville,3,2,7
|
||||
9,Atlanta,4,2,8
|
||||
10,Fayetteville,4,2,8
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user