Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/gitbook-dev' into publish
Browse files Browse the repository at this point in the history
  • Loading branch information
macneale4 committed Feb 21, 2024
2 parents 688887c + d1f34f1 commit 229da8c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions content/reference/sql/version-control/dolt-sql-procedures.md
Original file line number Diff line number Diff line change
Expand Up @@ -545,6 +545,8 @@ CALL DOLT_CLONE('dolthub/us-jails', 'myCustomDbName');

`-b`, `--branch`: The branch to be cloned. If not specified all branches will be cloned.

`--depth`: Clone a single branch and limit history to the given commit depth.

### Output Schema

```text
Expand Down
7 changes: 3 additions & 4 deletions update-perf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,18 @@ os_type="darwin"

sql_reference_dir="content/reference/sql/benchmarks"

new_table="updated.md"

start_template='<!-- START_%s_%s_RESULTS_TABLE -->'
end_template='<!-- END_%s_%s_RESULTS_TABLE -->'

if [ "$#" -ne 3 ]; then
echo "Must supply version and type, eg update-perf.sh 'v0.39.0' '__LD_1__|__DOLT__' 'latency|correctness'"
if [ "$#" -ne 4 ]; then
echo "usage: update-perf.sh <version> <format> <type: latency/correctness> <filepath>"
exit 1;
fi

version="$1"
storage_format="$2"
type="$3"
new_table="$4"

if [[ "$OSTYPE" == "linux-gnu"* ]]; then
os_type="linux"
Expand Down

0 comments on commit 229da8c

Please sign in to comment.