Home
last modified time | relevance | path

Searched refs:testfoo (Results 1 – 25 of 163) sorted by relevance

1234567

/dports/databases/postgresql96-server/postgresql-9.6.24/src/test/regress/sql/
H A Dpolymorphism.sql740 create function testfoo(a int, a int) returns int as $$ select 1;$$ language sql; function
741 create function testfoo(int, out a int, out a int) returns int as $$ select 1;$$ language sql; function
742 create function testfoo(out a int, inout a int) returns int as $$ select 1;$$ language sql; function
743 create function testfoo(a int, inout a int) returns int as $$ select 1;$$ language sql; function
746 create function testfoo(a int, out a int) returns int as $$ select $1;$$ language sql; function
747 select testfoo(37);
748 drop function testfoo(int);
749 create function testfoo(a int) returns table(a int) as $$ select $1;$$ language sql; function
750 select * from testfoo(37);
751 drop function testfoo(int);
H A Drangefuncs.sql523 create function testfoo() returns record as $$
527 select testfoo();
528 select * from testfoo() as t(f1 int8,f2 int8);
529 select * from testfoo(); -- fail
531 drop function testfoo();
533 create function testfoo() returns setof record as $$
537 select testfoo();
538 select * from testfoo() as t(f1 int8,f2 int8);
539 select * from testfoo(); -- fail
541 drop function testfoo();
/dports/databases/postgresql96-pltcl/postgresql-9.6.24/src/test/regress/sql/
H A Dpolymorphism.sql740 create function testfoo(a int, a int) returns int as $$ select 1;$$ language sql; function
741 create function testfoo(int, out a int, out a int) returns int as $$ select 1;$$ language sql; function
742 create function testfoo(out a int, inout a int) returns int as $$ select 1;$$ language sql; function
743 create function testfoo(a int, inout a int) returns int as $$ select 1;$$ language sql; function
746 create function testfoo(a int, out a int) returns int as $$ select $1;$$ language sql; function
747 select testfoo(37);
748 drop function testfoo(int);
749 create function testfoo(a int) returns table(a int) as $$ select $1;$$ language sql; function
750 select * from testfoo(37);
751 drop function testfoo(int);
H A Drangefuncs.sql523 create function testfoo() returns record as $$
527 select testfoo();
528 select * from testfoo() as t(f1 int8,f2 int8);
529 select * from testfoo(); -- fail
531 drop function testfoo();
533 create function testfoo() returns setof record as $$
537 select testfoo();
538 select * from testfoo() as t(f1 int8,f2 int8);
539 select * from testfoo(); -- fail
541 drop function testfoo();
/dports/databases/postgresql96-plperl/postgresql-9.6.24/src/test/regress/sql/
H A Dpolymorphism.sql740 create function testfoo(a int, a int) returns int as $$ select 1;$$ language sql; function
741 create function testfoo(int, out a int, out a int) returns int as $$ select 1;$$ language sql; function
742 create function testfoo(out a int, inout a int) returns int as $$ select 1;$$ language sql; function
743 create function testfoo(a int, inout a int) returns int as $$ select 1;$$ language sql; function
746 create function testfoo(a int, out a int) returns int as $$ select $1;$$ language sql; function
747 select testfoo(37);
748 drop function testfoo(int);
749 create function testfoo(a int) returns table(a int) as $$ select $1;$$ language sql; function
750 select * from testfoo(37);
751 drop function testfoo(int);
H A Drangefuncs.sql523 create function testfoo() returns record as $$
527 select testfoo();
528 select * from testfoo() as t(f1 int8,f2 int8);
529 select * from testfoo(); -- fail
531 drop function testfoo();
533 create function testfoo() returns setof record as $$
537 select testfoo();
538 select * from testfoo() as t(f1 int8,f2 int8);
539 select * from testfoo(); -- fail
541 drop function testfoo();
/dports/databases/postgresql96-plpython/postgresql-9.6.24/src/test/regress/sql/
H A Dpolymorphism.sql740 create function testfoo(a int, a int) returns int as $$ select 1;$$ language sql; function
741 create function testfoo(int, out a int, out a int) returns int as $$ select 1;$$ language sql; function
742 create function testfoo(out a int, inout a int) returns int as $$ select 1;$$ language sql; function
743 create function testfoo(a int, inout a int) returns int as $$ select 1;$$ language sql; function
746 create function testfoo(a int, out a int) returns int as $$ select $1;$$ language sql; function
747 select testfoo(37);
748 drop function testfoo(int);
749 create function testfoo(a int) returns table(a int) as $$ select $1;$$ language sql; function
750 select * from testfoo(37);
751 drop function testfoo(int);
H A Drangefuncs.sql523 create function testfoo() returns record as $$
527 select testfoo();
528 select * from testfoo() as t(f1 int8,f2 int8);
529 select * from testfoo(); -- fail
531 drop function testfoo();
533 create function testfoo() returns setof record as $$
537 select testfoo();
538 select * from testfoo() as t(f1 int8,f2 int8);
539 select * from testfoo(); -- fail
541 drop function testfoo();
/dports/databases/postgresql10-plperl/postgresql-10.19/src/test/regress/sql/
H A Dpolymorphism.sql740 create function testfoo(a int, a int) returns int as $$ select 1;$$ language sql; function
741 create function testfoo(int, out a int, out a int) returns int as $$ select 1;$$ language sql; function
742 create function testfoo(out a int, inout a int) returns int as $$ select 1;$$ language sql; function
743 create function testfoo(a int, inout a int) returns int as $$ select 1;$$ language sql; function
746 create function testfoo(a int, out a int) returns int as $$ select $1;$$ language sql; function
747 select testfoo(37);
748 drop function testfoo(int);
749 create function testfoo(a int) returns table(a int) as $$ select $1;$$ language sql; function
750 select * from testfoo(37);
751 drop function testfoo(int);
H A Drangefuncs.sql521 create function testfoo() returns record as $$
525 select testfoo();
526 select * from testfoo() as t(f1 int8,f2 int8);
527 select * from testfoo(); -- fail
529 drop function testfoo();
531 create function testfoo() returns setof record as $$
535 select testfoo();
536 select * from testfoo() as t(f1 int8,f2 int8);
537 select * from testfoo(); -- fail
539 drop function testfoo();
/dports/databases/postgresql10-docs/postgresql-10.19/src/test/regress/sql/
H A Dpolymorphism.sql740 create function testfoo(a int, a int) returns int as $$ select 1;$$ language sql; function
741 create function testfoo(int, out a int, out a int) returns int as $$ select 1;$$ language sql; function
742 create function testfoo(out a int, inout a int) returns int as $$ select 1;$$ language sql; function
743 create function testfoo(a int, inout a int) returns int as $$ select 1;$$ language sql; function
746 create function testfoo(a int, out a int) returns int as $$ select $1;$$ language sql; function
747 select testfoo(37);
748 drop function testfoo(int);
749 create function testfoo(a int) returns table(a int) as $$ select $1;$$ language sql; function
750 select * from testfoo(37);
751 drop function testfoo(int);
H A Drangefuncs.sql521 create function testfoo() returns record as $$
525 select testfoo();
526 select * from testfoo() as t(f1 int8,f2 int8);
527 select * from testfoo(); -- fail
529 drop function testfoo();
531 create function testfoo() returns setof record as $$
535 select testfoo();
536 select * from testfoo() as t(f1 int8,f2 int8);
537 select * from testfoo(); -- fail
539 drop function testfoo();
/dports/databases/postgresql10-contrib/postgresql-10.19/src/test/regress/sql/
H A Dpolymorphism.sql740 create function testfoo(a int, a int) returns int as $$ select 1;$$ language sql; function
741 create function testfoo(int, out a int, out a int) returns int as $$ select 1;$$ language sql; function
742 create function testfoo(out a int, inout a int) returns int as $$ select 1;$$ language sql; function
743 create function testfoo(a int, inout a int) returns int as $$ select 1;$$ language sql; function
746 create function testfoo(a int, out a int) returns int as $$ select $1;$$ language sql; function
747 select testfoo(37);
748 drop function testfoo(int);
749 create function testfoo(a int) returns table(a int) as $$ select $1;$$ language sql; function
750 select * from testfoo(37);
751 drop function testfoo(int);
/dports/databases/postgresql10-client/postgresql-10.19/src/test/regress/sql/
H A Dpolymorphism.sql740 create function testfoo(a int, a int) returns int as $$ select 1;$$ language sql; function
741 create function testfoo(int, out a int, out a int) returns int as $$ select 1;$$ language sql; function
742 create function testfoo(out a int, inout a int) returns int as $$ select 1;$$ language sql; function
743 create function testfoo(a int, inout a int) returns int as $$ select 1;$$ language sql; function
746 create function testfoo(a int, out a int) returns int as $$ select $1;$$ language sql; function
747 select testfoo(37);
748 drop function testfoo(int);
749 create function testfoo(a int) returns table(a int) as $$ select $1;$$ language sql; function
750 select * from testfoo(37);
751 drop function testfoo(int);
H A Drangefuncs.sql521 create function testfoo() returns record as $$
525 select testfoo();
526 select * from testfoo() as t(f1 int8,f2 int8);
527 select * from testfoo(); -- fail
529 drop function testfoo();
531 create function testfoo() returns setof record as $$
535 select testfoo();
536 select * from testfoo() as t(f1 int8,f2 int8);
537 select * from testfoo(); -- fail
539 drop function testfoo();
/dports/databases/postgresql10-plpython/postgresql-10.19/src/test/regress/sql/
H A Dpolymorphism.sql740 create function testfoo(a int, a int) returns int as $$ select 1;$$ language sql; function
741 create function testfoo(int, out a int, out a int) returns int as $$ select 1;$$ language sql; function
742 create function testfoo(out a int, inout a int) returns int as $$ select 1;$$ language sql; function
743 create function testfoo(a int, inout a int) returns int as $$ select 1;$$ language sql; function
746 create function testfoo(a int, out a int) returns int as $$ select $1;$$ language sql; function
747 select testfoo(37);
748 drop function testfoo(int);
749 create function testfoo(a int) returns table(a int) as $$ select $1;$$ language sql; function
750 select * from testfoo(37);
751 drop function testfoo(int);
/dports/databases/postgresql10-pltcl/postgresql-10.19/src/test/regress/sql/
H A Dpolymorphism.sql740 create function testfoo(a int, a int) returns int as $$ select 1;$$ language sql; function
741 create function testfoo(int, out a int, out a int) returns int as $$ select 1;$$ language sql; function
742 create function testfoo(out a int, inout a int) returns int as $$ select 1;$$ language sql; function
743 create function testfoo(a int, inout a int) returns int as $$ select 1;$$ language sql; function
746 create function testfoo(a int, out a int) returns int as $$ select $1;$$ language sql; function
747 select testfoo(37);
748 drop function testfoo(int);
749 create function testfoo(a int) returns table(a int) as $$ select $1;$$ language sql; function
750 select * from testfoo(37);
751 drop function testfoo(int);
/dports/databases/postgresql10-server/postgresql-10.19/src/test/regress/sql/
H A Dpolymorphism.sql740 create function testfoo(a int, a int) returns int as $$ select 1;$$ language sql; function
741 create function testfoo(int, out a int, out a int) returns int as $$ select 1;$$ language sql; function
742 create function testfoo(out a int, inout a int) returns int as $$ select 1;$$ language sql; function
743 create function testfoo(a int, inout a int) returns int as $$ select 1;$$ language sql; function
746 create function testfoo(a int, out a int) returns int as $$ select $1;$$ language sql; function
747 select testfoo(37);
748 drop function testfoo(int);
749 create function testfoo(a int) returns table(a int) as $$ select $1;$$ language sql; function
750 select * from testfoo(37);
751 drop function testfoo(int);
/dports/databases/postgresql96-docs/postgresql-9.6.24/src/test/regress/sql/
H A Dpolymorphism.sql740 create function testfoo(a int, a int) returns int as $$ select 1;$$ language sql; function
741 create function testfoo(int, out a int, out a int) returns int as $$ select 1;$$ language sql; function
742 create function testfoo(out a int, inout a int) returns int as $$ select 1;$$ language sql; function
743 create function testfoo(a int, inout a int) returns int as $$ select 1;$$ language sql; function
746 create function testfoo(a int, out a int) returns int as $$ select $1;$$ language sql; function
747 select testfoo(37);
748 drop function testfoo(int);
749 create function testfoo(a int) returns table(a int) as $$ select $1;$$ language sql; function
750 select * from testfoo(37);
751 drop function testfoo(int);
/dports/databases/postgresql96-client/postgresql-9.6.24/src/test/regress/sql/
H A Dpolymorphism.sql740 create function testfoo(a int, a int) returns int as $$ select 1;$$ language sql; function
741 create function testfoo(int, out a int, out a int) returns int as $$ select 1;$$ language sql; function
742 create function testfoo(out a int, inout a int) returns int as $$ select 1;$$ language sql; function
743 create function testfoo(a int, inout a int) returns int as $$ select 1;$$ language sql; function
746 create function testfoo(a int, out a int) returns int as $$ select $1;$$ language sql; function
747 select testfoo(37);
748 drop function testfoo(int);
749 create function testfoo(a int) returns table(a int) as $$ select $1;$$ language sql; function
750 select * from testfoo(37);
751 drop function testfoo(int);
/dports/databases/postgresql96-contrib/postgresql-9.6.24/src/test/regress/sql/
H A Dpolymorphism.sql740 create function testfoo(a int, a int) returns int as $$ select 1;$$ language sql; function
741 create function testfoo(int, out a int, out a int) returns int as $$ select 1;$$ language sql; function
742 create function testfoo(out a int, inout a int) returns int as $$ select 1;$$ language sql; function
743 create function testfoo(a int, inout a int) returns int as $$ select 1;$$ language sql; function
746 create function testfoo(a int, out a int) returns int as $$ select $1;$$ language sql; function
747 select testfoo(37);
748 drop function testfoo(int);
749 create function testfoo(a int) returns table(a int) as $$ select $1;$$ language sql; function
750 select * from testfoo(37);
751 drop function testfoo(int);
/dports/lang/spidermonkey78/firefox-78.9.0/tools/tryselect/test/
H A Dtest_fuzzy.t126 $ ./mach try fuzzy $testargs --full -q "testfoo | 'testbar"
128 Fuzzy query=testfoo | 'testbar
143 $ ./mach try fuzzy $testargs --full --exact -q "testfoo | 'testbar"
145 Fuzzy query=testfoo | 'testbar
/dports/mail/thunderbird/thunderbird-91.8.0/tools/tryselect/test/
H A Dtest_fuzzy.t126 $ ./mach try fuzzy $testargs --full -q "testfoo | 'testbar"
128 Fuzzy query=testfoo | 'testbar
143 $ ./mach try fuzzy $testargs --full --exact -q "testfoo | 'testbar"
145 Fuzzy query=testfoo | 'testbar
/dports/www/firefox/firefox-99.0/tools/tryselect/test/
H A Dtest_fuzzy.t126 $ ./mach try fuzzy $testargs --full -q "testfoo | 'testbar"
128 Fuzzy query=testfoo | 'testbar
143 $ ./mach try fuzzy $testargs --full --exact -q "testfoo | 'testbar"
145 Fuzzy query=testfoo | 'testbar
/dports/www/firefox-esr/firefox-91.8.0/tools/tryselect/test/
H A Dtest_fuzzy.t126 $ ./mach try fuzzy $testargs --full -q "testfoo | 'testbar"
128 Fuzzy query=testfoo | 'testbar
143 $ ./mach try fuzzy $testargs --full --exact -q "testfoo | 'testbar"
145 Fuzzy query=testfoo | 'testbar

1234567