I have this table named student_classes
:
| id | name | class_ids |
| ----| ---------| -----------|
| 1 | Rebecca | {1,2,3} |
| 2 | Roy | {1,3,4} |
| 3 | Ted | {2,4,5} |
name
is type text
/ string
class_ids
is type integer[]
I created a datastream from PostgreSQL to BigQuery (following these instructions), but when I looked at the table's schema in BigQuery the class_ids
field was gone and I am not sure why.
I was expecting class_ids
would get ingested into BigQuery instead of getting dropped.