Project

General

Profile

1 4426 aaronmk
#!/bin/sh
2
# Translates a MySQL DB export to PostgreSQL
3
# The export must be created with:
4
# `--compatible=postgresql --add-locks=false --set-charset`
5
# Usage: self {input...|<input} >translated
6
7
sedEreFlag="$(test "$(uname)" = Darwin && echo E || echo r)"
8
9
sed () { "$(which sed)" -"$sedEreFlag" "$@";}
10
11 4463 aaronmk
echo 'SET standard_conforming_strings = off;'
12 4426 aaronmk
sed \
13
-e 's/^  KEY "([^"]*)" \([^)]*\)/  "\1_index" boolean/' \
14
-e "s/\/\*.* (SET NAMES )([0-9A-Za-z_]+) \*\/;/\1'\2';/" \
15
-e 's/ longtext/ text/g' \
16
-e 's/ (int|smallint|tinyint)([ (])/ integer\2/g' \
17
-e 's/ double/ double precision/g' \
18
-e 's/ (integer|double precision|float)(\([^)]*\))?( unsigned)?/ \1/g' \
19 4455 aaronmk
-e "s/'0000-00-00'/'-infinity'/g" \
20 4426 aaronmk
"$@"