From dfbfe0809dd97e7dc2ce530a52549451eaef7fdd Mon Sep 17 00:00:00 2001 From: Paula Muir Date: Wed, 14 Dec 2022 16:55:44 +0000 Subject: [PATCH] (GH-1516) Update sql to use array Prior to this commit the db example shows a String however it is an optional array. This commit updates the example from a String to an array. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2a9d68b3f..61c85aa63 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,7 @@ mysql::db { 'mydb': password => 'mypass', host => 'localhost', grant => ['SELECT', 'UPDATE'], - sql => '/path/to/sqlfile.gz', + sql => ['/path/to/sqlfile.gz'], import_cat_cmd => 'zcat', import_timeout => 900, mysql_exec_path => '/opt/rh/rh-myql57/root/bin',