mirror of
https://github.com/dimitri/pgloader.git
synced 2025-08-06 22:37:02 +02:00
Fixed typos
This commit is contained in:
parent
7fd1ddaa5f
commit
1a18b5cfac
@ -18,7 +18,7 @@ never had a *year zero*).
|
|||||||
|
|
||||||
## Versioning
|
## Versioning
|
||||||
|
|
||||||
pgloader version 1.x is quite old and was devleoped in `TCL`.
|
pgloader version 1.x is quite old and was developed in `TCL`.
|
||||||
When faced with maintaining that code, the new emerging development
|
When faced with maintaining that code, the new emerging development
|
||||||
team (hi!) picked `python` instead because that made sense at the
|
team (hi!) picked `python` instead because that made sense at the
|
||||||
time. So pgloader version 2.x was written in python.
|
time. So pgloader version 2.x was written in python.
|
||||||
|
6
TODO.md
6
TODO.md
@ -80,12 +80,12 @@ simpler.
|
|||||||
### performances
|
### performances
|
||||||
|
|
||||||
- some more parallelizing options
|
- some more parallelizing options
|
||||||
- support for partitionning in pgloader itself
|
- support for partitioning in pgloader itself
|
||||||
|
|
||||||
### UI
|
### UI
|
||||||
|
|
||||||
- add a web controler with pretty monitoring
|
- add a web controller with pretty monitoring
|
||||||
- launch new jobs from the web controler
|
- launch new jobs from the web controller
|
||||||
|
|
||||||
### crazy ideas
|
### crazy ideas
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
;;
|
;;
|
||||||
;; Abstrat classes to define the API to connect to a data source
|
;; Abstract classes to define the API to connect to a data source
|
||||||
;;
|
;;
|
||||||
(in-package :pgloader.connection)
|
(in-package :pgloader.connection)
|
||||||
|
|
||||||
|
@ -262,7 +262,7 @@
|
|||||||
|
|
||||||
(return-from copy-database)))
|
(return-from copy-database)))
|
||||||
|
|
||||||
;; Transfert the data
|
;; Transfer the data
|
||||||
(loop :for (schema . tables) :in all-columns
|
(loop :for (schema . tables) :in all-columns
|
||||||
:do (loop :for (table-name . columns) :in tables
|
:do (loop :for (table-name . columns) :in tables
|
||||||
:do
|
:do
|
||||||
|
@ -104,7 +104,7 @@ The transformation from a pair of integers into an IP is done dynamically by
|
|||||||
the pgloader process.
|
the pgloader process.
|
||||||
|
|
||||||
Also, the location is given as a pair of *float* columns for the *longitude*
|
Also, the location is given as a pair of *float* columns for the *longitude*
|
||||||
and the *latiude* where PostgreSQL offers the
|
and the *latitude* where PostgreSQL offers the
|
||||||
[point](http://www.postgresql.org/docs/9.3/interactive/functions-geometry.html)
|
[point](http://www.postgresql.org/docs/9.3/interactive/functions-geometry.html)
|
||||||
datatype, so the pgloader command here will actually transform the data on
|
datatype, so the pgloader command here will actually transform the data on
|
||||||
the fly to use the appropriate data type and its input representation.
|
the fly to use the appropriate data type and its input representation.
|
||||||
|
Loading…
Reference in New Issue
Block a user