Hi, I'm trying to create a partitioned table and the partition is not appearing for some reason. Am I doing something wrong, or is this a bug? Below are the commands I'm executing with their output. Note that the 'show partitions' command is not returning anything. If I were to try to load data into this table I'd get a 'get_partition failed' error. I'm using bleeding-edge Hive, built from the trunk.
hive> create table partTable (a string, b int) partitioned by (dt int); OK Time taken: 0.308 seconds hive> show partitions partTable; OK Time taken: 0.329 seconds hive> describe partTable; OK a string b int dt int Time taken: 0.181 seconds thanks, Bill