SYMBOL INDEX (37 symbols across 4 files) FILE: dags/incremental_load_dag.py function get_size (line 29) | def get_size(**context): FILE: dags/operators/s3_to_postgres_operator.py class S3ToPostgresOperator (line 14) | class S3ToPostgresOperator(BaseOperator): method __init__ (line 31) | def __init__(self, method execute (line 57) | def execute(self, context): FILE: dags/operators/soda_to_s3_operator.py class SizeExceededError (line 14) | class SizeExceededError(Exception): method __init__ (line 16) | def __init__(self): method __str__ (line 19) | def __str__(self): class SodaToS3Operator (line 23) | class SodaToS3Operator(BaseOperator): method __init__ (line 41) | def __init__(self, method get_size (line 71) | def get_size(self, obj, seen=None): method parse_metadata (line 93) | def parse_metadata(self, header): method execute (line 112) | def execute(self, context): FILE: dags/sql/init_db_schema.sql type raw (line 14) | CREATE UNLOGGED TABLE raw.soda_evictions ( type raw (line 48) | CREATE UNLOGGED TABLE raw.district_data ( type district_name_uniq_idx (line 69) | CREATE UNIQUE INDEX district_name_uniq_idx ON raw.district_data (district) type raw (line 71) | CREATE UNLOGGED TABLE raw.neighborhood_data ( type neighborhood_name_uniq_idx (line 93) | CREATE UNIQUE INDEX neighborhood_name_uniq_idx ON raw.neighborhood_data ... type staging (line 96) | CREATE TABLE staging.dim_district ( type district_name_uniq_idx (line 118) | CREATE UNIQUE INDEX district_name_uniq_idx ON staging.dim_district (dist... type staging (line 120) | CREATE TABLE staging.dim_neighborhood ( type neighborhood_name_uniq_idx (line 143) | CREATE UNIQUE INDEX neighborhood_name_uniq_idx ON staging.dim_neighborho... type staging (line 145) | CREATE TABLE staging.dim_location ( type staging (line 152) | CREATE TABLE staging.dim_reason ( type staging (line 158) | CREATE TABLE staging.br_reason_group ( type reason_group_key_idx (line 162) | CREATE INDEX reason_group_key_idx ON staging.br_reason_group (reason_gro... type reason_key_idx (line 163) | CREATE INDEX reason_key_idx ON staging.br_reason_group (reason_key) type staging (line 165) | CREATE TABLE staging.dim_date ( type staging (line 189) | CREATE TABLE staging.fact_evictions ( type prod (line 202) | CREATE TABLE prod.dim_district ( type prod (line 225) | CREATE TABLE prod.dim_neighborhood ( type prod (line 249) | CREATE TABLE prod.dim_location ( type prod (line 256) | CREATE TABLE prod.dim_reason ( type prod (line 262) | CREATE TABLE prod.br_reason_group ( type reason_group_key_idx (line 266) | CREATE INDEX reason_group_key_idx ON prod.br_reason_group (reason_group_... type reason_key_idx (line 267) | CREATE INDEX reason_key_idx ON prod.br_reason_group (reason_key) type prod (line 269) | CREATE TABLE prod.dim_date ( type prod (line 293) | CREATE TABLE prod.fact_evictions (