
Answer-first summary for fast verification
Answer: `['index']`
The `primary_keys` parameter in the `create_table` method expects a list of column names if the table has multiple primary keys. For a single primary key, it should still be provided as a list, for example `['index']`. This format is necessary to specify the table's primary keys correctly.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
After instantiating FeatureStoreClient as fs, what should be the format of primary_keys in the following blank to 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
All of the above
No comments yet.