├── .circleci └── config.yml ├── .gitignore ├── Dockerfile ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── golang.mk ├── launch └── postgres-to-redshift.yml ├── main.go ├── postgres ├── README.md ├── postgres.go └── postgres_test.go └── redshift ├── README.md ├── redshift.go └── redshift_test.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graveyard/postgres-to-redshift/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graveyard/postgres-to-redshift/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graveyard/postgres-to-redshift/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graveyard/postgres-to-redshift/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graveyard/postgres-to-redshift/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graveyard/postgres-to-redshift/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graveyard/postgres-to-redshift/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graveyard/postgres-to-redshift/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 -------------------------------------------------------------------------------- /golang.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graveyard/postgres-to-redshift/HEAD/golang.mk -------------------------------------------------------------------------------- /launch/postgres-to-redshift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graveyard/postgres-to-redshift/HEAD/launch/postgres-to-redshift.yml -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graveyard/postgres-to-redshift/HEAD/main.go -------------------------------------------------------------------------------- /postgres/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graveyard/postgres-to-redshift/HEAD/postgres/README.md -------------------------------------------------------------------------------- /postgres/postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graveyard/postgres-to-redshift/HEAD/postgres/postgres.go -------------------------------------------------------------------------------- /postgres/postgres_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graveyard/postgres-to-redshift/HEAD/postgres/postgres_test.go -------------------------------------------------------------------------------- /redshift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graveyard/postgres-to-redshift/HEAD/redshift/README.md -------------------------------------------------------------------------------- /redshift/redshift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graveyard/postgres-to-redshift/HEAD/redshift/redshift.go -------------------------------------------------------------------------------- /redshift/redshift_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graveyard/postgres-to-redshift/HEAD/redshift/redshift_test.go --------------------------------------------------------------------------------