benchmarks
No description available.
File Explorer
- benchmark.sql
- setup.sql
- benchmark.sql
- queries.json
- setup.sql
- warmup.sql
- benchmark.sql
- queries.json
- setup.sql
- warmup.sql
- benchmark.sql
- queries.json
- setup.sql
- warmup.sql
- warmup.sql
- queries_firebolt.js
- queries_redshift.js
- queries_snowflake.js
- queries.json
- setup.sql
- benchmark.sql
- setup.sql
- warmup.sql
- benchmark.sql
- warmup.sql
- connections-cluster.js
- connections-server.js
- fb-benchmark-k6.js
- package-lock.json
- package.json
- README.md
- __init__.py
- base.py
- bigquery.py
- firebolt.py
- redshift.py
- snowflake.py
- __init__.py
- base.py
- csv_exporter.py
- visual_exporter.py
- __init__.py
- main.py
- runner.py
- README.md
- requirements.txt
- .gitignore
- README.md
- sample_credentials.json
- __init__.py
- k6config.json
- settings.py
- concurrency.md
- first_run.md
- README.md
- TPCH-100gb.csv
- .gitignore
- LICENSE
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git checkout
View Details ▼
git checkout
Checkout a branch or paths to the working tree.
git checkout -b {{branch_name}}
Create and switch to a new branch:
git checkout -b {{branch_name}} {{reference}}
Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):
git checkout {{branch_name}}
Switch to an existing local branch:
git commit
View Details ▼
git commit
Commit files to the repository.
git commit
Open an editor to write a message and commit staged files to the repository:
git commit {{[-m|--message]}} "{{message}}"
Commit staged files to the repository with the specified message:
git commit {{[-F|--file]}} {{path/to/commit_message_file}}
Commit staged files with a message read from a file:
git push
View Details ▼
git push
Push commits to a remote repository.
git push
Send local changes in the current branch to its default remote counterpart:
git push {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart:
git push {{[-u|--set-upstream]}} {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one:
