├── .github └── repo_meta.yaml ├── BigIntegerMath ├── BigInt_UDF_Documentation.pdf ├── bigint.sql └── bigint_regression_test.sql ├── Ephemeris ├── install.sql └── usage.sql ├── README.md └── RegularExpressions ├── RegExp2_Functions.pdf └── regexp2.sql /.github/repo_meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfc-gh-gpavlik/SnowflakeUDFs/HEAD/.github/repo_meta.yaml -------------------------------------------------------------------------------- /BigIntegerMath/BigInt_UDF_Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfc-gh-gpavlik/SnowflakeUDFs/HEAD/BigIntegerMath/BigInt_UDF_Documentation.pdf -------------------------------------------------------------------------------- /BigIntegerMath/bigint.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfc-gh-gpavlik/SnowflakeUDFs/HEAD/BigIntegerMath/bigint.sql -------------------------------------------------------------------------------- /BigIntegerMath/bigint_regression_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfc-gh-gpavlik/SnowflakeUDFs/HEAD/BigIntegerMath/bigint_regression_test.sql -------------------------------------------------------------------------------- /Ephemeris/install.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfc-gh-gpavlik/SnowflakeUDFs/HEAD/Ephemeris/install.sql -------------------------------------------------------------------------------- /Ephemeris/usage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfc-gh-gpavlik/SnowflakeUDFs/HEAD/Ephemeris/usage.sql -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfc-gh-gpavlik/SnowflakeUDFs/HEAD/README.md -------------------------------------------------------------------------------- /RegularExpressions/RegExp2_Functions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfc-gh-gpavlik/SnowflakeUDFs/HEAD/RegularExpressions/RegExp2_Functions.pdf -------------------------------------------------------------------------------- /RegularExpressions/regexp2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfc-gh-gpavlik/SnowflakeUDFs/HEAD/RegularExpressions/regexp2.sql --------------------------------------------------------------------------------