https://github.com/briandconnelly/udftool
Tools for maintaining PostgreSQL user-defined functions
https://github.com/briandconnelly/udftool
postgresql r redshift udf
Last synced: 5 months ago
JSON representation
Tools for maintaining PostgreSQL user-defined functions
- Host: GitHub
- URL: https://github.com/briandconnelly/udftool
- Owner: briandconnelly
- License: other
- Created: 2021-09-19T22:26:55.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-21T23:41:22.000Z (over 3 years ago)
- Last Synced: 2023-03-11T06:03:34.796Z (about 2 years ago)
- Topics: postgresql, r, redshift, udf
- Language: R
- Homepage: https://briandconnelly.github.io/udftool/
- Size: 204 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
- jimsghstars - briandconnelly/udftool - Tools for maintaining PostgreSQL user-defined functions (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# udftool
[](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[](https://CRAN.R-project.org/package=udftool)
[](https://codecov.io/gh/briandconnelly/udftool?branch=main)
[](https://github.com/briandconnelly/udftool/actions)udftool makes it easy to develop, deploy, and maintain PostgreSQL [user-defined functions](https://www.postgresql.org/docs/current/xfunc.html).
## Installation
This package is in its (very) early stages, so it is not yet available on [CRAN](https://CRAN.R-project.org).
You can install the latest development version by running:``` r
# install.packages("devtools")
devtools::install_github("briandconnelly/udftool")
```