From dafbd2408da4ffa1f42c020f4f6d482bbd90c640 Mon Sep 17 00:00:00 2001 From: Hadi Moshayedi Date: Mon, 7 Apr 2014 19:50:48 +0300 Subject: [PATCH] Updated README and TODO files to reflect that we don't support INSERT/DELETE/UPDATE commands yet. --- README.md | 6 ++++++ TODO.md | 1 + 2 files changed, 7 insertions(+) diff --git a/README.md b/README.md index 1b22bd0..5eb5c1d 100644 --- a/README.md +++ b/README.md @@ -90,6 +90,12 @@ You can use PostgreSQL's ```ANALYZE table_name``` command to collect statistics about the table. These statistics help the query planner to help determine the most efficient execution plan for each query. +** Note. ** We currently don't support updating table using INSERT, DELETE, and +UPDATE commands. + +Example +------- + As an example, we demonstrate loading and querying data to/from a column store table from scratch here. Let's start with downloading and decompressing the data files. diff --git a/TODO.md b/TODO.md index 827e69a..30ef2d7 100644 --- a/TODO.md +++ b/TODO.md @@ -9,6 +9,7 @@ Requested Features * Add new compression methods * Enable ALTER FOREIGN TABLE ADD COLUMN * Enable ALTER FOREIGN TABLE DROP COLUMN +* Enable INSERT/DELETE/UPDATE * Enable users other than superuser to safely create columnar tables (permissions) * Transactional semantics * Add config setting to make pg_fsync() optional