This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wordcount: | |
cc -g -ggdb -shared -o wordcount.so wordcount.c -I`pg_config --includedir-server` -I`pg_config --pkgincludedir`/internal -I`pg_config --pkgincludedir` -fPIC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%YAML 1.1 | |
--- | |
VERSION: 1.0.0.1 | |
DEFINE: | |
- INPUT: | |
NAME: book | |
FILE: | |
# change seghostname and file_path to reflect your | |
# runtime file location |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE OR REPLACE PACKAGE BODY ISZMETL.etl_employee IS | |
PROCEDURE main( p_params param_list DEFAULT NULL ) IS | |
v_params obj_param := iszmk.obj_param( p_plist => p_params ); | |
v_logger obj_logger; | |
v_stmt VARCHAR2( 100 ); | |
BEGIN | |
/*** AUTOMATICALLY GENERATED PROCEDURE ***/ | |
/*** DO NOT CHANGE IT ***/ | |
v_start_date := sysdate; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby | |
# | |
# Foldi Tamas <[email protected]>, BSDL | |
require "yaml" | |
# read configuration | |
@yxlan_dir = File.dirname($0) + "/../" | |
@conf = YAML::load_file( @yxlan_dir + 'etc/yxlon.conf' ) | |
@filename = @yxlan_dir + "log/yxlon_cron.log" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <codesloop/common/test_timer.h> | |
#include <codesloop/common/logger.hh> | |
#include <codesloop/common/common.h> | |
#include <keyspace_client.h> | |
#include <assert.h> | |
#include <vector> | |
NewerOlder