This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use role sysadmin; | |
-- set up dev environment | |
create database if not exists my_test_db; | |
create schema if not exists fuzzy_match; | |
create warehouse if not exists dev_wh warehouse_size = 'small' auto_suspend = 300 initially_suspended=true; | |
use schema my_test_db.fuzzy_match; | |
use warehouse dev_wh; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"StreamName": "$input.params('stream-name')" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
USAGE="Usage: bulk-clone <mine|user|org> [name]" | |
[[ $# -eq 0 ]] && echo >&2 "missing arguments: ${USAGE}" && exit 1 | |
# set protocol to ssh | |
gh config set git_protocol ssh -h github.com | |
# check if gh cli is installed |