Description
Currently, `DataFrameReader.table` ignores the specified options. The options specified like the following are lost.
val df = spark.read .option("partitionColumn", "id") .option("lowerBound", "0") .option("upperBound", "3") .option("numPartitions", "2") .table("h2.test.people")
We need to make `DataFrameReader.table` take the specified options.