Home
last modified time | relevance | path

Searched refs:parent_tab (Results 1 – 25 of 118) sorted by relevance

12345

/dports/databases/pgmodeler/pgmodeler-0.9.3-beta/libpgmodeler/src/
H A Doperationlist.cpp341 BaseTable *parent_tab=nullptr; in registerObject() local
450 else if(parent_tab) in registerObject()
691 BaseTable *parent_tab=nullptr; in executeOperation() local
760 if(parent_tab) in executeOperation()
802 if(parent_tab) in executeOperation()
826 if(parent_tab) in executeOperation()
827 parent_tab->removeObject(object); in executeOperation()
836 if(parent_tab || parent_rel) in executeOperation()
838 if(parent_tab) in executeOperation()
841 parent_tab->setModified(true); in executeOperation()
[all …]
/dports/databases/pgmodeler/pgmodeler-0.9.3-beta/libpgmodeler_ui/src/
H A Dobjectdepsrefswidget.cpp104 Table *parent_tab=nullptr; in handleItemSelection() local
122 parent_tab=dynamic_cast<Table *>(parent); in handleItemSelection()
127 if((parent_tab && parent_tab->getObjectIndex(this->object) >= 0) || in handleItemSelection()
H A Dcolumnwidget.cpp171 PhysicalTable *parent_tab = dynamic_cast<PhysicalTable *>(table); in applyConfiguration() local
191 if(parent_tab) in applyConfiguration()
193 pk = parent_tab->getPrimaryKey(); in applyConfiguration()
202 for(unsigned idx = 0; idx < parent_tab->getConstraintCount(); idx++) in applyConfiguration()
204 constr = parent_tab->getConstraint(idx); in applyConfiguration()
212 model->updateViewsReferencingTable(parent_tab); in applyConfiguration()
H A Drulewidget.cpp82 void RuleWidget::setAttributes(DatabaseModel *model, OperationList *op_list, BaseTable *parent_tab,… in setAttributes() argument
86 if(!parent_tab) in setAttributes()
89 BaseObjectWidget::setAttributes(model, op_list, rule, parent_tab); in setAttributes()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/test/base/
H A Dfind_result_waiter.cc13 FindResultWaiter::FindResultWaiter(content::WebContents* parent_tab, in FindResultWaiter() argument
16 find_in_page::FindTabHelper::FromWebContents(parent_tab); in FindResultWaiter()
/dports/databases/pgFormatter/pgFormatter-5.1/t/pg-test-files/expected/
H A Dpsql.sql1288 CREATE TABLE parent_tab (
1293 CREATE INDEX parent_index ON parent_tab (id);
1295 CREATE TABLE child_0_10 PARTITION OF parent_tab
1298 CREATE TABLE child_10_20 PARTITION OF parent_tab
1301 CREATE TABLE child_20_30 PARTITION OF parent_tab
1304 INSERT INTO parent_tab
1307 CREATE TABLE child_30_40 PARTITION OF parent_tab
1317 INSERT INTO parent_tab
1328 DROP TABLE parent_tab CASCADE;
/dports/databases/pgFormatter/pgFormatter-5.1/t/pg-test-files/sql/
H A Dpsql.sql1081 create table parent_tab (id int) partition by range (id);
1082 create index parent_index on parent_tab (id);
1083 create table child_0_10 partition of parent_tab
1085 create table child_10_20 partition of parent_tab
1087 create table child_20_30 partition of parent_tab
1089 insert into parent_tab values (generate_series(0,29));
1090 create table child_30_40 partition of parent_tab
1097 insert into parent_tab values (generate_series(30,39));
1110 drop table parent_tab cascade;
/dports/databases/postgresql12-client/postgresql-12.9/src/test/regress/sql/
H A Dpsql.sql1084 create table parent_tab (id int) partition by range (id);
1085 create index parent_index on parent_tab (id);
1086 create table child_0_10 partition of parent_tab
1088 create table child_10_20 partition of parent_tab
1090 create table child_20_30 partition of parent_tab
1092 insert into parent_tab values (generate_series(0,29));
1093 create table child_30_40 partition of parent_tab
1100 insert into parent_tab values (generate_series(30,39));
1113 drop table parent_tab cascade;
/dports/databases/postgresql12-contrib/postgresql-12.9/src/test/regress/sql/
H A Dpsql.sql1084 create table parent_tab (id int) partition by range (id);
1085 create index parent_index on parent_tab (id);
1086 create table child_0_10 partition of parent_tab
1088 create table child_10_20 partition of parent_tab
1090 create table child_20_30 partition of parent_tab
1092 insert into parent_tab values (generate_series(0,29));
1093 create table child_30_40 partition of parent_tab
1100 insert into parent_tab values (generate_series(30,39));
1113 drop table parent_tab cascade;
/dports/databases/postgresql12-plpython/postgresql-12.9/src/test/regress/sql/
H A Dpsql.sql1084 create table parent_tab (id int) partition by range (id);
1085 create index parent_index on parent_tab (id);
1086 create table child_0_10 partition of parent_tab
1088 create table child_10_20 partition of parent_tab
1090 create table child_20_30 partition of parent_tab
1092 insert into parent_tab values (generate_series(0,29));
1093 create table child_30_40 partition of parent_tab
1100 insert into parent_tab values (generate_series(30,39));
1113 drop table parent_tab cascade;
/dports/databases/postgresql12-server/postgresql-12.9/src/test/regress/sql/
H A Dpsql.sql1084 create table parent_tab (id int) partition by range (id);
1085 create index parent_index on parent_tab (id);
1086 create table child_0_10 partition of parent_tab
1088 create table child_10_20 partition of parent_tab
1090 create table child_20_30 partition of parent_tab
1092 insert into parent_tab values (generate_series(0,29));
1093 create table child_30_40 partition of parent_tab
1100 insert into parent_tab values (generate_series(30,39));
1113 drop table parent_tab cascade;
/dports/databases/postgresql12-docs/postgresql-12.9/src/test/regress/sql/
H A Dpsql.sql1084 create table parent_tab (id int) partition by range (id);
1085 create index parent_index on parent_tab (id);
1086 create table child_0_10 partition of parent_tab
1088 create table child_10_20 partition of parent_tab
1090 create table child_20_30 partition of parent_tab
1092 insert into parent_tab values (generate_series(0,29));
1093 create table child_30_40 partition of parent_tab
1100 insert into parent_tab values (generate_series(30,39));
1113 drop table parent_tab cascade;
/dports/databases/postgresql12-plperl/postgresql-12.9/src/test/regress/sql/
H A Dpsql.sql1084 create table parent_tab (id int) partition by range (id);
1085 create index parent_index on parent_tab (id);
1086 create table child_0_10 partition of parent_tab
1088 create table child_10_20 partition of parent_tab
1090 create table child_20_30 partition of parent_tab
1092 insert into parent_tab values (generate_series(0,29));
1093 create table child_30_40 partition of parent_tab
1100 insert into parent_tab values (generate_series(30,39));
1113 drop table parent_tab cascade;
/dports/databases/postgresql12-pltcl/postgresql-12.9/src/test/regress/sql/
H A Dpsql.sql1084 create table parent_tab (id int) partition by range (id);
1085 create index parent_index on parent_tab (id);
1086 create table child_0_10 partition of parent_tab
1088 create table child_10_20 partition of parent_tab
1090 create table child_20_30 partition of parent_tab
1092 insert into parent_tab values (generate_series(0,29));
1093 create table child_30_40 partition of parent_tab
1100 insert into parent_tab values (generate_series(30,39));
1113 drop table parent_tab cascade;
/dports/devel/glade/glade-3.22.1/plugins/gtk+/
H A Dglade-accels.c210 GladeEpropIterTab *parent_tab; in glade_eprop_accel_populate_view() local
249 parent_tab = g_new0 (GladeEpropIterTab, 1); in glade_eprop_accel_populate_view()
250 parent_tab->name = glade_signal_class_get_type (sclass); in glade_eprop_accel_populate_view()
251 parent_tab->iter = gtk_tree_iter_copy (&iter); in glade_eprop_accel_populate_view()
254 g_list_prepend (eprop_accel->parent_iters, parent_tab); in glade_eprop_accel_populate_view()
280 parent_tab = found->data; in glade_eprop_accel_populate_view()
294 gtk_tree_store_append (model, &iter, parent_tab->iter); in glade_eprop_accel_populate_view()
318 gtk_tree_store_append (model, &iter, parent_tab->iter); in glade_eprop_accel_populate_view()
/dports/databases/postgresql13-plpython/postgresql-13.5/src/test/regress/sql/
H A Dpsql.sql1155 create table parent_tab (id int) partition by range (id);
1156 create index parent_index on parent_tab (id);
1157 create table child_0_10 partition of parent_tab
1159 create table child_10_20 partition of parent_tab
1161 create table child_20_30 partition of parent_tab
1163 insert into parent_tab values (generate_series(0,29));
1164 create table child_30_40 partition of parent_tab
1171 insert into parent_tab values (generate_series(30,39));
1184 drop table parent_tab cascade;
/dports/databases/postgresql13-pltcl/postgresql-13.5/src/test/regress/sql/
H A Dpsql.sql1155 create table parent_tab (id int) partition by range (id);
1156 create index parent_index on parent_tab (id);
1157 create table child_0_10 partition of parent_tab
1159 create table child_10_20 partition of parent_tab
1161 create table child_20_30 partition of parent_tab
1163 insert into parent_tab values (generate_series(0,29));
1164 create table child_30_40 partition of parent_tab
1171 insert into parent_tab values (generate_series(30,39));
1184 drop table parent_tab cascade;
/dports/databases/postgresql13-server/postgresql-13.5/src/test/regress/sql/
H A Dpsql.sql1155 create table parent_tab (id int) partition by range (id);
1156 create index parent_index on parent_tab (id);
1157 create table child_0_10 partition of parent_tab
1159 create table child_10_20 partition of parent_tab
1161 create table child_20_30 partition of parent_tab
1163 insert into parent_tab values (generate_series(0,29));
1164 create table child_30_40 partition of parent_tab
1171 insert into parent_tab values (generate_series(30,39));
1184 drop table parent_tab cascade;
/dports/databases/postgresql13-contrib/postgresql-13.5/src/test/regress/sql/
H A Dpsql.sql1155 create table parent_tab (id int) partition by range (id);
1156 create index parent_index on parent_tab (id);
1157 create table child_0_10 partition of parent_tab
1159 create table child_10_20 partition of parent_tab
1161 create table child_20_30 partition of parent_tab
1163 insert into parent_tab values (generate_series(0,29));
1164 create table child_30_40 partition of parent_tab
1171 insert into parent_tab values (generate_series(30,39));
1184 drop table parent_tab cascade;
/dports/databases/postgresql13-client/postgresql-13.5/src/test/regress/sql/
H A Dpsql.sql1155 create table parent_tab (id int) partition by range (id);
1156 create index parent_index on parent_tab (id);
1157 create table child_0_10 partition of parent_tab
1159 create table child_10_20 partition of parent_tab
1161 create table child_20_30 partition of parent_tab
1163 insert into parent_tab values (generate_series(0,29));
1164 create table child_30_40 partition of parent_tab
1171 insert into parent_tab values (generate_series(30,39));
1184 drop table parent_tab cascade;
/dports/databases/postgresql13-plperl/postgresql-13.5/src/test/regress/sql/
H A Dpsql.sql1155 create table parent_tab (id int) partition by range (id);
1156 create index parent_index on parent_tab (id);
1157 create table child_0_10 partition of parent_tab
1159 create table child_10_20 partition of parent_tab
1161 create table child_20_30 partition of parent_tab
1163 insert into parent_tab values (generate_series(0,29));
1164 create table child_30_40 partition of parent_tab
1171 insert into parent_tab values (generate_series(30,39));
1184 drop table parent_tab cascade;
/dports/databases/postgresql13-docs/postgresql-13.5/src/test/regress/sql/
H A Dpsql.sql1155 create table parent_tab (id int) partition by range (id);
1156 create index parent_index on parent_tab (id);
1157 create table child_0_10 partition of parent_tab
1159 create table child_10_20 partition of parent_tab
1161 create table child_20_30 partition of parent_tab
1163 insert into parent_tab values (generate_series(0,29));
1164 create table child_30_40 partition of parent_tab
1171 insert into parent_tab values (generate_series(30,39));
1184 drop table parent_tab cascade;
/dports/databases/postgresql14-pltcl/postgresql-14.1/src/test/regress/sql/
H A Dpsql.sql1173 create table parent_tab (id int) partition by range (id);
1174 create index parent_index on parent_tab (id);
1175 create table child_0_10 partition of parent_tab
1177 create table child_10_20 partition of parent_tab
1179 create table child_20_30 partition of parent_tab
1181 insert into parent_tab values (generate_series(0,29));
1182 create table child_30_40 partition of parent_tab
1189 insert into parent_tab values (generate_series(30,39));
1202 drop table parent_tab cascade;
/dports/databases/postgresql14-plperl/postgresql-14.1/src/test/regress/sql/
H A Dpsql.sql1173 create table parent_tab (id int) partition by range (id);
1174 create index parent_index on parent_tab (id);
1175 create table child_0_10 partition of parent_tab
1177 create table child_10_20 partition of parent_tab
1179 create table child_20_30 partition of parent_tab
1181 insert into parent_tab values (generate_series(0,29));
1182 create table child_30_40 partition of parent_tab
1189 insert into parent_tab values (generate_series(30,39));
1202 drop table parent_tab cascade;
/dports/databases/postgresql14-server/postgresql-14.1/src/test/regress/sql/
H A Dpsql.sql1173 create table parent_tab (id int) partition by range (id);
1174 create index parent_index on parent_tab (id);
1175 create table child_0_10 partition of parent_tab
1177 create table child_10_20 partition of parent_tab
1179 create table child_20_30 partition of parent_tab
1181 insert into parent_tab values (generate_series(0,29));
1182 create table child_30_40 partition of parent_tab
1189 insert into parent_tab values (generate_series(30,39));
1202 drop table parent_tab cascade;

12345