From 1bdcd77aefdbd9eb426f638babef63b3ddc663fd Mon Sep 17 00:00:00 2001 From: Trisha Anand Date: Tue, 5 Oct 2021 16:47:42 +0530 Subject: [PATCH] Removing where clause from postgres template (#8202) --- .../postgresPlugin/src/main/resources/templates/SELECT.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/server/appsmith-plugins/postgresPlugin/src/main/resources/templates/SELECT.sql b/app/server/appsmith-plugins/postgresPlugin/src/main/resources/templates/SELECT.sql index dd55e9cb3e..b1ef2174eb 100644 --- a/app/server/appsmith-plugins/postgresPlugin/src/main/resources/templates/SELECT.sql +++ b/app/server/appsmith-plugins/postgresPlugin/src/main/resources/templates/SELECT.sql @@ -1 +1 @@ -SELECT * FROM users where role = 'Admin' ORDER BY id LIMIT 10; \ No newline at end of file +SELECT * FROM users ORDER BY id LIMIT 10; \ No newline at end of file