README.rdoc in taps-0.3.1 vs README.rdoc in taps-0.3.2

- old
+ new

@@ -20,12 +20,16 @@ or when you want to push a local database to a taps server $ taps push postgres://dbuser:dbpassword@localhost/dbname http://httpuser:httppassword@example.com:5000 -or when you want to transfer only 1 table +or when you want to transfer a list of tables - $ taps push postgres://dbuser:dbpassword@localhost/dbname http://httpuser:httppassword@example.com:5000 --filter mytable + $ taps push postgres://dbuser:dbpassword@localhost/dbname http://httpuser:httppassword@example.com:5000 --tables logs,tags + +or when you want to transfer tables that start with a word + + $ taps push postgres://dbuser:dbpassword@localhost/dbname http://httpuser:httppassword@example.com:5000 --filter '^log_' == Known Issues * Foreign Keys get lost in the schema transfer * Tables without primary keys will be incredibly slow to transfer. This is due to it being inefficient having large offset values in queries.