-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support UUID for embulk-output-postgresql #305
Comments
Hello, @gainings. Could you try the following configuration? uuid.txt
in:
type: file
path_prefix: ./uuid.txt
parser:
type: csv
columns:
- { name: id, type: long }
- { name: uuid, type: string }
out:
type: postgresql
host: localhost
user: username
password: password
database: database
table: uuid_test
mode: insert
column_options:
uuid: { type: uuid, value_type: string } |
@hiroyuki-sato thanks to reply! In my environment, multiple configuration files use the same output config file with the include syntax ex
In this situation, it's not possible to set the If that seems difficult, I'll change the way how to use the configuration file. |
Helo, @gainings You can use this branch until introduced new feature. It worked in my environment (I checked the string data only). diff Please let me know if you want to build it. |
Plugin not support postgres UUID datatype now.
UUID have become generally used, so I'd be happy if you could support them.
The text was updated successfully, but these errors were encountered: