
Ultimate access to all questions.
After instantiating FeatureStoreClient as fs, what should be the format of primary_keys in the following blank to correctly create a table?
fs.create_table(name = table_name, primary_keys = ______________, schema = airbnb_df.schema, description = "All Errors are captured in this table")_
A
index
B
("index")
C
["index"]
D
"index"
E
None of the above