You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by al...@apache.org on 2021/08/02 21:43:40 UTC

[datasketches-postgresql] branch improve_instructions created (now 607a0e9)

This is an automated email from the ASF dual-hosted git repository.

alsay pushed a change to branch improve_instructions
in repository https://gitbox.apache.org/repos/asf/datasketches-postgresql.git.


      at 607a0e9  clarified some steps, promoted docker heading up one level

This branch includes the following new commits:

     new 607a0e9  clarified some steps, promoted docker heading up one level

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[datasketches-postgresql] 01/01: clarified some steps, promoted docker heading up one level

Posted by al...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

alsay pushed a commit to branch improve_instructions
in repository https://gitbox.apache.org/repos/asf/datasketches-postgresql.git

commit 607a0e922ac0472f8af57d0a6a9d8b765efd97b2
Author: AlexanderSaydakov <Al...@users.noreply.github.com>
AuthorDate: Mon Aug 2 14:43:06 2021 -0700

    clarified some steps, promoted docker heading up one level
---
 README.md | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/README.md b/README.md
index 7118f95..7d388b2 100644
--- a/README.md
+++ b/README.md
@@ -81,14 +81,13 @@ and the compilation fails because of not being able to find system include files
      - brew services start postgresql
    - Create a test database if it does not exist yet (on the command line):
       - createdb test
-   - Run the client (console) using the test database:
+   - Run the client (console) using the test database, create the extension and try some of the datasketches functions:
       - psql test
-   - Create datasketches extension in the test database:
-      - create extension datasketches;
-   - Try some of the datasketches functions:
-      - select cpc\_sketch\_to\_string(cpc\_sketch\_build(1));
+      - test=# create extension datasketches;
+      - test=# select cpc\_sketch\_to\_string(cpc\_sketch\_build(1));
+      - test=# \q
 
-You should see the following result:
+The select statement above should produce the following result:
 
 	       cpc_sketch_to_string        
 	-----------------------------------
@@ -110,7 +109,7 @@ You should see the following result:
 	 
 	(1 row)
 
-### Docker
+## Docker
 
 Build Docker image:
 

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org