Home
last modified time | relevance | path

Searched refs:EXCLUDED (Results 1 – 25 of 1432) sorted by relevance

12345678910>>...58

/dports/databases/pg_citus/citus-10.2.3/src/test/regress/sql/
H A Dmodification_correctness.sql29 INSERT INTO test (c,a) VALUES(3,4) ON CONFLICT(c) DO UPDATE SET c=EXCLUDED.c, d = EXCLUDED.c;
30 …O test (c,a) VALUES(3,4) ON CONFLICT(c) DO UPDATE SET c=EXCLUDED.c, d = EXCLUDED.c, e = EXCLUDED.c;
31 INSERT INTO test (c,a) VALUES(3,4) ON CONFLICT(c) DO UPDATE SET c=EXCLUDED.c, d = EXCLUDED.c, e = 7;
36 INSERT INTO test (c,a) VALUES(3,4) ON CONFLICT(c) DO UPDATE SET c=EXCLUDED.c, d = EXCLUDED.c;
37 …O test (c,a) VALUES(3,4) ON CONFLICT(c) DO UPDATE SET c=EXCLUDED.c, d = EXCLUDED.c, e = EXCLUDED.c;
38 INSERT INTO test (c,a) VALUES(3,4) ON CONFLICT(c) DO UPDATE SET c=EXCLUDED.c, d = EXCLUDED.c, e = 7;
47 …RT INTO test (c,a) VALUES($1,$2) ON CONFLICT(c) DO UPDATE SET c=EXCLUDED.c, d = EXCLUDED.c, e = $1;
H A Dmulti_insert_select_conflict.sql33 ON CONFLICT(col_1) DO UPDATE SET col_2 = EXCLUDED.col_2 + 1;
53 ON CONFLICT(col_1) DO UPDATE SET col_2 = EXCLUDED.col_2 RETURNING *
82 ON CONFLICT(col_1) DO UPDATE SET col_2 = EXCLUDED.col_2 RETURNING *
117 INSERT INTO target_table SELECT * FROM cte ON CONFLICT(col_1) DO UPDATE SET col_2 = EXCLUDED.col_2 …
127 …FROM cte) UNION (SELECT * FROM cte_2)) ON CONFLICT(col_1) DO UPDATE SET col_2 = EXCLUDED.col_2 + 1;
136 …INSERT INTO target_table SELECT * FROM cte_2 ON CONFLICT(col_1) DO UPDATE SET col_2 = EXCLUDED.col…
238 ON CONFLICT(col_1) DO UPDATE SET col_2 = EXCLUDED.col_2;
304 INSERT INTO target_table SELECT * FROM cte_2 ON CONFLICT(col_1) DO UPDATE SET col_2 = EXCLUDED.col_…
320 …SELECT * FROM target_table LIMIT 10000 ON CONFLICT(col_1) DO UPDATE SET col_2 = EXCLUDED.col_2 + 1;
323 … FROM target_table LIMIT 10000 ON CONFLICT(col_1) DO UPDATE SET col_2 = EXCLUDED.col_2 + 1 RETURNI…
H A Dmulti_upsert.sql43 UPDATE SET other_col = EXCLUDED.other_col WHERE upsert_test.part_key != 1;
71 DO UPDATE SET other_col = EXCLUDED.third_col;
86 third_col = upsert_test.third_col + (EXCLUDED.part_key + EXCLUDED.other_col) + 670;
93 …E SET other_col = (ups_test.other_col + ups_test.third_col + (EXCLUDED.part_key + EXCLUDED.other_c…
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/base/java/org/mozilla/gecko/util/publicsuffix/
H A DPublicSuffixPatterns.java103 static final Set<String> EXCLUDED = new HashSet<>(); field in PublicSuffixPatterns
105 EXCLUDED.add("www.ck");
106 EXCLUDED.add("city.yokohama.jp");
107 EXCLUDED.add("city.nagoya.jp");
108 EXCLUDED.add("city.kobe.jp");
109 EXCLUDED.add("city.sendai.jp");
110 EXCLUDED.add("city.kawasaki.jp");
111 EXCLUDED.add("city.sapporo.jp");
112 EXCLUDED.add("city.kitakyushu.jp");
113 EXCLUDED.add("teledata.mz");
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/geckoview/src/main/java/org/mozilla/gecko/util/publicsuffix/
H A DPublicSuffixPatterns.java105 static final Set<String> EXCLUDED = new HashSet<>(); field in PublicSuffixPatterns
107 EXCLUDED.add("www.ck");
108 EXCLUDED.add("city.yokohama.jp");
109 EXCLUDED.add("city.nagoya.jp");
110 EXCLUDED.add("city.kobe.jp");
111 EXCLUDED.add("city.sendai.jp");
112 EXCLUDED.add("city.kawasaki.jp");
113 EXCLUDED.add("city.sapporo.jp");
114 EXCLUDED.add("city.kitakyushu.jp");
115 EXCLUDED.add("teledata.mz");
/dports/databases/pg_citus/citus-10.2.3/src/test/regress/expected/
H A Dmodification_correctness.out36 INSERT INTO test (c,a) VALUES(3,4) ON CONFLICT(c) DO UPDATE SET c=EXCLUDED.c, d = EXCLUDED.c;
37 …O test (c,a) VALUES(3,4) ON CONFLICT(c) DO UPDATE SET c=EXCLUDED.c, d = EXCLUDED.c, e = EXCLUDED.c;
38 INSERT INTO test (c,a) VALUES(3,4) ON CONFLICT(c) DO UPDATE SET c=EXCLUDED.c, d = EXCLUDED.c, e = 7;
42 INSERT INTO test (c,a) VALUES(3,4) ON CONFLICT(c) DO UPDATE SET c=EXCLUDED.c, d = EXCLUDED.c;
43 …O test (c,a) VALUES(3,4) ON CONFLICT(c) DO UPDATE SET c=EXCLUDED.c, d = EXCLUDED.c, e = EXCLUDED.c;
44 INSERT INTO test (c,a) VALUES(3,4) ON CONFLICT(c) DO UPDATE SET c=EXCLUDED.c, d = EXCLUDED.c, e = 7;
52 …RT INTO test (c,a) VALUES($1,$2) ON CONFLICT(c) DO UPDATE SET c=EXCLUDED.c, d = EXCLUDED.c, e = $1;
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DSimpleTaglet.java49 public static final String EXCLUDED = "x"; field in SimpleTaglet
115 if (locations.indexOf(ALL) != -1 && locations.indexOf(EXCLUDED) == -1) { in SimpleTaglet()
137 return locations.indexOf(CONSTRUCTOR) != -1 && locations.indexOf(EXCLUDED) == -1; in inConstructor()
148 return locations.indexOf(FIELD) != -1 && locations.indexOf(EXCLUDED) == -1; in inField()
159 return locations.indexOf(METHOD) != -1 && locations.indexOf(EXCLUDED) == -1; in inMethod()
170 return locations.indexOf(OVERVIEW) != -1 && locations.indexOf(EXCLUDED) == -1; in inOverview()
181 return locations.indexOf(PACKAGE) != -1 && locations.indexOf(EXCLUDED) == -1; in inPackage()
192 return locations.indexOf(TYPE) != -1&& locations.indexOf(EXCLUDED) == -1; in inType()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DSimpleTaglet.java49 public static final String EXCLUDED = "x"; field in SimpleTaglet
115 if (locations.indexOf(ALL) != -1 && locations.indexOf(EXCLUDED) == -1) { in SimpleTaglet()
137 return locations.indexOf(CONSTRUCTOR) != -1 && locations.indexOf(EXCLUDED) == -1; in inConstructor()
148 return locations.indexOf(FIELD) != -1 && locations.indexOf(EXCLUDED) == -1; in inField()
159 return locations.indexOf(METHOD) != -1 && locations.indexOf(EXCLUDED) == -1; in inMethod()
170 return locations.indexOf(OVERVIEW) != -1 && locations.indexOf(EXCLUDED) == -1; in inOverview()
181 return locations.indexOf(PACKAGE) != -1 && locations.indexOf(EXCLUDED) == -1; in inPackage()
192 return locations.indexOf(TYPE) != -1&& locations.indexOf(EXCLUDED) == -1; in inType()
/dports/net-p2p/libktorrent/libktorrent-21.12.3/src/torrent/
H A Dtorrentfile.cpp68 if (priority != EXCLUDED && dnd) { in setDoNotDownload()
72 priority = EXCLUDED; in setDoNotDownload()
77 if (priority == EXCLUDED && (!dnd)) { in setDoNotDownload()
118 if (priority == EXCLUDED) { in setPriority()
122 if (newpriority == EXCLUDED) { in setPriority()
131 …_priority == ONLY_SEED_PRIORITY || newpriority == ONLY_SEED_PRIORITY || old_priority == EXCLUDED) { in setPriority()
/dports/science/eccodes/eccodes-2.23.0-Source/
H A Dmemfs.py16 EXCLUDED = ["grib3", "codetables", "taf", "stations"] variable
23 EXCLUDED.append(product)
26 EXCLUDED.extend(["grib1", "grib2"])
34 print("Excluding: ", EXCLUDED)
68 dirnames[:] = [dirname for dirname in dirnames if dirname not in EXCLUDED]
/dports/databases/postgresql96-pltcl/postgresql-9.6.24/src/test/isolation/expected/
H A Dinsert-conflict-do-update-2.out4 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
5 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
17 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
18 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
/dports/databases/postgresql96-server/postgresql-9.6.24/src/test/isolation/expected/
H A Dinsert-conflict-do-update-2.out4 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
5 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
17 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
18 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
/dports/databases/postgresql96-plpython/postgresql-9.6.24/src/test/isolation/expected/
H A Dinsert-conflict-do-update-2.out4 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
5 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
17 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
18 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
/dports/databases/postgresql96-plperl/postgresql-9.6.24/src/test/isolation/expected/
H A Dinsert-conflict-do-update-2.out4 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
5 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
17 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
18 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
/dports/databases/postgresql10-plperl/postgresql-10.19/src/test/isolation/expected/
H A Dinsert-conflict-do-update-2.out4 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
5 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
17 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
18 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
/dports/databases/postgresql10-docs/postgresql-10.19/src/test/isolation/expected/
H A Dinsert-conflict-do-update-2.out4 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
5 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
17 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
18 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
/dports/databases/postgresql10-pltcl/postgresql-10.19/src/test/isolation/expected/
H A Dinsert-conflict-do-update-2.out4 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
5 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
17 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
18 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
/dports/databases/postgresql10-contrib/postgresql-10.19/src/test/isolation/expected/
H A Dinsert-conflict-do-update-2.out4 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
5 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
17 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
18 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
/dports/databases/postgresql10-client/postgresql-10.19/src/test/isolation/expected/
H A Dinsert-conflict-do-update-2.out4 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
5 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
17 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
18 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
/dports/databases/postgresql10-plpython/postgresql-10.19/src/test/isolation/expected/
H A Dinsert-conflict-do-update-2.out4 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
5 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
17 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
18 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/.ci/scripts/
H A Dbuild_tutorials.sh105 EXCLUDED=0
114 EXCLUDED=$((EXCLUDED+1))
120 echo "Excluded or skipped $EXCLUDED tutorials"
/dports/databases/postgresql11-plperl/postgresql-11.14/src/test/isolation/expected/
H A Dinsert-conflict-do-update-2.out4 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
5 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
17 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
18 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
/dports/databases/postgresql11-docs/postgresql-11.14/src/test/isolation/expected/
H A Dinsert-conflict-do-update-2.out4 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
5 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
17 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
18 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
/dports/databases/postgresql11-contrib/postgresql-11.14/src/test/isolation/expected/
H A Dinsert-conflict-do-update-2.out4 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
5 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
17 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
18 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
/dports/databases/postgresql11-client/postgresql-11.14/src/test/isolation/expected/
H A Dinsert-conflict-do-update-2.out4 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
5 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
17 …ALUES('FooFoo', 'insert1') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…
18 …ALUES('FOOFOO', 'insert2') ON CONFLICT (lower(key)) DO UPDATE set key = EXCLUDED.key, payload = up…

12345678910>>...58