Skip to content

Commit

Permalink
fixed misspelled references to RedShift
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb committed Sep 1, 2019
1 parent 4ec2fb3 commit a218aa4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ df = op.load.parquet("../examples/data/foo.parquet")
df = op.load.excel("../examples/data/titanic3.xls")
```

Also you can load data from oracle, redshit, mysql and postgres. See ***Database connection***
Also you can load data from oracle, redshift, mysql and postgres. See ***Database connection***


## Saving Data
Expand All @@ -106,7 +106,7 @@ df.save.parquet("data/foo.parquet")
#df.save.avro("examples/data/foo.avro")
```

Also you can save data to oracle, redshit, mysql and postgres. See ***Database connection***
Also you can save data to oracle, redshift, mysql and postgres. See ***Database connection***


## Handling Spark jars, packages and repositories
Expand Down
4 changes: 2 additions & 2 deletions readme/readme_.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"Also you can load data from oracle, redshit, mysql and postgres. See ***Database connection***"
"Also you can load data from oracle, redshift, mysql and postgres. See ***Database connection***"
]
},
{
Expand Down Expand Up @@ -441,7 +441,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"Also you can save data to oracle, redshit, mysql and postgres. See ***Database connection***"
"Also you can save data to oracle, redshift, mysql and postgres. See ***Database connection***"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions readme/readme_.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ df = op.load.parquet("../examples/data/foo.parquet")
df = op.load.excel("../examples/data/titanic3.xls")
```

Also you can load data from oracle, redshit, mysql and postgres. See ***Database connection***
Also you can load data from oracle, redshift, mysql and postgres. See ***Database connection***


## Saving Data
Expand All @@ -128,7 +128,7 @@ df.save.parquet("data/foo.parquet")
#df.save.avro("examples/data/foo.avro")
```

Also you can save data to oracle, redshit, mysql and postgres. See ***Database connection***
Also you can save data to oracle, redshift, mysql and postgres. See ***Database connection***


## Handling Spark jars, packages and repositories
Expand Down
4 changes: 2 additions & 2 deletions tests/sql/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ sudo docker start mysql
sudo docker run --name postgres --e POSTGRES_USER=SA -e POSTGRES_PASSWORD=SA123 -e POSTGRES_DB=optimus -p 5432:5432 -d postgres
```

### Redshit
This is just postgres with some confgiruation options to looks like redshit
### Redshift
This is just postgres with some configuration options to looks like Redshift
```
sudo docker run --name=redshift -d -p 5439:5439 -e POSTGRES_USER=SA -e POSTGRES_PASSWORD=SA123 -e POSTGRES_DB=optimus guildeducation/docker-amazon-redshift
```
Expand Down

0 comments on commit a218aa4

Please sign in to comment.