From 91a443479e84000ce2a10c13714fcb1e8e8f5a12 Mon Sep 17 00:00:00 2001 From: Umachandar Jayachandran Date: Thu, 26 Mar 2020 14:54:04 -0700 Subject: [PATCH] Removed RC1 check. --- .../features/sql-big-data-cluster/bootstrap-sample-db.sql | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/samples/features/sql-big-data-cluster/bootstrap-sample-db.sql b/samples/features/sql-big-data-cluster/bootstrap-sample-db.sql index bb023651..732546ac 100644 --- a/samples/features/sql-big-data-cluster/bootstrap-sample-db.sql +++ b/samples/features/sql-big-data-cluster/bootstrap-sample-db.sql @@ -74,9 +74,8 @@ BEGIN CREATE MASTER KEY ENCRYPTION BY PASSWORD = 'sql19bigdatacluster!'; -- Create default data sources for SQL Big Data Cluster - IF SERVERPROPERTY('ProductLevel') <> 'RC1' - CREATE EXTERNAL DATA SOURCE SqlComputePool - WITH (LOCATION = 'sqlcomputepool://controller-svc/default'); + CREATE EXTERNAL DATA SOURCE SqlComputePool + WITH (LOCATION = 'sqlcomputepool://controller-svc/default'); CREATE EXTERNAL DATA SOURCE SqlDataPool WITH (LOCATION = 'sqldatapool://controller-svc/default');