Git Product home page Git Product logo

tpch-tools's People

Contributors

eyalroz avatar zingdle avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

tpch-tools's Issues

bugs in scripts/setup-tpch-db

  1. in setup-tpch-db:229:
    [[ ! -d "$data_generation_dir" ]] || die "Was requested ...."
    should be changed to
    [[ -d "$data_generation_dir" ]] || die "Was requested ...."
    The logic is: if data directory doesn't exist , then "die" statement should be executed.

  2. in setup-tpch-db: 400:
    [[ -e $data_generation_dir ]] || die "..."
    When there is no file named "$data_generation_dir ", condition "[[ -e $data_generation_dir ]]" is false and the latter "die" statement is executed, which is not wanted.
    Actually, the [[-e $data_generation_dir]] condition should be changed to [[ ! -e "$data_generation_dir" ]].

fatal: clone of '[email protected]:eyalroz/tpch-dbgen.git' into submodule path 'dbgen' failed

Cannot clone submodule on a machine without my SSH keys added.

$ git submodule update --init
Cloning into 'dbgen'...
Warning: Permanently added the RSA host key for IP address '13.229.188.59' to the list of known hosts.
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
fatal: clone of '[email protected]:eyalroz/tpch-dbgen.git' into submodule path 'dbgen' failed

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.