695 lines
16 KiB
Plaintext
695 lines
16 KiB
Plaintext
/* create block tables */
|
|
|
|
SET search_path TO mmt_staging2;
|
|
|
|
drop table if exists mmt_staging2.dbstd_test_transmission_wheels_int;
|
|
drop table if exists mmt_staging2.dbstd_test_h1_int;
|
|
drop table if exists mmt_staging2.dbstd_test_engine_rpm_engine_to_pto_block;
|
|
drop table if exists mmt_staging2.dbstd_test_engine_rpm_required_pull_block;
|
|
drop table if exists mmt_staging2.dbstd_test_engine_rpm_weight_block;
|
|
drop table if exists mmt_staging2.dbstd_test_engine_rpm_tyre_details_block;
|
|
drop table if exists mmt_staging2.DBSTD_test_engine_RPM_tyre_details_int;
|
|
drop table if exists mmt_staging2.dbstd_test_test_condition_block;
|
|
drop table if exists mmt_staging2.dbstd_test_drawbar_performance_selected_summary_block;
|
|
drop table if exists mmt_staging2.dbstd_test_drawbar_performance_gear_performance_block;
|
|
drop table if exists mmt_staging2.dbstd_test_test_equipment_used_block;
|
|
drop table if exists mmt_staging2.dbstd_test_measurement_uncertainty_block;
|
|
drop table if exists mmt_staging2.dbstd_test_tractor_specifications_engine_details_block;
|
|
drop table if exists mmt_staging2.dbstd_test_tractor_specifications_cylinders_block;
|
|
drop table if exists mmt_staging2.dbstd_test_tractor_specifications_fuel_and_injection_block;
|
|
drop table if exists mmt_staging2.dbstd_test_tractor_specifications_cleaner_block;
|
|
drop table if exists mmt_staging2.dbstd_test_transmission_clutch_block;
|
|
drop table if exists mmt_staging2.dbstd_test_transmission_drawbar_block;
|
|
drop table if exists mmt_staging2.dbstd_test_transmission_speed_chart_desc_block;
|
|
drop table if exists mmt_staging2.dbstd_test_transmission_wheels_block;
|
|
drop table if exists mmt_staging2.dbstd_test_transmission_fuel_lubricant_int;
|
|
drop table if exists mmt_staging2.dbstd_test_remarks_block;
|
|
drop table if exists mmt_staging2.dbstd_test_remarks_footer_block;
|
|
drop table if exists mmt_staging2.dbstd_test_h1_block;
|
|
drop table if exists mmt_staging2.dbstd_test_transmission_fuel_lubricant_block;
|
|
drop table if exists mmt_staging2.dbstd_test_engine_rpm_rpm_block;
|
|
drop table if exists mmt_staging2.dbstd_test_transmission_speed_chart_block;
|
|
drop table if exists mmt_staging2.stg_specific_table_dbstd_test;
|
|
drop table if exists mmt_staging2.stg_process_table_dbstd_test;
|
|
|
|
create table mmt_staging2.DBSTD_TEST_H1_INT (syspk serial,dummy_f text,file_syspk int,client_id int,function_id int,make text,model text,file_format text,sheet_mnemonic text,c1 text,c2 text);
|
|
|
|
create table mmt_staging2.DBSTD_TEST_H1_Block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
Test_Request_no text,
|
|
Sample_Receipt_Date text,
|
|
Test_report_No text,
|
|
Tractor_Model text,
|
|
Generation text,
|
|
Customer_Name text,
|
|
Test_Engineer text,
|
|
Test_Report_Date text,
|
|
No_of_Sample text,
|
|
Test_Start_Date text,
|
|
Test_End_Date text,
|
|
Tractor_Sr_No text,
|
|
Test_Standard_Refer text,
|
|
Test_Location text,
|
|
Operator_Name text,
|
|
Project_Group text,
|
|
Objective text,
|
|
Acceptance_criteria text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
|
|
create table mmt_staging2.DBSTD_test_engine_RPM_RPM_block
|
|
(syspk serial,dummy_f text,file_syspk int,client_id int,function_id int,make text,model text,file_format text,sheet_mnemonic text,low_idle_declared text,high_idle_declared text,low_idle_observed text,high_idle_observed text,create_time timestamp DEFAULT current_timestamp);
|
|
|
|
create table mmt_staging2.DBSTD_test_engine_RPM_engine_to_PTO_block(syspk serial,dummy_f text,file_syspk int,client_id int,function_id int,make text,model text, file_format text,sheet_mnemonic text,rated_speed text,engine_to_PTO_ratio text, wheel_base_mm text,engine_power_hp text,PTO_Power_hp text,create_time timestamp DEFAULT current_timestamp);
|
|
|
|
create table mmt_staging2.DBSTD_test_engine_RPM_required_pull_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
pull_type text,
|
|
required_pull_in_kg text,
|
|
required_power_in_hp text,
|
|
actual_pull_in_kg text,
|
|
actual_power_in_hp text,
|
|
calculated_hitch_height_mm text,
|
|
actual_hitch_height_mm text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
create table mmt_staging2.DBSTD_test_engine_RPM_weight_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
weight_kg text,
|
|
Front text,
|
|
rear text,
|
|
Total text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
|
|
create table mmt_staging2.DBSTD_test_engine_RPM_tyre_details_int
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
s_no text,
|
|
tyre_details text,
|
|
front text,
|
|
rear text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
create table mmt_staging2.DBSTD_test_engine_RPM_tyre_details_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
model text,
|
|
Make text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
tyre_make text,
|
|
size text,
|
|
Ply_Rating text,
|
|
Load_Carrying_Capacity_in_Kg text,
|
|
Pressure_kg_cm2 text,
|
|
Number_of_lug text,
|
|
Number_of_no_load_lug_30m text,
|
|
Lug_Height text,
|
|
Dynamic_rolling_radius_mm text,
|
|
Wheel_Rim_Make_Size text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
create table mmt_staging2.DBSTD_test_test_condition_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
c1 text,
|
|
c2 text,
|
|
c3 text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
create table mmt_staging2.DBSTD_test_drawbar_performance_selected_summary_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
c1 text ,
|
|
c2 text ,
|
|
c3 text ,
|
|
c4 text ,
|
|
c5 text ,
|
|
c6 text ,
|
|
c7 text ,
|
|
c8 text ,
|
|
c9 text ,
|
|
c10 text ,
|
|
c11 text ,
|
|
c12 text ,
|
|
c13 text ,
|
|
c14 text ,
|
|
c15 text ,
|
|
c16 text ,
|
|
c17 text ,
|
|
c18 text ,
|
|
c19 text ,
|
|
c20 text ,
|
|
c21 text ,
|
|
c22 text ,
|
|
c23 text ,
|
|
c24 text ,
|
|
c25 text ,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
create table mmt_staging2.DBSTD_test_drawbar_performance_gear_performance_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
c1 text ,
|
|
c2 text ,
|
|
c3 text ,
|
|
c4 text ,
|
|
c5 text ,
|
|
c6 text ,
|
|
c7 text ,
|
|
c8 text ,
|
|
c9 text ,
|
|
c10 text ,
|
|
c11 text ,
|
|
c12 text ,
|
|
c13 text ,
|
|
c14 text ,
|
|
c15 text ,
|
|
c16 text ,
|
|
c17 text ,
|
|
c18 text ,
|
|
c19 text ,
|
|
c20 text ,
|
|
c21 text ,
|
|
c22 text ,
|
|
c23 text ,
|
|
c24 text ,
|
|
c25 text ,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
create table mmt_staging2.DBSTD_test_test_equipment_used_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
s_no text,
|
|
instruments text,
|
|
instruments_no text,
|
|
cali_due_date text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
|
|
create table mmt_staging2.DBSTD_test_measurement_uncertainty_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
load_cell text,
|
|
rpm_meter text,
|
|
speed text,
|
|
fuel_flow_meter text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
create table mmt_staging2.DBSTD_test_tractor_specifications_engine_details_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
make_in_block text,
|
|
type text,
|
|
model_in_block text,
|
|
serial_no text,
|
|
E_P_Ratio text,
|
|
rated_speed text,
|
|
high_idle text,
|
|
low_Idle text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
create table mmt_staging2.DBSTD_test_tractor_specifications_cylinders_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
number text,
|
|
stroke text,
|
|
bore text,
|
|
capacity text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
create table mmt_staging2.DBSTD_test_tractor_specifications_fuel_and_injection_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
capacity_of_fuel_tank_lit text,
|
|
make_type_and_model_of_injection_pump text,
|
|
manufacturer_production_setting text,
|
|
make_type_and_model_of_injectors text,
|
|
make_type_and_model_of_magneto_coil_and_distributor text,
|
|
make_type_and_model_of_carburetor text,
|
|
ignition_or_injection_timing_Manual_or_automatic text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
create table mmt_staging2.DBSTD_test_tractor_specifications_cleaner_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
cleaner_type text,
|
|
make_and_model text,
|
|
type text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
create table mmt_staging2.DBSTD_test_transmission_clutch_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
clutch_type text,
|
|
steering_type text,
|
|
diameter_of_disc_mm text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
create table mmt_staging2.DBSTD_test_transmission_drawbar_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
Type text,
|
|
Height_above_ground_max_mm text ,
|
|
Height_above_ground_min_mm text,
|
|
Position_related_to_PTO text,
|
|
Wheel_Base text,
|
|
test_condition text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
create table mmt_staging2.DBSTD_test_transmission_speed_chart_desc_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
descr text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
create table mmt_staging2.DBSTD_test_transmission_speed_chart_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
tyre_condition text,
|
|
gear text,
|
|
forward text,
|
|
reverse text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
create table mmt_staging2.dbstd_test_transmission_wheels_int
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
Descriptions text,
|
|
Steered_wheels text,
|
|
Driving_wheel text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
|
|
create table mmt_staging2.dbstd_test_transmission_wheels_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
Make_of_tyres text,
|
|
Types text,
|
|
Size text,
|
|
Maximum_permissible_load_kg text,
|
|
Ply_rating text,
|
|
Track_width_max_mm text,
|
|
Track_width_min_mm text,
|
|
Inflation_pressure_kg_cm2 text,
|
|
Location_of_driving_wheel text
|
|
);
|
|
|
|
|
|
create table mmt_staging2.DBSTD_test_transmission_fuel_lubricant_int
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
file_syspk int,
|
|
dummy_f text,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
Descriptions text,
|
|
Diesel_BS_IV text,
|
|
Engine_oil text,
|
|
Transmission_oil text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
create table mmt_staging2.DBSTD_test_transmission_fuel_lubricant_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
dummy_f text,
|
|
file_syspk int,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
Trade_name text,
|
|
type text,
|
|
Octane_Cetane_number text,
|
|
Viscosity text,
|
|
Density_at_15C text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
create table mmt_staging2.DBSTD_test_remarks_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
dummy_f text,
|
|
file_syspk int,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
remarks text,
|
|
parameter text,
|
|
acceptance_criteria text,
|
|
observations text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
create table mmt_staging2.DBSTD_test_remarks_footer_block
|
|
(
|
|
syspk serial,
|
|
client_id int,
|
|
function_id int,
|
|
dummy_f text,
|
|
file_syspk int,
|
|
make text,
|
|
model text,
|
|
file_format text,
|
|
sheet_mnemonic text,
|
|
prepared_by text,
|
|
reviewed_by text,
|
|
approved_by text,
|
|
date text,
|
|
replaces text,
|
|
revision_no text,
|
|
comments text,
|
|
rev1 text,
|
|
rev2 text,
|
|
rev3 text,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
);
|
|
|
|
|
|
create TABLE mmt_staging2.stg_process_table_dbstd_test (
|
|
generic_syspk int,
|
|
file_syspk bigint,
|
|
file_name varchar(1024) NULL,
|
|
file_date date NULL,
|
|
file_format varchar(1024) NULL,
|
|
sheet_number int4 NULL,
|
|
sheet_name varchar(1024) NULL,
|
|
sheet_format text,
|
|
sheet_mnemonic varchar(1024) NULL,
|
|
row_number int4 NULL,
|
|
file_creation_date timestamp NULL,
|
|
column1 varchar(1024) NULL,
|
|
column2 varchar(1024) NULL,
|
|
column3 varchar(1024) NULL,
|
|
column4 varchar(1024) NULL,
|
|
column5 varchar(1024) NULL,
|
|
column6 varchar(1024) NULL,
|
|
column7 varchar(1024) NULL,
|
|
column8 varchar(1024) NULL,
|
|
column9 varchar(1024) NULL,
|
|
column10 varchar(1024) NULL,
|
|
column11 varchar(1024) NULL,
|
|
column12 varchar(1024) NULL,
|
|
column13 varchar(1024) NULL,
|
|
column14 varchar(1024) NULL,
|
|
column15 varchar(1024) NULL,
|
|
column16 varchar(1024) NULL,
|
|
column17 varchar(1024) NULL,
|
|
column18 varchar(1024) NULL,
|
|
column19 varchar(1024) NULL,
|
|
column20 varchar(1024) NULL,
|
|
column21 varchar(1024) NULL,
|
|
column22 varchar(1024) NULL,
|
|
column23 varchar(1024) NULL,
|
|
column24 varchar(1024) NULL,
|
|
column25 varchar(1024) NULL,
|
|
column26 varchar(1024) NULL,
|
|
column27 varchar(1024) NULL,
|
|
column28 varchar(1024) NULL,
|
|
column29 varchar(1024) NULL,
|
|
column30 varchar(1024) NULL,
|
|
column31 varchar(1024) NULL,
|
|
column32 varchar(1024) NULL,
|
|
column33 varchar(1024) NULL,
|
|
column34 varchar(1024) NULL,
|
|
column35 varchar(1024) NULL,
|
|
column36 varchar(1024) NULL,
|
|
column37 varchar(1024) NULL,
|
|
column38 varchar(1024) NULL,
|
|
column39 varchar(1024) NULL,
|
|
column40 varchar(1024) NULL,
|
|
column41 varchar(1024) NULL,
|
|
column42 varchar(1024) NULL,
|
|
column43 varchar(1024) NULL,
|
|
column44 varchar(1024) NULL,
|
|
column45 varchar(1024) NULL,
|
|
column46 varchar(1024) NULL,
|
|
column47 varchar(1024) NULL,
|
|
column48 varchar(1024) NULL,
|
|
column49 varchar(1024) NULL,
|
|
column50 varchar(1024) NULL,
|
|
column51 varchar(1024) NULL,
|
|
column52 varchar(1024) NULL,
|
|
column53 varchar(1024) NULL,
|
|
is_rownumber_fetched int4 NULL,
|
|
create_time timestamp DEFAULT current_timestamp,
|
|
rank int4 NULL,
|
|
rank_tag text null
|
|
);
|
|
|
|
|
|
|
|
CREATE TABLE mmt_staging2.stg_specific_table_dbstd_test (
|
|
generic_syspk int,
|
|
file_syspk bigint,
|
|
file_name varchar(1024) NULL,
|
|
file_date date NULL,
|
|
file_format varchar(1024) NULL,
|
|
sheet_number int4 NULL,
|
|
sheet_name varchar(1024) NULL,
|
|
sheet_format text,
|
|
sheet_mnemonic varchar(1024) NULL,
|
|
row_number int4 NULL,
|
|
file_creation_date timestamp NULL,
|
|
column1 varchar(1024) NULL,
|
|
column2 varchar(1024) NULL,
|
|
column3 varchar(1024) NULL,
|
|
column4 varchar(1024) NULL,
|
|
column5 varchar(1024) NULL,
|
|
column6 varchar(1024) NULL,
|
|
column7 varchar(1024) NULL,
|
|
column8 varchar(1024) NULL,
|
|
column9 varchar(1024) NULL,
|
|
column10 varchar(1024) NULL,
|
|
column11 varchar(1024) NULL,
|
|
column12 varchar(1024) NULL,
|
|
column13 varchar(1024) NULL,
|
|
column14 varchar(1024) NULL,
|
|
column15 varchar(1024) NULL,
|
|
column16 varchar(1024) NULL,
|
|
column17 varchar(1024) NULL,
|
|
column18 varchar(1024) NULL,
|
|
column19 varchar(1024) NULL,
|
|
column20 varchar(1024) NULL,
|
|
column21 varchar(1024) NULL,
|
|
column22 varchar(1024) NULL,
|
|
column23 varchar(1024) NULL,
|
|
column24 varchar(1024) NULL,
|
|
column25 varchar(1024) NULL,
|
|
column26 varchar(1024) NULL,
|
|
column27 varchar(1024) NULL,
|
|
column28 varchar(1024) NULL,
|
|
column29 varchar(1024) NULL,
|
|
column30 varchar(1024) NULL,
|
|
column31 varchar(1024) NULL,
|
|
column32 varchar(1024) NULL,
|
|
column33 varchar(1024) NULL,
|
|
column34 varchar(1024) NULL,
|
|
column35 varchar(1024) NULL,
|
|
column36 varchar(1024) NULL,
|
|
column37 varchar(1024) NULL,
|
|
column38 varchar(1024) NULL,
|
|
column39 varchar(1024) NULL,
|
|
column40 varchar(1024) NULL,
|
|
column41 varchar(1024) NULL,
|
|
column42 varchar(1024) NULL,
|
|
column43 varchar(1024) NULL,
|
|
column44 varchar(1024) NULL,
|
|
column45 varchar(1024) NULL,
|
|
column46 varchar(1024) NULL,
|
|
column47 varchar(1024) NULL,
|
|
column48 varchar(1024) NULL,
|
|
column49 varchar(1024) NULL,
|
|
column50 varchar(1024) NULL,
|
|
column51 varchar(1024) NULL,
|
|
column52 varchar(1024) NULL,
|
|
column53 varchar(1024) NULL,
|
|
is_rownumber_fetched int4 null,
|
|
create_time timestamp DEFAULT current_timestamp
|
|
); |