Skip to content
This repository has been archived by the owner on Jun 4, 2020. It is now read-only.

Commit

Permalink
Merge pull request #16 from swarm64/develop
Browse files Browse the repository at this point in the history
Make loader runnable from any path (#15)
  • Loading branch information
sdressler authored Jan 16, 2020
2 parents f55d170 + 48e9031 commit 9358e9a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions schemas/ssb/loader.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/bash

cd "$(dirname "$(readlink -f "$0")")"
source ../../scripts/functions.sh

function ingest {
Expand Down
1 change: 1 addition & 0 deletions schemas/tpcds/loader.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/bash

cd "$(dirname "$(readlink -f "$0")")"
source ../../scripts/functions.sh

function stream_to_db {
Expand Down
1 change: 1 addition & 0 deletions schemas/tpch/loader.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/bash

cd "$(dirname "$(readlink -f "$0")")"
source ../../scripts/functions.sh

function ingest {
Expand Down
2 changes: 0 additions & 2 deletions swarm64_run_tpc_benchmark
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@ import logging
import sys

from logging.config import fileConfig

from swarm64_tpc_toolkit.streams import Streams


fileConfig('configs/logging.ini')
logger = logging.getLogger()

Expand Down

0 comments on commit 9358e9a

Please sign in to comment.