# New release: pgloader 3.2

DevFeed: [New release: pgloader 3.2](<https://devfeed.tech/articles/new-release-pgloader-3-2-34548.md>)

Original publisher: [Read original article](<https://tapoueh.org/blog/2015/01/new-release-pgloader-3.2/>)

Author: Dimitri Fontaine PostgreSQL Major Contributor; Author

Published: 2015-01-16T08:35:00Z

Content type: release

Language: en

Sources: [Dimitri Fontaine](<https://devfeed.tech/sources/dimitri-fontaine.md>)

Topics: [PostgreSQL](<https://devfeed.tech/topics/postgresql.md>), [migration](<https://devfeed.tech/topics/migration.md>), [data migrations](<https://devfeed.tech/topics/data-migrations.md>), [Database](<https://devfeed.tech/topics/database.md>), [MySQL](<https://devfeed.tech/topics/mysql.md>), [Command-line interface](<https://devfeed.tech/topics/cli.md>), [SQLite](<https://devfeed.tech/topics/sqlite.md>), [sql-server](<https://devfeed.tech/topics/sql-server.md>)

Tags: [command-line](<https://devfeed.tech/tags/command-line.md>), [csv](<https://devfeed.tech/tags/csv.md>), [data-migrations](<https://devfeed.tech/tags/data-migrations.md>), [error-handling](<https://devfeed.tech/tags/error-handling.md>), [mysql](<https://devfeed.tech/tags/mysql.md>), [postgresql](<https://devfeed.tech/tags/postgresql.md>), [release](<https://devfeed.tech/tags/release.md>), [rollback](<https://devfeed.tech/tags/rollback.md>), [sql-server](<https://devfeed.tech/tags/sql-server.md>), [sqlite](<https://devfeed.tech/tags/sqlite.md>)

## AI overview

This release announces pgloader 3.2, which simplifies common data-loading jobs from the command line. It supports migrations such as MySQL to PostgreSQL with schema discovery, type casting, cleanup, and support for indexes, keys, and comments.

## Source excerpt

PostgreSQL comes with an awesome bulk copy protocol and tooling best known as the COPY and \copy commands. Being a transactional system, PostgreSQL COPY implementation will ROLLBACK any work done if a single error is found in the data set you're importing. That's the reason why pgloader got started: it provides with error handling for the COPY protocol.