]> git.8kb.co.uk Git - postgresql/pg_update_chunks/commitdiff
Fix formatting of README.md
authorglyn <glyn@8kb.co.uk>
Fri, 13 Feb 2015 13:20:53 +0000 (13:20 +0000)
committerglyn <glyn@8kb.co.uk>
Fri, 13 Feb 2015 13:20:53 +0000 (13:20 +0000)
README.md

index 00b6cdc8967da1a48be353f2c98ecacde5a027ca..c5c8e3a76070c78a3dd1c03d46b5c49e8e9295f0 100755 (executable)
--- a/README.md
+++ b/README.md
@@ -9,15 +9,15 @@ Connects via dblink to perform individual transactions.
 Arguments
 ---------
 
-pg_chunk_update(
-       in_nspname              -- Schema containing the table
-       in_relname              -- Table name
-       in_fields               -- The field names to update comma separated *
-       in_values               -- The values for the corresponding field names *
-       in_where_clause         -- Any where clause for the update *
-       in_chunks               -- Break the update into this many chunks
-       in_conninfo             -- database conninfo to pass to dblink
-)
+       pg_chunk_update(
+               in_nspname              -- Schema containing the table
+               in_relname              -- Table name
+               in_fields               -- The field names to update comma separated *
+               in_values               -- The values for the corresponding field names *
+               in_where_clause         -- Any where clause for the update *
+               in_chunks               -- Break the update into this many chunks
+               in_conninfo             -- database conninfo to pass to dblink
+       )
 
 * Arguments for in_fields, in_values and in_where_clause are plain text and not 
 sanitized in any way, so ensure tight permissions to prevent sql injection.