@@ -5090,7 +5090,7 @@ func TestIntegration_AdminLogicalView(t *testing.T) {
50905090
50915091 logicalViewInfo := LogicalViewInfo {
50925092 LogicalViewID : logicalView ,
5093- Query : fmt .Sprintf ("SELECT _key, fam1['col1'] as col FROM %s " , tblConf .TableID ),
5093+ Query : fmt .Sprintf ("SELECT _key, fam1['col1'] as col FROM `%s` " , tblConf .TableID ),
50945094 }
50955095 if err = instanceAdminClient .CreateLogicalView (ctx , testEnv .Config ().Instance , & logicalViewInfo ); err != nil {
50965096 t .Fatalf ("Creating logical view: %v" , err )
@@ -5123,7 +5123,7 @@ func TestIntegration_AdminLogicalView(t *testing.T) {
51235123 // Update logical view
51245124 newLogicalViewInfo := LogicalViewInfo {
51255125 LogicalViewID : logicalView ,
5126- Query : fmt .Sprintf ("SELECT _key, fam2[col1] as col FROM %s " , tblConf .TableID ),
5126+ Query : fmt .Sprintf ("SELECT _key, fam2[col1] as col FROM `%s` " , tblConf .TableID ),
51275127 }
51285128 err = instanceAdminClient .UpdateLogicalView (ctx , testEnv .Config ().Instance , newLogicalViewInfo )
51295129 if err != nil {
@@ -5202,7 +5202,7 @@ func TestIntegration_AdminMaterializedView(t *testing.T) {
52025202
52035203 materializedViewInfo := MaterializedViewInfo {
52045204 MaterializedViewID : materializedView ,
5205- Query : fmt .Sprintf ("SELECT _key, count(fam1['col1']) as count FROM %s GROUP BY _key" , tblConf .TableID ),
5205+ Query : fmt .Sprintf ("SELECT _key, count(fam1['col1']) as count FROM `%s` GROUP BY _key" , tblConf .TableID ),
52065206 DeletionProtection : Protected ,
52075207 }
52085208 if err = instanceAdminClient .CreateMaterializedView (ctx , testEnv .Config ().Instance , & materializedViewInfo ); err != nil {
0 commit comments