From 604f20bb21efb341917914a9ca487ee0b9ad52c5 Mon Sep 17 00:00:00 2001 From: Andy Eschbacher Date: Tue, 9 Jan 2018 15:22:14 -0500 Subject: [PATCH] grrr adds comments to test expectation --- src/pg/test/expected/11_kmeans_test.out | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pg/test/expected/11_kmeans_test.out b/src/pg/test/expected/11_kmeans_test.out index 1a0077c..85b8b13 100644 --- a/src/pg/test/expected/11_kmeans_test.out +++ b/src/pg/test/expected/11_kmeans_test.out @@ -1,5 +1,6 @@ \pset format unaligned \set ECHO all +-- spatial kmeans SELECT count(DISTINCT cluster_no) as clusters FROM @@ -7,6 +8,7 @@ FROM clusters 2 (1 row) +-- weighted mean SELECT count(*) clusters FROM ( @@ -19,6 +21,7 @@ FROM ( clusters 52 (1 row) +-- nonspatial kmeans SELECT cluster_label::int in (0, 1) As cluster_label, cluster_center::json->>'col1' As cc_col1,