代码搜索:Function
找到约 10,000 项符合「Function」的源代码
代码结果 10,000
www.eeworm.com/read/183001/5260216
source create_function_1.source
--
-- CREATE_FUNCTION_1
--
CREATE FUNCTION widget_in(cstring)
RETURNS widget
AS '@abs_builddir@/regress@DLSUFFIX@'
LANGUAGE 'C' STRICT;
CREATE FUNCTION widget_out(widget)
RETURNS cstring
www.eeworm.com/read/183001/5260217
source create_function_2.source
--
-- CREATE_FUNCTION_2
--
CREATE FUNCTION hobbies(person)
RETURNS setof hobbies_r
AS 'select * from hobbies_r where person = $1.name'
LANGUAGE 'sql';
CREATE FUNCTION hobby_construct(text,
www.eeworm.com/read/183001/5260456
source create_function_1.source
--
-- CREATE_FUNCTION_1
--
CREATE FUNCTION widget_in(cstring)
RETURNS widget
AS '@abs_builddir@/regress@DLSUFFIX@'
LANGUAGE 'C' STRICT;
NOTICE: type "widget" is not yet defined
DETAIL: Crea
www.eeworm.com/read/183001/5260457
source create_function_2.source
--
-- CREATE_FUNCTION_2
--
CREATE FUNCTION hobbies(person)
RETURNS setof hobbies_r
AS 'select * from hobbies_r where person = $1.name'
LANGUAGE 'sql';
CREATE FUNCTION hobby_construct(text, t
www.eeworm.com/read/179153/5309854
t 08create_function.t
use Test;
BEGIN { plan tests => 18 }
use DBI;
sub now {
return time();
}
sub add2 {
my ( $a, $b ) = @_;
return $a + $b;
}
sub my_sum {
my $sum = 0;
foreach my $x (@_) {