def isGlueTableEnabled()

in scala-spark-sdk/src/main/scala/software/amazon/sagemaker/featurestore/sparksdk/helpers/FeatureGroupHelper.scala [149:153]


  def isGlueTableEnabled(describeResponse: DescribeFeatureGroupResponse): Boolean = {
    val offlineStoreConfig = Option(describeResponse.offlineStoreConfig())

    offlineStoreConfig.nonEmpty && TableFormat.GLUE.equals(offlineStoreConfig.get.tableFormat())
  }