I've read the available documentation and set up a citus network with one coordinator and two workers. Each database runs in its own docker container. Communication seems to be working.
I created a test table <mytable> in the coordinator database, added some records, then called 'create_distributed_table'. This created matching tables in the 2 workers with the same name.
All 3 tables appear to contain all the records. Plus, there are no shard tables. I thought I was going to get a series of <mytable_shardid> tables.
I am calling <pg_catalog.pg_tables> to get the list of tables.
Have I completely hosed my installation, or is this expected behavior?
Rich MacDonald