This file contains hidden or 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 AGGREGATE vector_sum ( | |
| sfunc = AXH_Vector_Sum, | |
| basetype = int[], | |
| stype = int[], | |
| initcond = '{0}' | |
| ); | |
| DROP FUNCTION IF EXISTS AXH_Vector_Sum(int[], int[]); | |
| CREATE OR REPLACE FUNCTION AXH_Vector_Sum(int[], int[]) | |
| RETURNS int[] AS $$ |
This file contains hidden or 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 AGGREGATE vector_sum ( | |
| sfunc = AXH_Vector_Sum, | |
| basetype = int[], | |
| stype = int[], | |
| initcond = '{0}' | |
| ); | |
| DROP FUNCTION IF EXISTS AXH_Vector_Sum(int[], int[]); | |
| CREATE OR REPLACE FUNCTION AXH_Vector_Sum(int[], int[]) | |
| RETURNS int[] AS $$ |
This file contains hidden or 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
| # If you come from bash you might have to change your $PATH. | |
| # export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| source ~/perl5/perlbrew/etc/bashrc | |
| export TERM="xterm-256color" | |
| PS1='[\u@\h \W$(__docker_machine_ps1)]\$ ' | |
| [ -n "$PS1" ] | |
| export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH" | |
| PATH="/Library/Frameworks/Python.framework/Versions/3.6/bin:/usr/X11/bin:/Applications/Postgres.app/Contents/Versions/latest/bin:/usr/local/bin/mysql:${PATH}" | |
| export PATH=/usr/local/bin:/usr/local/sbin:$PATH |
OlderNewer