diff --git a/README.md b/README.md index 514f449..a3f28ea 100644 --- a/README.md +++ b/README.md @@ -11,5 +11,9 @@ stow .vim stow .local if not /usr/local/bin/python3, symlink from /usr/bin same with: fish, bash, sh, +add .local/bin to path todo: configure users with ansible +todo: setup omf in a way that makes sense +todo: rsync +todo: move vimwiki out of this repo, configure so that home has a /wiki and a /blog folder respectively, which are their own repos diff --git a/slackware/.bash_profile b/dotfiles/bash/.bash_profile similarity index 100% rename from slackware/.bash_profile rename to dotfiles/bash/.bash_profile diff --git a/slackware/.bashrc b/dotfiles/bash/.bashrc similarity index 100% rename from slackware/.bashrc rename to dotfiles/bash/.bashrc diff --git a/dotfiles/bin/.local/bin/aliasrc b/dotfiles/bin/.local/bin/aliasrc new file mode 100644 index 0000000..56868c9 --- /dev/null +++ b/dotfiles/bin/.local/bin/aliasrc @@ -0,0 +1 @@ +#/usr/bin/fish diff --git a/dotfiles/bin/.local/bin/colors b/dotfiles/bin/.local/bin/colors new file mode 100755 index 0000000..469cc66 --- /dev/null +++ b/dotfiles/bin/.local/bin/colors @@ -0,0 +1,18 @@ +#!/bin/sh + +# https://stackoverflow.com/questions/69138165/how-to-get-the-rgb-values-of-a-256-color-palette-terminal-color + + + + + +xdef="$HOME/.Xresources" + +colors=( $( sed -re '/^!/d; /^$/d; /^#/d; s/(\*color)([0-9]):/\10\2:/g;' $xdef | grep 'color[01][0-9]:' | sort | sed 's/^.*: *//g' ) +) + +echo +for i in {0..7}; do echo -en "\e[$((30+$i))m ${colors[i]} \u2588\u2588 \e[0m\n"; done +echo +for i in {8..15}; do echo -en "\e[1;$((22+$i))m ${colors[i]} \u2588\u2588 \e[0m\n"; done +echo -e "\n" diff --git a/dotfiles/bin/.local/bin/colortest b/dotfiles/bin/.local/bin/colortest new file mode 100755 index 0000000..65ea8b6 --- /dev/null +++ b/dotfiles/bin/.local/bin/colortest @@ -0,0 +1,7 @@ +#!/bin/sh +for i in {0..255} ; do + printf "\x1b[38;5;${i}m%3d " "${i}" + if (( $i == 15 )) || (( $i > 15 )) && (( ($i-15) % 12 == 0 )); then + echo; + fi +done diff --git a/dotfiles/bin/.local/bin/fcp b/dotfiles/bin/.local/bin/fcp new file mode 100755 index 0000000..bf48d2b --- /dev/null +++ b/dotfiles/bin/.local/bin/fcp @@ -0,0 +1,248 @@ +#!/bin/sh + +# TODO: +# * Look into ssh-hp :). (ie the slowness from ssh may just be from small +# buffers). +# * bring back stderr, currently there is no notification of errors, not even +# ENODIR or device full. +# * fcp src1 src2 src3 ... dst/ doesn't work (but glob does). +# Need to take the last positional arg as dest (and unset it) then use +# positional args at sources. Go through each one and make sure they are all +# local because we don't support mixed remote and local. +# * Doesn't work when the remote end is android. Although if I ssh over and run +# the fcp_ script manually it does work!?! (Maybe something about android +# tar, saw something else (what?) making a fifo instead of pipe.) +# * There are a couple of calls to eval in which any redirect characters +# (angle brackets) could lose our output. They need to be escaped. +# * Not sure about the handling of paths ending in slash or not is proper. +# (Eg where we rename the dest file.) +# I assume if it has no slash it the directory being sent should be renamed +# to the destination name +# (unless it is an existing directory on the dest host). +# * If the receiving (connecting) nc is started before the sending (server) +# one it will wait for one second and try again. They are started in the +# right order but if there are delays in starting the interpreter or +# something that sleep may have to be changed to something more robust. +# * If you want something more sophisticated look at http://www.slac.stanford.edu/~abh/bbcp/ + +portno=4365 +comp="" + +usage() { + cat </dev/null || { + ret=$? + usage + exit $ret +} +eval "set -- $(getopt -o hcp: -l help -- "${@}")" + +# Sometimes set and/or getopt leave a -- there when it shouldn't be +[ "$a1" != "--" ] && [ "$1" = "--" ] && shift + +while [ -n "$1" ];do + case "$1" in + -h|--help) + usage + exit + ;; + -c) comp="-z" ;; + -p) + portno="$2" + shift + ;; + --) + shift + break + ;; + -*) + echo "Unrecognized argument: $1" + usage + exit 1 + ;; + *) break ;; + esac + shift +done + +while [ -n "$1" ];do + case "$1" in + *) + if [ -z "$srcpath" ];then + srcpath="$1" + elif [ -z "$dstpath" ];then + dstpath="$1" + else + echo "Too many positional arguments (expected 2)." >&2 + echo "Try escaping any globs in the destination path." >&2 + usage + exit 1 + fi + ;; + esac + shift +done + +if [ -z "$srcpath" ];then + usage + exit 1 +fi +[ "$srcpath" = "." ] && srcpath="./" +[ "$srcpath" = ".." ] && srcpath="../" +[ "$dstpath" = "." ] && dstpath="./" +[ "$dstpath" = ".." ] && dstpath="../" +[ -z "$dstpath" ] && dstpath="./" + +case "$srcpath" in + *\\:*) continue ;; + *:*) + srchost="${srcpath%%:*}" + srcpath="${srcpath#*:}" + ;; +esac +case "$dstpath" in + *\\:*) continue ;; + *:*) + dsthost="${dstpath%%:*}" + dstpath="${dstpath#*:}" + ;; +esac + +sendcmd() { + dsthost="${1#*@}" + srcpath="$2" + srcdir="$(dirname "$srcpath")" + srcbase="$(basename "$srcpath")" + dstpath="$3" + [ "${dstpath%/}" = "$dstpath" ] && dstbase="$(basename "$dstpath")" + cat </dev/null | grep -q check-device || trans=v +pv=pv +type pv >/dev/null 2>&1 || pv=cat +# Try nc twice, with a one second timeout. In case we get called before the +# remote end has started up. May need to come up with something more +# sophisticated in situations where we have to wait longer for the initial +# setup. +echo "\$srcbase" | tar -cT- ${comp} "\$trans" | + \$pv | ( nc -q 0 -w 3 "${dsthost#*@}" $portno 2>/dev/null || + { sleep 1 && nc -q 0 -w 3 "${dsthost#*@}" $portno ; } ) +EOS +} + +recvcmd() { + dstpath="$1" + srcbase="$(basename "$2")" + cat </dev/null | grep -q check-device || trans=-v +pv=pv +type pv >/dev/null 2>&1 || pv=cat +if [ "\$dstbase" != '-' ] ;then + mkdir -p "\$dstdir" || exit \$? + cd "\$dstdir" || exit \$? +fi +nc -lp $portno -w 20 | \$pv | { + if [ "\$dstbase" != '-' ] ;then + tar -x ${comp} "\$trans" + else + cat + fi + } +EOS +} + +rpc() { + ssh "$1" "export ff=/tmp/fcp_$$_\$\$_cmd ; cat > \$ff ; nohup sh -c \"sh \$ff && rm -f \$ff\" /dev/null 2>&1 &" + [ $? -ne 0 ] && echo "Try escaping any ':' in a path if it is not supposed to be a host seperator." >&2 +} + +myip() { + # dig and nslookup and hosts aren't on all machines and don't look in + # /etc/hosts. Getent isn't everywhere and sometimes returns ipv6 addreses on + # non-ipv6 enabled hosts. getent ahostsv4 I don't know how prevalent that is. + tip="$(ping -c1 -W0.1 ${1#*@} 2>&1 | tr -d '():' | awk '/^PING/{print $3}')" + [ -n "$tip" ] && + ip route get "$tip" | sed -n 's/^.*src \([^ ]*\).*$/\1/p' +} + +if [ -n "$dsthost" ] && [ -n "$srchost" ];then + recvcmd "$dstpath" "$srcpath" | rpc "$dsthost" + sendcmd "$dsthost" "$srcpath" "$dstpath" | rpc "$srchost" + exit $? +elif [ -n "$dsthost" ];then + recvcmd "$dstpath" "$srcpath" | rpc "$dsthost" + sendcmd "$dsthost" "$srcpath" "$dstpath" > /tmp/fcp_$$_cmd + sh /tmp/fcp_$$_cmd + rm /tmp/fcp_$$_cmd + exit $? +elif [ -n "$srchost" ];then + dsthost="$(myip "$srchost")" + [ -z "$dsthost" ] && { + echo "Couldn't find route to $srchost" >&2 + exit 1 + } + recvcmd "$dstpath" "$srcpath" > /tmp/fcp_$$_cmd + sh /tmp/fcp_$$_cmd & + sendcmd "$dsthost" "$srcpath" "$dstpath" | rpc "$srchost" + wait + rm /tmp/fcp_$$_cmd + exit $? +else + srcdir="$(dirname "$srcpath")" + srcbase="$(basename "$srcpath")" + if [ -d "$dstpath" ] || [ "${dstpath%/}" != "$dstpath" ];then + dstdir="$dstpath" + else + dstdir="$(dirname "$dstpath")" + fi + # TODO: Handle file renames. + dstpath="`eval echo ${dstpath}`" + mkdir -p "$dstpath" + tar -C "$srcdir" -c "$srcbase" | tar -C "$dstdir" -x + exit $? +fi + diff --git a/slackware/bin/jbrowse b/dotfiles/bin/.local/bin/jbrowse similarity index 100% rename from slackware/bin/jbrowse rename to dotfiles/bin/.local/bin/jbrowse diff --git a/slackware/bin/notifyme b/dotfiles/bin/.local/bin/notifyme similarity index 100% rename from slackware/bin/notifyme rename to dotfiles/bin/.local/bin/notifyme diff --git a/slackware/bin/prune_local_branches b/dotfiles/bin/.local/bin/prune_local_branches similarity index 100% rename from slackware/bin/prune_local_branches rename to dotfiles/bin/.local/bin/prune_local_branches diff --git a/slackware/bin/sugar b/dotfiles/bin/.local/bin/sugar similarity index 100% rename from slackware/bin/sugar rename to dotfiles/bin/.local/bin/sugar diff --git a/slackware/.config/bspwm/bspwmrc b/dotfiles/bspwm/.config/bspwm/bspwmrc similarity index 100% rename from slackware/.config/bspwm/bspwmrc rename to dotfiles/bspwm/.config/bspwm/bspwmrc diff --git a/slackware/.config/fish/completions/awsume.fish b/dotfiles/fish/.config/fish/completions/awsume.fish similarity index 100% rename from slackware/.config/fish/completions/awsume.fish rename to dotfiles/fish/.config/fish/completions/awsume.fish diff --git a/slackware/.config/fish/completions/fisher.fish b/dotfiles/fish/.config/fish/completions/fisher.fish similarity index 100% rename from slackware/.config/fish/completions/fisher.fish rename to dotfiles/fish/.config/fish/completions/fisher.fish diff --git a/slackware/.config/fish/completions/nvm.fish b/dotfiles/fish/.config/fish/completions/nvm.fish similarity index 100% rename from slackware/.config/fish/completions/nvm.fish rename to dotfiles/fish/.config/fish/completions/nvm.fish diff --git a/slackware/.config/fish/completions/watson.fish b/dotfiles/fish/.config/fish/completions/watson.fish similarity index 100% rename from slackware/.config/fish/completions/watson.fish rename to dotfiles/fish/.config/fish/completions/watson.fish diff --git a/slackware/.config/fish/conf.d/nvm.fish b/dotfiles/fish/.config/fish/conf.d/nvm.fish similarity index 100% rename from slackware/.config/fish/conf.d/nvm.fish rename to dotfiles/fish/.config/fish/conf.d/nvm.fish diff --git a/slackware/.config/fish/conf.d/omf.fish b/dotfiles/fish/.config/fish/conf.d/omf.fish similarity index 100% rename from slackware/.config/fish/conf.d/omf.fish rename to dotfiles/fish/.config/fish/conf.d/omf.fish diff --git a/slackware/.config/fish/functions/_nvm_index_update.fish b/dotfiles/fish/.config/fish/functions/_nvm_index_update.fish similarity index 100% rename from slackware/.config/fish/functions/_nvm_index_update.fish rename to dotfiles/fish/.config/fish/functions/_nvm_index_update.fish diff --git a/slackware/.config/fish/functions/_nvm_list.fish b/dotfiles/fish/.config/fish/functions/_nvm_list.fish similarity index 100% rename from slackware/.config/fish/functions/_nvm_list.fish rename to dotfiles/fish/.config/fish/functions/_nvm_list.fish diff --git a/slackware/.config/fish/functions/_nvm_version_activate.fish b/dotfiles/fish/.config/fish/functions/_nvm_version_activate.fish similarity index 100% rename from slackware/.config/fish/functions/_nvm_version_activate.fish rename to dotfiles/fish/.config/fish/functions/_nvm_version_activate.fish diff --git a/slackware/.config/fish/functions/_nvm_version_deactivate.fish b/dotfiles/fish/.config/fish/functions/_nvm_version_deactivate.fish similarity index 100% rename from slackware/.config/fish/functions/_nvm_version_deactivate.fish rename to dotfiles/fish/.config/fish/functions/_nvm_version_deactivate.fish diff --git a/slackware/.config/fish/functions/awsume.fish b/dotfiles/fish/.config/fish/functions/awsume.fish similarity index 100% rename from slackware/.config/fish/functions/awsume.fish rename to dotfiles/fish/.config/fish/functions/awsume.fish diff --git a/slackware/.config/fish/functions/br.fish b/dotfiles/fish/.config/fish/functions/br.fish similarity index 100% rename from slackware/.config/fish/functions/br.fish rename to dotfiles/fish/.config/fish/functions/br.fish diff --git a/slackware/.config/fish/functions/fish_mode_prompt.fish b/dotfiles/fish/.config/fish/functions/fish_mode_prompt.fish similarity index 100% rename from slackware/.config/fish/functions/fish_mode_prompt.fish rename to dotfiles/fish/.config/fish/functions/fish_mode_prompt.fish diff --git a/slackware/.config/fish/functions/fish_prompt.fish b/dotfiles/fish/.config/fish/functions/fish_prompt.fish similarity index 100% rename from slackware/.config/fish/functions/fish_prompt.fish rename to dotfiles/fish/.config/fish/functions/fish_prompt.fish diff --git a/slackware/.config/fish/functions/fisher.fish b/dotfiles/fish/.config/fish/functions/fisher.fish similarity index 100% rename from slackware/.config/fish/functions/fisher.fish rename to dotfiles/fish/.config/fish/functions/fisher.fish diff --git a/slackware/.config/fish/functions/mediamount.fish b/dotfiles/fish/.config/fish/functions/mediamount.fish similarity index 100% rename from slackware/.config/fish/functions/mediamount.fish rename to dotfiles/fish/.config/fish/functions/mediamount.fish diff --git a/slackware/.config/fish/functions/nvm.fish b/dotfiles/fish/.config/fish/functions/nvm.fish similarity index 100% rename from slackware/.config/fish/functions/nvm.fish rename to dotfiles/fish/.config/fish/functions/nvm.fish diff --git a/slackware/.config/fish/functions/w.fish b/dotfiles/fish/.config/fish/functions/w.fish similarity index 100% rename from slackware/.config/fish/functions/w.fish rename to dotfiles/fish/.config/fish/functions/w.fish diff --git a/dotfiles/git/.config/git/README.md b/dotfiles/git/.config/git/README.md new file mode 100644 index 0000000..0dd2da6 --- /dev/null +++ b/dotfiles/git/.config/git/README.md @@ -0,0 +1 @@ +For repo-specific config, use .git/config in the repo itself diff --git a/slackware/.gitconfig b/dotfiles/git/.config/git/config similarity index 100% rename from slackware/.gitconfig rename to dotfiles/git/.config/git/config diff --git a/dotfiles/lf/.config/lf/lfrc b/dotfiles/lf/.config/lf/lfrc new file mode 100644 index 0000000..d31ed18 --- /dev/null +++ b/dotfiles/lf/.config/lf/lfrc @@ -0,0 +1,122 @@ +# interpreter for shell commands +set shell /usr/bin/fish + +# set '-eu' options for shell commands +# These options are used to have safer shell commands. Option '-e' is used to +# exit on error and option '-u' is used to give error for unset variables. +# Option '-f' disables pathname expansion which can be useful when $f, $fs, and +# $fx variables contain names with '*' or '?' characters. However, this option +# is used selectively within individual commands as it can be limiting at +# times. +# set shellopts '-eu' + +# set internal field separator (IFS) to "\n" for shell commands +# This is useful to automatically split file names in $fs and $fx properly +# since default file separator used in these variables (i.e. 'filesep' option) +# is newline. You need to consider the values of these options and create your +# commands accordingly. +# set ifs "\n" + +# leave some space at the top and the bottom of the screen +set scrolloff 10 + +# use enter for shell commands +map shell + +# execute current file (must be executable) +map x $$f +map X !$f + +# dedicated keys for file opener actions +# map o &mimeopen $f +# map O $mimeopen --ask $f + +# define a custom 'open' command +# This command is called when current file is not a directory. You may want to +# use either file extensions and/or mime types here. Below uses an editor for +# text files and a file opener for the rest. +cmd open ${{ + test -L $f && set f (readlink -f $f) + switch (file --mime-type $f -b) + case "text/*" + $EDITOR $f + case "video/*" + mpv $f + end +}} + +map o open + +# extra open for alternative action on file, e.g. add to playlist in mpv, open +# in new windwo + +# cmd altOpen ${{ +# test -L $f && f=$(readlink -f $f) +# case $(file --mime-type $f -b) in +# text/*) $EDITOR $fx;; +# video/*) mpv $fx;; +# *) for f in $fx; do setsid $OPENER $f > /dev/null 2> /dev/null & done;; +# esac +# }} + +# define a custom 'rename' command without prompt for overwrite +# cmd rename %[ -e $1 ] && printf "file exists" || mv $f $1 +# map r push :rename + +# make sure trash folder exists +# %mkdir -p ~/.trash + +# move current file or selected files to trash folder +# (also see 'man mv' for backup/overwrite options) +cmd trash %set -f; mv $fx ~/.trash + +# define a custom 'delete' command +# cmd delete ${{ +# set -f +# printf "$fx\n" +# printf "delete?[y/n]" +# read ans +# [ "$ans" = "y" ] && rm -rf $fx +# }} + +# use '' key for either 'trash' or 'delete' command +# map trash +# map delete + +# extract the current file with the right command +# (xkcd link: https://xkcd.com/1168/) +cmd extract ${{ + set -f + case $f in + *.tar.bz|*.tar.bz2|*.tbz|*.tbz2) tar xjvf $f;; + *.tar.gz|*.tgz) tar xzvf $f;; + *.tar.xz|*.txz) tar xJvf $f;; + *.zip) unzip $f;; + *.rar) unrar x $f;; + *.7z) 7z x $f;; + esac +}} + +# compress current file or selected files with tar and gunzip +cmd tar ${{ + set -f + mkdir $1 + cp -r $fx $1 + tar czf $1.tar.gz $1 + rm -rf $1 +}} + +# compress current file or selected files with zip +cmd zip ${{ + set -f + mkdir $1 + cp -r $fx $1 + zip -r $1.zip $1 + rm -rf $1 +}} + +# extract +# zip +# moveto fzf with bat + +set previewer '~/.config/lf/scope' diff --git a/dotfiles/mkscaffold.sh b/dotfiles/mkscaffold.sh new file mode 100644 index 0000000..2973fc9 --- /dev/null +++ b/dotfiles/mkscaffold.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +# Create directories to prevent stow from symlinking the directories + +# It's better to have the files symlinked rather than dirs in these cases so +# that when more files/directories are added they don't get added to the repo, +# e.g. .vim/plugins + +mkdir ~/.vim +mkdir ~/.local +mkdir ~/.local/bin diff --git a/slackware/.config/mpd/mpd.conf b/dotfiles/mpd/.config/mpd/mpd.conf similarity index 100% rename from slackware/.config/mpd/mpd.conf rename to dotfiles/mpd/.config/mpd/mpd.conf diff --git a/slackware/.config/ncmpcpp/bindings b/dotfiles/ncmpcpp/.config/ncmpcpp/bindings similarity index 100% rename from slackware/.config/ncmpcpp/bindings rename to dotfiles/ncmpcpp/.config/ncmpcpp/bindings diff --git a/slackware/.config/newsboat/config b/dotfiles/newsboat/.config/newsboat/config similarity index 100% rename from slackware/.config/newsboat/config rename to dotfiles/newsboat/.config/newsboat/config diff --git a/slackware/.config/omf/bundle b/dotfiles/omf/.config/omf/bundle similarity index 100% rename from slackware/.config/omf/bundle rename to dotfiles/omf/.config/omf/bundle diff --git a/slackware/.config/omf/channel b/dotfiles/omf/.config/omf/channel similarity index 100% rename from slackware/.config/omf/channel rename to dotfiles/omf/.config/omf/channel diff --git a/slackware/.config/omf/theme b/dotfiles/omf/.config/omf/theme similarity index 100% rename from slackware/.config/omf/theme rename to dotfiles/omf/.config/omf/theme diff --git a/slackware/.config/pgcli/config b/dotfiles/pgcli/.config/pgcli/config similarity index 100% rename from slackware/.config/pgcli/config rename to dotfiles/pgcli/.config/pgcli/config diff --git a/slackware/.config/ranger/rc.conf b/dotfiles/ranger/.config/ranger/rc.conf similarity index 100% rename from slackware/.config/ranger/rc.conf rename to dotfiles/ranger/.config/ranger/rc.conf diff --git a/slackware/.config/ranger/rifle.conf b/dotfiles/ranger/.config/ranger/rifle.conf similarity index 100% rename from slackware/.config/ranger/rifle.conf rename to dotfiles/ranger/.config/ranger/rifle.conf diff --git a/dotfiles/stowall.sh b/dotfiles/stowall.sh new file mode 100644 index 0000000..f494d21 --- /dev/null +++ b/dotfiles/stowall.sh @@ -0,0 +1,2 @@ +#!/bin/sh +stow */ -t ~ diff --git a/slackware/.config/sxhkd/sxhkdrc b/dotfiles/sxhkd/.config/sxhkd/sxhkdrc similarity index 100% rename from slackware/.config/sxhkd/sxhkdrc rename to dotfiles/sxhkd/.config/sxhkd/sxhkdrc diff --git a/slackware/.tmux.conf b/dotfiles/tmux/.config/tmux/tmux.conf similarity index 100% rename from slackware/.tmux.conf rename to dotfiles/tmux/.config/tmux/tmux.conf diff --git a/slackware/.config/tmuxinator/rwa.yml b/dotfiles/tmuxinator/.config/tmuxinator/rwa.yml similarity index 100% rename from slackware/.config/tmuxinator/rwa.yml rename to dotfiles/tmuxinator/.config/tmuxinator/rwa.yml diff --git a/slackware/.config/tmuxinator/tendenci-moodle-nifi.yml b/dotfiles/tmuxinator/.config/tmuxinator/tendenci-moodle-nifi.yml similarity index 100% rename from slackware/.config/tmuxinator/tendenci-moodle-nifi.yml rename to dotfiles/tmuxinator/.config/tmuxinator/tendenci-moodle-nifi.yml diff --git a/dotfiles/vim/.vim/autoload/plug.vim b/dotfiles/vim/.vim/autoload/plug.vim new file mode 100644 index 0000000..652caa8 --- /dev/null +++ b/dotfiles/vim/.vim/autoload/plug.vim @@ -0,0 +1,2812 @@ +" vim-plug: Vim plugin manager +" ============================ +" +" Download plug.vim and put it in ~/.vim/autoload +" +" curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ +" https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim +" +" Edit your .vimrc +" +" call plug#begin('~/.vim/plugged') +" +" " Make sure you use single quotes +" +" " Shorthand notation; fetches https://github.com/junegunn/vim-easy-align +" Plug 'junegunn/vim-easy-align' +" +" " Any valid git URL is allowed +" Plug 'https://github.com/junegunn/vim-github-dashboard.git' +" +" " Multiple Plug commands can be written in a single line using | separators +" Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets' +" +" " On-demand loading +" Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } +" Plug 'tpope/vim-fireplace', { 'for': 'clojure' } +" +" " Using a non-default branch +" Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' } +" +" " Using a tagged release; wildcard allowed (requires git 1.9.2 or above) +" Plug 'fatih/vim-go', { 'tag': '*' } +" +" " Plugin options +" Plug 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' } +" +" " Plugin outside ~/.vim/plugged with post-update hook +" Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } +" +" " Unmanaged plugin (manually installed and updated) +" Plug '~/my-prototype-plugin' +" +" " Initialize plugin system +" call plug#end() +" +" Then reload .vimrc and :PlugInstall to install plugins. +" +" Plug options: +" +"| Option | Description | +"| ----------------------- | ------------------------------------------------ | +"| `branch`/`tag`/`commit` | Branch/tag/commit of the repository to use | +"| `rtp` | Subdirectory that contains Vim plugin | +"| `dir` | Custom directory for the plugin | +"| `as` | Use different name for the plugin | +"| `do` | Post-update hook (string or funcref) | +"| `on` | On-demand loading: Commands or ``-mappings | +"| `for` | On-demand loading: File types | +"| `frozen` | Do not update unless explicitly specified | +" +" More information: https://github.com/junegunn/vim-plug +" +" +" Copyright (c) 2017 Junegunn Choi +" +" MIT License +" +" Permission is hereby granted, free of charge, to any person obtaining +" a copy of this software and associated documentation files (the +" "Software"), to deal in the Software without restriction, including +" without limitation the rights to use, copy, modify, merge, publish, +" distribute, sublicense, and/or sell copies of the Software, and to +" permit persons to whom the Software is furnished to do so, subject to +" the following conditions: +" +" The above copyright notice and this permission notice shall be +" included in all copies or substantial portions of the Software. +" +" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +" EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +" NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +" LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +" OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +" WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +if exists('g:loaded_plug') + finish +endif +let g:loaded_plug = 1 + +let s:cpo_save = &cpo +set cpo&vim + +let s:plug_src = 'https://github.com/junegunn/vim-plug.git' +let s:plug_tab = get(s:, 'plug_tab', -1) +let s:plug_buf = get(s:, 'plug_buf', -1) +let s:mac_gui = has('gui_macvim') && has('gui_running') +let s:is_win = has('win32') +let s:nvim = has('nvim-0.2') || (has('nvim') && exists('*jobwait') && !s:is_win) +let s:vim8 = has('patch-8.0.0039') && exists('*job_start') +if s:is_win && &shellslash + set noshellslash + let s:me = resolve(expand(':p')) + set shellslash +else + let s:me = resolve(expand(':p')) +endif +let s:base_spec = { 'branch': '', 'frozen': 0 } +let s:TYPE = { +\ 'string': type(''), +\ 'list': type([]), +\ 'dict': type({}), +\ 'funcref': type(function('call')) +\ } +let s:loaded = get(s:, 'loaded', {}) +let s:triggers = get(s:, 'triggers', {}) + +function! s:is_powershell(shell) + return a:shell =~# 'powershell\(\.exe\)\?$' || a:shell =~# 'pwsh\(\.exe\)\?$' +endfunction + +function! s:isabsolute(dir) abort + return a:dir =~# '^/' || (has('win32') && a:dir =~? '^\%(\\\|[A-Z]:\)') +endfunction + +function! s:git_dir(dir) abort + let gitdir = s:trim(a:dir) . '/.git' + if isdirectory(gitdir) + return gitdir + endif + if !filereadable(gitdir) + return '' + endif + let gitdir = matchstr(get(readfile(gitdir), 0, ''), '^gitdir: \zs.*') + if len(gitdir) && !s:isabsolute(gitdir) + let gitdir = a:dir . '/' . gitdir + endif + return isdirectory(gitdir) ? gitdir : '' +endfunction + +function! s:git_origin_url(dir) abort + let gitdir = s:git_dir(a:dir) + let config = gitdir . '/config' + if empty(gitdir) || !filereadable(config) + return '' + endif + return matchstr(join(readfile(config)), '\[remote "origin"\].\{-}url\s*=\s*\zs\S*\ze') +endfunction + +function! s:git_revision(dir) abort + let gitdir = s:git_dir(a:dir) + let head = gitdir . '/HEAD' + if empty(gitdir) || !filereadable(head) + return '' + endif + + let line = get(readfile(head), 0, '') + let ref = matchstr(line, '^ref: \zs.*') + if empty(ref) + return line + endif + + if filereadable(gitdir . '/' . ref) + return get(readfile(gitdir . '/' . ref), 0, '') + endif + + if filereadable(gitdir . '/packed-refs') + for line in readfile(gitdir . '/packed-refs') + if line =~# ' ' . ref + return matchstr(line, '^[0-9a-f]*') + endif + endfor + endif + + return '' +endfunction + +function! s:git_local_branch(dir) abort + let gitdir = s:git_dir(a:dir) + let head = gitdir . '/HEAD' + if empty(gitdir) || !filereadable(head) + return '' + endif + let branch = matchstr(get(readfile(head), 0, ''), '^ref: refs/heads/\zs.*') + return len(branch) ? branch : 'HEAD' +endfunction + +function! s:git_origin_branch(spec) + if len(a:spec.branch) + return a:spec.branch + endif + + " The file may not be present if this is a local repository + let gitdir = s:git_dir(a:spec.dir) + let origin_head = gitdir.'/refs/remotes/origin/HEAD' + if len(gitdir) && filereadable(origin_head) + return matchstr(get(readfile(origin_head), 0, ''), + \ '^ref: refs/remotes/origin/\zs.*') + endif + + " The command may not return the name of a branch in detached HEAD state + let result = s:lines(s:system('git symbolic-ref --short HEAD', a:spec.dir)) + return v:shell_error ? '' : result[-1] +endfunction + +if s:is_win + function! s:plug_call(fn, ...) + let shellslash = &shellslash + try + set noshellslash + return call(a:fn, a:000) + finally + let &shellslash = shellslash + endtry + endfunction +else + function! s:plug_call(fn, ...) + return call(a:fn, a:000) + endfunction +endif + +function! s:plug_getcwd() + return s:plug_call('getcwd') +endfunction + +function! s:plug_fnamemodify(fname, mods) + return s:plug_call('fnamemodify', a:fname, a:mods) +endfunction + +function! s:plug_expand(fmt) + return s:plug_call('expand', a:fmt, 1) +endfunction + +function! s:plug_tempname() + return s:plug_call('tempname') +endfunction + +function! plug#begin(...) + if a:0 > 0 + let s:plug_home_org = a:1 + let home = s:path(s:plug_fnamemodify(s:plug_expand(a:1), ':p')) + elseif exists('g:plug_home') + let home = s:path(g:plug_home) + elseif has('nvim') + let home = stdpath('data') . '/plugged' + elseif !empty(&rtp) + let home = s:path(split(&rtp, ',')[0]) . '/plugged' + else + return s:err('Unable to determine plug home. Try calling plug#begin() with a path argument.') + endif + if s:plug_fnamemodify(home, ':t') ==# 'plugin' && s:plug_fnamemodify(home, ':h') ==# s:first_rtp + return s:err('Invalid plug home. '.home.' is a standard Vim runtime path and is not allowed.') + endif + + let g:plug_home = home + let g:plugs = {} + let g:plugs_order = [] + let s:triggers = {} + + call s:define_commands() + return 1 +endfunction + +function! s:define_commands() + command! -nargs=+ -bar Plug call plug#() + if !executable('git') + return s:err('`git` executable not found. Most commands will not be available. To suppress this message, prepend `silent!` to `call plug#begin(...)`.') + endif + if has('win32') + \ && &shellslash + \ && (&shell =~# 'cmd\(\.exe\)\?$' || s:is_powershell(&shell)) + return s:err('vim-plug does not support shell, ' . &shell . ', when shellslash is set.') + endif + if !has('nvim') + \ && (has('win32') || has('win32unix')) + \ && !has('multi_byte') + return s:err('Vim needs +multi_byte feature on Windows to run shell commands. Enable +iconv for best results.') + endif + command! -nargs=* -bar -bang -complete=customlist,s:names PlugInstall call s:install(0, []) + command! -nargs=* -bar -bang -complete=customlist,s:names PlugUpdate call s:update(0, []) + command! -nargs=0 -bar -bang PlugClean call s:clean(0) + command! -nargs=0 -bar PlugUpgrade if s:upgrade() | execute 'source' s:esc(s:me) | endif + command! -nargs=0 -bar PlugStatus call s:status() + command! -nargs=0 -bar PlugDiff call s:diff() + command! -nargs=? -bar -bang -complete=file PlugSnapshot call s:snapshot(0, ) +endfunction + +function! s:to_a(v) + return type(a:v) == s:TYPE.list ? a:v : [a:v] +endfunction + +function! s:to_s(v) + return type(a:v) == s:TYPE.string ? a:v : join(a:v, "\n") . "\n" +endfunction + +function! s:glob(from, pattern) + return s:lines(globpath(a:from, a:pattern)) +endfunction + +function! s:source(from, ...) + let found = 0 + for pattern in a:000 + for vim in s:glob(a:from, pattern) + execute 'source' s:esc(vim) + let found = 1 + endfor + endfor + return found +endfunction + +function! s:assoc(dict, key, val) + let a:dict[a:key] = add(get(a:dict, a:key, []), a:val) +endfunction + +function! s:ask(message, ...) + call inputsave() + echohl WarningMsg + let answer = input(a:message.(a:0 ? ' (y/N/a) ' : ' (y/N) ')) + echohl None + call inputrestore() + echo "\r" + return (a:0 && answer =~? '^a') ? 2 : (answer =~? '^y') ? 1 : 0 +endfunction + +function! s:ask_no_interrupt(...) + try + return call('s:ask', a:000) + catch + return 0 + endtry +endfunction + +function! s:lazy(plug, opt) + return has_key(a:plug, a:opt) && + \ (empty(s:to_a(a:plug[a:opt])) || + \ !isdirectory(a:plug.dir) || + \ len(s:glob(s:rtp(a:plug), 'plugin')) || + \ len(s:glob(s:rtp(a:plug), 'after/plugin'))) +endfunction + +function! plug#end() + if !exists('g:plugs') + return s:err('plug#end() called without calling plug#begin() first') + endif + + if exists('#PlugLOD') + augroup PlugLOD + autocmd! + augroup END + augroup! PlugLOD + endif + let lod = { 'ft': {}, 'map': {}, 'cmd': {} } + + if get(g:, 'did_load_filetypes', 0) + filetype off + endif + for name in g:plugs_order + if !has_key(g:plugs, name) + continue + endif + let plug = g:plugs[name] + if get(s:loaded, name, 0) || !s:lazy(plug, 'on') && !s:lazy(plug, 'for') + let s:loaded[name] = 1 + continue + endif + + if has_key(plug, 'on') + let s:triggers[name] = { 'map': [], 'cmd': [] } + for cmd in s:to_a(plug.on) + if cmd =~? '^.\+' + if empty(mapcheck(cmd)) && empty(mapcheck(cmd, 'i')) + call s:assoc(lod.map, cmd, name) + endif + call add(s:triggers[name].map, cmd) + elseif cmd =~# '^[A-Z]' + let cmd = substitute(cmd, '!*$', '', '') + if exists(':'.cmd) != 2 + call s:assoc(lod.cmd, cmd, name) + endif + call add(s:triggers[name].cmd, cmd) + else + call s:err('Invalid `on` option: '.cmd. + \ '. Should start with an uppercase letter or ``.') + endif + endfor + endif + + if has_key(plug, 'for') + let types = s:to_a(plug.for) + if !empty(types) + augroup filetypedetect + call s:source(s:rtp(plug), 'ftdetect/**/*.vim', 'after/ftdetect/**/*.vim') + augroup END + endif + for type in types + call s:assoc(lod.ft, type, name) + endfor + endif + endfor + + for [cmd, names] in items(lod.cmd) + execute printf( + \ 'command! -nargs=* -range -bang -complete=file %s call s:lod_cmd(%s, "", , , , %s)', + \ cmd, string(cmd), string(names)) + endfor + + for [map, names] in items(lod.map) + for [mode, map_prefix, key_prefix] in + \ [['i', '', ''], ['n', '', ''], ['v', '', 'gv'], ['o', '', '']] + execute printf( + \ '%snoremap %s %s:call lod_map(%s, %s, %s, "%s")', + \ mode, map, map_prefix, string(map), string(names), mode != 'i', key_prefix) + endfor + endfor + + for [ft, names] in items(lod.ft) + augroup PlugLOD + execute printf('autocmd FileType %s call lod_ft(%s, %s)', + \ ft, string(ft), string(names)) + augroup END + endfor + + call s:reorg_rtp() + filetype plugin indent on + if has('vim_starting') + if has('syntax') && !exists('g:syntax_on') + syntax enable + end + else + call s:reload_plugins() + endif +endfunction + +function! s:loaded_names() + return filter(copy(g:plugs_order), 'get(s:loaded, v:val, 0)') +endfunction + +function! s:load_plugin(spec) + call s:source(s:rtp(a:spec), 'plugin/**/*.vim', 'after/plugin/**/*.vim') +endfunction + +function! s:reload_plugins() + for name in s:loaded_names() + call s:load_plugin(g:plugs[name]) + endfor +endfunction + +function! s:trim(str) + return substitute(a:str, '[\/]\+$', '', '') +endfunction + +function! s:version_requirement(val, min) + for idx in range(0, len(a:min) - 1) + let v = get(a:val, idx, 0) + if v < a:min[idx] | return 0 + elseif v > a:min[idx] | return 1 + endif + endfor + return 1 +endfunction + +function! s:git_version_requirement(...) + if !exists('s:git_version') + let s:git_version = map(split(split(s:system(['git', '--version']))[2], '\.'), 'str2nr(v:val)') + endif + return s:version_requirement(s:git_version, a:000) +endfunction + +function! s:progress_opt(base) + return a:base && !s:is_win && + \ s:git_version_requirement(1, 7, 1) ? '--progress' : '' +endfunction + +function! s:rtp(spec) + return s:path(a:spec.dir . get(a:spec, 'rtp', '')) +endfunction + +if s:is_win + function! s:path(path) + return s:trim(substitute(a:path, '/', '\', 'g')) + endfunction + + function! s:dirpath(path) + return s:path(a:path) . '\' + endfunction + + function! s:is_local_plug(repo) + return a:repo =~? '^[a-z]:\|^[%~]' + endfunction + + " Copied from fzf + function! s:wrap_cmds(cmds) + let cmds = [ + \ '@echo off', + \ 'setlocal enabledelayedexpansion'] + \ + (type(a:cmds) == type([]) ? a:cmds : [a:cmds]) + \ + ['endlocal'] + if has('iconv') + if !exists('s:codepage') + let s:codepage = libcallnr('kernel32.dll', 'GetACP', 0) + endif + return map(cmds, printf('iconv(v:val."\r", "%s", "cp%d")', &encoding, s:codepage)) + endif + return map(cmds, 'v:val."\r"') + endfunction + + function! s:batchfile(cmd) + let batchfile = s:plug_tempname().'.bat' + call writefile(s:wrap_cmds(a:cmd), batchfile) + let cmd = plug#shellescape(batchfile, {'shell': &shell, 'script': 0}) + if s:is_powershell(&shell) + let cmd = '& ' . cmd + endif + return [batchfile, cmd] + endfunction +else + function! s:path(path) + return s:trim(a:path) + endfunction + + function! s:dirpath(path) + return substitute(a:path, '[/\\]*$', '/', '') + endfunction + + function! s:is_local_plug(repo) + return a:repo[0] =~ '[/$~]' + endfunction +endif + +function! s:err(msg) + echohl ErrorMsg + echom '[vim-plug] '.a:msg + echohl None +endfunction + +function! s:warn(cmd, msg) + echohl WarningMsg + execute a:cmd 'a:msg' + echohl None +endfunction + +function! s:esc(path) + return escape(a:path, ' ') +endfunction + +function! s:escrtp(path) + return escape(a:path, ' ,') +endfunction + +function! s:remove_rtp() + for name in s:loaded_names() + let rtp = s:rtp(g:plugs[name]) + execute 'set rtp-='.s:escrtp(rtp) + let after = globpath(rtp, 'after') + if isdirectory(after) + execute 'set rtp-='.s:escrtp(after) + endif + endfor +endfunction + +function! s:reorg_rtp() + if !empty(s:first_rtp) + execute 'set rtp-='.s:first_rtp + execute 'set rtp-='.s:last_rtp + endif + + " &rtp is modified from outside + if exists('s:prtp') && s:prtp !=# &rtp + call s:remove_rtp() + unlet! s:middle + endif + + let s:middle = get(s:, 'middle', &rtp) + let rtps = map(s:loaded_names(), 's:rtp(g:plugs[v:val])') + let afters = filter(map(copy(rtps), 'globpath(v:val, "after")'), '!empty(v:val)') + let rtp = join(map(rtps, 'escape(v:val, ",")'), ',') + \ . ','.s:middle.',' + \ . join(map(afters, 'escape(v:val, ",")'), ',') + let &rtp = substitute(substitute(rtp, ',,*', ',', 'g'), '^,\|,$', '', 'g') + let s:prtp = &rtp + + if !empty(s:first_rtp) + execute 'set rtp^='.s:first_rtp + execute 'set rtp+='.s:last_rtp + endif +endfunction + +function! s:doautocmd(...) + if exists('#'.join(a:000, '#')) + execute 'doautocmd' ((v:version > 703 || has('patch442')) ? '' : '') join(a:000) + endif +endfunction + +function! s:dobufread(names) + for name in a:names + let path = s:rtp(g:plugs[name]) + for dir in ['ftdetect', 'ftplugin', 'after/ftdetect', 'after/ftplugin'] + if len(finddir(dir, path)) + if exists('#BufRead') + doautocmd BufRead + endif + return + endif + endfor + endfor +endfunction + +function! plug#load(...) + if a:0 == 0 + return s:err('Argument missing: plugin name(s) required') + endif + if !exists('g:plugs') + return s:err('plug#begin was not called') + endif + let names = a:0 == 1 && type(a:1) == s:TYPE.list ? a:1 : a:000 + let unknowns = filter(copy(names), '!has_key(g:plugs, v:val)') + if !empty(unknowns) + let s = len(unknowns) > 1 ? 's' : '' + return s:err(printf('Unknown plugin%s: %s', s, join(unknowns, ', '))) + end + let unloaded = filter(copy(names), '!get(s:loaded, v:val, 0)') + if !empty(unloaded) + for name in unloaded + call s:lod([name], ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin']) + endfor + call s:dobufread(unloaded) + return 1 + end + return 0 +endfunction + +function! s:remove_triggers(name) + if !has_key(s:triggers, a:name) + return + endif + for cmd in s:triggers[a:name].cmd + execute 'silent! delc' cmd + endfor + for map in s:triggers[a:name].map + execute 'silent! unmap' map + execute 'silent! iunmap' map + endfor + call remove(s:triggers, a:name) +endfunction + +function! s:lod(names, types, ...) + for name in a:names + call s:remove_triggers(name) + let s:loaded[name] = 1 + endfor + call s:reorg_rtp() + + for name in a:names + let rtp = s:rtp(g:plugs[name]) + for dir in a:types + call s:source(rtp, dir.'/**/*.vim') + endfor + if a:0 + if !s:source(rtp, a:1) && !empty(s:glob(rtp, a:2)) + execute 'runtime' a:1 + endif + call s:source(rtp, a:2) + endif + call s:doautocmd('User', name) + endfor +endfunction + +function! s:lod_ft(pat, names) + let syn = 'syntax/'.a:pat.'.vim' + call s:lod(a:names, ['plugin', 'after/plugin'], syn, 'after/'.syn) + execute 'autocmd! PlugLOD FileType' a:pat + call s:doautocmd('filetypeplugin', 'FileType') + call s:doautocmd('filetypeindent', 'FileType') +endfunction + +function! s:lod_cmd(cmd, bang, l1, l2, args, names) + call s:lod(a:names, ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin']) + call s:dobufread(a:names) + execute printf('%s%s%s %s', (a:l1 == a:l2 ? '' : (a:l1.','.a:l2)), a:cmd, a:bang, a:args) +endfunction + +function! s:lod_map(map, names, with_prefix, prefix) + call s:lod(a:names, ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin']) + call s:dobufread(a:names) + let extra = '' + while 1 + let c = getchar(0) + if c == 0 + break + endif + let extra .= nr2char(c) + endwhile + + if a:with_prefix + let prefix = v:count ? v:count : '' + let prefix .= '"'.v:register.a:prefix + if mode(1) == 'no' + if v:operator == 'c' + let prefix = "\" . prefix + endif + let prefix .= v:operator + endif + call feedkeys(prefix, 'n') + endif + call feedkeys(substitute(a:map, '^', "\", '') . extra) +endfunction + +function! plug#(repo, ...) + if a:0 > 1 + return s:err('Invalid number of arguments (1..2)') + endif + + try + let repo = s:trim(a:repo) + let opts = a:0 == 1 ? s:parse_options(a:1) : s:base_spec + let name = get(opts, 'as', s:plug_fnamemodify(repo, ':t:s?\.git$??')) + let spec = extend(s:infer_properties(name, repo), opts) + if !has_key(g:plugs, name) + call add(g:plugs_order, name) + endif + let g:plugs[name] = spec + let s:loaded[name] = get(s:loaded, name, 0) + catch + return s:err(repo . ' ' . v:exception) + endtry +endfunction + +function! s:parse_options(arg) + let opts = copy(s:base_spec) + let type = type(a:arg) + let opt_errfmt = 'Invalid argument for "%s" option of :Plug (expected: %s)' + if type == s:TYPE.string + if empty(a:arg) + throw printf(opt_errfmt, 'tag', 'string') + endif + let opts.tag = a:arg + elseif type == s:TYPE.dict + for opt in ['branch', 'tag', 'commit', 'rtp', 'dir', 'as'] + if has_key(a:arg, opt) + \ && (type(a:arg[opt]) != s:TYPE.string || empty(a:arg[opt])) + throw printf(opt_errfmt, opt, 'string') + endif + endfor + for opt in ['on', 'for'] + if has_key(a:arg, opt) + \ && type(a:arg[opt]) != s:TYPE.list + \ && (type(a:arg[opt]) != s:TYPE.string || empty(a:arg[opt])) + throw printf(opt_errfmt, opt, 'string or list') + endif + endfor + if has_key(a:arg, 'do') + \ && type(a:arg.do) != s:TYPE.funcref + \ && (type(a:arg.do) != s:TYPE.string || empty(a:arg.do)) + throw printf(opt_errfmt, 'do', 'string or funcref') + endif + call extend(opts, a:arg) + if has_key(opts, 'dir') + let opts.dir = s:dirpath(s:plug_expand(opts.dir)) + endif + else + throw 'Invalid argument type (expected: string or dictionary)' + endif + return opts +endfunction + +function! s:infer_properties(name, repo) + let repo = a:repo + if s:is_local_plug(repo) + return { 'dir': s:dirpath(s:plug_expand(repo)) } + else + if repo =~ ':' + let uri = repo + else + if repo !~ '/' + throw printf('Invalid argument: %s (implicit `vim-scripts'' expansion is deprecated)', repo) + endif + let fmt = get(g:, 'plug_url_format', 'https://git::@github.com/%s.git') + let uri = printf(fmt, repo) + endif + return { 'dir': s:dirpath(g:plug_home.'/'.a:name), 'uri': uri } + endif +endfunction + +function! s:install(force, names) + call s:update_impl(0, a:force, a:names) +endfunction + +function! s:update(force, names) + call s:update_impl(1, a:force, a:names) +endfunction + +function! plug#helptags() + if !exists('g:plugs') + return s:err('plug#begin was not called') + endif + for spec in values(g:plugs) + let docd = join([s:rtp(spec), 'doc'], '/') + if isdirectory(docd) + silent! execute 'helptags' s:esc(docd) + endif + endfor + return 1 +endfunction + +function! s:syntax() + syntax clear + syntax region plug1 start=/\%1l/ end=/\%2l/ contains=plugNumber + syntax region plug2 start=/\%2l/ end=/\%3l/ contains=plugBracket,plugX + syn match plugNumber /[0-9]\+[0-9.]*/ contained + syn match plugBracket /[[\]]/ contained + syn match plugX /x/ contained + syn match plugDash /^-\{1}\ / + syn match plugPlus /^+/ + syn match plugStar /^*/ + syn match plugMessage /\(^- \)\@<=.*/ + syn match plugName /\(^- \)\@<=[^ ]*:/ + syn match plugSha /\%(: \)\@<=[0-9a-f]\{4,}$/ + syn match plugTag /(tag: [^)]\+)/ + syn match plugInstall /\(^+ \)\@<=[^:]*/ + syn match plugUpdate /\(^* \)\@<=[^:]*/ + syn match plugCommit /^ \X*[0-9a-f]\{7,9} .*/ contains=plugRelDate,plugEdge,plugTag + syn match plugEdge /^ \X\+$/ + syn match plugEdge /^ \X*/ contained nextgroup=plugSha + syn match plugSha /[0-9a-f]\{7,9}/ contained + syn match plugRelDate /([^)]*)$/ contained + syn match plugNotLoaded /(not loaded)$/ + syn match plugError /^x.*/ + syn region plugDeleted start=/^\~ .*/ end=/^\ze\S/ + syn match plugH2 /^.*:\n-\+$/ + syn match plugH2 /^-\{2,}/ + syn keyword Function PlugInstall PlugStatus PlugUpdate PlugClean + hi def link plug1 Title + hi def link plug2 Repeat + hi def link plugH2 Type + hi def link plugX Exception + hi def link plugBracket Structure + hi def link plugNumber Number + + hi def link plugDash Special + hi def link plugPlus Constant + hi def link plugStar Boolean + + hi def link plugMessage Function + hi def link plugName Label + hi def link plugInstall Function + hi def link plugUpdate Type + + hi def link plugError Error + hi def link plugDeleted Ignore + hi def link plugRelDate Comment + hi def link plugEdge PreProc + hi def link plugSha Identifier + hi def link plugTag Constant + + hi def link plugNotLoaded Comment +endfunction + +function! s:lpad(str, len) + return a:str . repeat(' ', a:len - len(a:str)) +endfunction + +function! s:lines(msg) + return split(a:msg, "[\r\n]") +endfunction + +function! s:lastline(msg) + return get(s:lines(a:msg), -1, '') +endfunction + +function! s:new_window() + execute get(g:, 'plug_window', 'vertical topleft new') +endfunction + +function! s:plug_window_exists() + let buflist = tabpagebuflist(s:plug_tab) + return !empty(buflist) && index(buflist, s:plug_buf) >= 0 +endfunction + +function! s:switch_in() + if !s:plug_window_exists() + return 0 + endif + + if winbufnr(0) != s:plug_buf + let s:pos = [tabpagenr(), winnr(), winsaveview()] + execute 'normal!' s:plug_tab.'gt' + let winnr = bufwinnr(s:plug_buf) + execute winnr.'wincmd w' + call add(s:pos, winsaveview()) + else + let s:pos = [winsaveview()] + endif + + setlocal modifiable + return 1 +endfunction + +function! s:switch_out(...) + call winrestview(s:pos[-1]) + setlocal nomodifiable + if a:0 > 0 + execute a:1 + endif + + if len(s:pos) > 1 + execute 'normal!' s:pos[0].'gt' + execute s:pos[1] 'wincmd w' + call winrestview(s:pos[2]) + endif +endfunction + +function! s:finish_bindings() + nnoremap R :call retry() + nnoremap D :PlugDiff + nnoremap S :PlugStatus + nnoremap U :call status_update() + xnoremap U :call status_update() + nnoremap ]] :silent! call section('') + nnoremap [[ :silent! call section('b') +endfunction + +function! s:prepare(...) + if empty(s:plug_getcwd()) + throw 'Invalid current working directory. Cannot proceed.' + endif + + for evar in ['$GIT_DIR', '$GIT_WORK_TREE'] + if exists(evar) + throw evar.' detected. Cannot proceed.' + endif + endfor + + call s:job_abort() + if s:switch_in() + if b:plug_preview == 1 + pc + endif + enew + else + call s:new_window() + endif + + nnoremap q :call close_pane() + if a:0 == 0 + call s:finish_bindings() + endif + let b:plug_preview = -1 + let s:plug_tab = tabpagenr() + let s:plug_buf = winbufnr(0) + call s:assign_name() + + for k in ['', 'L', 'o', 'X', 'd', 'dd'] + execute 'silent! unmap ' k + endfor + setlocal buftype=nofile bufhidden=wipe nobuflisted nolist noswapfile nowrap cursorline modifiable nospell + if exists('+colorcolumn') + setlocal colorcolumn= + endif + setf vim-plug + if exists('g:syntax_on') + call s:syntax() + endif +endfunction + +function! s:close_pane() + if b:plug_preview == 1 + pc + let b:plug_preview = -1 + else + bd + endif +endfunction + +function! s:assign_name() + " Assign buffer name + let prefix = '[Plugins]' + let name = prefix + let idx = 2 + while bufexists(name) + let name = printf('%s (%s)', prefix, idx) + let idx = idx + 1 + endwhile + silent! execute 'f' fnameescape(name) +endfunction + +function! s:chsh(swap) + let prev = [&shell, &shellcmdflag, &shellredir] + if !s:is_win + set shell=sh + endif + if a:swap + if s:is_powershell(&shell) + let &shellredir = '2>&1 | Out-File -Encoding UTF8 %s' + elseif &shell =~# 'sh' || &shell =~# 'cmd\(\.exe\)\?$' + set shellredir=>%s\ 2>&1 + endif + endif + return prev +endfunction + +function! s:bang(cmd, ...) + let batchfile = '' + try + let [sh, shellcmdflag, shrd] = s:chsh(a:0) + " FIXME: Escaping is incomplete. We could use shellescape with eval, + " but it won't work on Windows. + let cmd = a:0 ? s:with_cd(a:cmd, a:1) : a:cmd + if s:is_win + let [batchfile, cmd] = s:batchfile(cmd) + endif + let g:_plug_bang = (s:is_win && has('gui_running') ? 'silent ' : '').'!'.escape(cmd, '#!%') + execute "normal! :execute g:_plug_bang\\" + finally + unlet g:_plug_bang + let [&shell, &shellcmdflag, &shellredir] = [sh, shellcmdflag, shrd] + if s:is_win && filereadable(batchfile) + call delete(batchfile) + endif + endtry + return v:shell_error ? 'Exit status: ' . v:shell_error : '' +endfunction + +function! s:regress_bar() + let bar = substitute(getline(2)[1:-2], '.*\zs=', 'x', '') + call s:progress_bar(2, bar, len(bar)) +endfunction + +function! s:is_updated(dir) + return !empty(s:system_chomp(['git', 'log', '--pretty=format:%h', 'HEAD...HEAD@{1}'], a:dir)) +endfunction + +function! s:do(pull, force, todo) + for [name, spec] in items(a:todo) + if !isdirectory(spec.dir) + continue + endif + let installed = has_key(s:update.new, name) + let updated = installed ? 0 : + \ (a:pull && index(s:update.errors, name) < 0 && s:is_updated(spec.dir)) + if a:force || installed || updated + execute 'cd' s:esc(spec.dir) + call append(3, '- Post-update hook for '. name .' ... ') + let error = '' + let type = type(spec.do) + if type == s:TYPE.string + if spec.do[0] == ':' + if !get(s:loaded, name, 0) + let s:loaded[name] = 1 + call s:reorg_rtp() + endif + call s:load_plugin(spec) + try + execute spec.do[1:] + catch + let error = v:exception + endtry + if !s:plug_window_exists() + cd - + throw 'Warning: vim-plug was terminated by the post-update hook of '.name + endif + else + let error = s:bang(spec.do) + endif + elseif type == s:TYPE.funcref + try + call s:load_plugin(spec) + let status = installed ? 'installed' : (updated ? 'updated' : 'unchanged') + call spec.do({ 'name': name, 'status': status, 'force': a:force }) + catch + let error = v:exception + endtry + else + let error = 'Invalid hook type' + endif + call s:switch_in() + call setline(4, empty(error) ? (getline(4) . 'OK') + \ : ('x' . getline(4)[1:] . error)) + if !empty(error) + call add(s:update.errors, name) + call s:regress_bar() + endif + cd - + endif + endfor +endfunction + +function! s:hash_match(a, b) + return stridx(a:a, a:b) == 0 || stridx(a:b, a:a) == 0 +endfunction + +function! s:checkout(spec) + let sha = a:spec.commit + let output = s:git_revision(a:spec.dir) + if !empty(output) && !s:hash_match(sha, s:lines(output)[0]) + let credential_helper = s:git_version_requirement(2) ? '-c credential.helper= ' : '' + let output = s:system( + \ 'git '.credential_helper.'fetch --depth 999999 && git checkout '.plug#shellescape(sha).' --', a:spec.dir) + endif + return output +endfunction + +function! s:finish(pull) + let new_frozen = len(filter(keys(s:update.new), 'g:plugs[v:val].frozen')) + if new_frozen + let s = new_frozen > 1 ? 's' : '' + call append(3, printf('- Installed %d frozen plugin%s', new_frozen, s)) + endif + call append(3, '- Finishing ... ') | 4 + redraw + call plug#helptags() + call plug#end() + call setline(4, getline(4) . 'Done!') + redraw + let msgs = [] + if !empty(s:update.errors) + call add(msgs, "Press 'R' to retry.") + endif + if a:pull && len(s:update.new) < len(filter(getline(5, '$'), + \ "v:val =~ '^- ' && v:val !~# 'Already up.to.date'")) + call add(msgs, "Press 'D' to see the updated changes.") + endif + echo join(msgs, ' ') + call s:finish_bindings() +endfunction + +function! s:retry() + if empty(s:update.errors) + return + endif + echo + call s:update_impl(s:update.pull, s:update.force, + \ extend(copy(s:update.errors), [s:update.threads])) +endfunction + +function! s:is_managed(name) + return has_key(g:plugs[a:name], 'uri') +endfunction + +function! s:names(...) + return sort(filter(keys(g:plugs), 'stridx(v:val, a:1) == 0 && s:is_managed(v:val)')) +endfunction + +function! s:check_ruby() + silent! ruby require 'thread'; VIM::command("let g:plug_ruby = '#{RUBY_VERSION}'") + if !exists('g:plug_ruby') + redraw! + return s:warn('echom', 'Warning: Ruby interface is broken') + endif + let ruby_version = split(g:plug_ruby, '\.') + unlet g:plug_ruby + return s:version_requirement(ruby_version, [1, 8, 7]) +endfunction + +function! s:update_impl(pull, force, args) abort + let sync = index(a:args, '--sync') >= 0 || has('vim_starting') + let args = filter(copy(a:args), 'v:val != "--sync"') + let threads = (len(args) > 0 && args[-1] =~ '^[1-9][0-9]*$') ? + \ remove(args, -1) : get(g:, 'plug_threads', 16) + + let managed = filter(copy(g:plugs), 's:is_managed(v:key)') + let todo = empty(args) ? filter(managed, '!v:val.frozen || !isdirectory(v:val.dir)') : + \ filter(managed, 'index(args, v:key) >= 0') + + if empty(todo) + return s:warn('echo', 'No plugin to '. (a:pull ? 'update' : 'install')) + endif + + if !s:is_win && s:git_version_requirement(2, 3) + let s:git_terminal_prompt = exists('$GIT_TERMINAL_PROMPT') ? $GIT_TERMINAL_PROMPT : '' + let $GIT_TERMINAL_PROMPT = 0 + for plug in values(todo) + let plug.uri = substitute(plug.uri, + \ '^https://git::@github\.com', 'https://github.com', '') + endfor + endif + + if !isdirectory(g:plug_home) + try + call mkdir(g:plug_home, 'p') + catch + return s:err(printf('Invalid plug directory: %s. '. + \ 'Try to call plug#begin with a valid directory', g:plug_home)) + endtry + endif + + if has('nvim') && !exists('*jobwait') && threads > 1 + call s:warn('echom', '[vim-plug] Update Neovim for parallel installer') + endif + + let use_job = s:nvim || s:vim8 + let python = (has('python') || has('python3')) && !use_job + let ruby = has('ruby') && !use_job && (v:version >= 703 || v:version == 702 && has('patch374')) && !(s:is_win && has('gui_running')) && threads > 1 && s:check_ruby() + + let s:update = { + \ 'start': reltime(), + \ 'all': todo, + \ 'todo': copy(todo), + \ 'errors': [], + \ 'pull': a:pull, + \ 'force': a:force, + \ 'new': {}, + \ 'threads': (python || ruby || use_job) ? min([len(todo), threads]) : 1, + \ 'bar': '', + \ 'fin': 0 + \ } + + call s:prepare(1) + call append(0, ['', '']) + normal! 2G + silent! redraw + + " Set remote name, overriding a possible user git config's clone.defaultRemoteName + let s:clone_opt = ['--origin', 'origin'] + if get(g:, 'plug_shallow', 1) + call extend(s:clone_opt, ['--depth', '1']) + if s:git_version_requirement(1, 7, 10) + call add(s:clone_opt, '--no-single-branch') + endif + endif + + if has('win32unix') || has('wsl') + call extend(s:clone_opt, ['-c', 'core.eol=lf', '-c', 'core.autocrlf=input']) + endif + + let s:submodule_opt = s:git_version_requirement(2, 8) ? ' --jobs='.threads : '' + + " Python version requirement (>= 2.7) + if python && !has('python3') && !ruby && !use_job && s:update.threads > 1 + redir => pyv + silent python import platform; print platform.python_version() + redir END + let python = s:version_requirement( + \ map(split(split(pyv)[0], '\.'), 'str2nr(v:val)'), [2, 6]) + endif + + if (python || ruby) && s:update.threads > 1 + try + let imd = &imd + if s:mac_gui + set noimd + endif + if ruby + call s:update_ruby() + else + call s:update_python() + endif + catch + let lines = getline(4, '$') + let printed = {} + silent! 4,$d _ + for line in lines + let name = s:extract_name(line, '.', '') + if empty(name) || !has_key(printed, name) + call append('$', line) + if !empty(name) + let printed[name] = 1 + if line[0] == 'x' && index(s:update.errors, name) < 0 + call add(s:update.errors, name) + end + endif + endif + endfor + finally + let &imd = imd + call s:update_finish() + endtry + else + call s:update_vim() + while use_job && sync + sleep 100m + if s:update.fin + break + endif + endwhile + endif +endfunction + +function! s:log4(name, msg) + call setline(4, printf('- %s (%s)', a:msg, a:name)) + redraw +endfunction + +function! s:update_finish() + if exists('s:git_terminal_prompt') + let $GIT_TERMINAL_PROMPT = s:git_terminal_prompt + endif + if s:switch_in() + call append(3, '- Updating ...') | 4 + for [name, spec] in items(filter(copy(s:update.all), 'index(s:update.errors, v:key) < 0 && (s:update.force || s:update.pull || has_key(s:update.new, v:key))')) + let [pos, _] = s:logpos(name) + if !pos + continue + endif + if has_key(spec, 'commit') + call s:log4(name, 'Checking out '.spec.commit) + let out = s:checkout(spec) + elseif has_key(spec, 'tag') + let tag = spec.tag + if tag =~ '\*' + let tags = s:lines(s:system('git tag --list '.plug#shellescape(tag).' --sort -version:refname 2>&1', spec.dir)) + if !v:shell_error && !empty(tags) + let tag = tags[0] + call s:log4(name, printf('Latest tag for %s -> %s', spec.tag, tag)) + call append(3, '') + endif + endif + call s:log4(name, 'Checking out '.tag) + let out = s:system('git checkout -q '.plug#shellescape(tag).' -- 2>&1', spec.dir) + else + let branch = s:git_origin_branch(spec) + call s:log4(name, 'Merging origin/'.s:esc(branch)) + let out = s:system('git checkout -q '.plug#shellescape(branch).' -- 2>&1' + \. (has_key(s:update.new, name) ? '' : ('&& git merge --ff-only '.plug#shellescape('origin/'.branch).' 2>&1')), spec.dir) + endif + if !v:shell_error && filereadable(spec.dir.'/.gitmodules') && + \ (s:update.force || has_key(s:update.new, name) || s:is_updated(spec.dir)) + call s:log4(name, 'Updating submodules. This may take a while.') + let out .= s:bang('git submodule update --init --recursive'.s:submodule_opt.' 2>&1', spec.dir) + endif + let msg = s:format_message(v:shell_error ? 'x': '-', name, out) + if v:shell_error + call add(s:update.errors, name) + call s:regress_bar() + silent execute pos 'd _' + call append(4, msg) | 4 + elseif !empty(out) + call setline(pos, msg[0]) + endif + redraw + endfor + silent 4 d _ + try + call s:do(s:update.pull, s:update.force, filter(copy(s:update.all), 'index(s:update.errors, v:key) < 0 && has_key(v:val, "do")')) + catch + call s:warn('echom', v:exception) + call s:warn('echo', '') + return + endtry + call s:finish(s:update.pull) + call setline(1, 'Updated. Elapsed time: ' . split(reltimestr(reltime(s:update.start)))[0] . ' sec.') + call s:switch_out('normal! gg') + endif +endfunction + +function! s:job_abort() + if (!s:nvim && !s:vim8) || !exists('s:jobs') + return + endif + + for [name, j] in items(s:jobs) + if s:nvim + silent! call jobstop(j.jobid) + elseif s:vim8 + silent! call job_stop(j.jobid) + endif + if j.new + call s:rm_rf(g:plugs[name].dir) + endif + endfor + let s:jobs = {} +endfunction + +function! s:last_non_empty_line(lines) + let len = len(a:lines) + for idx in range(len) + let line = a:lines[len-idx-1] + if !empty(line) + return line + endif + endfor + return '' +endfunction + +function! s:job_out_cb(self, data) abort + let self = a:self + let data = remove(self.lines, -1) . a:data + let lines = map(split(data, "\n", 1), 'split(v:val, "\r", 1)[-1]') + call extend(self.lines, lines) + " To reduce the number of buffer updates + let self.tick = get(self, 'tick', -1) + 1 + if !self.running || self.tick % len(s:jobs) == 0 + let bullet = self.running ? (self.new ? '+' : '*') : (self.error ? 'x' : '-') + let result = self.error ? join(self.lines, "\n") : s:last_non_empty_line(self.lines) + call s:log(bullet, self.name, result) + endif +endfunction + +function! s:job_exit_cb(self, data) abort + let a:self.running = 0 + let a:self.error = a:data != 0 + call s:reap(a:self.name) + call s:tick() +endfunction + +function! s:job_cb(fn, job, ch, data) + if !s:plug_window_exists() " plug window closed + return s:job_abort() + endif + call call(a:fn, [a:job, a:data]) +endfunction + +function! s:nvim_cb(job_id, data, event) dict abort + return (a:event == 'stdout' || a:event == 'stderr') ? + \ s:job_cb('s:job_out_cb', self, 0, join(a:data, "\n")) : + \ s:job_cb('s:job_exit_cb', self, 0, a:data) +endfunction + +function! s:spawn(name, cmd, opts) + let job = { 'name': a:name, 'running': 1, 'error': 0, 'lines': [''], + \ 'new': get(a:opts, 'new', 0) } + let s:jobs[a:name] = job + + if s:nvim + if has_key(a:opts, 'dir') + let job.cwd = a:opts.dir + endif + let argv = a:cmd + call extend(job, { + \ 'on_stdout': function('s:nvim_cb'), + \ 'on_stderr': function('s:nvim_cb'), + \ 'on_exit': function('s:nvim_cb'), + \ }) + let jid = s:plug_call('jobstart', argv, job) + if jid > 0 + let job.jobid = jid + else + let job.running = 0 + let job.error = 1 + let job.lines = [jid < 0 ? argv[0].' is not executable' : + \ 'Invalid arguments (or job table is full)'] + endif + elseif s:vim8 + let cmd = join(map(copy(a:cmd), 'plug#shellescape(v:val, {"script": 0})')) + if has_key(a:opts, 'dir') + let cmd = s:with_cd(cmd, a:opts.dir, 0) + endif + let argv = s:is_win ? ['cmd', '/s', '/c', '"'.cmd.'"'] : ['sh', '-c', cmd] + let jid = job_start(s:is_win ? join(argv, ' ') : argv, { + \ 'out_cb': function('s:job_cb', ['s:job_out_cb', job]), + \ 'err_cb': function('s:job_cb', ['s:job_out_cb', job]), + \ 'exit_cb': function('s:job_cb', ['s:job_exit_cb', job]), + \ 'err_mode': 'raw', + \ 'out_mode': 'raw' + \}) + if job_status(jid) == 'run' + let job.jobid = jid + else + let job.running = 0 + let job.error = 1 + let job.lines = ['Failed to start job'] + endif + else + let job.lines = s:lines(call('s:system', has_key(a:opts, 'dir') ? [a:cmd, a:opts.dir] : [a:cmd])) + let job.error = v:shell_error != 0 + let job.running = 0 + endif +endfunction + +function! s:reap(name) + let job = s:jobs[a:name] + if job.error + call add(s:update.errors, a:name) + elseif get(job, 'new', 0) + let s:update.new[a:name] = 1 + endif + let s:update.bar .= job.error ? 'x' : '=' + + let bullet = job.error ? 'x' : '-' + let result = job.error ? join(job.lines, "\n") : s:last_non_empty_line(job.lines) + call s:log(bullet, a:name, empty(result) ? 'OK' : result) + call s:bar() + + call remove(s:jobs, a:name) +endfunction + +function! s:bar() + if s:switch_in() + let total = len(s:update.all) + call setline(1, (s:update.pull ? 'Updating' : 'Installing'). + \ ' plugins ('.len(s:update.bar).'/'.total.')') + call s:progress_bar(2, s:update.bar, total) + call s:switch_out() + endif +endfunction + +function! s:logpos(name) + let max = line('$') + for i in range(4, max > 4 ? max : 4) + if getline(i) =~# '^[-+x*] '.a:name.':' + for j in range(i + 1, max > 5 ? max : 5) + if getline(j) !~ '^ ' + return [i, j - 1] + endif + endfor + return [i, i] + endif + endfor + return [0, 0] +endfunction + +function! s:log(bullet, name, lines) + if s:switch_in() + let [b, e] = s:logpos(a:name) + if b > 0 + silent execute printf('%d,%d d _', b, e) + if b > winheight('.') + let b = 4 + endif + else + let b = 4 + endif + " FIXME For some reason, nomodifiable is set after :d in vim8 + setlocal modifiable + call append(b - 1, s:format_message(a:bullet, a:name, a:lines)) + call s:switch_out() + endif +endfunction + +function! s:update_vim() + let s:jobs = {} + + call s:bar() + call s:tick() +endfunction + +function! s:tick() + let pull = s:update.pull + let prog = s:progress_opt(s:nvim || s:vim8) +while 1 " Without TCO, Vim stack is bound to explode + if empty(s:update.todo) + if empty(s:jobs) && !s:update.fin + call s:update_finish() + let s:update.fin = 1 + endif + return + endif + + let name = keys(s:update.todo)[0] + let spec = remove(s:update.todo, name) + let new = empty(globpath(spec.dir, '.git', 1)) + + call s:log(new ? '+' : '*', name, pull ? 'Updating ...' : 'Installing ...') + redraw + + let has_tag = has_key(spec, 'tag') + if !new + let [error, _] = s:git_validate(spec, 0) + if empty(error) + if pull + let cmd = s:git_version_requirement(2) ? ['git', '-c', 'credential.helper=', 'fetch'] : ['git', 'fetch'] + if has_tag && !empty(globpath(spec.dir, '.git/shallow')) + call extend(cmd, ['--depth', '99999999']) + endif + if !empty(prog) + call add(cmd, prog) + endif + call s:spawn(name, cmd, { 'dir': spec.dir }) + else + let s:jobs[name] = { 'running': 0, 'lines': ['Already installed'], 'error': 0 } + endif + else + let s:jobs[name] = { 'running': 0, 'lines': s:lines(error), 'error': 1 } + endif + else + let cmd = ['git', 'clone'] + if !has_tag + call extend(cmd, s:clone_opt) + endif + if !empty(prog) + call add(cmd, prog) + endif + call s:spawn(name, extend(cmd, [spec.uri, s:trim(spec.dir)]), { 'new': 1 }) + endif + + if !s:jobs[name].running + call s:reap(name) + endif + if len(s:jobs) >= s:update.threads + break + endif +endwhile +endfunction + +function! s:update_python() +let py_exe = has('python') ? 'python' : 'python3' +execute py_exe "<< EOF" +import datetime +import functools +import os +try: + import queue +except ImportError: + import Queue as queue +import random +import re +import shutil +import signal +import subprocess +import tempfile +import threading as thr +import time +import traceback +import vim + +G_NVIM = vim.eval("has('nvim')") == '1' +G_PULL = vim.eval('s:update.pull') == '1' +G_RETRIES = int(vim.eval('get(g:, "plug_retries", 2)')) + 1 +G_TIMEOUT = int(vim.eval('get(g:, "plug_timeout", 60)')) +G_CLONE_OPT = ' '.join(vim.eval('s:clone_opt')) +G_PROGRESS = vim.eval('s:progress_opt(1)') +G_LOG_PROB = 1.0 / int(vim.eval('s:update.threads')) +G_STOP = thr.Event() +G_IS_WIN = vim.eval('s:is_win') == '1' + +class PlugError(Exception): + def __init__(self, msg): + self.msg = msg +class CmdTimedOut(PlugError): + pass +class CmdFailed(PlugError): + pass +class InvalidURI(PlugError): + pass +class Action(object): + INSTALL, UPDATE, ERROR, DONE = ['+', '*', 'x', '-'] + +class Buffer(object): + def __init__(self, lock, num_plugs, is_pull): + self.bar = '' + self.event = 'Updating' if is_pull else 'Installing' + self.lock = lock + self.maxy = int(vim.eval('winheight(".")')) + self.num_plugs = num_plugs + + def __where(self, name): + """ Find first line with name in current buffer. Return line num. """ + found, lnum = False, 0 + matcher = re.compile('^[-+x*] {0}:'.format(name)) + for line in vim.current.buffer: + if matcher.search(line) is not None: + found = True + break + lnum += 1 + + if not found: + lnum = -1 + return lnum + + def header(self): + curbuf = vim.current.buffer + curbuf[0] = self.event + ' plugins ({0}/{1})'.format(len(self.bar), self.num_plugs) + + num_spaces = self.num_plugs - len(self.bar) + curbuf[1] = '[{0}{1}]'.format(self.bar, num_spaces * ' ') + + with self.lock: + vim.command('normal! 2G') + vim.command('redraw') + + def write(self, action, name, lines): + first, rest = lines[0], lines[1:] + msg = ['{0} {1}{2}{3}'.format(action, name, ': ' if first else '', first)] + msg.extend([' ' + line for line in rest]) + + try: + if action == Action.ERROR: + self.bar += 'x' + vim.command("call add(s:update.errors, '{0}')".format(name)) + elif action == Action.DONE: + self.bar += '=' + + curbuf = vim.current.buffer + lnum = self.__where(name) + if lnum != -1: # Found matching line num + del curbuf[lnum] + if lnum > self.maxy and action in set([Action.INSTALL, Action.UPDATE]): + lnum = 3 + else: + lnum = 3 + curbuf.append(msg, lnum) + + self.header() + except vim.error: + pass + +class Command(object): + CD = 'cd /d' if G_IS_WIN else 'cd' + + def __init__(self, cmd, cmd_dir=None, timeout=60, cb=None, clean=None): + self.cmd = cmd + if cmd_dir: + self.cmd = '{0} {1} && {2}'.format(Command.CD, cmd_dir, self.cmd) + self.timeout = timeout + self.callback = cb if cb else (lambda msg: None) + self.clean = clean if clean else (lambda: None) + self.proc = None + + @property + def alive(self): + """ Returns true only if command still running. """ + return self.proc and self.proc.poll() is None + + def execute(self, ntries=3): + """ Execute the command with ntries if CmdTimedOut. + Returns the output of the command if no Exception. + """ + attempt, finished, limit = 0, False, self.timeout + + while not finished: + try: + attempt += 1 + result = self.try_command() + finished = True + return result + except CmdTimedOut: + if attempt != ntries: + self.notify_retry() + self.timeout += limit + else: + raise + + def notify_retry(self): + """ Retry required for command, notify user. """ + for count in range(3, 0, -1): + if G_STOP.is_set(): + raise KeyboardInterrupt + msg = 'Timeout. Will retry in {0} second{1} ...'.format( + count, 's' if count != 1 else '') + self.callback([msg]) + time.sleep(1) + self.callback(['Retrying ...']) + + def try_command(self): + """ Execute a cmd & poll for callback. Returns list of output. + Raises CmdFailed -> return code for Popen isn't 0 + Raises CmdTimedOut -> command exceeded timeout without new output + """ + first_line = True + + try: + tfile = tempfile.NamedTemporaryFile(mode='w+b') + preexec_fn = not G_IS_WIN and os.setsid or None + self.proc = subprocess.Popen(self.cmd, stdout=tfile, + stderr=subprocess.STDOUT, + stdin=subprocess.PIPE, shell=True, + preexec_fn=preexec_fn) + thrd = thr.Thread(target=(lambda proc: proc.wait()), args=(self.proc,)) + thrd.start() + + thread_not_started = True + while thread_not_started: + try: + thrd.join(0.1) + thread_not_started = False + except RuntimeError: + pass + + while self.alive: + if G_STOP.is_set(): + raise KeyboardInterrupt + + if first_line or random.random() < G_LOG_PROB: + first_line = False + line = '' if G_IS_WIN else nonblock_read(tfile.name) + if line: + self.callback([line]) + + time_diff = time.time() - os.path.getmtime(tfile.name) + if time_diff > self.timeout: + raise CmdTimedOut(['Timeout!']) + + thrd.join(0.5) + + tfile.seek(0) + result = [line.decode('utf-8', 'replace').rstrip() for line in tfile] + + if self.proc.returncode != 0: + raise CmdFailed([''] + result) + + return result + except: + self.terminate() + raise + + def terminate(self): + """ Terminate process and cleanup. """ + if self.alive: + if G_IS_WIN: + os.kill(self.proc.pid, signal.SIGINT) + else: + os.killpg(self.proc.pid, signal.SIGTERM) + self.clean() + +class Plugin(object): + def __init__(self, name, args, buf_q, lock): + self.name = name + self.args = args + self.buf_q = buf_q + self.lock = lock + self.tag = args.get('tag', 0) + + def manage(self): + try: + if os.path.exists(self.args['dir']): + self.update() + else: + self.install() + with self.lock: + thread_vim_command("let s:update.new['{0}'] = 1".format(self.name)) + except PlugError as exc: + self.write(Action.ERROR, self.name, exc.msg) + except KeyboardInterrupt: + G_STOP.set() + self.write(Action.ERROR, self.name, ['Interrupted!']) + except: + # Any exception except those above print stack trace + msg = 'Trace:\n{0}'.format(traceback.format_exc().rstrip()) + self.write(Action.ERROR, self.name, msg.split('\n')) + raise + + def install(self): + target = self.args['dir'] + if target[-1] == '\\': + target = target[0:-1] + + def clean(target): + def _clean(): + try: + shutil.rmtree(target) + except OSError: + pass + return _clean + + self.write(Action.INSTALL, self.name, ['Installing ...']) + callback = functools.partial(self.write, Action.INSTALL, self.name) + cmd = 'git clone {0} {1} {2} {3} 2>&1'.format( + '' if self.tag else G_CLONE_OPT, G_PROGRESS, self.args['uri'], + esc(target)) + com = Command(cmd, None, G_TIMEOUT, callback, clean(target)) + result = com.execute(G_RETRIES) + self.write(Action.DONE, self.name, result[-1:]) + + def repo_uri(self): + cmd = 'git rev-parse --abbrev-ref HEAD 2>&1 && git config -f .git/config remote.origin.url' + command = Command(cmd, self.args['dir'], G_TIMEOUT,) + result = command.execute(G_RETRIES) + return result[-1] + + def update(self): + actual_uri = self.repo_uri() + expect_uri = self.args['uri'] + regex = re.compile(r'^(?:\w+://)?(?:[^@/]*@)?([^:/]*(?::[0-9]*)?)[:/](.*?)(?:\.git)?/?$') + ma = regex.match(actual_uri) + mb = regex.match(expect_uri) + if ma is None or mb is None or ma.groups() != mb.groups(): + msg = ['', + 'Invalid URI: {0}'.format(actual_uri), + 'Expected {0}'.format(expect_uri), + 'PlugClean required.'] + raise InvalidURI(msg) + + if G_PULL: + self.write(Action.UPDATE, self.name, ['Updating ...']) + callback = functools.partial(self.write, Action.UPDATE, self.name) + fetch_opt = '--depth 99999999' if self.tag and os.path.isfile(os.path.join(self.args['dir'], '.git/shallow')) else '' + cmd = 'git fetch {0} {1} 2>&1'.format(fetch_opt, G_PROGRESS) + com = Command(cmd, self.args['dir'], G_TIMEOUT, callback) + result = com.execute(G_RETRIES) + self.write(Action.DONE, self.name, result[-1:]) + else: + self.write(Action.DONE, self.name, ['Already installed']) + + def write(self, action, name, msg): + self.buf_q.put((action, name, msg)) + +class PlugThread(thr.Thread): + def __init__(self, tname, args): + super(PlugThread, self).__init__() + self.tname = tname + self.args = args + + def run(self): + thr.current_thread().name = self.tname + buf_q, work_q, lock = self.args + + try: + while not G_STOP.is_set(): + name, args = work_q.get_nowait() + plug = Plugin(name, args, buf_q, lock) + plug.manage() + work_q.task_done() + except queue.Empty: + pass + +class RefreshThread(thr.Thread): + def __init__(self, lock): + super(RefreshThread, self).__init__() + self.lock = lock + self.running = True + + def run(self): + while self.running: + with self.lock: + thread_vim_command('noautocmd normal! a') + time.sleep(0.33) + + def stop(self): + self.running = False + +if G_NVIM: + def thread_vim_command(cmd): + vim.session.threadsafe_call(lambda: vim.command(cmd)) +else: + def thread_vim_command(cmd): + vim.command(cmd) + +def esc(name): + return '"' + name.replace('"', '\"') + '"' + +def nonblock_read(fname): + """ Read a file with nonblock flag. Return the last line. """ + fread = os.open(fname, os.O_RDONLY | os.O_NONBLOCK) + buf = os.read(fread, 100000).decode('utf-8', 'replace') + os.close(fread) + + line = buf.rstrip('\r\n') + left = max(line.rfind('\r'), line.rfind('\n')) + if left != -1: + left += 1 + line = line[left:] + + return line + +def main(): + thr.current_thread().name = 'main' + nthreads = int(vim.eval('s:update.threads')) + plugs = vim.eval('s:update.todo') + mac_gui = vim.eval('s:mac_gui') == '1' + + lock = thr.Lock() + buf = Buffer(lock, len(plugs), G_PULL) + buf_q, work_q = queue.Queue(), queue.Queue() + for work in plugs.items(): + work_q.put(work) + + start_cnt = thr.active_count() + for num in range(nthreads): + tname = 'PlugT-{0:02}'.format(num) + thread = PlugThread(tname, (buf_q, work_q, lock)) + thread.start() + if mac_gui: + rthread = RefreshThread(lock) + rthread.start() + + while not buf_q.empty() or thr.active_count() != start_cnt: + try: + action, name, msg = buf_q.get(True, 0.25) + buf.write(action, name, ['OK'] if not msg else msg) + buf_q.task_done() + except queue.Empty: + pass + except KeyboardInterrupt: + G_STOP.set() + + if mac_gui: + rthread.stop() + rthread.join() + +main() +EOF +endfunction + +function! s:update_ruby() + ruby << EOF + module PlugStream + SEP = ["\r", "\n", nil] + def get_line + buffer = '' + loop do + char = readchar rescue return + if SEP.include? char.chr + buffer << $/ + break + else + buffer << char + end + end + buffer + end + end unless defined?(PlugStream) + + def esc arg + %["#{arg.gsub('"', '\"')}"] + end + + def killall pid + pids = [pid] + if /mswin|mingw|bccwin/ =~ RUBY_PLATFORM + pids.each { |pid| Process.kill 'INT', pid.to_i rescue nil } + else + unless `which pgrep 2> /dev/null`.empty? + children = pids + until children.empty? + children = children.map { |pid| + `pgrep -P #{pid}`.lines.map { |l| l.chomp } + }.flatten + pids += children + end + end + pids.each { |pid| Process.kill 'TERM', pid.to_i rescue nil } + end + end + + def compare_git_uri a, b + regex = %r{^(?:\w+://)?(?:[^@/]*@)?([^:/]*(?::[0-9]*)?)[:/](.*?)(?:\.git)?/?$} + regex.match(a).to_a.drop(1) == regex.match(b).to_a.drop(1) + end + + require 'thread' + require 'fileutils' + require 'timeout' + running = true + iswin = VIM::evaluate('s:is_win').to_i == 1 + pull = VIM::evaluate('s:update.pull').to_i == 1 + base = VIM::evaluate('g:plug_home') + all = VIM::evaluate('s:update.todo') + limit = VIM::evaluate('get(g:, "plug_timeout", 60)') + tries = VIM::evaluate('get(g:, "plug_retries", 2)') + 1 + nthr = VIM::evaluate('s:update.threads').to_i + maxy = VIM::evaluate('winheight(".")').to_i + vim7 = VIM::evaluate('v:version').to_i <= 703 && RUBY_PLATFORM =~ /darwin/ + cd = iswin ? 'cd /d' : 'cd' + tot = VIM::evaluate('len(s:update.todo)') || 0 + bar = '' + skip = 'Already installed' + mtx = Mutex.new + take1 = proc { mtx.synchronize { running && all.shift } } + logh = proc { + cnt = bar.length + $curbuf[1] = "#{pull ? 'Updating' : 'Installing'} plugins (#{cnt}/#{tot})" + $curbuf[2] = '[' + bar.ljust(tot) + ']' + VIM::command('normal! 2G') + VIM::command('redraw') + } + where = proc { |name| (1..($curbuf.length)).find { |l| $curbuf[l] =~ /^[-+x*] #{name}:/ } } + log = proc { |name, result, type| + mtx.synchronize do + ing = ![true, false].include?(type) + bar += type ? '=' : 'x' unless ing + b = case type + when :install then '+' when :update then '*' + when true, nil then '-' else + VIM::command("call add(s:update.errors, '#{name}')") + 'x' + end + result = + if type || type.nil? + ["#{b} #{name}: #{result.lines.to_a.last || 'OK'}"] + elsif result =~ /^Interrupted|^Timeout/ + ["#{b} #{name}: #{result}"] + else + ["#{b} #{name}"] + result.lines.map { |l| " " << l } + end + if lnum = where.call(name) + $curbuf.delete lnum + lnum = 4 if ing && lnum > maxy + end + result.each_with_index do |line, offset| + $curbuf.append((lnum || 4) - 1 + offset, line.gsub(/\e\[./, '').chomp) + end + logh.call + end + } + bt = proc { |cmd, name, type, cleanup| + tried = timeout = 0 + begin + tried += 1 + timeout += limit + fd = nil + data = '' + if iswin + Timeout::timeout(timeout) do + tmp = VIM::evaluate('tempname()') + system("(#{cmd}) > #{tmp}") + data = File.read(tmp).chomp + File.unlink tmp rescue nil + end + else + fd = IO.popen(cmd).extend(PlugStream) + first_line = true + log_prob = 1.0 / nthr + while line = Timeout::timeout(timeout) { fd.get_line } + data << line + log.call name, line.chomp, type if name && (first_line || rand < log_prob) + first_line = false + end + fd.close + end + [$? == 0, data.chomp] + rescue Timeout::Error, Interrupt => e + if fd && !fd.closed? + killall fd.pid + fd.close + end + cleanup.call if cleanup + if e.is_a?(Timeout::Error) && tried < tries + 3.downto(1) do |countdown| + s = countdown > 1 ? 's' : '' + log.call name, "Timeout. Will retry in #{countdown} second#{s} ...", type + sleep 1 + end + log.call name, 'Retrying ...', type + retry + end + [false, e.is_a?(Interrupt) ? "Interrupted!" : "Timeout!"] + end + } + main = Thread.current + threads = [] + watcher = Thread.new { + if vim7 + while VIM::evaluate('getchar(1)') + sleep 0.1 + end + else + require 'io/console' # >= Ruby 1.9 + nil until IO.console.getch == 3.chr + end + mtx.synchronize do + running = false + threads.each { |t| t.raise Interrupt } unless vim7 + end + threads.each { |t| t.join rescue nil } + main.kill + } + refresh = Thread.new { + while true + mtx.synchronize do + break unless running + VIM::command('noautocmd normal! a') + end + sleep 0.2 + end + } if VIM::evaluate('s:mac_gui') == 1 + + clone_opt = VIM::evaluate('s:clone_opt').join(' ') + progress = VIM::evaluate('s:progress_opt(1)') + nthr.times do + mtx.synchronize do + threads << Thread.new { + while pair = take1.call + name = pair.first + dir, uri, tag = pair.last.values_at *%w[dir uri tag] + exists = File.directory? dir + ok, result = + if exists + chdir = "#{cd} #{iswin ? dir : esc(dir)}" + ret, data = bt.call "#{chdir} && git rev-parse --abbrev-ref HEAD 2>&1 && git config -f .git/config remote.origin.url", nil, nil, nil + current_uri = data.lines.to_a.last + if !ret + if data =~ /^Interrupted|^Timeout/ + [false, data] + else + [false, [data.chomp, "PlugClean required."].join($/)] + end + elsif !compare_git_uri(current_uri, uri) + [false, ["Invalid URI: #{current_uri}", + "Expected: #{uri}", + "PlugClean required."].join($/)] + else + if pull + log.call name, 'Updating ...', :update + fetch_opt = (tag && File.exist?(File.join(dir, '.git/shallow'))) ? '--depth 99999999' : '' + bt.call "#{chdir} && git fetch #{fetch_opt} #{progress} 2>&1", name, :update, nil + else + [true, skip] + end + end + else + d = esc dir.sub(%r{[\\/]+$}, '') + log.call name, 'Installing ...', :install + bt.call "git clone #{clone_opt unless tag} #{progress} #{uri} #{d} 2>&1", name, :install, proc { + FileUtils.rm_rf dir + } + end + mtx.synchronize { VIM::command("let s:update.new['#{name}'] = 1") } if !exists && ok + log.call name, result, ok + end + } if running + end + end + threads.each { |t| t.join rescue nil } + logh.call + refresh.kill if refresh + watcher.kill +EOF +endfunction + +function! s:shellesc_cmd(arg, script) + let escaped = substitute('"'.a:arg.'"', '[&|<>()@^!"]', '^&', 'g') + return substitute(escaped, '%', (a:script ? '%' : '^') . '&', 'g') +endfunction + +function! s:shellesc_ps1(arg) + return "'".substitute(escape(a:arg, '\"'), "'", "''", 'g')."'" +endfunction + +function! s:shellesc_sh(arg) + return "'".substitute(a:arg, "'", "'\\\\''", 'g')."'" +endfunction + +" Escape the shell argument based on the shell. +" Vim and Neovim's shellescape() are insufficient. +" 1. shellslash determines whether to use single/double quotes. +" Double-quote escaping is fragile for cmd.exe. +" 2. It does not work for powershell. +" 3. It does not work for *sh shells if the command is executed +" via cmd.exe (ie. cmd.exe /c sh -c command command_args) +" 4. It does not support batchfile syntax. +" +" Accepts an optional dictionary with the following keys: +" - shell: same as Vim/Neovim 'shell' option. +" If unset, fallback to 'cmd.exe' on Windows or 'sh'. +" - script: If truthy and shell is cmd.exe, escape for batchfile syntax. +function! plug#shellescape(arg, ...) + if a:arg =~# '^[A-Za-z0-9_/:.-]\+$' + return a:arg + endif + let opts = a:0 > 0 && type(a:1) == s:TYPE.dict ? a:1 : {} + let shell = get(opts, 'shell', s:is_win ? 'cmd.exe' : 'sh') + let script = get(opts, 'script', 1) + if shell =~# 'cmd\(\.exe\)\?$' + return s:shellesc_cmd(a:arg, script) + elseif s:is_powershell(shell) + return s:shellesc_ps1(a:arg) + endif + return s:shellesc_sh(a:arg) +endfunction + +function! s:glob_dir(path) + return map(filter(s:glob(a:path, '**'), 'isdirectory(v:val)'), 's:dirpath(v:val)') +endfunction + +function! s:progress_bar(line, bar, total) + call setline(a:line, '[' . s:lpad(a:bar, a:total) . ']') +endfunction + +function! s:compare_git_uri(a, b) + " See `git help clone' + " https:// [user@] github.com[:port] / junegunn/vim-plug [.git] + " [git@] github.com[:port] : junegunn/vim-plug [.git] + " file:// / junegunn/vim-plug [/] + " / junegunn/vim-plug [/] + let pat = '^\%(\w\+://\)\='.'\%([^@/]*@\)\='.'\([^:/]*\%(:[0-9]*\)\=\)'.'[:/]'.'\(.\{-}\)'.'\%(\.git\)\=/\?$' + let ma = matchlist(a:a, pat) + let mb = matchlist(a:b, pat) + return ma[1:2] ==# mb[1:2] +endfunction + +function! s:format_message(bullet, name, message) + if a:bullet != 'x' + return [printf('%s %s: %s', a:bullet, a:name, s:lastline(a:message))] + else + let lines = map(s:lines(a:message), '" ".v:val') + return extend([printf('x %s:', a:name)], lines) + endif +endfunction + +function! s:with_cd(cmd, dir, ...) + let script = a:0 > 0 ? a:1 : 1 + return printf('cd%s %s && %s', s:is_win ? ' /d' : '', plug#shellescape(a:dir, {'script': script}), a:cmd) +endfunction + +function! s:system(cmd, ...) + let batchfile = '' + try + let [sh, shellcmdflag, shrd] = s:chsh(1) + if type(a:cmd) == s:TYPE.list + " Neovim's system() supports list argument to bypass the shell + " but it cannot set the working directory for the command. + " Assume that the command does not rely on the shell. + if has('nvim') && a:0 == 0 + return system(a:cmd) + endif + let cmd = join(map(copy(a:cmd), 'plug#shellescape(v:val, {"shell": &shell, "script": 0})')) + if s:is_powershell(&shell) + let cmd = '& ' . cmd + endif + else + let cmd = a:cmd + endif + if a:0 > 0 + let cmd = s:with_cd(cmd, a:1, type(a:cmd) != s:TYPE.list) + endif + if s:is_win && type(a:cmd) != s:TYPE.list + let [batchfile, cmd] = s:batchfile(cmd) + endif + return system(cmd) + finally + let [&shell, &shellcmdflag, &shellredir] = [sh, shellcmdflag, shrd] + if s:is_win && filereadable(batchfile) + call delete(batchfile) + endif + endtry +endfunction + +function! s:system_chomp(...) + let ret = call('s:system', a:000) + return v:shell_error ? '' : substitute(ret, '\n$', '', '') +endfunction + +function! s:git_validate(spec, check_branch) + let err = '' + if isdirectory(a:spec.dir) + let result = [s:git_local_branch(a:spec.dir), s:git_origin_url(a:spec.dir)] + let remote = result[-1] + if empty(remote) + let err = join([remote, 'PlugClean required.'], "\n") + elseif !s:compare_git_uri(remote, a:spec.uri) + let err = join(['Invalid URI: '.remote, + \ 'Expected: '.a:spec.uri, + \ 'PlugClean required.'], "\n") + elseif a:check_branch && has_key(a:spec, 'commit') + let sha = s:git_revision(a:spec.dir) + if empty(sha) + let err = join(add(result, 'PlugClean required.'), "\n") + elseif !s:hash_match(sha, a:spec.commit) + let err = join([printf('Invalid HEAD (expected: %s, actual: %s)', + \ a:spec.commit[:6], sha[:6]), + \ 'PlugUpdate required.'], "\n") + endif + elseif a:check_branch + let current_branch = result[0] + " Check tag + let origin_branch = s:git_origin_branch(a:spec) + if has_key(a:spec, 'tag') + let tag = s:system_chomp('git describe --exact-match --tags HEAD 2>&1', a:spec.dir) + if a:spec.tag !=# tag && a:spec.tag !~ '\*' + let err = printf('Invalid tag: %s (expected: %s). Try PlugUpdate.', + \ (empty(tag) ? 'N/A' : tag), a:spec.tag) + endif + " Check branch + elseif origin_branch !=# current_branch + let err = printf('Invalid branch: %s (expected: %s). Try PlugUpdate.', + \ current_branch, origin_branch) + endif + if empty(err) + let [ahead, behind] = split(s:lastline(s:system([ + \ 'git', 'rev-list', '--count', '--left-right', + \ printf('HEAD...origin/%s', origin_branch) + \ ], a:spec.dir)), '\t') + if !v:shell_error && ahead + if behind + " Only mention PlugClean if diverged, otherwise it's likely to be + " pushable (and probably not that messed up). + let err = printf( + \ "Diverged from origin/%s (%d commit(s) ahead and %d commit(s) behind!\n" + \ .'Backup local changes and run PlugClean and PlugUpdate to reinstall it.', origin_branch, ahead, behind) + else + let err = printf("Ahead of origin/%s by %d commit(s).\n" + \ .'Cannot update until local changes are pushed.', + \ origin_branch, ahead) + endif + endif + endif + endif + else + let err = 'Not found' + endif + return [err, err =~# 'PlugClean'] +endfunction + +function! s:rm_rf(dir) + if isdirectory(a:dir) + return s:system(s:is_win + \ ? 'rmdir /S /Q '.plug#shellescape(a:dir) + \ : ['rm', '-rf', a:dir]) + endif +endfunction + +function! s:clean(force) + call s:prepare() + call append(0, 'Searching for invalid plugins in '.g:plug_home) + call append(1, '') + + " List of valid directories + let dirs = [] + let errs = {} + let [cnt, total] = [0, len(g:plugs)] + for [name, spec] in items(g:plugs) + if !s:is_managed(name) + call add(dirs, spec.dir) + else + let [err, clean] = s:git_validate(spec, 1) + if clean + let errs[spec.dir] = s:lines(err)[0] + else + call add(dirs, spec.dir) + endif + endif + let cnt += 1 + call s:progress_bar(2, repeat('=', cnt), total) + normal! 2G + redraw + endfor + + let allowed = {} + for dir in dirs + let allowed[s:dirpath(s:plug_fnamemodify(dir, ':h:h'))] = 1 + let allowed[dir] = 1 + for child in s:glob_dir(dir) + let allowed[child] = 1 + endfor + endfor + + let todo = [] + let found = sort(s:glob_dir(g:plug_home)) + while !empty(found) + let f = remove(found, 0) + if !has_key(allowed, f) && isdirectory(f) + call add(todo, f) + call append(line('$'), '- ' . f) + if has_key(errs, f) + call append(line('$'), ' ' . errs[f]) + endif + let found = filter(found, 'stridx(v:val, f) != 0') + end + endwhile + + 4 + redraw + if empty(todo) + call append(line('$'), 'Already clean.') + else + let s:clean_count = 0 + call append(3, ['Directories to delete:', '']) + redraw! + if a:force || s:ask_no_interrupt('Delete all directories?') + call s:delete([6, line('$')], 1) + else + call setline(4, 'Cancelled.') + nnoremap d :set opfunc=delete_opg@ + nmap dd d_ + xnoremap d :call delete_op(visualmode(), 1) + echo 'Delete the lines (d{motion}) to delete the corresponding directories' + endif + endif + 4 + setlocal nomodifiable +endfunction + +function! s:delete_op(type, ...) + call s:delete(a:0 ? [line("'<"), line("'>")] : [line("'["), line("']")], 0) +endfunction + +function! s:delete(range, force) + let [l1, l2] = a:range + let force = a:force + let err_count = 0 + while l1 <= l2 + let line = getline(l1) + if line =~ '^- ' && isdirectory(line[2:]) + execute l1 + redraw! + let answer = force ? 1 : s:ask('Delete '.line[2:].'?', 1) + let force = force || answer > 1 + if answer + let err = s:rm_rf(line[2:]) + setlocal modifiable + if empty(err) + call setline(l1, '~'.line[1:]) + let s:clean_count += 1 + else + delete _ + call append(l1 - 1, s:format_message('x', line[1:], err)) + let l2 += len(s:lines(err)) + let err_count += 1 + endif + let msg = printf('Removed %d directories.', s:clean_count) + if err_count > 0 + let msg .= printf(' Failed to remove %d directories.', err_count) + endif + call setline(4, msg) + setlocal nomodifiable + endif + endif + let l1 += 1 + endwhile +endfunction + +function! s:upgrade() + echo 'Downloading the latest version of vim-plug' + redraw + let tmp = s:plug_tempname() + let new = tmp . '/plug.vim' + + try + let out = s:system(['git', 'clone', '--depth', '1', s:plug_src, tmp]) + if v:shell_error + return s:err('Error upgrading vim-plug: '. out) + endif + + if readfile(s:me) ==# readfile(new) + echo 'vim-plug is already up-to-date' + return 0 + else + call rename(s:me, s:me . '.old') + call rename(new, s:me) + unlet g:loaded_plug + echo 'vim-plug has been upgraded' + return 1 + endif + finally + silent! call s:rm_rf(tmp) + endtry +endfunction + +function! s:upgrade_specs() + for spec in values(g:plugs) + let spec.frozen = get(spec, 'frozen', 0) + endfor +endfunction + +function! s:status() + call s:prepare() + call append(0, 'Checking plugins') + call append(1, '') + + let ecnt = 0 + let unloaded = 0 + let [cnt, total] = [0, len(g:plugs)] + for [name, spec] in items(g:plugs) + let is_dir = isdirectory(spec.dir) + if has_key(spec, 'uri') + if is_dir + let [err, _] = s:git_validate(spec, 1) + let [valid, msg] = [empty(err), empty(err) ? 'OK' : err] + else + let [valid, msg] = [0, 'Not found. Try PlugInstall.'] + endif + else + if is_dir + let [valid, msg] = [1, 'OK'] + else + let [valid, msg] = [0, 'Not found.'] + endif + endif + let cnt += 1 + let ecnt += !valid + " `s:loaded` entry can be missing if PlugUpgraded + if is_dir && get(s:loaded, name, -1) == 0 + let unloaded = 1 + let msg .= ' (not loaded)' + endif + call s:progress_bar(2, repeat('=', cnt), total) + call append(3, s:format_message(valid ? '-' : 'x', name, msg)) + normal! 2G + redraw + endfor + call setline(1, 'Finished. '.ecnt.' error(s).') + normal! gg + setlocal nomodifiable + if unloaded + echo "Press 'L' on each line to load plugin, or 'U' to update" + nnoremap L :call status_load(line('.')) + xnoremap L :call status_load(line('.')) + end +endfunction + +function! s:extract_name(str, prefix, suffix) + return matchstr(a:str, '^'.a:prefix.' \zs[^:]\+\ze:.*'.a:suffix.'$') +endfunction + +function! s:status_load(lnum) + let line = getline(a:lnum) + let name = s:extract_name(line, '-', '(not loaded)') + if !empty(name) + call plug#load(name) + setlocal modifiable + call setline(a:lnum, substitute(line, ' (not loaded)$', '', '')) + setlocal nomodifiable + endif +endfunction + +function! s:status_update() range + let lines = getline(a:firstline, a:lastline) + let names = filter(map(lines, 's:extract_name(v:val, "[x-]", "")'), '!empty(v:val)') + if !empty(names) + echo + execute 'PlugUpdate' join(names) + endif +endfunction + +function! s:is_preview_window_open() + silent! wincmd P + if &previewwindow + wincmd p + return 1 + endif +endfunction + +function! s:find_name(lnum) + for lnum in reverse(range(1, a:lnum)) + let line = getline(lnum) + if empty(line) + return '' + endif + let name = s:extract_name(line, '-', '') + if !empty(name) + return name + endif + endfor + return '' +endfunction + +function! s:preview_commit() + if b:plug_preview < 0 + let b:plug_preview = !s:is_preview_window_open() + endif + + let sha = matchstr(getline('.'), '^ \X*\zs[0-9a-f]\{7,9}') + if empty(sha) + let name = matchstr(getline('.'), '^- \zs[^:]*\ze:$') + if empty(name) + return + endif + let title = 'HEAD@{1}..' + let command = 'git diff --no-color HEAD@{1}' + else + let title = sha + let command = 'git show --no-color --pretty=medium '.sha + let name = s:find_name(line('.')) + endif + + if empty(name) || !has_key(g:plugs, name) || !isdirectory(g:plugs[name].dir) + return + endif + + if exists('g:plug_pwindow') && !s:is_preview_window_open() + execute g:plug_pwindow + execute 'e' title + else + execute 'pedit' title + wincmd P + endif + setlocal previewwindow filetype=git buftype=nofile bufhidden=wipe nobuflisted modifiable + let batchfile = '' + try + let [sh, shellcmdflag, shrd] = s:chsh(1) + let cmd = 'cd '.plug#shellescape(g:plugs[name].dir).' && '.command + if s:is_win + let [batchfile, cmd] = s:batchfile(cmd) + endif + execute 'silent %!' cmd + finally + let [&shell, &shellcmdflag, &shellredir] = [sh, shellcmdflag, shrd] + if s:is_win && filereadable(batchfile) + call delete(batchfile) + endif + endtry + setlocal nomodifiable + nnoremap q :q + wincmd p +endfunction + +function! s:section(flags) + call search('\(^[x-] \)\@<=[^:]\+:', a:flags) +endfunction + +function! s:format_git_log(line) + let indent = ' ' + let tokens = split(a:line, nr2char(1)) + if len(tokens) != 5 + return indent.substitute(a:line, '\s*$', '', '') + endif + let [graph, sha, refs, subject, date] = tokens + let tag = matchstr(refs, 'tag: [^,)]\+') + let tag = empty(tag) ? ' ' : ' ('.tag.') ' + return printf('%s%s%s%s%s (%s)', indent, graph, sha, tag, subject, date) +endfunction + +function! s:append_ul(lnum, text) + call append(a:lnum, ['', a:text, repeat('-', len(a:text))]) +endfunction + +function! s:diff() + call s:prepare() + call append(0, ['Collecting changes ...', '']) + let cnts = [0, 0] + let bar = '' + let total = filter(copy(g:plugs), 's:is_managed(v:key) && isdirectory(v:val.dir)') + call s:progress_bar(2, bar, len(total)) + for origin in [1, 0] + let plugs = reverse(sort(items(filter(copy(total), (origin ? '' : '!').'(has_key(v:val, "commit") || has_key(v:val, "tag"))')))) + if empty(plugs) + continue + endif + call s:append_ul(2, origin ? 'Pending updates:' : 'Last update:') + for [k, v] in plugs + let branch = s:git_origin_branch(v) + if len(branch) + let range = origin ? '..origin/'.branch : 'HEAD@{1}..' + let cmd = ['git', 'log', '--graph', '--color=never'] + if s:git_version_requirement(2, 10, 0) + call add(cmd, '--no-show-signature') + endif + call extend(cmd, ['--pretty=format:%x01%h%x01%d%x01%s%x01%cr', range]) + if has_key(v, 'rtp') + call extend(cmd, ['--', v.rtp]) + endif + let diff = s:system_chomp(cmd, v.dir) + if !empty(diff) + let ref = has_key(v, 'tag') ? (' (tag: '.v.tag.')') : has_key(v, 'commit') ? (' '.v.commit) : '' + call append(5, extend(['', '- '.k.':'.ref], map(s:lines(diff), 's:format_git_log(v:val)'))) + let cnts[origin] += 1 + endif + endif + let bar .= '=' + call s:progress_bar(2, bar, len(total)) + normal! 2G + redraw + endfor + if !cnts[origin] + call append(5, ['', 'N/A']) + endif + endfor + call setline(1, printf('%d plugin(s) updated.', cnts[0]) + \ . (cnts[1] ? printf(' %d plugin(s) have pending updates.', cnts[1]) : '')) + + if cnts[0] || cnts[1] + nnoremap (plug-preview) :silent! call preview_commit() + if empty(maparg("\", 'n')) + nmap (plug-preview) + endif + if empty(maparg('o', 'n')) + nmap o (plug-preview) + endif + endif + if cnts[0] + nnoremap X :call revert() + echo "Press 'X' on each block to revert the update" + endif + normal! gg + setlocal nomodifiable +endfunction + +function! s:revert() + if search('^Pending updates', 'bnW') + return + endif + + let name = s:find_name(line('.')) + if empty(name) || !has_key(g:plugs, name) || + \ input(printf('Revert the update of %s? (y/N) ', name)) !~? '^y' + return + endif + + call s:system('git reset --hard HEAD@{1} && git checkout '.plug#shellescape(g:plugs[name].branch).' --', g:plugs[name].dir) + setlocal modifiable + normal! "_dap + setlocal nomodifiable + echo 'Reverted' +endfunction + +function! s:snapshot(force, ...) abort + call s:prepare() + setf vim + call append(0, ['" Generated by vim-plug', + \ '" '.strftime("%c"), + \ '" :source this file in vim to restore the snapshot', + \ '" or execute: vim -S snapshot.vim', + \ '', '', 'PlugUpdate!']) + 1 + let anchor = line('$') - 3 + let names = sort(keys(filter(copy(g:plugs), + \'has_key(v:val, "uri") && isdirectory(v:val.dir)'))) + for name in reverse(names) + let sha = has_key(g:plugs[name], 'commit') ? g:plugs[name].commit : s:git_revision(g:plugs[name].dir) + if !empty(sha) + call append(anchor, printf("silent! let g:plugs['%s'].commit = '%s'", name, sha)) + redraw + endif + endfor + + if a:0 > 0 + let fn = s:plug_expand(a:1) + if filereadable(fn) && !(a:force || s:ask(a:1.' already exists. Overwrite?')) + return + endif + call writefile(getline(1, '$'), fn) + echo 'Saved as '.a:1 + silent execute 'e' s:esc(fn) + setf vim + endif +endfunction + +function! s:split_rtp() + return split(&rtp, '\\\@` +autojump +bspwm? +bat +calcurse +dtrx +fd +feh +fish +i3lock-fancy +lemonbar-xft +lutris +mpd +mpv +ncdu +ncmpcpp +neovim +neovim-remote +newsboat +nim +noto-emoji +picom +pipewire-native-jack +qutebrowser ranger -rxvt-unicode +ripgrep +rtorrent +rustup sbcl -sc-im +screenfetch +scrot +stow sxhkd -tig -tmux -tree -twm -vim -xorg -xterm +sxiv +task +tree-sitter +unicode-character-database +xclip +xss-lock +youtube-dl +zathura-djvu + + +# Other things that need to be installed manually +st +dmenu +lf +fzf (sbopkg version still not good?) + diff --git a/installed.txt~ b/installed.txt~ new file mode 100644 index 0000000..2c49c28 --- /dev/null +++ b/installed.txt~ @@ -0,0 +1,50 @@ +# sbopkg +# Generate queuefile with `sqg -p ` +autojump +bspwm? +bat +calcurse +dtrx +fd +feh +fish +i3lock-fancy +lemonbar-xft +lutris +mpd +mpv +ncdu +ncmpcpp +neovim +neovim-remote +newsboat +nim +noto-emoji +picom +pipewire-native-jack +qutebrowser +ranger +ripgrep +rtorrent +rustup +sbcl +screenfetch +scrot +stow +sxhkd +sxiv +task +tree-sitter +unicode-character-database +xclip +xss-lock +youtube-dl +zathura-djvu + + +# Other things that need to be installed manually +st +dmenu +lf +fzf (sbopkg version still not good?) + diff --git a/slackware/.config/.jira/.config.yml b/slackware/.config/.jira/.config.yml deleted file mode 100644 index 015918a..0000000 --- a/slackware/.config/.jira/.config.yml +++ /dev/null @@ -1,43 +0,0 @@ -board: - id: 24 - name: Foresight Combined Sprint Board - type: scrum -epic: - name: customfield_10011 - link: customfield_10014 -installation: Cloud -issue: - types: - - id: "10000" - name: Epic - handle: Epic - subtask: false - - id: "10007" - name: Story - handle: Story - subtask: false - - id: "10016" - name: Task - handle: Task - subtask: false - - id: "10017" - name: Sub-task - handle: Sub-task - subtask: true - - id: "10010" - name: Bug - handle: Bug - subtask: false - - id: "10026" - name: Information - handle: Information - subtask: false - - id: "10027" - name: Feature Request - handle: Feature Request - subtask: false -login: ian@fs.tech -project: - key: RWA - type: classic -server: https://everblue.atlassian.net diff --git a/slackware/.config/.jira/.config.yml.bkp b/slackware/.config/.jira/.config.yml.bkp deleted file mode 100644 index e69de29..0000000 diff --git a/slackware/.config/base16-shell b/slackware/.config/base16-shell deleted file mode 160000 index ce8e1e5..0000000 --- a/slackware/.config/base16-shell +++ /dev/null @@ -1 +0,0 @@ -Subproject commit ce8e1e540367ea83cc3e01eec7b2a11783b3f9e1 diff --git a/slackware/.config/fish/config.fish b/slackware/.config/fish/config.fish deleted file mode 100644 index 0a98c4a..0000000 --- a/slackware/.config/fish/config.fish +++ /dev/null @@ -1,9 +0,0 @@ -set EDITOR vim -set PAGER bat -set BROWSER firefox - -if status --is-interactive - set BASE16_SHELL "$HOME/.config/base16-shell/" - source "$BASE16_SHELL/profile_helper.fish" - source "$HOME/.config/fish/functions/autojump.fish" -end diff --git a/slackware/.config/fish/fish_plugins b/slackware/.config/fish/fish_plugins deleted file mode 100644 index 9673b42..0000000 --- a/slackware/.config/fish/fish_plugins +++ /dev/null @@ -1,2 +0,0 @@ -jorgebucaran/fisher -jorgebucaran/nvm.fish diff --git a/slackware/.config/fish/fish_variables b/slackware/.config/fish/fish_variables deleted file mode 100644 index 9f42e36..0000000 --- a/slackware/.config/fish/fish_variables +++ /dev/null @@ -1,57 +0,0 @@ -# This file contains fish universal variable definitions. -# VERSION: 3.0 -SETUVAR --export DEV_RWA_DB_PASS:tM54ynHFY2TsQeBW -SETUVAR --export DEV_RWA_MOODLE_DB_PASS:ZfILLMQKG1XwmGi0 -SETUVAR --export FLAV01:\x23ebdbb2 -SETUVAR --export FLAV02:\x23d5c4a1 -SETUVAR --export FLAV03:\x23bdae93 -SETUVAR --export FLAV04:\x23665c54 -SETUVAR --export FLAV05:\x23504945 -SETUVAR --export FLAV06:\x233c3836 -SETUVAR --export FLAV07:\x23282828 -SETUVAR --export FLAV08:\x239d0006 -SETUVAR --export FLAV09:\x23af3a03 -SETUVAR --export FLAV10:\x23f9f5d7 -SETUVAR --export FLAV11:\x23f9f5d7 -SETUVAR --export FLAV12:\x239d0006 -SETUVAR --export FLAV13:\x23b57614 -SETUVAR --export FLAV14:\x2379740e -SETUVAR --export FLAV15:\x23427b58 -SETUVAR --export FLAV16:\x23076678 -SETUVAR --export JIRA_API_TOKEN:GeyxpLU08UNJaFgMX5qZ5A78 -SETUVAR __fish_initialized:3400 -SETUVAR _fish_abbr_mux:tmuxinator -SETUVAR _fisher_jorgebucaran_2F_fisher_files:/Users/iankeane/\x2econfig/fish/functions/fisher\x2efish\x1e/Users/iankeane/\x2econfig/fish/completions/fisher\x2efish -SETUVAR _fisher_jorgebucaran_2F_nvm_2E_fish_files:/Users/iankeane/\x2econfig/fish/functions/_nvm_index_update\x2efish\x1e/Users/iankeane/\x2econfig/fish/functions/_nvm_list\x2efish\x1e/Users/iankeane/\x2econfig/fish/functions/_nvm_version_activate\x2efish\x1e/Users/iankeane/\x2econfig/fish/functions/_nvm_version_deactivate\x2efish\x1e/Users/iankeane/\x2econfig/fish/functions/nvm\x2efish\x1e/Users/iankeane/\x2econfig/fish/conf\x2ed/nvm\x2efish\x1e/Users/iankeane/\x2econfig/fish/completions/nvm\x2efish -SETUVAR _fisher_plugins:jorgebucaran/fisher\x1ejorgebucaran/nvm\x2efish -SETUVAR fish_color_autosuggestion:555\x1ebrblack -SETUVAR fish_color_cancel:\x2dr -SETUVAR fish_color_command:005fd7 -SETUVAR fish_color_comment:990000 -SETUVAR fish_color_cwd:green -SETUVAR fish_color_cwd_root:red -SETUVAR fish_color_end:009900 -SETUVAR fish_color_error:ff0000 -SETUVAR fish_color_escape:00a6b2 -SETUVAR fish_color_history_current:\x2d\x2dbold -SETUVAR fish_color_host:normal -SETUVAR fish_color_host_remote:yellow -SETUVAR fish_color_normal:normal -SETUVAR fish_color_operator:00a6b2 -SETUVAR fish_color_param:00afff -SETUVAR fish_color_quote:999900 -SETUVAR fish_color_redirection:00afff -SETUVAR fish_color_search_match:bryellow\x1e\x2d\x2dbackground\x3dbrblack -SETUVAR fish_color_selection:white\x1e\x2d\x2dbold\x1e\x2d\x2dbackground\x3dbrblack -SETUVAR fish_color_status:red -SETUVAR fish_color_user:brgreen -SETUVAR fish_color_valid_path:\x2d\x2dunderline -SETUVAR fish_key_bindings:fish_vi_key_bindings -SETUVAR fish_pager_color_completion:\x1d -SETUVAR fish_pager_color_description:B3A06D\x1eyellow -SETUVAR fish_pager_color_prefix:white\x1e\x2d\x2dbold\x1e\x2d\x2dunderline -SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan -SETUVAR fish_pager_color_selected_background:\x2dr -SETUVAR fish_user_paths:/home/green/\x2elocal/bin\x1e/home/green/bin\x1e/home/linuxbrew/\x2elinuxbrew/bin\x1e/home/green/\x2ecargo/bin\x1e/usr/games\x1e/home/green/\x2econfig/fzf/bin -SETUVAR nvm_data:/Users/iankeane/\x2elocal/share/nvm -SETUVAR nvm_mirror:https\x3a//nodejs\x2eorg/dist diff --git a/slackware/.config/pgcli/history b/slackware/.config/pgcli/history deleted file mode 100644 index e0ecd60..0000000 --- a/slackware/.config/pgcli/history +++ /dev/null @@ -1,3097 +0,0 @@ - -# 2021-06-01 14:31:05.506385 -+select * from auth_user - -# 2021-06-01 14:32:28.416061 -+exit - -# 2021-07-21 13:15:07.942929 -+\dt - -# 2021-07-21 13:15:32.935310 -+\d certifications_requirementfield - -# 2021-07-21 13:15:49.392824 -+\e vim - -# 2021-07-21 13:15:57.449990 -+\d certifications_requirementfield - -# 2021-07-21 13:16:12.794964 -+\d certifications_requirementfieldentry - -# 2021-07-21 13:16:24.598346 -+\dt certifications_requirementfieldentry - -# 2021-07-21 13:16:36.549003 -+\d certifications_requirementfieldentry - -# 2021-07-21 13:17:43.367454 -+\h - -# 2021-07-21 13:17:58.812243 -+select * from certifications_requirementfield - -# 2021-07-21 13:18:22.564939 -+select * from certifications_requirementfield \e - -# 2021-07-21 13:20:02.138237 -+select * from certifications_requirementfield \o - -# 2021-07-21 13:20:08.425302 -+select * from certifications_requirementfield \ef - -# 2021-07-21 13:20:10.329200 -+select * from certifications_requirementfield \e - -# 2021-07-21 13:20:15.177330 -+select * from certifications_requirementfield - -# 2021-07-21 13:26:54.184837 -+select * from certifications_certificationfieldentry - -# 2021-07-21 13:27:17.829256 -+select * from certifications_certificationtype - -# 2021-07-21 15:24:49.255100 -+\dt information_schema - -# 2021-07-21 15:57:40.425505 -+select * from certifications_requirementfieldentry - -# 2021-07-27 09:05:17.481432 -+select * from certifications_certificationtype - -# 2021-07-27 09:05:37.326694 -+select name from certifications_certificationtype - -# 2021-07-27 15:09:38.700670 -+select * from certifications_requirementfieldentry - -# 2021-07-27 15:12:21.944445 -+select * from certifications_requirementfieldentry where id=14 - -# 2021-07-27 15:16:57.924709 -+select * from certification - -# 2021-07-27 15:17:06.335020 -+select * from certifications_certification - -# 2021-07-27 15:30:45.082826 -+select * from certifications_requirementfieldentry where user=12 - -# 2021-07-27 15:31:02.165795 -+select * from certifications_requirementfieldentry where id=14 - -# 2021-07-27 15:32:36.365115 -+select * from certifications_certification - -# 2021-07-27 15:33:36.100486 -+select user_id from certifications_certification - -# 2021-07-27 15:33:42.244867 -+select user_id from certifications_certification where id=8 - -# 2021-07-27 15:33:54.248492 -+select * from auth_user where id=12 - -# 2021-07-27 15:34:56.187613 -+select * from certifications_certificationfieldentry - -# 2021-07-27 15:41:15.656404 -+select * from auth_user where id=14 - -# 2021-07-27 15:41:22.686042 -+select user_id from certifications_certification where id=8 - -# 2021-07-27 15:42:41.022480 -+select user_id from certifications_certification where id=77 - -# 2021-07-27 15:47:36.858762 -+select user_id from certifications_certification - -# 2021-07-27 15:47:48.128940 -+select id,user_id from certifications_certification - -# 2021-07-27 15:47:56.068617 -+select id,user_id from certifications_certification where user_id=14 - -# 2021-07-28 15:45:18.719787 -+select name from certifications_certificationtype - -# 2021-07-30 08:48:07.187034 -+select * from certifications_certificationfieldentry - -# 2021-07-30 08:48:11.715351 -+select * from certifications_certificationfield - -# 2021-07-30 08:48:21.529747 -+select * from certifications_certification - -# 2021-07-30 09:40:44.827498 -+select * from certifications_requirementfield - -# 2021-08-02 16:31:53.774268 -+select name from certifications_certificationtype - -# 2021-08-04 08:41:18.309156 -+\e - -# 2021-08-04 08:41:27.627789 -+BEGIN; -+SELECT setval(pg_get_serial_sequence('"certifications_notice"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_notice"; -+SELECT setval(pg_get_serial_sequence('"certifications_noticelog"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_noticelog"; -+SELECT setval(pg_get_serial_sequence('"certifications_noticedefaultlogrecord"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_noticedefaultlogrecord"; -+SELECT setval(pg_get_serial_sequence('"certifications_requirementfield_statuses"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_requirementfield_statuses"; -+SELECT setval(pg_get_serial_sequence('"certifications_requirementfield"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_requirementfield"; -+SELECT setval(pg_get_serial_sequence('"certifications_requirementfieldentry"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_requirementfieldentry"; -+SELECT setval(pg_get_serial_sequence('"certifications_certificationtype"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationtype"; -+SELECT setval(pg_get_serial_sequence('"certifications_accountnumber"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_accountnumber"; -+SELECT setval(pg_get_serial_sequence('"certifications_certificationrep"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationrep"; -+SELECT setval(pg_get_serial_sequence('"certifications_certification"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certification"; -+SELECT setval(pg_get_serial_sequence('"certifications_statusreport"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusreport"; -+SELECT setval(pg_get_serial_sequence('"certifications_certificationapp_payment_methods"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp_payment_methods"; -+SELECT setval(pg_get_serial_sequence('"certifications_certificationapp"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp"; -+SELECT setval(pg_get_serial_sequence('"certifications_certificationappfield"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationappfield"; -+SELECT setval(pg_get_serial_sequence('"certifications_certificationfieldentry"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationfieldentry"; -+SELECT setval(pg_get_serial_sequence('"certifications_statusfield"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusfield"; -+SELECT setval(pg_get_serial_sequence('"certifications_statusfieldentry"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusfieldentry"; -+SELECT setval(pg_get_serial_sequence('"certifications_certificationimport"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationimport"; -+SELECT setval(pg_get_serial_sequence('"certifications_certificationimportdata"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationimportdata"; -+COMMIT; - -# 2021-08-04 08:41:57.875948 -+select name from certifications_certificationtype - -# 2021-08-04 08:42:23.033642 -+exit - -# 2021-08-04 08:42:31.758051 -+select name from certifications_certificationtype - -# 2021-08-06 11:07:27.191921 -+BEGIN; -+SELECT setval(pg_get_serial_sequence('"search_unindexeditem"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "search_unindexeditem"; -+COMMIT; - -# 2021-08-06 11:10:30.961633 -+SELECT setval(pg_get_serial_sequence('"certifications_statusfield"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusfield"; -+SELECT setval(pg_get_serial_sequence('"certifications_statusfieldentry"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusfieldentry"; -+ - -# 2021-08-06 11:14:15.328369 -+BEGIN; -+SELECT setval(pg_get_serial_sequence('"directories_category"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_category"; -+SELECT setval(pg_get_serial_sequence('"directories_directory_cats"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_directory_cats"; -+SELECT setval(pg_get_serial_sequence('"directories_directory_sub_cats"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_directory_sub_cats"; -+SELECT setval(pg_get_serial_sequence('"directories_directory"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_directory"; -+SELECT setval(pg_get_serial_sequence('"directories_affiliateship"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_affiliateship"; -+SELECT setval(pg_get_serial_sequence('"directories_directorypricing"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_directorypricing"; -+SELECT setval(pg_get_serial_sequence('"directories_affiliaterequest"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_affiliaterequest"; -+SELECT setval(pg_get_serial_sequence('"directories_requestemail"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_requestemail"; -+SELECT setval(pg_get_serial_sequence('"directories_connection_affliated_cats"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_connection_affliated_cats"; -+SELECT setval(pg_get_serial_sequence('"directories_connection"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_connection"; -+COMMIT; - -# 2021-08-06 11:50:48.672752 -+ -+BEGIN; -+SELECT setval(pg_get_serial_sequence('"certifications_notice"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_notice"; -+SELECT setval(pg_get_serial_sequence('"certifications_noticelog"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_noticelog"; -+SELECT setval(pg_get_serial_sequence('"certifications_noticedefaultlogrecord"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_noticedefaultlogrecord"; -+SELECT setval(pg_get_serial_sequence('"certifications_requirementfield_statuses"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_requirementfield_statuses"; -+SELECT setval(pg_get_serial_sequence('"certifications_requirementfield"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_requirementfield"; -+SELECT setval(pg_get_serial_sequence('"certifications_requirementfieldentry"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_requirementfieldentry"; -+SELECT setval(pg_get_serial_sequence('"certifications_certificationtype"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationtype"; -+SELECT setval(pg_get_serial_sequence('"certifications_accountnumber"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_accountnumber"; -+SELECT setval(pg_get_serial_sequence('"certifications_certificationrep"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationrep"; -+SELECT setval(pg_get_serial_sequence('"certifications_certification"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certification"; -+SELECT setval(pg_get_serial_sequence('"certifications_statusreport"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusreport"; -+SELECT setval(pg_get_serial_sequence('"certifications_certificationapp_payment_methods"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp_payment_methods"; -+SELECT setval(pg_get_serial_sequence('"certifications_certificationapp"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp"; -+SELECT setval(pg_get_serial_sequence('"certifications_certificationappfield"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationappfield"; -+SELECT setval(pg_get_serial_sequence('"certifications_certificationfieldentry"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationfieldentry"; -+SELECT setval(pg_get_serial_sequence('"certifications_statusfield"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusfield"; -+SELECT setval(pg_get_serial_sequence('"certifications_statusfieldentry"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusfieldentry"; -+SELECT setval(pg_get_serial_sequence('"certifications_certificationimport"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationimport"; -+SELECT setval(pg_get_serial_sequence('"certifications_certificationimportdata"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationimportdata"; -+COMMIT; - -# 2021-08-06 11:51:50.807563 -+SELECT setval(pg_get_serial_sequence('"certifications_certificationapp"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp"; - -# 2021-08-06 11:52:26.146287 -+SELECT setval(pg_get_serial_sequence('"certifications_certificationapp"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp" - -# 2021-08-06 11:54:40.492257 -+end - -# 2021-08-06 11:54:43.058382 -+SELECT setval(pg_get_serial_sequence('"certifications_certificationapp"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp" - -# 2021-08-06 11:56:17.039563 -+SELECT setval(pg_get_serial_sequence('"certifications_certificationapp_payment_methods"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp_payment_methods"; -+ - -# 2021-08-09 13:06:45.785388 -+select * from forms_fieldentry - -# 2021-08-09 13:06:54.924999 -+select * from forms_formentry - -# 2021-08-09 13:08:13.178256 -+select * from information_schema.columns - -# 2021-08-09 13:08:33.544740 -+select * from information_schema.columns where column_name like '%form%' - -# 2021-08-09 13:10:57.886508 -+select * from certifications_certificationapp - -# 2021-08-09 13:11:11.086678 -+select * from certifications_certificationapp /e - -# 2021-08-09 13:11:14.265879 -+select * from certifications_certificationapp - -# 2021-08-09 13:11:40.432622 -+select certification_type_id,form_2nd_conf_text, form_2nd_desc, form_2nd_name from certifications_certificationapp - -# 2021-08-09 15:11:44.295917 -+select * from information_schema.columns where column_name like '%form%' - -# 2021-08-09 15:18:54.717259 -+select * from forms_fieldentry - -# 2021-08-09 15:19:08.326394 -+select * from forms_formentry - -# 2021-08-09 15:20:03.364528 -+select * from forms_field - -# 2021-08-09 15:20:09.194795 -+select * from forms_form - -# 2021-08-09 15:20:39.029139 -+select * from information_schema.columns where column_name like '%form%' - -# 2021-08-09 15:25:13.569566 -+SELECT setval(pg_get_serial_sequence('"certifications_certificationappfield"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationappfield"; -+ - -# 2021-08-09 15:29:20.392012 -+select * from certifications_certificationfieldentry - -# 2021-08-09 15:31:02.564406 -+select * from certifications_certificationapp - -# 2021-08-09 15:31:32.168869 -+select columns from information_schema where table="certifications_certificationapp" - -# 2021-08-09 15:31:44.077459 -+select columns from information_schema where table_name="certifications_certificationapp" - -# 2021-08-09 15:31:48.184193 -+select * from information_schema - -# 2021-08-09 15:32:10.950383 -+select columns from information_schema.columns where table_name="certifications_certificationapp" - -# 2021-08-09 15:32:34.426934 -+select columns from information_schema.columns where table_name='certifications_certificationapp' - -# 2021-08-09 15:32:50.927496 -+clear - -# 2021-08-09 15:32:53.802623 -+cls - -# 2021-08-09 15:52:48.372390 -+select * from certifications_certificationfieldentry - -# 2021-08-09 16:06:42.018945 -+select * from certifications_certificationfieldentry - -# 2021-08-11 11:28:05.007916 -+select * from certifications_certificationfieldentry - -# 2021-08-11 11:28:29.191111 -+select * from certifications_certificationfield - -# 2021-08-11 11:28:41.000599 -+select * from certifications_certificationappfield - -# 2021-08-11 11:30:58.974048 -+select columns from information_schema.columns where table_name='certification_certificationappfield' - -# 2021-08-11 11:31:24.007474 -+select columns from information_schema.columns where table_name='certifications_certificationappfield' - -# 2021-08-11 11:32:50.195924 -+select * from certifications_certificationappfield - -# 2021-08-11 11:34:55.940204 -+select * from certifications_certificationappfieldentry - -# 2021-08-11 11:35:13.363084 -+select * from certifications_certificationfieldentry - -# 2021-08-11 11:35:32.776901 -+select * from certifications_certificationappfieldentry - -# 2021-08-11 11:35:36.669744 -+select * from certifications_certificationfieldentry - -# 2021-08-11 11:35:41.850831 -+select * from certifications_certificationappfield - -# 2021-08-11 11:36:00.462370 -+select * from certifications_certificationfieldentry - -# 2021-08-11 17:14:21.462151 -+select * from certifications_certificationfield - -# 2021-08-11 17:14:39.342389 -+select * from certifications_certificationappfield - -# 2021-08-12 13:10:57.074542 -+select * from certifications_certificationfieldentry - -# 2021-08-16 10:21:28.382606 -+ls - -# 2021-08-16 10:21:36.073995 -+exit - -# 2021-08-18 13:22:35.114817 -+select * from contacts_company - -# 2021-08-18 13:22:44.537553 -+select * from contacts_company_urls - -# 2021-08-18 13:23:02.020874 -+select * from corporate_memberships_corpmembershipapp_corp_memb_type - -# 2021-08-18 13:23:40.810371 -+select * from corporate_memberships_corpprofile - -# 2021-08-19 08:03:21.965558 -+select * from directories_directory - -# 2021-08-19 08:27:50.146779 -+select * from categories_category - -# 2021-08-19 08:46:41.790093 -+select * from directories_directory - -# 2021-08-19 08:50:45.146416 -+select * from directories_category - -# 2021-08-19 08:51:01.266105 -+select * from directories_directory_cats - -# 2021-08-19 09:33:49.048193 -+select * from directories_category - -# 2021-08-19 09:39:58.984656 -+select * from categories_category - -# 2021-08-19 09:40:11.586033 -+select * from categories_categoryitem - -# 2021-08-19 09:55:48.948346 -+select * from directories_category - -# 2021-08-19 10:06:59.769160 -+select * from directories_directory_cats - -# 2021-08-19 10:42:57.917546 -+select * from directories_directory - -# 2021-08-24 17:07:50.176758 -+select * from directories_directory_cats - -# 2021-08-24 17:08:10.713052 -+select * from directories_directory - -# 2021-10-01 14:44:34.155617 -+exit - -# 2021-10-01 14:44:50.230109 -+select * from certification_extension_castle_id - -# 2021-10-01 15:01:25.610623 -+exit - -# 2021-10-01 15:01:37.668511 -+select * from certification_extension_castle_id - -# 2021-10-01 15:21:54.934629 -+exit - -# 2021-10-01 15:24:24.719616 -+select * from certification_extension_scantron - -# 2021-10-04 08:36:48.710958 -+exit - -# 2021-10-04 08:41:29.244466 -+select * from certifications_accountnumber - -# 2021-10-04 08:49:43.028732 -+select * from certification_extension_castle_id - -# 2021-10-04 08:57:38.559559 -+exit - -# 2021-10-04 09:41:06.514555 -+select * from certifications_accountnumber - -# 2021-10-04 09:41:14.654266 -+cert - -# 2021-10-04 09:42:08.908343 -+select * from certification_extension_castle_id - -# 2021-10-04 09:43:10.977806 -+exit - -# 2021-10-04 09:43:25.160593 -+select * from certification_extension_castle_id - -# 2021-10-04 09:52:43.073288 -+select * from certification_extension_castleid - -# 2021-10-04 09:52:46.546151 -+exit - -# 2021-10-04 09:53:10.946414 -+select * from certification_extension_castleid - -# 2021-10-04 09:53:14.203940 -+exit - -# 2021-10-04 09:54:02.968865 -+select * from certification_extension_castleid - -# 2021-10-04 10:07:38.282864 -+exit - -# 2021-10-04 10:08:41.209214 -+select * from certification_extension_scantron - -# 2021-10-04 10:12:36.419387 -+exit - -# 2021-10-04 13:06:52.179988 -+select * from certification_extension_scantron - -# 2021-10-04 14:29:09.582729 -+exit - -# 2021-10-05 14:46:07.108772 -+select * from certification_extension_scantron - -# 2021-10-05 14:53:39.177877 -+select * from certifications_certificationapp - -# 2021-10-05 14:53:59.129676 -+select * from certifications_certificationapp_payment_methods - -# 2021-10-05 14:54:07.402597 -+select * from certifications_certificationapp - -# 2021-10-05 15:56:35.929478 -+select * from corporate_memberships_corpmembershipapp_corp_memb_type - -# 2021-10-05 15:58:05.724535 -+select * from certifications_requirementfield_statuses - -# 2021-10-05 16:05:18.129052 -+exit - -# 2021-10-05 16:05:38.079111 -+select * from certification_extension_scantron - -# 2021-10-05 16:05:53.155076 -+exit - -# 2021-10-05 16:06:29.206854 -+select * from certification_extension_scantron - -# 2021-10-05 16:07:59.003589 -+drop database postgres - -# 2021-10-05 16:08:11.924733 -+close database postgres - -# 2021-10-05 16:08:24.366940 -+exit - -# 2021-10-05 16:09:00.645677 -+drop database postgres - -# 2021-10-05 16:27:20.240269 -+exit - -# 2021-10-05 16:28:07.615906 -+select * from certification_extension_answer - -# 2021-10-05 16:28:14.138794 -+select * from certification_extension_answer_exam - -# 2021-10-05 16:29:30.788015 -+select * from certifications_requirementfield_statuses - -# 2021-10-05 16:39:52.061767 -+exit - -# 2021-10-06 11:39:01.784858 -+ls - -# 2021-10-06 11:39:09.562237 -+select * from certification_extension_scantronprofile - -# 2021-10-06 11:50:55.925603 -+select * from certification_extension_scantronexam - -# 2021-10-06 11:54:56.293573 -+select * from certification_extension_scantronexamanswer - -# 2021-10-06 11:58:07.269719 -+select * from examlevel - -# 2021-10-06 11:58:12.545770 -+select * from certification_extension_scantronexamlevel - -# 2021-10-06 14:27:14.482877 -+select * from certification_extension_scantronprofile - -# 2021-10-06 14:30:23.320306 -+select * from certification_extension_scantronexam - -# 2021-10-06 14:34:09.231122 -+select * from certification_extension_scantronprofile - -# 2021-10-06 14:38:20.142185 -+select * from certification_extension_scantronexam - -# 2021-10-06 14:49:19.365019 -+select * from certification_extension_scantronexamlevel - -# 2021-10-06 14:56:56.957600 -+select * from certification_extension_scantronexamanswer - -# 2021-10-06 14:58:06.225959 -+select * from certification_extension_scantronprofile - -# 2021-10-06 14:58:15.331788 -+select * from certification_extension_scantronexam - -# 2021-10-06 14:58:22.172360 -+select * from examlevel - -# 2021-10-06 14:58:26.102142 -+select * from certification_extension_scantronexamlevel - -# 2021-10-06 14:58:33.521553 -+select * from certification_extension_scantronexamanswer - -# 2021-10-06 15:02:48.499763 -+select * from certification_extension_scantronexam - -# 2021-10-06 15:06:06.935513 -+clear - -# 2021-10-06 15:06:08.394084 -+cls - -# 2021-10-06 15:06:11.162807 -+exit - -# 2021-10-06 15:06:28.262655 -+select * from certification_extension_scantronprofile - -# 2021-10-06 15:06:34.971952 -+select * from certification_extension_scantronexam - -# 2021-10-06 15:06:44.637435 -+select * from certification_extension_scantronexamanswer - -# 2021-10-06 15:06:52.471025 -+select * from certification_extension_scantronexamlevel - -# 2021-10-06 15:21:38.073063 -+select * from certification_extension_scantronexamanswer - -# 2021-10-06 16:15:47.573776 -+select * from certification_extension_scantronprofile - -# 2021-10-06 16:15:58.945115 -+select * from certification_extension_scantronexam - -# 2021-10-06 16:16:39.859597 -+select * from certification_extension_scantronexamanswer - -# 2021-10-06 16:17:02.677854 -+select * from certification_extension_scantronexamlevel - -# 2021-10-06 16:25:35.090931 -+select * from certification_extension_scantronprofile - -# 2021-10-07 09:16:52.356096 -+select * from certification_extension_scantronexamlevel - -# 2021-10-07 09:19:07.230518 -+exit - -# 2021-10-07 09:19:13.898359 -+select * from certification_extension_scantronexamlevel - -# 2021-10-07 09:38:05.729141 -+select * from certification_extension_scantronexamanswer - -# 2021-10-07 11:15:16.170252 -+select * from certification_extension_scantronexam - -# 2021-10-07 11:36:54.192736 -+select * from certification_extension_scantronexamanswer - -# 2021-10-07 11:37:30.780826 -+select * from certification_extension_scantronexamlevel - -# 2021-10-07 11:42:08.029065 -+select * from certification_extension_scantronexam - -# 2021-10-07 11:44:46.339112 -+select * from certification_extension_scantronexamanswer - -# 2021-10-07 11:44:51.716572 -+select * from certification_extension_scantronexam - -# 2021-10-07 11:44:56.608229 -+select * from certification_extension_scantronexamlevel - -# 2021-10-07 11:44:59.733059 -+select * from certification_extension_scantronexamanswer - -# 2021-10-07 11:49:56.705740 -+select * from certification_extension_scantronexamlevel - -# 2021-10-07 11:50:05.198693 -+select * from certification_extension_scantronexam - -# 2021-10-07 13:20:04.024643 -+select * from certification_extension_scantronexamlevel - -# 2021-10-07 14:11:39.556347 -+select * from certification_extension_scantronexamanswer - -# 2021-10-07 14:21:53.982240 -+select * from certification_extension_scantronexam - -# 2021-10-07 14:24:47.141684 -+select * from certification_extension_scantronexamlevel - -# 2021-10-07 14:25:34.940640 -+select * from certification_extension_scantronexamanswer - -# 2021-10-07 14:40:52.149012 -+select * from certification_extension_scantronexam - -# 2021-10-07 14:41:17.845509 -+truncate table certification_extension_scantronexam - -# 2021-10-07 14:41:26.739905 -+select * from certification_extension_scantronexam - -# 2021-10-07 14:41:44.192285 -+truncate table certification_extension_scantronexam - -# 2021-10-07 14:41:58.546613 -+truncate table certification_extension_scantronexam cascade - -# 2021-10-07 14:42:09.526060 -+select * from certification_extension_scantronexam - -# 2021-10-07 14:42:13.074057 -+select * from certification_extension_scantronexamanswer - -# 2021-10-07 14:42:15.705004 -+select * from certification_extension_scantronexamlevel - -# 2021-10-07 14:43:10.278132 -+select * from certification_extension_scantronexam - -# 2021-10-07 14:44:57.360238 -+select * from certification_extension_scantronexamlevel - -# 2021-10-07 14:45:01.527682 -+select * from certification_extension_scantronexamanswer - -# 2021-10-07 14:45:06.341583 -+select * from certification_extension_scantronexam - -# 2021-10-07 14:48:15.300875 -+exit - -# 2021-10-07 14:48:57.142209 -+select * from certification_extension_scantronexam - -# 2021-10-07 14:50:07.987741 -+select * from certification_extension_scantronexamanswer - -# 2021-10-07 14:50:20.027474 -+select * from certification_extension_scantronexamlevel - -# 2021-10-07 14:50:39.373974 -+select * from certification_extension_scantronexamanswer - -# 2021-10-07 14:50:42.012904 -+select * from certification_extension_scantronexamlevel - -# 2021-10-07 14:50:45.661599 -+select * from certification_extension_scantronexam - -# 2021-10-07 14:51:18.909221 -+select * from certification_extension_scantronexamlevel - -# 2021-10-07 14:51:26.255442 -+select * from certification_extension_scantronexamanswer - -# 2021-10-07 17:03:49.026906 -+select * from certification_extension_scantronexam - -# 2021-10-07 17:06:32.728603 -+select * from certification_extension_scantronexamanswer - -# 2021-10-07 17:06:36.308761 -+select * from certification_extension_scantronexamlevel - -# 2021-10-07 17:06:49.791388 -+select * from certification_extension_scantronexam - -# 2021-10-07 17:07:58.876538 -+select * from certification_extension_scantronexamlevel - -# 2021-10-07 17:08:17.277743 -+select * from certification_extension_scantronexamanswer - -# 2021-10-12 14:20:39.069064 -+select * from certification_extension_scantronexam - -# 2021-10-14 11:36:25.850235 -+select * from scan - -# 2021-10-14 11:36:28.378577 -+exit - -# 2021-10-14 11:37:36.152966 -+ls - -# 2021-10-14 11:37:43.232390 -+select * from certification_extension_scantronexam - -# 2021-10-14 12:02:38.545073 -+select * from certifications_certificationimport - -# 2021-10-14 12:02:54.486435 -+select * from accountnumber - -# 2021-10-14 12:02:57.587171 -+select * from certifications_accountnumber - -# 2021-10-14 12:03:17.664286 -+select * from certifications_certificationrep - -# 2021-10-14 12:03:43.464142 -+select * from statusreport - -# 2021-10-14 12:10:23.986399 -+select * from corporate_memberships_creator - -# 2021-10-14 12:10:31.675412 -+select * from freepasses - -# 2021-10-14 12:10:35.043268 -+select * from corporate_memberships_freepassesstat - -# 2021-10-14 12:11:04.685876 -+select * from corporate_memberships_indivemailverification - -# 2021-10-14 12:11:30.743032 -+select * from corporate_memberships_corpmembershipimport - -# 2021-10-14 13:02:17.078775 -+select * from payments_payment - -# 2021-10-14 13:06:41.691606 -+select type(payment_id) from payments_payment - -# 2021-10-14 13:07:32.938968 -+select data_type from information_schema.columns where table_name = 'payments_payment' - -# 2021-10-14 13:08:09.163817 -+select data_type from information_schema.columns where table_name = 'payments_payment' and column_name= - -# 2021-10-14 13:08:11.645199 -+select * from payments_payment - -# 2021-10-14 13:08:32.548276 -+select data_type from information_schema.columns where table_name = 'payments_payment' and column_name=guid - -# 2021-10-14 13:08:38.457477 -+select data_type from information_schema.columns where table_name = 'payments_payment' and column_name='guid' - -# 2021-10-14 13:08:51.811472 -+select * from payments_payment - -# 2021-10-14 13:09:07.353934 -+select length('80eff2d9-3a67-4e3c-853a-aa52f858e536') - -# 2021-10-14 13:10:18.946287 -+select * from payments_payment - -# 2021-10-14 13:10:26.522124 -+select data_type from information_schema.columns where table_name = 'payments_payment' and column_name='amount' - -# 2021-10-14 14:21:28.386710 -+select * from payments_payment - -# 2021-10-15 14:16:49.920012 -+exit - -# 2021-10-15 14:42:42.016654 -+ls - -# 2021-10-15 15:30:35.564336 -+exit - -# 2021-10-18 08:07:14.577679 -+select * from billable - -# 2021-10-18 08:07:19.983110 -+select * from certification_extension_billableevent - -# 2021-10-18 08:28:13.789177 -+vim - -# 2021-10-18 08:28:16.638426 -+exit - -# 2021-10-18 08:35:15.386215 -+select * from categories_category - -# 2021-10-18 08:35:22.006018 -+exit - -# 2021-10-18 09:59:27.890545 -+select * from payments_paymentmethod - -# 2021-10-19 09:13:55.841116 -+exit - -# 2021-10-21 14:41:10.688202 -+select * from certifications_certification - -# 2021-10-21 14:42:21.560197 -+select * from information_schema.columns - -# 2021-10-21 14:42:40.747616 -+select column_name from information_schema.columns - -# 2021-10-21 14:42:53.907411 -+select column_name from information_schema.columns where table_name like '*certification*' - -# 2021-10-21 14:42:59.556493 -+select column_name from information_schema.columns where table_name like '%certification%' - -# 2021-10-21 14:43:17.653877 -+select column_name, table_name from information_schema.columns where table_name like '%certification%' - -# 2021-10-21 14:54:51.313796 -+select * from certifications_certification - -# 2021-10-22 10:27:53.547123 -+exit - -# 2021-10-22 10:47:25.982149 -+select id, create_date from certifications_certification - -# 2021-10-22 10:47:35.289254 -+select id, create_dt from certifications_certification - -# 2021-10-22 10:47:40.723587 -+select id, create_dt from certifications_certification order by id - -# 2021-10-22 10:48:06.297312 -+select id, create_dt, renewal from certifications_certification order by id - -# 2021-10-22 10:48:45.568981 -+select id, create_dt from certifications_certification order by id - -# 2021-10-22 10:48:52.918306 -+select * from certifications_certification - -# 2021-10-22 10:52:17.018733 -+select id, create_dt, status from certifications_certification order by id - -# 2021-10-22 10:54:50.862210 -+select id, create_dt, renewal, status from certifications_certification order by id - -# 2021-10-25 11:23:25.750836 -+select * from payments_paymentmethod - -# 2021-10-25 11:36:41.782157 -+select * from auth_user - -# 2021-10-25 11:43:52.542898 -+select * from certifications_requirementfield - -# 2021-10-25 11:44:12.031191 -+select * from certifications_requirementfield_statuses - -# 2021-10-25 11:44:34.190046 -+select * from certifications_statusfield - -# 2021-10-25 11:53:40.366639 -+select * from certifications_requirementfield - -# 2021-10-25 11:56:22.488356 -+select * from certifications_requirementfieldentry - -# 2021-10-25 11:56:39.413319 -+select * from certifications_statusfieldentry - -# 2021-10-25 11:57:24.655246 -+select * from certifications_requirementfield - -# 2021-10-25 11:57:42.058000 -+select * from certifications_requirementfield_statuses - -# 2021-10-25 12:13:35.663332 -+select * from certifications_requirementfieldentry - -# 2021-10-25 14:20:12.076871 -+select * from certification_extension_billableevent - -# 2021-10-27 14:16:38.056418 -+exit - -# 2021-10-27 14:17:02.887320 -+select * from ltp_answerbase - -# 2021-10-27 14:17:17.148999 -+select * from ltp_course - -# 2021-10-27 14:33:57.713153 -+select * from ltp_review - -# 2021-11-04 09:04:28.194401 -+exit - -# 2021-11-04 09:08:57.016999 -+select * from certification_extension_scantronexamanswer - -# 2021-11-04 09:43:57.969078 -+exit - -# 2021-11-04 09:44:05.606720 -+select * from certification_extension_billableevent - -# 2021-11-05 08:30:01.436790 -+exit - -# 2021-11-05 08:30:07.209876 -+select * from certification_extension_billableevent - -# 2021-11-05 08:35:41.072042 -+\d certification_extension_billableevent - -# 2021-11-05 08:36:23.963944 -+select * from pg_catalog.pg_constraint - -# 2021-11-05 08:36:44.210891 -+select * from pg_catalog.pg_constraint where conname like '%bill%' - -# 2021-11-05 08:47:47.057196 -+exit - -# 2021-11-05 08:50:22.987019 -+ls - -# 2021-11-05 08:50:33.972312 -+select * from certification_extension_billableevent - -# 2021-11-05 08:57:05.579219 -+exit - -# 2021-11-05 08:57:31.501150 -+select * from certification_extension_billableevent - -# 2021-11-05 08:57:37.234308 -+\d certification_extension_billableevent - -# 2021-11-05 08:59:22.255574 -+select * from certification_extension_billableevent - -# 2021-11-08 08:55:16.125981 -+ls - -# 2021-11-08 08:55:29.765641 -+exit - -# 2021-11-08 10:22:28.029804 -+select * from certification_extension_billableevent - -# 2021-11-08 10:28:19.489904 -+\d certification_extension_billableevent - -# 2021-11-08 10:36:22.695610 -+drop table certification_extension_billableevent, certification_extension_scantronexam, certification_extension_scantronexamanswer, certification_extension_scantronprofile - -# 2021-11-08 10:37:15.099372 -+select * from certification_extension_scantronprofile - -# 2021-11-08 10:37:38.848256 -+select * from certification_extension_billableevent - -# 2021-11-08 10:37:42.416874 -+drop table certification_extension_billableevent, certification_extension_scantronexam, certification_extension_scantronexamanswer, certification_extension_scantronprofile - -# 2021-11-08 10:37:52.495003 -+drop table certification_extension_billableevent, certification_extension_scantronexamanswer, certification_extension_scantronprofile - -# 2021-11-08 10:38:03.817568 -+drop table certification_extension_billableevent - -# 2021-11-08 10:38:18.116473 -+drop table certification_extension_scantronprofile - -# 2021-11-08 10:40:15.104535 -+\d certification_extension_billableevent - -# 2021-11-08 10:40:55.516563 -+select * from certification_extension_billableevent - -# 2021-11-08 10:46:04.242158 -+\d certification_extension_billableevent - -# 2021-11-08 10:52:13.748194 -+select * from certification_extension_billableevent - -# 2021-11-08 11:02:58.252424 -+ls - -# 2021-11-08 11:03:16.658752 -+exit - -# 2021-11-08 13:34:30.176018 -+select * from djangoreact_movie - -# 2021-11-08 13:34:32.634956 -+exit - -# 2021-11-08 13:37:41.584063 -+select * from djangoreact_movie - -# 2021-11-08 13:37:50.055166 -+exit - -# 2021-11-08 14:08:23.767897 -+\d certification_extension_billableevent - -# 2021-11-08 14:28:04.900736 -+ls - -# 2021-11-08 14:29:57.707462 -+\d certification_extension_billableevent - -# 2021-11-08 14:34:59.792969 -+select * from certification_extension_billableevent - -# 2021-11-08 14:35:10.315880 -+drop table certification_extension_billableevent - -# 2021-11-08 14:35:15.716353 -+select * from certification_extension_billableevent - -# 2021-11-08 14:40:11.864329 -+exit - -# 2021-11-09 14:58:57.955186 -+\d certification_extension_billableevent - -# 2021-11-09 14:59:00.885634 -+ls - -# 2021-11-09 14:59:03.291155 -+select * from certification_extension_billableevent - -# 2021-11-09 14:59:47.497440 -+\d - -# 2021-11-09 14:59:52.161382 -+\d certification_extension_billableevent - -# 2021-11-10 13:49:15.039603 -+exit - -# 2021-11-10 13:49:36.219730 -+select * from certification_extension_scantrontransaction - -# 2021-11-10 13:49:43.652313 -+select * from certification_extension_scantronprofile - -# 2021-11-11 08:22:17.085418 -+select * from certification_extension_scantrontransaction - -# 2021-11-11 08:38:42.461534 -+select * from certification_extension_scantronpackage - -# 2021-11-11 13:07:49.516035 -+exit - -# 2021-11-11 14:13:10.725821 -+select * from certification_extension_scantronexamregistration - -# 2021-11-12 08:47:02.196995 -+exit - -# 2021-11-12 08:47:20.500881 -+select * from certification_extension_scantronexamregistration - -# 2021-11-12 14:22:56.844317 -+select * from certification_extension_scantronexamregistration \ - -# 2021-11-12 14:22:58.467115 -+select * from certification_extension_scantronexamregistration - -# 2021-11-15 16:11:38.640681 -+drop table certification_extension_scantronexamregistration - -# 2021-11-15 16:37:48.029576 -+exit - -# 2021-11-15 16:39:27.907573 -+select * from certification_extension_scantronexamregistration - -# 2021-11-16 14:19:11.458256 -+select * from certification_extension_scantronexam - -# 2021-11-16 15:05:46.680430 -+select * from certification_extension_scantronexamregistration - -# 2021-11-16 15:32:42.797692 -+exit - -# 2021-11-16 15:32:53.521020 -+select * from certification_extension_scantronexamregistration - -# 2021-11-17 08:12:01.526134 -+exit - -# 2021-11-17 08:12:10.390392 -+select * from certification_extension_scantronexamregistration - -# 2021-11-17 14:40:01.409277 -+select * from certification_extension_scantronexam - -# 2021-11-22 14:36:27.815626 -+exit - -# 2021-11-22 14:36:39.170186 -+select * from certification_extension_scantronexam - -# 2021-11-22 14:36:50.468194 -+select * from certification_extension_scantronexamregistration - -# 2021-11-22 15:01:49.132600 -+select * from certification_extension_scantronprofile - -# 2021-11-23 15:18:49.040372 -+select * from certification_extension_scantronexam - -# 2021-11-23 15:31:56.880615 -+select * from certification_extension_scantronexamanswer - -# 2021-11-23 15:32:05.321218 -+select * from certification_extension_scantronexam - -# 2021-11-23 15:39:30.473714 -+select * from certification_extension_scantronexamanswer - -# 2021-11-23 15:39:38.629217 -+select * from certification_extension_scantronexamlevel - -# 2021-11-23 15:41:22.760906 -+exit - -# 2021-11-29 10:42:15.553022 -+select * from certification_extension_scantronexamregistration - -# 2021-11-29 13:23:37.532740 -+truncate table certification_extension_scantronexamregistration - -# 2021-11-29 13:23:40.207615 -+select * from certification_extension_scantronexamregistration - -# 2021-11-29 14:04:51.944136 -+\d certification_extension_scantronexamregistration - -# 2021-11-29 14:05:07.934591 -+\d certification_extension_scantronexam - -# 2021-11-29 14:17:06.623742 -+select * from certification_extension_scantronexamregistration - -# 2021-11-29 16:12:05.161018 -+truncate table certification_extension_scantronexamregistration - -# 2021-11-29 16:12:08.705644 -+select * from certification_extension_scantronexamregistration - -# 2021-11-29 16:12:57.622225 -+truncate table certification_extension_scantronexamregistration - -# 2021-11-29 16:13:31.463723 -+select * from certification_extension_scantronexamregistration - -# 2021-12-01 08:39:46.312939 -+truncate table certification_extension_scantronexamregistration - -# 2021-12-01 08:39:57.300471 -+select * from certification_extension_scantronexamregistration - -# 2021-12-01 08:41:12.278551 -+truncate table certification_extension_scantronexamregistration - -# 2021-12-01 08:41:40.237812 -+select * from certification_extension_scantronexamregistration - -# 2021-12-01 08:43:35.020354 -+truncate table certification_extension_scantronexamregistration - -# 2021-12-01 08:44:17.249536 -+select * from certification_extension_scantronexamregistration - -# 2021-12-01 08:45:21.998856 -+truncate table certification_extension_scantronexamregistration - -# 2021-12-01 08:45:50.216408 -+select * from certification_extension_scantronexamregistration - -# 2021-12-01 08:54:48.865348 -+truncate table certification_extension_scantronexamregistration - -# 2021-12-01 08:55:40.034021 -+select * from certification_extension_scantronexamregistration - -# 2021-12-01 14:16:59.365229 -+truncate table certification_extension_scantronexamregistration - -# 2021-12-01 14:18:14.151915 -+select * from certification_extension_scantronexamregistration - -# 2021-12-07 07:13:06.768518 -+truncate table certification_extension_scantronexamregistration - -# 2021-12-07 07:13:21.962859 -+select * from certification_extension_scantronexam - -# 2021-12-07 07:13:26.846483 -+select * from certification_extension_scantronexamanswer - -# 2021-12-07 07:13:33.378609 -+select * from certification_extension_scantronexamlevel - -# 2021-12-07 07:14:29.347559 -+select * from certification_extension_scantronexam - -# 2021-12-07 07:19:28.868610 -+select * from certification_extension_scantronexamregistration - -# 2021-12-07 07:19:32.153797 -+truncate table certification_extension_scantronexamregistration - -# 2021-12-07 07:21:53.470862 -+select * from certification_extension_scantronexamregistration - -# 2021-12-07 08:09:19.970499 -+truncate table certification_extension_scantronexamregistration - -# 2021-12-07 08:13:09.186000 -+select * from certification_extension_scantronexamregistration - -# 2021-12-07 08:15:04.357926 -+truncate table certification_extension_scantronexamregistration - -# 2021-12-07 08:15:08.053537 -+select * from certification_extension_scantronexamregistration - -# 2021-12-07 08:17:11.802353 -+truncate table certification_extension_scantronexamregistration - -# 2021-12-07 08:19:36.630480 -+select * from certification_extension_scantronexamregistration - -# 2021-12-07 08:20:43.278727 -+truncate table certification_extension_scantronexamregistration - -# 2021-12-07 08:20:49.803360 -+select * from certification_extension_scantronexamregistration - -# 2021-12-07 08:45:35.478234 -+select * from certification_extension_scantronexam - -# 2021-12-07 08:50:38.449185 -+select * from profiles_profile - -# 2021-12-07 08:53:00.445051 -+select * from certification_extension_scantronexam - -# 2021-12-07 08:53:39.213491 -+select * from profiles_profile - -# 2021-12-07 14:16:11.396288 -+select * from certification_extension_scantronprofile - -# 2021-12-07 14:18:38.908963 -+select * from certification_extension_scantronexam - -# 2021-12-07 14:21:27.781969 -+select * from certification_extension_scantronexamanswer - -# 2021-12-07 14:21:45.014891 -+select * from certification_extension_scantronexamlevel - -# 2021-12-09 16:14:46.236789 -+select * from certification_extension_scantronexam - -# 2021-12-09 16:15:42.700655 -+select * from certification_extension_scantronexamregistration - -# 2021-12-10 07:55:31.941680 -+select * from certification_extension_scantronexamanswer - -# 2021-12-10 08:17:50.878321 -+select * from certification_extension_scantronprofile - -# 2021-12-10 15:58:26.605262 -+select * from certifications_requirementfield - -# 2021-12-13 10:21:28.707622 -+select * from certifications_requirementfieldentry - -# 2021-12-13 16:25:29.274501 -+exit - -# 2021-12-13 16:25:42.398764 -+select * from certifications_certification - -# 2021-12-14 13:30:06.231165 -+exit - -# 2021-12-14 13:30:15.308107 -+select * from certification_extension_scantronexam - -# 2021-12-15 17:02:35.865043 -+exit - -# 2021-12-15 17:03:17.671736 -+select * from certification_extension_scantronexam - -# 2021-12-15 17:03:42.085646 -+select * from requirementfieldentry - -# 2021-12-15 17:03:56.133966 -+exit - -# 2021-12-15 17:08:57.138321 -+select * from certifications_requirementfieldentry - -# 2021-12-15 17:09:07.902527 -+select * from certifications_requirementfield - -# 2021-12-15 17:09:35.065418 -+select * from certifications_certification - -# 2021-12-15 17:09:54.405378 -+select * from certifications_requirementfieldentry - -# 2021-12-15 17:09:57.711258 -+select * from certifications_requirementfield - -# 2021-12-15 17:15:33.728896 -+select * from certifications_requirementfieldentry - -# 2021-12-17 11:28:51.194391 -+ls - -# 2021-12-17 11:28:58.214980 -+select * from certification_extension_scantronexam - -# 2021-12-17 15:09:20.578076 -+ps -aux - -# 2021-12-17 15:09:25.070835 -+ps -a - -# 2021-12-17 15:09:26.166188 -+ps - -# 2021-12-17 15:09:29.254379 -+exit - -# 2021-12-21 15:47:40.521963 -+select * from certifications_requirementfieldentry - -# 2021-12-21 15:47:44.202826 -+select * from certifications_requirementfield - -# 2021-12-30 11:24:34.538064 -+ls - -# 2021-12-30 11:25:22.982902 -+select * from certification_extension_scantronprofile - -# 2022-01-05 10:20:01.645994 -+select * from certification_extension_scantronexamregistration - -# 2022-01-05 10:40:56.289489 -+truncate table certification_extension_scantronexamregistration - -# 2022-01-05 10:55:03.875392 -+select * from certification_extension_scantronexamregistration - -# 2022-01-05 15:25:20.122846 -+select * from certification_extension_scantronprofile - -# 2022-01-06 13:13:19.665214 -+select * from certification_extension_scantronexamregistration - -# 2022-01-24 14:00:49.935696 -+select * from fobi_formelement - -# 2022-01-31 11:50:07.078758 -+select * from certification_extension_scantronexam - -# 2022-02-11 07:09:46.243445 -+select * from fobi_formelement - -# 2022-02-11 07:09:53.083344 -+select * from fobi_formentry - -# 2022-02-11 07:10:18.622344 -+select * from fobi_formelemententry - -# 2022-02-11 07:11:05.771581 -+select * from fobi_formfieldsetentry - -# 2022-02-11 07:13:31.844075 -+select from forms_form - -# 2022-02-11 07:13:53.841194 -+select * from fobi_formelement - -# 2022-02-11 07:13:58.181994 -+select * from fobi_formelemententry - -# 2022-02-11 07:14:24.272535 -+select * from fobi_formhandler - -# 2022-02-11 07:14:40.327292 -+select * from fobi_formhandlerentry - -# 2022-02-11 07:15:22.478427 -+select * from fobi_formwizardhandlerentry - -# 2022-02-11 07:25:34.307384 -+select * from forms_form - -# 2022-02-11 07:25:51.143820 -+select * from forms_formentry - -# 2022-02-11 07:30:34.811475 -+select * from db_store_savedformdataentry - -# 2022-02-11 07:30:58.079102 -+select * from db_store_savedformwizarddataentry - -# 2022-02-11 07:31:00.508138 -+select * from db_store_savedformdataentry - -# 2022-02-16 15:30:29.948513 -+exit - -# 2022-03-09 13:14:01.907032 -+select * from certification_extension_scantronexamregistration - -# 2022-03-09 13:14:30.301044 -+select * from certification_extension_scantronprofile - -# 2022-03-09 13:14:33.244161 -+select * from certification_extension_scantronexamregistration - -# 2022-03-24 10:10:38.962668 -+select schema_name from information_schema.schemata - -# 2022-03-24 10:11:26.009227 -+create role sql-dash-read-only - -# 2022-03-24 10:11:36.718076 -+create role sql_dash_read_only - -# 2022-03-24 10:14:35.595372 -+GRANT SELECT( -+ id, last_login, is_superuser, username, first_name, -+ last_name, email, is_staff, is_active, date_joined -+) ON auth_user TO sql_dash_read_only; -+ - -# 2022-03-24 10:14:46.785992 -+select * from auth_user - -# 2022-03-24 10:23:09.868794 -+create role sql_dash_read_only - -# 2022-03-24 10:23:12.254707 -+GRANT SELECT( -+ id, last_login, is_superuser, username, first_name, -+ last_name, email, is_staff, is_active, date_joined -+) ON auth_user TO sql_dash_read_only; -+ - -# 2022-03-24 10:24:22.771974 -+exit - -# 2022-03-24 10:25:41.273222 -+select * from auth_user - -# 2022-03-24 10:48:13.003214 -+exit - -# 2022-03-24 10:48:22.218745 -+select * from auth_user - -# 2022-03-24 11:46:16.958633 -+select * from information_schema.enabled_roles - -# 2022-03-24 11:46:33.638457 -+exit - -# 2022-03-24 11:56:46.097536 -+alter role sql_dash_read_only with login - -# 2022-03-24 13:04:24.015395 -+exit - -# 2022-03-24 13:04:36.737679 -+select * from auth_user - -# 2022-03-24 13:04:43.899639 -+exit - -# 2022-03-24 13:04:52.714487 -+ls - -# 2022-03-24 14:14:27.428162 -+select * from information_schema.enabled_roles - -# 2022-03-24 14:24:14.612117 -+exit - -# 2022-03-30 15:18:04.392068 -+select * from information_schema.tables - -# 2022-03-30 15:19:05.022931 -+select * from information_schema.enabled_roles - -# 2022-03-30 15:19:20.653131 -+exit - -# 2022-04-05 15:36:42.358833 -+select * from information_schema.enabled_roles - -# 2022-04-05 15:39:59.420038 -+exit - -# 2022-04-05 15:43:09.917492 -+select * from information_schema.applicable_roles - -# 2022-04-05 15:43:14.761171 -+select * from information_schema.enabled_roles - -# 2022-04-05 15:43:28.637067 -+select * from information_schema.role_column_grants - -# 2022-04-05 15:46:49.182441 -+select * from pg_roles - -# 2022-04-05 15:47:01.880391 -+create role this - -# 2022-04-05 15:47:06.914437 -+select * from pg_roles - -# 2022-04-05 15:55:22.911753 -+exit - -# 2022-04-05 15:56:42.883276 -+select * from pg_roles - -# 2022-04-05 16:00:05.184218 -+select * from information_schema.enabled_roles - -# 2022-04-05 16:04:47.868954 -+exit - -# 2022-04-05 16:11:37.746797 -+select * from information_schema.enabled_roles - -# 2022-04-05 16:11:40.153145 -+exit - -# 2022-04-05 16:42:57.431441 -+select * from information_schema.enabled_roles - -# 2022-04-06 10:27:07.755205 -+exit - -# 2022-04-06 10:27:15.531539 -+ls - -# 2022-04-06 10:27:33.436949 -+select * from information_schema.enabled_roles - -# 2022-04-06 10:30:34.001979 -+exit - -# 2022-04-06 14:17:08.832089 -+select * from information_schema.enabled_roles - -# 2022-04-06 14:17:29.757111 -+select * from courses - -# 2022-04-06 14:50:33.499072 -+select * from tenants - -# 2022-04-06 14:51:10.114918 -+select name, refund_verbiage from orders - -# 2022-04-06 14:51:14.135476 -+select name, refund_verbiage from tenants - -# 2022-04-06 14:51:18.634647 -+select name, refund_verbage from tenants - -# 2022-04-06 14:52:46.343070 -+exit - -# 2022-04-06 14:54:43.219419 -+select name, refund_verbage from tenants - -# 2022-04-06 15:13:11.245542 -+exit - -# 2022-04-06 15:13:50.818159 -+select * from tenants - -# 2022-04-06 15:15:03.995255 -+select email_enrolment from tenants - -# 2022-04-08 10:24:00.686800 -+select table_name from information_schema.tables - -# 2022-04-08 10:31:38.884060 -+exit - -# 2022-04-08 10:33:44.979995 -+select table_name from information_schema.tables - -# 2022-04-08 10:33:53.742598 -+select table_name from information_schema.tables \copy - -# 2022-04-08 10:34:14.788905 -+\copy select table_name from information_schema.tables - -# 2022-04-08 10:34:55.363641 -+\e select table_name from information_schema.tables - -# 2022-04-08 10:35:41.251830 -+\ef select table_name from information_schema.tables - -# 2022-04-08 10:35:54.546118 -+\e select table_name from information_schema.tables - -# 2022-04-08 10:37:08.005728 -+\o ~/tendenci_tables.txt select table_name from information_schema.tables - -# 2022-04-08 10:37:42.832913 -+select table_name from information_schema.tables \o ~/tendenci_tables.txt - -# 2022-04-08 10:38:34.345452 -+select table_name from information_schema.tables - -# 2022-04-08 10:38:43.673836 -+\o ~/tendenci_tables.txt - -# 2022-04-08 10:38:58.959431 -+select table_name from information_schema.tables - -# 2022-04-08 10:40:52.141272 -+select * from user_groups_group - -# 2022-04-08 10:41:11.272873 -+\q - -# 2022-04-08 10:41:21.275607 -+select * from user_groups_group - -# 2022-04-08 10:41:38.941669 -+select * from user_groups_group_permissions - -# 2022-04-08 10:42:21.369767 -+select * from user_groups_groupmembership - -# 2022-04-08 10:55:51.288972 -+select * from information_schema.enabled_roles - -# 2022-04-08 10:56:29.687980 -+grant select * on certification_certifications to this - -# 2022-04-08 10:56:36.809862 -+grant select on certification_certifications to this - -# 2022-04-08 10:56:59.822134 -+select * from certifications_certification - -# 2022-04-08 10:57:11.321845 -+grant select on certifications_certification to this - -# 2022-04-08 11:11:57.673581 -+select 1 from pg_roles where rolname="None" - -# 2022-04-08 11:12:00.812261 -+select 1 from pg_roles where rolname=None - -# 2022-04-08 11:12:28.962316 -+select 1 from pg_roles - -# 2022-04-08 11:12:34.296932 -+select 1 from pg_roles where rolname="none" - -# 2022-04-08 11:12:38.211024 -+select 1 from pg_roles where rolname="this" - -# 2022-04-08 11:12:59.872743 -+select * from pg_roles - -# 2022-04-08 11:13:14.252184 -+select * from pg_roles where rolname="this" - -# 2022-04-08 11:13:42.719117 -+select 1 from pg_roles where rolname="this" - -# 2022-04-08 11:13:57.838352 -+select 1 from pg_roles where rolname='this' - -# 2022-04-08 11:14:04.924369 -+select 1 from pg_roles where rolname='none' - -# 2022-04-08 11:14:09.114760 -+select 1 from pg_roles where rolname=None - -# 2022-04-08 11:14:11.228555 -+select 1 from pg_roles where rolname=none - -# 2022-04-08 11:14:16.658298 -+select 1 from pg_roles where rolname='None' - -# 2022-04-12 10:51:27.252536 -+select * information_schema.tables - -# 2022-04-12 10:51:29.976716 -+select * information_schema.table - -# 2022-04-12 10:51:43.142689 -+select * information_schema - -# 2022-04-12 10:51:49.621462 -+select table_name from information_schema.tables - -# 2022-04-12 10:52:04.514670 -+select table_name from information_schema.tables where table_name like '%profile%' - -# 2022-04-12 10:55:39.769387 -+select * from V_payment_details - -# 2022-04-13 14:49:25.725014 -+select * from quiz_attempts where id = 1292 - -# 2022-04-13 15:08:56.971210 -+select * from courses - -# 2022-04-15 13:31:23.646508 -+exit - -# 2022-04-15 13:37:48.417183 -+select * from pg_roles - -# 2022-04-15 13:38:29.251900 -+exit - -# 2022-04-21 14:41:54.525179 -+select * from tenant - -# 2022-04-21 14:41:56.033363 -+select * from tenants - -# 2022-04-21 14:42:18.903086 -+select * from courses - -# 2022-04-21 14:42:49.776872 -+select * from tenants - -# 2022-04-21 17:09:58.241955 -+create extension dblink; - -# 2022-04-21 17:10:11.754499 -+select * from pg_roles - -# 2022-04-21 17:11:32.208122 -+exit - -# 2022-04-21 17:12:25.900187 -+create extension dblink; - -# 2022-04-21 17:12:44.933165 -+exit - -# 2022-04-22 11:25:55.592489 -+select * from tenants - -# 2022-04-22 11:32:09.297783 -+select column_name from information_schema.columns where table_name like '%quiz_attempts%' - -# 2022-04-22 11:40:07.844070 -+\d+ quiz_attempts - -# 2022-04-22 14:04:53.413258 -+\d+ tenants - -# 2022-04-22 14:07:47.181818 -+select top 1 from tenants - -# 2022-04-22 14:07:52.225077 -+select 1 from tenants - -# 2022-04-22 14:08:00.359402 -+select * from tenants - -# 2022-04-22 14:09:16.681989 -+update tenants set reporting_groups = { "group_1", "group_2" } where id=2 - -# 2022-04-22 14:10:05.214611 -+update tenants set reporting_groups = '{ group_1, group_2 }' where id=2 - -# 2022-04-22 14:10:11.372197 -+select * from tenants - -# 2022-04-22 14:31:43.596069 -+select name from tenants - -# 2022-04-22 14:34:52.792907 -+select table_name from information_schema.tables where table_name like 'courses' - -# 2022-04-22 14:35:03.864021 -+select column from information_schema.tables where table_name like 'courses' - -# 2022-04-22 14:35:07.607673 -+select column_name from information_schema.tables where table_name like 'courses' - -# 2022-04-22 14:35:14.887183 -+select column_name from information_schema.columns where table_name like 'courses' - -# 2022-04-22 14:35:26.409623 -+select * from courses - -# 2022-04-22 14:41:51.506048 -+select * from tenants - -# 2022-04-22 14:42:19.876518 -+select name from tenants - -# 2022-04-22 14:42:51.195560 -+select name, id from tenants - -# 2022-04-22 14:43:08.091264 -+update tenants set reporting_groups = '{ group_1, group_2 }' where id=1 - -# 2022-04-22 14:43:18.621067 -+select name, reporting_groups from tenants - -# 2022-04-22 14:50:36.832027 -+select * from courses where name like 'test course' - -# 2022-04-22 14:53:34.448191 -+update courses set reporting_group = 'group_1' where name='test course' - -# 2022-04-22 14:53:37.900208 -+select * from courses where name like 'test course' - -# 2022-04-22 15:14:01.638320 -+select reporting_groups from tenants - -# 2022-04-22 16:10:08.697978 -+select * from courses - -# 2022-04-22 16:11:01.301533 -+select * from quiz_attempts where batch_date='2022-04-22' - -# 2022-04-22 16:12:07.717859 -+select * from courses - -# 2022-04-22 16:13:01.799313 -+select * from courses where moodle_course_id in (2, 4, 6) - -# 2022-04-22 16:13:42.915073 -+update courses set reporting_group='group_1' where moodle_course_id = 1 - -# 2022-04-22 16:13:51.278307 -+update courses set reporting_group='group_2' where moodle_course_id = 2 - -# 2022-04-22 16:13:55.915895 -+select * from courses where moodle_course_id in (2, 4, 6) - -# 2022-04-22 16:14:31.023740 -+update courses set reporting_group='group_1' where moodle_course_id = 4 - -# 2022-04-22 16:14:37.248352 -+select * from courses - -# 2022-04-22 16:14:41.278395 -+select * from courses where moodle_course_id in (2, 4, 6) - -# 2022-04-22 16:16:22.537844 -+select * from courses where reporting_group is Null - -# 2022-04-22 16:16:36.743912 -+select * from courses where reporting_group - -# 2022-04-22 16:16:46.014599 -+select * from courses - -# 2022-04-22 16:16:49.929742 -+select * from courses where reporting_group is Null - -# 2022-04-22 16:23:26.992007 -+select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa -+ join courses c -+ on qa.moodle_course_id = c.moodle_course_id -+ join enrolments e -+ on qa.enrolment_id = e.id -+ join enrolees e2 -+ on e.enrolee_id = e2.id -+ join orders o -+ on o.id = e.order_id -+ where qa.batch_date = %s -+ and qa.tenant_id = %s -+ and c.tenant_id = %s -+ and qa.status != %s -+ and c.reporting_group = 'group_1' - -# 2022-04-22 16:23:43.549045 -+select * from courses where reporting_group = 'group_1' - -# 2022-04-22 16:24:15.142148 -+select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa -+ join courses c -+ on qa.moodle_course_id = c.moodle_course_id -+ join enrolments e -+ on qa.enrolment_id = e.id -+ join enrolees e2 -+ on e.enrolee_id = e2.id -+ join orders o -+ on o.id = e.order_id -+ where qa.batch_date = '2022-04-22' -+ and qa.tenant_id = 1 -+ and c.reporting_group = 'group_1' - -# 2022-04-22 16:24:29.881319 -+select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa -+ join courses c -+ on qa.moodle_course_id = c.moodle_course_id -+ join enrolments e -+ on qa.enrolment_id = e.id -+ join enrolees e2 -+ on e.enrolee_id = e2.id -+ join orders o -+ on o.id = e.order_id -+ where qa.batch_date = '2022-04-22' -+ and qa.tenant_id = 1 -+ and c.reporting_group = 'group_2' - -# 2022-04-22 16:24:40.682859 -+select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa -+ join courses c -+ on qa.moodle_course_id = c.moodle_course_id -+ join enrolments e -+ on qa.enrolment_id = e.id -+ join enrolees e2 -+ on e.enrolee_id = e2.id -+ join orders o -+ on o.id = e.order_id -+ where qa.batch_date = '2022-04-22' -+ and qa.tenant_id = 2 -+ and c.reporting_group = 'group_2' - -# 2022-04-22 16:25:08.633149 -+select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa -+ join courses c -+ on qa.moodle_course_id = c.moodle_course_id -+ join enrolments e -+ on qa.enrolment_id = e.id -+ join enrolees e2 -+ on e.enrolee_id = e2.id -+ join orders o -+ on o.id = e.order_id -+ where qa.batch_date = '2022-04-22' -+ and qa.tenant_id = 4 -+ and c.reporting_group = 'group_2' - -# 2022-04-22 16:25:11.310696 -+select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa -+ join courses c -+ on qa.moodle_course_id = c.moodle_course_id -+ join enrolments e -+ on qa.enrolment_id = e.id -+ join enrolees e2 -+ on e.enrolee_id = e2.id -+ join orders o -+ on o.id = e.order_id -+ where qa.batch_date = '2022-04-22' -+ and qa.tenant_id = 6 -+ and c.reporting_group = 'group_2' - -# 2022-04-22 16:25:14.450909 -+select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa -+ join courses c -+ on qa.moodle_course_id = c.moodle_course_id -+ join enrolments e -+ on qa.enrolment_id = e.id -+ join enrolees e2 -+ on e.enrolee_id = e2.id -+ join orders o -+ on o.id = e.order_id -+ where qa.batch_date = '2022-04-22' -+ and c.reporting_group = 'group_2' - -# 2022-04-22 16:25:36.187524 -+select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa -+ join courses c -+ on qa.moodle_course_id = c.moodle_course_id -+ join enrolments e -+ on qa.enrolment_id = e.id -+ join enrolees e2 -+ on e.enrolee_id = e2.id -+ join orders o -+ on o.id = e.order_id -+ where c.reporting_group = 'group_2' - -# 2022-04-26 16:08:04.390304 -+select * from courses where reporting_group = 'group_1' - -# 2022-04-26 16:08:15.457671 -+select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa -+ join courses c -+ on qa.moodle_course_id = c.moodle_course_id -+ join enrolments e -+ on qa.enrolment_id = e.id -+ join enrolees e2 -+ on e.enrolee_id = e2.id -+ join orders o -+ on o.id = e.order_id -+ where c.reporting_group = 'group_2' - -# 2022-04-26 16:08:43.363973 -+select * from courses - -# 2022-04-26 16:08:54.710952 -+select id, name, reporting_group from courses - -# 2022-04-26 16:13:46.878474 -+select * from quiz_attempts where batch_date='2022-04-22' - -# 2022-04-27 08:40:32.364436 -+ls - -# 2022-04-27 08:42:27.090450 -+select name, id from tenants - -# 2022-04-27 08:43:19.678517 -+update tenants set reporting_groups = Null where id=2 - -# 2022-04-27 08:43:32.229107 -+select name, id, reporting_groups from tenants - -# 2022-04-27 11:02:30.432988 -+select name, id, reporting_group from courses - -# 2022-04-27 11:04:28.333200 -+select name, id, tenant_id, reporting_group from courses - -# 2022-04-27 11:07:27.231222 -+select course, id from courses - -# 2022-04-27 11:07:41.156213 -+select name, id from courses - -# 2022-04-27 11:07:50.193373 -+select name, id, tenant_id from courses - -# 2022-04-27 11:16:48.039365 -+select name, id, tenant_id, moodle_course_id from courses - -# 2022-04-27 11:17:22.816270 -+select name, tenant_id, moodle_course_id from courses - -# 2022-04-27 11:17:45.868329 -+delete from courses where course_name='big course' - -# 2022-04-27 11:17:54.136804 -+delete from courses where name='big course' - -# 2022-04-27 11:25:20.650676 -+select name, tenant_id, moodle_course_id from courses - -# 2022-04-27 11:25:35.738927 -+select * from courses where moodle_course_id = 36 - -# 2022-04-27 13:18:44.253773 -+delete from courses where name='course with reporting group' - -# 2022-04-27 13:20:53.086943 -+select * from courses where moodle_course_id = 36 - -# 2022-04-27 15:01:00.132517 -+select * from tenants - -# 2022-04-27 15:01:34.775660 -+select name, tenant_id, moodle_course_id from courses - -# 2022-04-27 15:01:54.539776 -+select name, tenant_id, moodle_course_id, reporting_group from courses - -# 2022-04-27 16:10:27.502013 -+select * from tenants - -# 2022-04-27 16:19:12.843297 -+select * from courses - -# 2022-04-28 11:03:04.638366 -+select name, tenant_id, moodle_course_id, reporting_group from courses - -# 2022-04-28 11:03:23.363305 -+delete from courses where name='big course' - -# 2022-04-28 11:05:07.497658 -+select name, tenant_id, moodle_course_id, reporting_group from courses - -# 2022-04-28 11:21:44.797410 -+delete from courses where name='big course' - -# 2022-04-28 11:23:11.932702 -+select name, tenant_id, moodle_course_id, reporting_group from courses - -# 2022-04-28 11:23:16.858023 -+delete from courses where name='big course' - -# 2022-04-28 11:28:53.017899 -+select name, reporting_groups from tenants - -# 2022-04-28 11:44:25.117264 -+delete from courses where name='big course' - -# 2022-04-28 11:45:14.240313 -+select name, reporting_groups from tenants - -# 2022-04-28 12:06:58.162344 -+delete from courses where name='big course' - -# 2022-04-28 12:13:04.048113 -+select name, reporting_groups from tenants - -# 2022-04-28 13:04:05.481549 -+delete from courses where name='big course' - -# 2022-04-28 13:05:15.835799 -+select name, reporting_groups from tenants - -# 2022-04-28 13:44:49.912497 -+select * from quiz_attempts where batch_date='2022-04-22' - -# 2022-04-28 13:45:33.194608 -+select * from courses where moodle_course_id in (13, 26, 207) - -# 2022-04-28 13:45:41.486576 -+select * from courses - -# 2022-04-28 13:46:07.152102 -+select * from courses where moodle_course_id in (6, 4, 2) - -# 2022-04-28 14:08:08.500491 -+select name, reporting_groups from tenants - -# 2022-04-28 14:10:09.819598 -+update tenants set reporting_groups = ['test'] where name = 'dev' - -# 2022-04-28 14:11:09.711161 -+update tenants set reporting_groups = '{ group_1, group_2 }' where name='dev' - -# 2022-04-28 14:11:16.719685 -+select name, reporting_groups from tenants - -# 2022-04-28 15:06:22.828646 -+select * from quiz_attempts where batch_date='2022-04-22' - -# 2022-04-28 15:06:55.415041 -+select name, reporting_group from courses where moodle_course_id in (2,4,6) - -# 2022-04-28 15:07:05.928991 -+select name, reporting_group, moodle_course_id from courses where moodle_course_id in (2,4,6) - -# 2022-04-28 15:07:15.330078 -+select name, reporting_group, moodle_course_id from courses where moodle_course_id in (2,4,6) order by moodle_course_id - -# 2022-04-28 15:07:37.951239 -+select * from quiz_attempts where batch_date='2022-04-22' - -# 2022-04-28 15:08:38.032551 -+select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa -+ join courses c -+ on qa.moodle_course_id = c.moodle_course_id -+ join enrolments e -+ on qa.enrolment_id = e.id -+ join enrolees e2 -+ on e.enrolee_id = e2.id -+ join orders o -+ on o.id = e.order_id - -# 2022-04-28 15:08:55.942274 -+select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa -+ join courses c -+ on qa.moodle_course_id = c.moodle_course_id -+ join enrolments e -+ on qa.enrolment_id = e.id -+ join enrolees e2 -+ on e.enrolee_id = e2.id -+ join orders o -+ on o.id = e.order_id - -# 2022-04-28 15:09:04.022099 -+select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa -+ join courses c -+ on qa.moodle_course_id = c.moodle_course_id -+ join enrolments e -+ on qa.enrolment_id = e.id -+ join enrolees e2 -+ on e.enrolee_id = e2.id -+ join orders o -+ on o.id = e.order_id where - -# 2022-04-28 15:09:44.522907 -+select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa -+ join courses c -+ on qa.moodle_course_id = c.moodle_course_id -+ join enrolments e -+ on qa.enrolment_id = e.id -+ join enrolees e2 -+ on e.enrolee_id = e2.id -+ join orders o -+ on o.id = e.order_id - -# 2022-04-28 15:10:13.469081 -+select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa -+ join courses c -+ on qa.moodle_course_id = c.moodle_course_id -+ join enrolments e -+ on qa.enrolment_id = e.id -+ join enrolees e2 -+ on e.enrolee_id = e2.id -+ join orders o -+ on o.id = e.order_id where qa.attempt_date = '2022-04-22' - -# 2022-04-28 15:10:40.837611 -+select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa -+ join courses c -+ on qa.moodle_course_id = c.moodle_course_id -+ join enrolments e -+ on qa.enrolment_id = e.id -+ join enrolees e2 -+ on e.enrolee_id = e2.id -+ join orders o -+ on o.id = e.order_id where qa.attempt_date = date('2022-04-22') - -# 2022-04-28 15:10:51.017197 -+select * from quiz_attempts where batch_date='2022-04-22' - -# 2022-04-28 15:11:07.196746 -+select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa -+ join courses c -+ on qa.moodle_course_id = c.moodle_course_id -+ join enrolments e -+ on qa.enrolment_id = e.id -+ join enrolees e2 -+ on e.enrolee_id = e2.id -+ join orders o -+ on o.id = e.order_id where qa.batch_date= '2022-04-22' - -# 2022-04-28 15:11:28.449094 -+select name, reporting_group, moodle_course_id from courses where moodle_course_id in (2,4,6) order by moodle_course_id - -# 2022-04-28 15:11:39.755298 -+select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa -+ join courses c -+ on qa.moodle_course_id = c.moodle_course_id -+ join enrolments e -+ on qa.enrolment_id = e.id -+ join enrolees e2 -+ on e.enrolee_id = e2.id -+ join orders o -+ on o.id = e.order_id where qa.batch_date= '2022-04-22' - -# 2022-04-28 15:18:36.204187 -+select name, reporting_group, moodle_course_id from courses where moodle_course_id in (2,4,6) order by moodle_course_id - -# 2022-04-28 15:18:46.049292 -+select * from quiz_attempts where batch_date='2022-04-22' - -# 2022-04-28 15:21:00.206485 -+select name, reporting_group, moodle_course_id from courses where moodle_course_id in (2,4,6) order by moodle_course_id - -# 2022-04-28 15:21:10.726611 -+select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa -+ join courses c -+ on qa.moodle_course_id = c.moodle_course_id -+ join enrolments e -+ on qa.enrolment_id = e.id -+ join enrolees e2 -+ on e.enrolee_id = e2.id -+ join orders o -+ on o.id = e.order_id where qa.batch_date= '2022-04-22' - -# 2022-04-28 15:21:21.666118 -+select name, reporting_group, moodle_course_id from courses where moodle_course_id in (2,4,6) order by moodle_course_id - -# 2022-04-28 15:21:34.508822 -+select * from quiz_attempts where batch_date='2022-04-22' - -# 2022-04-28 15:21:53.407232 -+select name, reporting_group, moodle_course_id from courses where moodle_course_id in (2,4,6) order by moodle_course_id - -# 2022-04-28 15:25:08.739317 -+select name, reporting_group, moodle_course_id, tenant_id from courses where moodle_course_id in (2,4,6) order by moodle_course_id - -# 2022-04-29 14:13:29.772976 -+select * from tenants - -# 2022-04-29 14:13:30.962223 -+select * from tenant - -# 2022-04-29 14:13:39.253259 -+select * from tenants - -# 2022-04-29 14:13:51.623102 -+select base_url from tenants - -# 2022-04-29 14:14:02.512224 -+select tenant_url from tenants - -# 2022-04-29 14:41:28.218822 -+select name, reporting_group, moodle_course_id from courses where moodle_course_id in (2,4,6) order by moodle_course_id - -# 2022-04-29 14:41:37.022139 -+select name, reporting_groups from tenants - -# 2022-04-29 15:47:08.570163 -+select name, reporting_group, moodle_course_id from courses where moodle_course_id in (2,4,6) order by moodle_course_id - -# 2022-04-29 15:47:20.946765 -+select name, reporting_group, moodle_course_id from courses - -# 2022-04-29 15:47:24.247775 -+delete from courses where name='big course' - -# 2022-04-29 15:50:44.520484 -+select name, reporting_groups from tenants - -# 2022-05-03 15:14:12.341620 -+delete from courses where name='big course' - -# 2022-05-03 15:14:29.274908 -+select name, reporting_groups from tenants - -# 2022-05-03 15:14:46.184255 -+select * from courses - -# 2022-05-03 15:15:01.015148 -+ls - -# 2022-05-03 15:18:30.732071 -+delete from courses where name='big course' - -# 2022-05-03 15:22:41.898709 -+select name, reporting_groups from tenants - -# 2022-05-03 15:24:33.621246 -+delete from courses where name='big course' - -# 2022-05-03 16:56:05.577773 -+select * from courses - -# 2022-05-03 16:56:22.006404 -+select name, reporting_groups from tenants - -# 2022-05-03 16:57:20.163124 -+delete from courses where name='big course'\ - -# 2022-05-03 16:57:23.182568 -+delete from courses where name='big course' - -# 2022-05-03 16:57:53.081548 -+select name, reporting_groups from tenants - -# 2022-05-04 14:25:17.943190 -+exit - -# 2022-05-04 16:06:27.633944 -+select name, reporting_groups from tenants - -# 2022-05-04 16:07:09.801632 -+delete from courses where name='big course' - -# 2022-05-04 16:08:04.532965 -+select name, reporting_groups from tenants - -# 2022-05-04 16:08:33.269082 -+select * from courses where moodle_course_id = 36 - -# 2022-05-04 16:08:44.460772 -+delete from courses where name='big course' - -# 2022-05-04 16:09:04.258842 -+select * from courses where moodle_course_id = 36 - -# 2022-05-04 16:09:48.144946 -+delete from courses where name='big course' - -# 2022-05-04 16:10:51.160262 -+select * from courses where moodle_course_id = 36 - -# 2022-05-04 16:11:26.104408 -+delete from courses where name='big course' - -# 2022-05-04 16:11:35.517024 -+select name, reporting_groups from tenants - -# 2022-05-05 13:17:43.235749 -+delete from courses where name='big course' - -# 2022-05-05 13:17:49.495543 -+exit - -# 2022-05-05 13:18:16.242126 -+delete from courses where name='big course' - -# 2022-05-05 13:18:53.328676 -+select * from courses where moodle_course_id = 36 - -# 2022-05-05 13:19:37.470179 -+select name, reporting_groups from tenants - -# 2022-05-05 13:20:15.862766 -+update tenants set reporting_groups = null where name='dev' - -# 2022-05-05 13:20:18.307494 -+select name, reporting_groups from tenants - -# 2022-05-05 13:20:26.645168 -+delete from courses where name='big course' - -# 2022-05-05 13:32:36.047445 -+select name, reporting_groups from tenants - -# 2022-05-05 13:32:41.969125 -+select * from courses where moodle_course_id = 36 - -# 2022-05-05 13:32:59.205796 -+delete from courses where name='big course' - -# 2022-05-05 13:33:23.917660 -+select name, reporting_groups from tenants - -# 2022-05-05 13:33:32.740985 -+select * from courses where moodle_course_id = 36 - -# 2022-05-05 13:38:54.007911 -+delete from courses where name='big course' - -# 2022-05-05 13:38:56.767587 -+select name, reporting_groups from tenants - -# 2022-05-05 13:39:34.321865 -+select * from courses where moodle_course_id = 36 - -# 2022-05-05 13:39:38.172798 -+delete from courses where name='big course' - -# 2022-05-05 13:42:33.359624 -+select * from courses where moodle_course_id = 36 - -# 2022-05-05 13:42:38.815687 -+select name, reporting_groups from tenants - -# 2022-05-05 13:46:02.465897 -+delete from courses where name='big course' - -# 2022-05-05 13:46:17.493097 -+update tenants set reporting_groups = null where name='dev' - -# 2022-05-05 13:46:22.501086 -+select name, reporting_groups from tenants - -# 2022-05-05 13:47:15.855841 -+select * from courses where moodle_course_id = 36 - -# 2022-05-05 13:47:58.817517 -+select name, reporting_groups from tenants - -# 2022-05-05 13:48:05.523036 -+delete from courses where name='big course' - -# 2022-05-05 13:48:35.797264 -+select name, reporting_groups from tenants - -# 2022-05-05 13:48:38.070821 -+select * from courses where moodle_course_id = 36 - -# 2022-05-09 14:14:19.497807 -+select * from courses - -# 2022-05-09 14:14:39.253165 -+select * from mdl_course - -# 2022-05-09 14:43:22.966058 -+select * from courses - -# 2022-05-09 14:43:25.479744 -+exit - -# 2022-05-09 14:44:11.975392 -+select * from courses - -# 2022-05-09 15:44:39.917937 -+delete from courses where name='big course' - -# 2022-05-12 07:51:34.378440 -+select * from courses - -# 2022-05-12 07:51:43.892346 -+exit - -# 2022-05-12 07:52:31.085224 -+select * from courses - -# 2022-05-12 07:52:45.974216 -+select id from tenants where name like "dev" - -# 2022-05-12 07:52:51.031739 -+select id from tenants where name like 'dev' - -# 2022-05-12 07:55:08.043383 -+# select id, name, description, customer_price_cents, everblue_price_cents, course_status, moodle_course_id, tenant, customer_provided_identifier from course where tenant_id = 1 -+ - -# 2022-05-12 07:55:15.554922 -+select id, name, description, customer_price_cents, everblue_price_cents, course_status, moodle_course_id, tenant, customer_provided_identifier from course where tenant_id = 1 -+ - -# 2022-05-12 07:55:28.445738 -+select id, name, description, customer_price_cents, everblue_price_cents, course_status, moodle_course_id, tenant, customer_provided_identifier from courses where tenant_id = 1 -+ - -# 2022-05-12 07:55:42.289409 -+select id, name, description, customer_price_cents, everblue_price_cents, course_status, moodle_course_id, tenant_id, customer_provided_identifier from courses where tenant_id = 1 -+ - -# 2022-05-16 13:23:14.444556 -+select * from courses - -# 2022-05-16 13:27:01.180606 -+select * from information_schema.columns where column_name like '%complet%' - -# 2022-05-16 13:27:41.852428 -+select * from mdl_course - -# 2022-05-16 13:29:34.617503 -+exit - -# 2022-05-16 13:32:00.090158 -+select * from mdl_course - -# 2022-05-16 13:32:49.972254 -+select * from information_schema.columns where column_name like '%complet%' - -# 2022-05-16 13:33:11.742642 -+select * from mdl_course_completions - -# 2022-05-16 13:34:06.720955 -+\d mdl_course_completions - -# 2022-05-16 13:35:56.642877 -+select * from mdl_course c join mdl_course_completions cc on cc.id = c.id - -# 2022-05-16 13:36:13.231240 -+select c.name, c.id, cc.timecompleted from mdl_course c join mdl_course_completions cc on cc.id = c.id - -# 2022-05-16 13:36:24.392445 -+select c.fullname, c.id, cc.timecompleted from mdl_course c join mdl_course_completions cc on cc.id = c.id - -# 2022-05-16 13:37:44.758265 -+select c.fullname, c.id, cc.timeenrolled from mdl_course c join mdl_course_completions cc on cc.id = c.id - -# 2022-05-16 13:37:53.959424 -+select c.fullname, c.id, date(cc.timeenrolled) from mdl_course c join mdl_course_completions cc on cc.id = c.id - -# 2022-05-16 13:38:02.732149 -+select c.fullname, c.id, cc.timeenrolled as date from mdl_course c join mdl_course_completions cc on cc.id = c.id - -# 2022-05-16 13:38:47.977596 -+select c.fullname, c.id, TO_TIMESTAMP(cc.timeenrolled) as date from mdl_course c join mdl_course_completions cc on cc.id = c.id - -# 2022-05-16 13:39:15.508893 -+select c.fullname, c.id, TO_TIMESTAMP(cc.timeenrolled) from mdl_course c join mdl_course_completions cc on cc.id = c.id - -# 2022-05-16 13:39:28.647655 -+select c.fullname, c.id, TO_TIMESTAMP(cc.timeenrolled) as timecompleted from mdl_course c join mdl_course_completions cc on cc.id = c.id - -# 2022-05-16 13:52:20.470295 -+select * from courses - -# 2022-05-16 14:02:44.767235 -+\d courses - -# 2022-05-17 10:36:14.732888 -+select * from courses - -# 2022-05-17 10:36:34.528454 -+select * from information_schema.columns where column_name like '%email%' - -# 2022-05-17 10:37:05.555984 -+select * from information_schema.tables where table_name like '%email%' - -# 2022-05-17 10:38:03.298037 -+select * from mdl_course_completions - -# 2022-05-17 10:38:13.122229 -+select * from mdl_course - -# 2022-05-17 10:38:30.311807 -+select * from information_schema.columns where column_name like '%email%' - -# 2022-05-17 10:40:03.977167 -+\d courses - -# 2022-05-17 10:59:08.319619 -+select * from courses - -# 2022-05-17 11:01:16.998178 -+select * from information_schema.columns where column_name like '%email%' - -# 2022-05-17 11:01:20.023366 -+select * from courses - -# 2022-05-17 15:26:22.219478 -+update courses set email_passed=False where name='dwd' - -# 2022-05-17 15:26:32.763392 -+select * from courses - -# 2022-05-17 15:26:54.246204 -+update courses set email_failed=False where name='Test Course 4' - -# 2022-05-17 15:27:15.558059 -+update courses set email_failed=False where name='Test Course 2' - -# 2022-05-17 15:27:25.644568 -+update courses set email_failed=False where name='test course' - -# 2022-05-17 15:27:34.423660 -+update courses set email_passed=False where name='test course' - -# 2022-05-18 08:31:31.583251 -+update courses set email_passed=True where id=36 - -# 2022-05-18 08:32:31.152253 -+select * from courses - -# 2022-05-18 08:35:47.160245 -+exit - -# 2022-05-18 08:37:32.092529 -+select * from courses - -# 2022-05-18 08:37:50.056977 -+exit - -# 2022-05-18 08:40:15.159798 -+select * from courses - -# 2022-05-18 08:40:46.269041 -+select * from mdl_course - -# 2022-05-18 08:40:48.026013 -+exit - -# 2022-05-18 08:41:18.074439 -+select * from mdl_course - -# 2022-05-19 13:39:51.213235 -+exit - -# 2022-05-19 13:40:42.364344 -+delete from courses where moodle_course_id = 36 - -# 2022-05-19 14:25:40.317131 -+select * from mdl_course - -# 2022-05-19 14:25:45.832221 -+select * from course - -# 2022-05-19 14:25:47.177054 -+select * from courses - -# 2022-05-20 09:04:43.018788 -+delete from courses where moodle_course_id = 36 - -# 2022-05-20 11:29:47.692453 -+select * from courses - -# 2022-05-20 13:22:30.721683 -+delete from courses where moodle_course_id = 36 - -# 2022-05-20 13:23:24.355566 -+select * from courses - -# 2022-05-20 13:23:31.692285 -+/d courses - -# 2022-05-20 13:23:34.219105 -+\d courses - -# 2022-05-20 14:49:52.102200 -+select * from courses - -# 2022-05-20 16:12:31.382942 -+delete from courses where moodle_course_id = 36 - -# 2022-05-20 16:12:35.771746 -+select * from courses - -# 2022-05-20 16:18:10.550696 -+delete from courses where moodle_course_id = 36 - -# 2022-05-20 16:18:12.850341 -+select * from courses - -# 2022-05-20 16:28:10.430490 -+delete from courses where moodle_course_id = 36 - -# 2022-05-20 16:30:14.669880 -+select * from courses - -# 2022-05-20 16:30:43.629200 -+delete from courses where id = 698 - -# 2022-05-20 16:36:37.423163 -+select * from courses - -# 2022-05-20 16:45:12.707622 -+delete from courses where moodle_course_id = 36 - -# 2022-05-23 10:12:51.320217 -+select * from courses - -# 2022-05-23 10:12:52.705567 -+exit - -# 2022-05-23 10:39:48.165200 -+ls - -# 2022-05-23 10:39:53.578033 -+delete from courses where moodle_course_id = 36 - -# 2022-05-23 15:04:26.685395 -+select * from courses - -# 2022-05-25 08:14:54.771669 -+clear - -# 2022-05-25 08:14:58.083295 -+select * from courses - -# 2022-05-25 10:27:42.281061 -+select * from tenants - -# 2022-05-25 10:41:45.857370 -+select * from courses - -# 2022-05-25 10:42:06.638801 -+select tenant from courses - -# 2022-05-25 11:22:59.507673 -+select * from tenant_default_settings - -# 2022-05-25 13:16:45.090262 -+\d tenant_default_settings - -# 2022-05-25 13:50:57.543132 -+select id from tenants - -# 2022-05-25 13:51:00.521158 -+select id from tenants where name like 'dev' - -# 2022-05-25 13:51:04.497656 -+\d tenant_default_settings - -# 2022-05-25 13:52:32.959524 -+insert into tenant_default_settings(tenant_id, customer_price_cents_email_passed) values(1, 199, True) - -# 2022-05-25 13:52:54.798356 -+insert into tenant_default_settings(tenant_id, customer_price_cents, email_passed) values(1, 199, True) - -# 2022-05-25 13:52:59.355512 -+select * from tenant_default_settings - -# 2022-05-26 08:56:13.061852 -+delete from tenan_default_settings where id=1 - -# 2022-05-26 08:56:16.595885 -+exit - -# 2022-05-26 08:56:41.022751 -+delete from tenan_default_settings where id=1 - -# 2022-05-26 08:56:49.717558 -+delete from tenant_default_settings where id=1 - -# 2022-05-26 09:23:07.578193 -+select * from tenant_default_settings - -# 2022-05-26 11:19:32.904573 -+insert into tenant_default_settings(tenant_id, customer_price_cents, email_passed) values(1, 199, True) - -# 2022-05-26 11:24:28.820656 -+select * from tenant_default_settings - -# 2022-05-26 11:59:41.108730 -+delete from tenant_default_settings where id=1 - -# 2022-05-26 12:00:51.456853 -+select * from tenant_default_settings - -# 2022-05-26 12:00:55.101252 -+delete from tenant_default_settings where id=2 - -# 2022-05-26 13:26:48.210222 -+select * from tenant_default_settings - -# 2022-05-26 15:01:37.940323 -+delete from tenant_default_settings where id=2 - -# 2022-05-26 15:01:46.509931 -+delete from tenant_default_settings where id=3 - -# 2022-05-26 15:02:33.604536 -+delete from tenant_default_settings where id=4 - -# 2022-05-26 15:04:41.790755 -+select * from tenant_default_settings - -# 2022-05-26 15:14:41.816200 -+delete from courses where moodle_course_id = 36 - -# 2022-05-26 15:15:00.051708 -+select * from courses - -# 2022-05-26 15:29:31.524138 -+select * from tenant_default_settings - -# 2022-05-26 15:38:07.873405 -+delete * from tenant_default_settings - -# 2022-05-26 15:38:18.668191 -+delete from courses where moodle_course_id = 5 - -# 2022-05-26 15:38:22.601620 -+delete from courses where moodle_course_id = 6 - -# 2022-05-26 15:38:39.090050 -+delete from tenant_default_settings where id=5 - -# 2022-05-26 15:38:41.945048 -+delete from tenant_default_settings where id=6 - -# 2022-05-26 15:38:45.300750 -+delete from tenant_default_settings where id=7 - -# 2022-05-26 15:42:42.766866 -+select * from tenant_default_settings - -# 2022-05-26 15:58:58.690623 -+delete from tenant_default_settings where id=8 - -# 2022-05-26 15:59:02.527948 -+delete from tenant_default_settings where id=9 - -# 2022-05-26 15:59:07.902033 -+delete from tenant_default_settings where id=10 - -# 2022-05-26 15:59:55.814325 -+select * from tenant_default_settings - -# 2022-05-26 16:04:03.741602 -+delete from tenant_default_settings where id=11 - -# 2022-05-26 16:04:23.976508 -+select * from tenant_default_settings - -# 2022-05-26 16:04:56.960213 -+delete from tenant_default_settings where id=12 - -# 2022-05-26 16:05:02.057169 -+delete from tenant_default_settings where id=13 - -# 2022-05-26 16:05:10.424758 -+select * from tenant_default_settings - -# 2022-05-26 16:13:15.585955 -+\d tenant_default_settings - -# 2022-05-27 09:08:51.497364 -+select * from tenant_default_settings - -# 2022-05-27 09:08:54.234413 -+exit - -# 2022-05-27 09:09:31.470678 -+select * from tenant_default_settings - -# 2022-05-27 09:09:41.550411 -+delete from tenant_default_settings where id=14 - -# 2022-05-27 09:09:44.884313 -+delete from tenant_default_settings where id=15 - -# 2022-05-27 09:10:24.821565 -+select * from tenant_default_settings - -# 2022-05-27 12:52:40.423369 -+exit - -# 2022-05-27 13:04:15.897211 -+select * from mdl_course - -# 2022-05-27 13:30:31.988212 -+exit - -# 2022-05-27 14:07:16.615330 -+select * from courses - -# 2022-05-27 14:07:19.827391 -+select * from mdl_course - -# 2022-05-27 14:14:36.052804 -+select * from tenant_default_settings - -# 2022-05-27 14:14:54.417342 -+delete from tenant_default_settings where id=16 - -# 2022-05-27 14:15:22.639036 -+select * from tenant_default_settings - -# 2022-05-31 07:28:01.852668 -+exit - -# 2022-05-31 07:28:04.795941 -+exit - -# 2022-05-31 07:28:11.387235 -+select * from tenant_default_settings - -# 2022-06-01 14:52:50.935504 -+select * from courses - -# 2022-06-03 15:44:14.287608 -+select * from courses where tenant_id = 1 - -# 2022-06-05 20:14:50.054728 -+select * from courses - -# 2022-06-05 20:15:12.089553 -+select * from courses where tenant_id = 1 - -# 2022-06-05 20:46:39.676457 -+delete from courses where name='Question workflow' - -# 2022-06-06 14:32:46.710437 -+exit - -# 2022-06-06 14:33:00.646667 -+delete from courses where name='Question workflow' - -# 2022-06-06 14:34:59.724610 -+select * from courses where tenant_id = 1 - -# 2022-06-06 14:35:11.211359 -+delete from courses where id=830 - -# 2022-06-06 14:36:26.310018 -+delete from courses where name='Question workflow' - -# 2022-06-06 14:38:34.917956 -+delete from courses where id=830 - -# 2022-06-06 14:38:56.625400 -+select * from courses where tenant_id = 1 - -# 2022-06-06 14:39:04.433622 -+delete from courses where id=832 - -# 2022-06-06 14:39:25.370411 -+select * from courses where tenant_id = 1 - -# 2022-06-06 14:51:06.031378 -+delete from courses where name='Question workflow' - -# 2022-06-06 14:55:48.898732 -+select * from courses where tenant_id = 1 - -# 2022-06-06 14:55:53.825153 -+delete from courses where id=835 - -# 2022-06-06 14:56:24.376316 -+delete from courses where name='Question workflow' - -# 2022-06-06 15:13:11.094503 -+\d courses - -# 2022-06-06 15:15:22.884819 -+delete from courses where name='Question workflow' - -# 2022-06-06 15:15:33.050139 -+select * from courses where tenant_id = 1 - -# 2022-06-06 15:39:43.056894 -+select * from courses diff --git a/slackware/.config/pgcli/log b/slackware/.config/pgcli/log deleted file mode 100644 index d522df7..0000000 --- a/slackware/.config/pgcli/log +++ /dev/null @@ -1,988 +0,0 @@ -2021-06-01 14:29:45,080 (11863/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-06-01 14:29:45,081 (11863/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-06-01 14:29:45,087 (11863/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 582, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 569, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 214, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 254, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 127, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: could not connect to server: No such file or directory\n\tIs the server running locally and accepting\n\tconnections on Unix domain socket "/tmp/.s.PGSQL.5432"?\n\n' -2021-06-01 14:30:35,891 (11870/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-06-01 14:30:35,891 (11870/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-07-21 13:13:33,434 (66147/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-07-21 13:13:33,435 (66147/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-07-21 13:13:41,573 (66147/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 569, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 214, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 254, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 127, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 578, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 214, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 254, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 127, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: FATAL: password authentication failed for user "admin"\n\n' -2021-07-21 13:14:27,192 (66429/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-07-21 13:14:27,193 (66429/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-07-21 13:14:34,805 (66429/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 569, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 214, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 254, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 127, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 578, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 214, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 254, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 127, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: FATAL: password authentication failed for user "admin"\n\n' -2021-07-21 13:14:50,710 (66531/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-07-21 13:14:50,710 (66531/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-07-21 13:15:52,503 (66531/MainThread) pgcli.main ERROR - sql: '\\e vim', error: RuntimeError('Error reading file: vim.') -2021-07-21 13:15:52,505 (66531/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 743, in run_cli\n text = self.handle_editor_command(text)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 630, in handle_editor_command\n raise RuntimeError(message)\nRuntimeError: Error reading file: vim.\n' -2021-07-21 13:20:02,145 (66531/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_requirementfield \\o', error: SyntaxError('syntax error at or near "\\"\nLINE 1: select * from certifications_requirementfield \\o\n ^\n') -2021-07-21 13:20:02,146 (66531/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "\\"\nLINE 1: select * from certifications_requirementfield \\o\n ^\n\n' -2021-07-21 13:20:08,431 (66531/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_requirementfield \\ef', error: SyntaxError('syntax error at or near "\\"\nLINE 1: select * from certifications_requirementfield \\ef\n ^\n') -2021-07-21 13:20:08,432 (66531/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "\\"\nLINE 1: select * from certifications_requirementfield \\ef\n ^\n\n' -2021-07-21 15:24:34,060 (66531/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_certificationtype', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-07-21 15:24:34,062 (66531/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-07-21 15:24:34,062 (66531/MainThread) pgcli.main ERROR - sql: 'select * from certifications_certificationtype', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-07-21 15:24:34,063 (66531/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 654, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 901, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-07-26 10:25:42,371 (98070/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-07-26 10:25:42,372 (98070/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-07-27 15:16:57,936 (98070/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification', error: UndefinedTable('relation "certification" does not exist\nLINE 1: select * from certification\n ^\n') -2021-07-27 15:16:57,940 (98070/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certification" does not exist\nLINE 1: select * from certification\n ^\n\n' -2021-07-27 15:30:45,140 (98070/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_requirementfieldentry where user=12', error: UndefinedFunction('operator does not exist: name = integer\nLINE 1: ...ct * from certifications_requirementfieldentry where user=12\n ^\nHINT: No operator matches the given name and argument types. You might need to add explicit type casts.\n') -2021-07-27 15:30:45,154 (98070/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedFunction: operator does not exist: name = integer\nLINE 1: ...ct * from certifications_requirementfieldentry where user=12\n ^\nHINT: No operator matches the given name and argument types. You might need to add explicit type casts.\n\n' -2021-07-30 08:35:35,160 (73064/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-07-30 08:35:35,166 (73064/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-07-30 08:48:11,753 (73064/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_certificationfield', error: UndefinedTable('relation "certifications_certificationfield" does not exist\nLINE 1: select * from certifications_certificationfield\n ^\n') -2021-07-30 08:48:11,785 (73064/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certifications_certificationfield" does not exist\nLINE 1: select * from certifications_certificationfield\n ^\n\n' -2021-08-02 16:31:40,138 (24095/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-08-02 16:31:40,139 (24095/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-08-04 08:41:27,749 (24095/MainThread) pgcli.pgexecute ERROR - sql: 'BEGIN', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-08-04 08:41:27,753 (24095/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-08-04 08:41:27,753 (24095/MainThread) pgcli.main ERROR - sql: 'BEGIN;\nSELECT setval(pg_get_serial_sequence(\'"certifications_notice"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_notice";\nSELECT setval(pg_get_serial_sequence(\'"certifications_noticelog"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_noticelog";\nSELECT setval(pg_get_serial_sequence(\'"certifications_noticedefaultlogrecord"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_noticedefaultlogrecord";\nSELECT setval(pg_get_serial_sequence(\'"certifications_requirementfield_statuses"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_requirementfield_statuses";\nSELECT setval(pg_get_serial_sequence(\'"certifications_requirementfield"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_requirementfield";\nSELECT setval(pg_get_serial_sequence(\'"certifications_requirementfieldentry"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_requirementfieldentry";\nSELECT setval(pg_get_serial_sequence(\'"certifications_certificationtype"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationtype";\nSELECT setval(pg_get_serial_sequence(\'"certifications_accountnumber"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_accountnumber";\nSELECT setval(pg_get_serial_sequence(\'"certifications_certificationrep"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationrep";\nSELECT setval(pg_get_serial_sequence(\'"certifications_certification"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certification";\nSELECT setval(pg_get_serial_sequence(\'"certifications_statusreport"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusreport";\nSELECT setval(pg_get_serial_sequence(\'"certifications_certificationapp_payment_methods"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp_payment_methods";\nSELECT setval(pg_get_serial_sequence(\'"certifications_certificationapp"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp";\nSELECT setval(pg_get_serial_sequence(\'"certifications_certificationappfield"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationappfield";\nSELECT setval(pg_get_serial_sequence(\'"certifications_certificationfieldentry"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationfieldentry";\nSELECT setval(pg_get_serial_sequence(\'"certifications_statusfield"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusfield";\nSELECT setval(pg_get_serial_sequence(\'"certifications_statusfieldentry"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusfieldentry";\nSELECT setval(pg_get_serial_sequence(\'"certifications_certificationimport"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationimport";\nSELECT setval(pg_get_serial_sequence(\'"certifications_certificationimportdata"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationimportdata";\nCOMMIT;', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-08-04 08:41:27,755 (24095/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 654, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 901, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-08-04 08:41:28,182 (24095/MainThread) pgcli.pgexecute ERROR - sql: 'SELECT setval(pg_get_serial_sequence(\'"certifications_statusreport"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusreport"', error: UndefinedTable('relation "certifications_statusreport" does not exist\nLINE 1: ...alesce(max("id"), 1), max("id") IS NOT null) FROM "certifica...\n ^\n') -2021-08-04 08:41:28,182 (24095/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 654, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 901, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certifications_statusreport" does not exist\nLINE 1: ...alesce(max("id"), 1), max("id") IS NOT null) FROM "certifica...\n ^\n\n' -2021-08-04 08:41:57,884 (24095/MainThread) pgcli.pgexecute ERROR - sql: 'select name from certifications_certificationtype', error: InFailedSqlTransaction('current transaction is aborted, commands ignored until end of transaction block\n') -2021-08-04 08:41:57,885 (24095/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.InFailedSqlTransaction: current transaction is aborted, commands ignored until end of transaction block\n\n' -2021-08-04 08:42:05,470 (24095/MainThread) pgcli.pgexecute ERROR - sql: 'select name from certifications_certificationtype', error: InFailedSqlTransaction('current transaction is aborted, commands ignored until end of transaction block\n') -2021-08-04 08:42:05,471 (24095/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.InFailedSqlTransaction: current transaction is aborted, commands ignored until end of transaction block\n\n' -2021-08-04 08:42:14,434 (24095/MainThread) pgcli.pgexecute ERROR - sql: 'select name from certifications_certificationtype', error: InFailedSqlTransaction('current transaction is aborted, commands ignored until end of transaction block\n') -2021-08-04 08:42:14,434 (24095/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.InFailedSqlTransaction: current transaction is aborted, commands ignored until end of transaction block\n\n' -2021-08-04 08:42:25,405 (26912/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-08-04 08:42:25,406 (26912/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-08-05 14:34:59,861 (2616/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-08-05 14:34:59,862 (2616/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-08-06 11:50:48,932 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'SELECT setval(pg_get_serial_sequence(\'"certifications_statusreport"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusreport"', error: UndefinedTable('relation "certifications_statusreport" does not exist\nLINE 1: ...alesce(max("id"), 1), max("id") IS NOT null) FROM "certifica...\n ^\n') -2021-08-06 11:50:48,934 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certifications_statusreport" does not exist\nLINE 1: ...alesce(max("id"), 1), max("id") IS NOT null) FROM "certifica...\n ^\n\n' -2021-08-06 11:51:50,817 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'SELECT setval(pg_get_serial_sequence(\'"certifications_certificationapp"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp"', error: InFailedSqlTransaction('current transaction is aborted, commands ignored until end of transaction block\n') -2021-08-06 11:51:50,818 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.InFailedSqlTransaction: current transaction is aborted, commands ignored until end of transaction block\n\n' -2021-08-06 11:51:56,737 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'SELECT setval(pg_get_serial_sequence(\'"certifications_certificationapp"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp"', error: InFailedSqlTransaction('current transaction is aborted, commands ignored until end of transaction block\n') -2021-08-06 11:51:56,738 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.InFailedSqlTransaction: current transaction is aborted, commands ignored until end of transaction block\n\n' -2021-08-06 11:52:09,988 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'SELECT setval(pg_get_serial_sequence(\'"certifications_certificationapp"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp"', error: InFailedSqlTransaction('current transaction is aborted, commands ignored until end of transaction block\n') -2021-08-06 11:52:09,988 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.InFailedSqlTransaction: current transaction is aborted, commands ignored until end of transaction block\n\n' -2021-08-06 11:52:26,157 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'SELECT setval(pg_get_serial_sequence(\'"certifications_certificationapp"\',\'id\'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp"', error: InFailedSqlTransaction('current transaction is aborted, commands ignored until end of transaction block\n') -2021-08-06 11:52:26,157 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.InFailedSqlTransaction: current transaction is aborted, commands ignored until end of transaction block\n\n' -2021-08-09 13:11:11,093 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_certificationapp /e', error: SyntaxError('syntax error at or near "/"\nLINE 1: select * from certifications_certificationapp /e\n ^\n') -2021-08-09 13:11:11,094 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "/"\nLINE 1: select * from certifications_certificationapp /e\n ^\n\n' -2021-08-09 15:31:32,177 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'select columns from information_schema where table="certifications_certificationapp"', error: SyntaxError('syntax error at or near "table"\nLINE 1: select columns from information_schema where table="certific...\n ^\n') -2021-08-09 15:31:32,177 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "table"\nLINE 1: select columns from information_schema where table="certific...\n ^\n\n' -2021-08-09 15:31:44,085 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'select columns from information_schema where table_name="certifications_certificationapp"', error: UndefinedTable('relation "information_schema" does not exist\nLINE 1: select columns from information_schema where table_name="cer...\n ^\n') -2021-08-09 15:31:44,085 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "information_schema" does not exist\nLINE 1: select columns from information_schema where table_name="cer...\n ^\n\n' -2021-08-09 15:31:48,191 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'select * from information_schema', error: UndefinedTable('relation "information_schema" does not exist\nLINE 1: select * from information_schema\n ^\n') -2021-08-09 15:31:48,191 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "information_schema" does not exist\nLINE 1: select * from information_schema\n ^\n\n' -2021-08-09 15:32:10,957 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'select columns from information_schema.columns where table_name="certifications_certificationapp"', error: UndefinedColumn('column "certifications_certificationapp" does not exist\nLINE 1: ... from information_schema.columns where table_name="certifica...\n ^\n') -2021-08-09 15:32:10,957 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedColumn: column "certifications_certificationapp" does not exist\nLINE 1: ... from information_schema.columns where table_name="certifica...\n ^\n\n' -2021-08-09 15:32:50,932 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'clear', error: SyntaxError('syntax error at or near "clear"\nLINE 1: clear\n ^\n') -2021-08-09 15:32:50,932 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "clear"\nLINE 1: clear\n ^\n\n' -2021-08-09 15:32:53,807 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'cls', error: SyntaxError('syntax error at or near "cls"\nLINE 1: cls\n ^\n') -2021-08-09 15:32:53,807 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "cls"\nLINE 1: cls\n ^\n\n' -2021-08-11 11:28:29,198 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_certificationfield', error: UndefinedTable('relation "certifications_certificationfield" does not exist\nLINE 1: select * from certifications_certificationfield\n ^\n') -2021-08-11 11:28:29,201 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certifications_certificationfield" does not exist\nLINE 1: select * from certifications_certificationfield\n ^\n\n' -2021-08-11 11:34:55,946 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_certificationappfieldentry', error: UndefinedTable('relation "certifications_certificationappfieldentry" does not exist\nLINE 1: select * from certifications_certificationappfieldentry\n ^\n') -2021-08-11 11:34:55,947 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certifications_certificationappfieldentry" does not exist\nLINE 1: select * from certifications_certificationappfieldentry\n ^\n\n' -2021-08-11 11:35:32,782 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_certificationappfieldentry', error: UndefinedTable('relation "certifications_certificationappfieldentry" does not exist\nLINE 1: select * from certifications_certificationappfieldentry\n ^\n') -2021-08-11 11:35:32,782 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certifications_certificationappfieldentry" does not exist\nLINE 1: select * from certifications_certificationappfieldentry\n ^\n\n' -2021-08-11 17:14:21,469 (2616/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_certificationfield', error: UndefinedTable('relation "certifications_certificationfield" does not exist\nLINE 1: select * from certifications_certificationfield\n ^\n') -2021-08-11 17:14:21,470 (2616/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certifications_certificationfield" does not exist\nLINE 1: select * from certifications_certificationfield\n ^\n\n' -2021-08-16 10:21:21,440 (46655/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-08-16 10:21:21,441 (46655/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-08-16 10:21:28,387 (46655/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n') -2021-08-16 10:21:28,388 (46655/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n' -2021-08-24 17:07:31,741 (11536/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-08-24 17:07:31,741 (11536/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-01 14:24:47,275 (3189/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-01 14:24:47,275 (3189/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-01 14:44:35,697 (4714/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-01 14:44:35,697 (4714/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-01 15:01:29,712 (5514/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-01 15:01:29,713 (5514/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-01 15:24:09,878 (6312/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-01 15:24:09,879 (6312/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-04 08:37:07,363 (18392/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-04 08:37:07,364 (18392/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-04 08:57:44,613 (19208/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-04 08:57:44,613 (19208/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-04 09:41:14,659 (19208/MainThread) pgcli.pgexecute ERROR - sql: 'cert', error: SyntaxError('syntax error at or near "cert"\nLINE 1: cert\n ^\n') -2021-10-04 09:41:14,662 (19208/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "cert"\nLINE 1: cert\n ^\n\n' -2021-10-04 09:43:12,075 (19722/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-04 09:43:12,076 (19722/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-04 09:52:43,079 (19722/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_castleid', error: UndefinedTable('relation "certification_extension_castleid" does not exist\nLINE 1: select * from certification_extension_castleid\n ^\n') -2021-10-04 09:52:43,082 (19722/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certification_extension_castleid" does not exist\nLINE 1: select * from certification_extension_castleid\n ^\n\n' -2021-10-04 09:52:49,024 (19845/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-04 09:52:49,025 (19845/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-04 09:53:10,953 (19845/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_castleid', error: UndefinedTable('relation "certification_extension_castleid" does not exist\nLINE 1: select * from certification_extension_castleid\n ^\n') -2021-10-04 09:53:10,954 (19845/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "certification_extension_castleid" does not exist\nLINE 1: select * from certification_extension_castleid\n ^\n\n' -2021-10-04 09:53:52,299 (19853/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-04 09:53:52,299 (19853/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-04 10:08:27,484 (20356/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-04 10:08:27,485 (20356/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-04 13:06:46,201 (27966/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-04 13:06:46,201 (27966/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-04 13:38:13,483 (27966/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantron', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-10-04 13:38:13,486 (27966/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-10-04 13:38:13,486 (27966/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_scantron', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-10-04 13:38:13,487 (27966/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 654, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 901, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-10-05 14:46:00,964 (52650/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-05 14:46:00,965 (52650/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-05 16:05:19,322 (60360/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-05 16:05:19,323 (60360/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-05 16:06:17,972 (60376/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-05 16:06:17,972 (60376/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-05 16:08:00,858 (60376/MainThread) pgcli.pgexecute ERROR - sql: 'drop database postgres', error: ObjectInUse('cannot drop the currently open database\n') -2021-10-05 16:08:00,861 (60376/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.ObjectInUse: cannot drop the currently open database\n\n' -2021-10-05 16:08:11,931 (60376/MainThread) pgcli.pgexecute ERROR - sql: 'close database postgres', error: SyntaxError('syntax error at or near "postgres"\nLINE 1: close database postgres\n ^\n') -2021-10-05 16:08:11,931 (60376/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "postgres"\nLINE 1: close database postgres\n ^\n\n' -2021-10-05 16:08:32,383 (60382/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-05 16:08:32,383 (60382/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-05 16:08:32,389 (60382/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 582, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 569, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 214, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 254, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 127, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: could not connect to server: No such file or directory\n\tIs the server running locally and accepting\n\tconnections on Unix domain socket "/tmp/.s.PGSQL.5432"?\n\n' -2021-10-05 16:08:41,816 (60385/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-05 16:08:41,817 (60385/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-05 16:08:46,277 (60385/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 569, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 214, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 254, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 127, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 578, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 214, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 254, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 127, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: FATAL: password authentication failed for user "iankeane"\n\n' -2021-10-05 16:08:51,525 (60389/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-05 16:08:51,525 (60389/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-05 16:09:02,240 (60389/MainThread) pgcli.pgexecute ERROR - sql: 'drop database postgres', error: ObjectInUse('cannot drop the currently open database\n') -2021-10-05 16:09:02,241 (60389/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.ObjectInUse: cannot drop the currently open database\n\n' -2021-10-05 16:27:24,151 (61960/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-05 16:27:24,152 (61960/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-05 16:39:53,464 (65484/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-05 16:39:53,465 (65484/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-06 10:34:46,241 (1993/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-06 10:34:46,242 (1993/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-06 11:38:53,189 (4686/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-06 11:38:53,189 (4686/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-06 11:39:01,791 (4686/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n') -2021-10-06 11:39:01,792 (4686/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n' -2021-10-06 11:58:07,276 (4686/MainThread) pgcli.pgexecute ERROR - sql: 'select * from examlevel', error: UndefinedTable('relation "examlevel" does not exist\nLINE 1: select * from examlevel\n ^\n') -2021-10-06 11:58:07,277 (4686/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "examlevel" does not exist\nLINE 1: select * from examlevel\n ^\n\n' -2021-10-06 14:58:22,178 (4686/MainThread) pgcli.pgexecute ERROR - sql: 'select * from examlevel', error: UndefinedTable('relation "examlevel" does not exist\nLINE 1: select * from examlevel\n ^\n') -2021-10-06 14:58:22,178 (4686/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.UndefinedTable: relation "examlevel" does not exist\nLINE 1: select * from examlevel\n ^\n\n' -2021-10-06 15:06:06,941 (4686/MainThread) pgcli.pgexecute ERROR - sql: 'clear', error: SyntaxError('syntax error at or near "clear"\nLINE 1: clear\n ^\n') -2021-10-06 15:06:06,941 (4686/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "clear"\nLINE 1: clear\n ^\n\n' -2021-10-06 15:06:08,399 (4686/MainThread) pgcli.pgexecute ERROR - sql: 'cls', error: SyntaxError('syntax error at or near "cls"\nLINE 1: cls\n ^\n') -2021-10-06 15:06:08,399 (4686/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.SyntaxError: syntax error at or near "cls"\nLINE 1: cls\n ^\n\n' -2021-10-06 15:06:14,273 (15849/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-06 15:06:14,274 (15849/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-07 09:19:08,525 (26942/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-07 09:19:08,526 (26942/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-07 14:11:00,715 (26942/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantronexamlevel', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-10-07 14:11:00,718 (26942/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-10-07 14:11:00,718 (26942/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_scantronexamlevel', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-10-07 14:11:00,719 (26942/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 654, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 901, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 39, in _wait_select\n state = conn.poll()\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-10-07 14:41:19,646 (26942/MainThread) pgcli.pgexecute ERROR - sql: 'truncate table certification_extension_scantronexam', error: FeatureNotSupported('cannot truncate a table referenced in a foreign key constraint\nDETAIL: Table "certification_extension_scantronexamanswer" references "certification_extension_scantronexam".\nHINT: Truncate table "certification_extension_scantronexamanswer" at the same time, or use TRUNCATE ... CASCADE.\n') -2021-10-07 14:41:19,647 (26942/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.FeatureNotSupported: cannot truncate a table referenced in a foreign key constraint\nDETAIL: Table "certification_extension_scantronexamanswer" references "certification_extension_scantronexam".\nHINT: Truncate table "certification_extension_scantronexamanswer" at the same time, or use TRUNCATE ... CASCADE.\n\n' -2021-10-07 14:41:45,840 (26942/MainThread) pgcli.pgexecute ERROR - sql: 'truncate table certification_extension_scantronexam', error: FeatureNotSupported('cannot truncate a table referenced in a foreign key constraint\nDETAIL: Table "certification_extension_scantronexamanswer" references "certification_extension_scantronexam".\nHINT: Truncate table "certification_extension_scantronexamanswer" at the same time, or use TRUNCATE ... CASCADE.\n') -2021-10-07 14:41:45,841 (26942/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 409, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.1.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 444, in execute_normal_sql\n cur.execute(split_sql)\npsycopg2.errors.FeatureNotSupported: cannot truncate a table referenced in a foreign key constraint\nDETAIL: Table "certification_extension_scantronexamanswer" references "certification_extension_scantronexam".\nHINT: Truncate table "certification_extension_scantronexamanswer" at the same time, or use TRUNCATE ... CASCADE.\n\n' -2021-10-07 14:48:48,207 (75137/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-07 14:48:48,208 (75137/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-12 13:52:05,780 (2325/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-12 13:52:05,781 (2325/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-14 11:36:17,202 (39098/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-14 11:36:17,203 (39098/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-14 11:36:26,508 (39098/MainThread) pgcli.pgexecute ERROR - sql: 'select * from scan', error: UndefinedTable('relation "scan" does not exist\nLINE 1: select * from scan\n ^\n') -2021-10-14 11:36:26,509 (39098/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "scan" does not exist\nLINE 1: select * from scan\n ^\n\n' -2021-10-14 11:37:32,187 (39109/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-14 11:37:32,188 (39109/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-14 11:37:36,158 (39109/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n') -2021-10-14 11:37:36,158 (39109/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n' -2021-10-14 11:59:26,833 (39993/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-14 11:59:26,834 (39993/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-14 12:02:54,495 (39993/MainThread) pgcli.pgexecute ERROR - sql: 'select * from accountnumber', error: UndefinedTable('relation "accountnumber" does not exist\nLINE 1: select * from accountnumber\n ^\n') -2021-10-14 12:02:54,496 (39993/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "accountnumber" does not exist\nLINE 1: select * from accountnumber\n ^\n\n' -2021-10-14 12:03:43,469 (39993/MainThread) pgcli.pgexecute ERROR - sql: 'select * from statusreport', error: UndefinedTable('relation "statusreport" does not exist\nLINE 1: select * from statusreport\n ^\n') -2021-10-14 12:03:43,469 (39993/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "statusreport" does not exist\nLINE 1: select * from statusreport\n ^\n\n' -2021-10-14 12:10:31,682 (39993/MainThread) pgcli.pgexecute ERROR - sql: 'select * from freepasses', error: UndefinedTable('relation "freepasses" does not exist\nLINE 1: select * from freepasses\n ^\n') -2021-10-14 12:10:31,683 (39993/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "freepasses" does not exist\nLINE 1: select * from freepasses\n ^\n\n' -2021-10-14 13:06:41,698 (39993/MainThread) pgcli.pgexecute ERROR - sql: 'select type(payment_id) from payments_payment', error: UndefinedColumn('column "payment_id" does not exist\nLINE 1: select type(payment_id) from payments_payment\n ^\n') -2021-10-14 13:06:41,699 (39993/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "payment_id" does not exist\nLINE 1: select type(payment_id) from payments_payment\n ^\n\n' -2021-10-14 13:08:09,173 (39993/MainThread) pgcli.pgexecute ERROR - sql: "select data_type from information_schema.columns where table_name = 'payments_payment' and column_name=", error: SyntaxError("syntax error at end of input\nLINE 1: ...lumns where table_name = 'payments_payment' and column_name=\n ^\n") -2021-10-14 13:08:09,173 (39993/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at end of input\nLINE 1: ...lumns where table_name = \'payments_payment\' and column_name=\n ^\n\n' -2021-10-14 13:08:32,557 (39993/MainThread) pgcli.pgexecute ERROR - sql: "select data_type from information_schema.columns where table_name = 'payments_payment' and column_name=guid", error: UndefinedColumn('column "guid" does not exist\nLINE 1: ...s where table_name = \'payments_payment\' and column_name=guid\n ^\n') -2021-10-14 13:08:32,558 (39993/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "guid" does not exist\nLINE 1: ...s where table_name = \'payments_payment\' and column_name=guid\n ^\n\n' -2021-10-15 14:16:52,296 (56308/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-15 14:16:52,297 (56308/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-15 14:42:36,172 (58093/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-15 14:42:36,172 (58093/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-15 14:42:42,023 (58093/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n') -2021-10-15 14:42:42,025 (58093/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n' -2021-10-15 15:41:34,626 (62434/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-15 15:41:34,626 (62434/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-18 08:06:58,213 (26342/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-18 08:06:58,214 (26342/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-18 08:07:14,584 (26342/MainThread) pgcli.pgexecute ERROR - sql: 'select * from billable', error: UndefinedTable('relation "billable" does not exist\nLINE 1: select * from billable\n ^\n') -2021-10-18 08:07:14,586 (26342/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "billable" does not exist\nLINE 1: select * from billable\n ^\n\n' -2021-10-18 08:28:13,795 (26342/MainThread) pgcli.pgexecute ERROR - sql: 'vim', error: SyntaxError('syntax error at or near "vim"\nLINE 1: vim\n ^\n') -2021-10-18 08:28:13,796 (26342/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "vim"\nLINE 1: vim\n ^\n\n' -2021-10-18 08:34:58,428 (28280/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-18 08:34:58,428 (28280/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-18 09:59:17,505 (29264/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-18 09:59:17,505 (29264/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-21 14:18:27,042 (16039/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-21 14:18:27,043 (16039/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-21 14:18:35,080 (16079/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-21 14:18:35,081 (16079/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-10-22 10:46:43,063 (16039/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_certification', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-10-22 10:46:43,067 (16039/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-10-22 10:46:43,068 (16039/MainThread) pgcli.main ERROR - sql: 'select * from certifications_certification', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-10-22 10:46:43,070 (16039/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-10-22 10:47:26,004 (16039/MainThread) pgcli.pgexecute ERROR - sql: 'select id, create_date from certifications_certification', error: UndefinedColumn('column "create_date" does not exist\nLINE 1: select id, create_date from certifications_certification\n ^\nHINT: Perhaps you meant to reference the column "certifications_certification.create_dt".\n') -2021-10-22 10:47:26,004 (16039/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "create_date" does not exist\nLINE 1: select id, create_date from certifications_certification\n ^\nHINT: Perhaps you meant to reference the column "certifications_certification.create_dt".\n\n' -2021-10-25 11:23:25,756 (16039/MainThread) pgcli.pgexecute ERROR - sql: 'select * from payments_paymentmethod', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-10-25 11:23:25,757 (16039/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-10-25 11:23:25,757 (16039/MainThread) pgcli.main ERROR - sql: 'select * from payments_paymentmethod', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-10-25 11:23:25,757 (16039/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-10-25 14:53:06,796 (16039/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_billableevent', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-10-25 14:53:06,799 (16039/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-10-25 14:53:06,804 (16039/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_billableevent', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-10-25 14:53:06,805 (16039/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-10-25 15:06:01,486 (16039/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_billableevent', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-10-25 15:06:01,487 (16039/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-10-25 15:06:01,488 (16039/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_billableevent', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-10-25 15:06:01,488 (16039/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-10-25 15:33:04,452 (16039/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_billableevent', error: AdminShutdown('terminating connection due to unexpected postmaster exit\n') -2021-10-25 15:33:04,454 (16039/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.AdminShutdown: terminating connection due to unexpected postmaster exit\n\n' -2021-10-25 15:33:04,454 (16039/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_billableevent', error: AdminShutdown('terminating connection due to unexpected postmaster exit\n') -2021-10-25 15:33:04,454 (16039/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.AdminShutdown: terminating connection due to unexpected postmaster exit\n\n' -2021-10-27 14:16:39,580 (41089/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-10-27 14:16:39,581 (41089/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-04 09:04:13,924 (56826/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-04 09:04:13,925 (56826/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-04 09:08:40,013 (57918/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-04 09:08:40,014 (57918/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-04 09:43:59,321 (68587/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-04 09:43:59,321 (68587/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-05 08:15:41,679 (17711/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-05 08:15:41,679 (17711/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-05 08:30:02,587 (22322/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-05 08:30:02,588 (22322/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-05 08:50:19,292 (27905/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-05 08:50:19,292 (27905/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-05 08:50:22,993 (27905/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n') -2021-11-05 08:50:22,995 (27905/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n' -2021-11-05 08:50:33,978 (27905/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_billableevent', error: UndefinedTable('relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n') -2021-11-05 08:50:33,978 (27905/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n\n' -2021-11-05 08:57:25,641 (30104/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-05 08:57:25,642 (30104/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-08 08:55:07,081 (19738/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-08 08:55:07,081 (19738/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-08 08:55:07,090 (19738/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 594, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\nconnection to server at "localhost" (127.0.0.1), port 5432 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\n\n' -2021-11-08 08:55:12,106 (19757/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-08 08:55:12,107 (19757/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-08 08:55:16,132 (19757/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n') -2021-11-08 08:55:16,133 (19757/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n' -2021-11-08 10:19:28,729 (40329/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-08 10:19:28,731 (40329/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-08 10:19:32,527 (40329/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 590, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "admin"\n\n' -2021-11-08 10:19:34,554 (40411/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-08 10:19:34,555 (40411/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-08 10:19:40,073 (40411/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 590, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "admin"\n\n' -2021-11-08 10:21:49,509 (42696/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-08 10:21:49,509 (42696/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-08 10:21:52,395 (42696/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 590, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "admin"\n\n' -2021-11-08 10:22:21,457 (42927/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-08 10:22:21,458 (42927/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-08 10:35:19,062 (42927/MainThread) pgcli.pgexecute ERROR - sql: '\\d certification_extension_billableevent', error: QueryCanceled('canceling statement due to user request\n') -2021-11-08 10:35:19,068 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 455, in run\n response = pgspecial.execute(cur, sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgspecial/main.py", line 117, in execute\n return special_cmd.handler(cur=cur, pattern=pattern, verbose=verbose)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgspecial/dbcommands.py", line 888, in describe_table_details\n results.append(describe_one_table_details(cur, nspname, relname, oid, verbose))\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgspecial/dbcommands.py", line 1421, in describe_one_table_details\n result = cur.execute(sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.QueryCanceled: canceling statement due to user request\n\n' -2021-11-08 10:36:24,851 (42927/MainThread) pgcli.pgexecute ERROR - sql: 'drop table certification_extension_billableevent, certification_extension_scantronexam, certification_extension_scantronexamanswer, certification_extension_scantronprofile', error: UndefinedTable('table "certification_extension_scantronexam" does not exist\n') -2021-11-08 10:36:24,852 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: table "certification_extension_scantronexam" does not exist\n\n' -2021-11-08 10:37:15,501 (42927/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantronprofile', error: UndefinedTable('relation "certification_extension_scantronprofile" does not exist\nLINE 1: select * from certification_extension_scantronprofile\n ^\n') -2021-11-08 10:37:15,501 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "certification_extension_scantronprofile" does not exist\nLINE 1: select * from certification_extension_scantronprofile\n ^\n\n' -2021-11-08 10:37:43,794 (42927/MainThread) pgcli.pgexecute ERROR - sql: 'drop table certification_extension_billableevent, certification_extension_scantronexam, certification_extension_scantronexamanswer, certification_extension_scantronprofile', error: UndefinedTable('table "certification_extension_scantronexam" does not exist\n') -2021-11-08 10:37:43,795 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: table "certification_extension_scantronexam" does not exist\n\n' -2021-11-08 10:37:53,722 (42927/MainThread) pgcli.pgexecute ERROR - sql: 'drop table certification_extension_billableevent, certification_extension_scantronexamanswer, certification_extension_scantronprofile', error: UndefinedTable('table "certification_extension_scantronexamanswer" does not exist\n') -2021-11-08 10:37:53,722 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: table "certification_extension_scantronexamanswer" does not exist\n\n' -2021-11-08 10:38:19,337 (42927/MainThread) pgcli.pgexecute ERROR - sql: 'drop table certification_extension_scantronprofile', error: UndefinedTable('table "certification_extension_scantronprofile" does not exist\n') -2021-11-08 10:38:19,338 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: table "certification_extension_scantronprofile" does not exist\n\n' -2021-11-08 11:02:54,886 (55408/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-08 11:02:54,887 (55408/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-08 11:02:58,259 (55408/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n') -2021-11-08 11:02:58,259 (55408/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n' -2021-11-08 13:34:14,765 (38618/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-08 13:34:14,766 (38618/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-08 13:37:33,617 (41505/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-08 13:37:33,619 (41505/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-08 13:41:36,063 (43903/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-08 13:41:36,065 (43903/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-08 14:28:04,910 (42927/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n') -2021-11-08 14:28:04,911 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n' -2021-11-08 14:30:01,772 (42927/MainThread) pgcli.pgexecute ERROR - sql: '\\d certification_extension_billableevent', error: QueryCanceled('canceling statement due to user request\n') -2021-11-08 14:30:01,773 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 455, in run\n response = pgspecial.execute(cur, sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgspecial/main.py", line 117, in execute\n return special_cmd.handler(cur=cur, pattern=pattern, verbose=verbose)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgspecial/dbcommands.py", line 888, in describe_table_details\n results.append(describe_one_table_details(cur, nspname, relname, oid, verbose))\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgspecial/dbcommands.py", line 1421, in describe_one_table_details\n result = cur.execute(sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.QueryCanceled: canceling statement due to user request\n\n' -2021-11-08 14:35:15,722 (42927/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_billableevent', error: UndefinedTable('relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n') -2021-11-08 14:35:15,723 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n\n' -2021-11-08 14:36:18,360 (42927/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_billableevent', error: UndefinedTable('relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n') -2021-11-08 14:36:18,361 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n\n' -2021-11-08 14:37:19,184 (42927/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_billableevent', error: UndefinedTable('relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n') -2021-11-08 14:37:19,184 (42927/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n\n' -2021-11-08 14:40:22,042 (73495/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-08 14:40:22,043 (73495/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-08 14:40:22,177 (73495/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 594, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-11-08 14:40:25,283 (73522/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-08 14:40:25,283 (73522/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-08 14:40:25,297 (73522/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 594, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-11-08 14:40:43,425 (73620/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-08 14:40:43,426 (73620/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-08 14:40:43,458 (73620/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 594, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-11-08 14:47:47,131 (75927/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-08 14:47:47,132 (75927/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-08 14:49:25,874 (76759/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-08 14:49:25,876 (76759/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-08 14:52:01,930 (78065/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-08 14:52:01,932 (78065/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-09 14:59:00,893 (78065/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n') -2021-11-09 14:59:00,896 (78065/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n' -2021-11-09 14:59:03,296 (78065/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_billableevent', error: UndefinedTable('relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n') -2021-11-09 14:59:03,297 (78065/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "certification_extension_billableevent" does not exist\nLINE 1: select * from certification_extension_billableevent\n ^\n\n' -2021-11-10 13:49:16,749 (47353/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-10 13:49:16,749 (47353/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-11 09:40:09,425 (53465/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-11 09:40:09,426 (53465/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-11 09:40:13,089 (53465/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5431 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 590, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5431 failed: FATAL: password authentication failed for user "postgres"\n\n' -2021-11-11 13:07:51,795 (55685/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-11 13:07:51,796 (55685/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-11 13:09:30,669 (56662/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-11 13:09:30,670 (56662/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-11 14:30:57,885 (56662/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantronexamregistration', error: AdminShutdown('terminating connection due to unexpected postmaster exit\n') -2021-11-11 14:30:57,889 (56662/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.AdminShutdown: terminating connection due to unexpected postmaster exit\n\n' -2021-11-11 14:30:57,889 (56662/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_scantronexamregistration ', error: AdminShutdown('terminating connection due to unexpected postmaster exit\n') -2021-11-11 14:30:57,891 (56662/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.AdminShutdown: terminating connection due to unexpected postmaster exit\n\n' -2021-11-12 08:47:04,266 (49123/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-12 08:47:04,267 (49123/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-12 08:47:07,326 (49123/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 590, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "postgres"\n\n' -2021-11-12 08:47:09,736 (49190/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-12 08:47:09,736 (49190/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-12 14:22:56,875 (49190/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantronexamregistration \\', error: SyntaxError('syntax error at or near "\\"\nLINE 1: ...ct * from certification_extension_scantronexamregistration \\\n ^\n') -2021-11-12 14:22:56,879 (49190/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "\\"\nLINE 1: ...ct * from certification_extension_scantronexamregistration \\\n ^\n\n' -2021-11-12 14:40:24,839 (49190/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantronexamregistration', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-11-12 14:40:24,841 (49190/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-11-12 14:40:24,841 (49190/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_scantronexamregistration ', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-11-12 14:40:24,844 (49190/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-11-15 16:39:21,176 (33079/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-15 16:39:21,177 (33079/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-16 15:32:44,142 (15628/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-16 15:32:44,143 (15628/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-17 08:12:04,000 (4888/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-17 08:12:04,001 (4888/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-22 14:36:29,563 (67418/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-22 14:36:29,563 (67418/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-23 13:23:16,872 (68414/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-23 13:23:16,873 (68414/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-23 13:23:16,901 (68414/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 594, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\nconnection to server at "localhost" (127.0.0.1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\n\n' -2021-11-23 13:23:25,871 (68530/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-23 13:23:25,871 (68530/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-23 13:23:25,876 (68530/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 594, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\nconnection to server at "localhost" (127.0.0.1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\n\n' -2021-11-23 13:23:43,525 (68759/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-23 13:23:43,525 (68759/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-23 13:23:43,534 (68759/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 594, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 581, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 260, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 306, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\nconnection to server at "localhost" (127.0.0.1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\n\n' -2021-11-23 13:24:12,136 (69124/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-23 13:24:12,136 (69124/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-29 10:41:53,940 (82821/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-11-29 10:41:53,941 (82821/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-11-29 13:21:51,891 (82821/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantronexamregistration', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-11-29 13:21:51,896 (82821/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-11-29 13:21:51,896 (82821/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_scantronexamregistration', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-11-29 13:21:51,897 (82821/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-12-01 08:28:59,730 (82821/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantronexamregistration', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-12-01 08:28:59,734 (82821/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-12-01 08:28:59,734 (82821/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_scantronexamregistration', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-12-01 08:28:59,735 (82821/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-12-07 07:13:08,132 (82821/MainThread) pgcli.pgexecute ERROR - sql: 'truncate table certification_extension_scantronexamregistration', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-12-07 07:13:08,137 (82821/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-12-07 07:13:08,138 (82821/MainThread) pgcli.main ERROR - sql: 'truncate table certification_extension_scantronexamregistration', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-12-07 07:13:08,138 (82821/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-12-09 16:14:44,113 (82821/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantronexamlevel', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-12-09 16:14:44,118 (82821/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-12-09 16:14:44,119 (82821/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_scantronexamlevel', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-12-09 16:14:44,120 (82821/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-12-10 15:58:26,613 (82821/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certifications_requirementfield', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-12-10 15:58:26,616 (82821/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-12-10 15:58:26,616 (82821/MainThread) pgcli.main ERROR - sql: 'select * from certifications_requirementfield', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-12-10 15:58:26,617 (82821/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-12-13 16:25:30,941 (34852/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-12-13 16:25:30,942 (34852/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-12-14 13:30:07,447 (27069/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-12-14 13:30:07,448 (27069/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-12-15 17:02:38,245 (81089/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-12-15 17:02:38,246 (81089/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-12-15 17:03:42,831 (81089/MainThread) pgcli.pgexecute ERROR - sql: 'select * from requirementfieldentry', error: UndefinedTable('relation "requirementfieldentry" does not exist\nLINE 1: select * from requirementfieldentry\n ^\n') -2021-12-15 17:03:42,833 (81089/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "requirementfieldentry" does not exist\nLINE 1: select * from requirementfieldentry\n ^\n\n' -2021-12-15 17:03:58,382 (81357/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-12-15 17:03:58,383 (81357/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-12-15 17:08:43,647 (83471/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-12-15 17:08:43,660 (83471/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-12-17 11:28:46,126 (63454/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-12-17 11:28:46,127 (63454/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-12-17 11:28:51,199 (63454/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n') -2021-12-17 11:28:51,200 (63454/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n' -2021-12-17 15:09:20,582 (63454/MainThread) pgcli.pgexecute ERROR - sql: 'ps -aux', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-12-17 15:09:20,583 (63454/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-12-17 15:09:20,583 (63454/MainThread) pgcli.main ERROR - sql: 'ps -aux', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2021-12-17 15:09:20,585 (63454/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2021-12-17 15:09:20,634 (63454/MainThread) pgcli.pgexecute ERROR - sql: 'ps -aux', error: SyntaxError('syntax error at or near "ps"\nLINE 1: ps -aux\n ^\n') -2021-12-17 15:09:20,634 (63454/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ps"\nLINE 1: ps -aux\n ^\n\n' -2021-12-17 15:09:25,076 (63454/MainThread) pgcli.pgexecute ERROR - sql: 'ps -a', error: SyntaxError('syntax error at or near "ps"\nLINE 1: ps -a\n ^\n') -2021-12-17 15:09:25,076 (63454/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ps"\nLINE 1: ps -a\n ^\n\n' -2021-12-17 15:09:26,170 (63454/MainThread) pgcli.pgexecute ERROR - sql: 'ps', error: SyntaxError('syntax error at or near "ps"\nLINE 1: ps\n ^\n') -2021-12-17 15:09:26,171 (63454/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ps"\nLINE 1: ps\n ^\n\n' -2021-12-21 15:47:15,439 (77127/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-12-21 15:47:15,440 (77127/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-12-30 11:24:28,190 (68548/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2021-12-30 11:24:28,191 (68548/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2021-12-30 11:24:34,542 (68548/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n') -2021-12-30 11:24:34,544 (68548/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n' -2022-01-05 10:19:14,234 (68548/MainThread) pgcli.pgexecute ERROR - sql: 'select * from certification_extension_scantronprofile', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2022-01-05 10:19:14,238 (68548/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2022-01-05 10:19:14,238 (68548/MainThread) pgcli.main ERROR - sql: 'select * from certification_extension_scantronprofile', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2022-01-05 10:19:14,240 (68548/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 668, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/main.py", line 910, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 472, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 507, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.2.0/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 168, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2022-01-24 14:00:41,764 (72705/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-01-24 14:00:41,765 (72705/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-01-31 11:49:54,069 (6381/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-01-31 11:49:54,070 (6381/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-02-11 07:09:32,918 (49740/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-02-11 07:09:32,919 (49740/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-09 13:13:48,854 (71820/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-09 13:13:48,854 (71820/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-24 10:09:57,585 (4187/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-24 10:09:57,586 (4187/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-24 10:11:26,015 (4187/MainThread) pgcli.pgexecute ERROR - sql: 'create role sql-dash-read-only', error: SyntaxError('syntax error at or near "-"\nLINE 1: create role sql-dash-read-only\n ^\n') -2022-03-24 10:11:26,015 (4187/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "-"\nLINE 1: create role sql-dash-read-only\n ^\n\n' -2022-03-24 10:14:35,607 (4187/MainThread) pgcli.pgexecute ERROR - sql: 'GRANT SELECT(\n id, last_login, is_superuser, username, first_name,\n last_name, email, is_staff, is_active, date_joined\n) ON auth_user TO sql_dash_read_only', error: UndefinedTable('relation "auth_user" does not exist\n') -2022-03-24 10:14:35,607 (4187/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "auth_user" does not exist\n\n' -2022-03-24 10:14:41,020 (4187/MainThread) pgcli.pgexecute ERROR - sql: 'GRANT SELECT(\n id, last_login, is_superuser, username, first_name,\n last_name, email, is_staff, is_active, date_joined\n) ON auth_user TO sql_dash_read_only', error: UndefinedTable('relation "auth_user" does not exist\n') -2022-03-24 10:14:41,020 (4187/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "auth_user" does not exist\n\n' -2022-03-24 10:14:46,792 (4187/MainThread) pgcli.pgexecute ERROR - sql: 'select * from auth_user', error: UndefinedTable('relation "auth_user" does not exist\nLINE 1: select * from auth_user\n ^\n') -2022-03-24 10:14:46,792 (4187/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "auth_user" does not exist\nLINE 1: select * from auth_user\n ^\n\n' -2022-03-24 10:22:34,313 (6571/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-24 10:22:34,313 (6571/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-24 10:22:34,318 (6571/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\nconnection to server at "localhost" (127.0.0.1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\n\n' -2022-03-24 10:22:38,181 (6574/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-24 10:22:38,181 (6574/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-24 10:22:38,185 (6574/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\nconnection to server at "localhost" (127.0.0.1), port 5431 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\n\n' -2022-03-24 10:22:59,223 (6582/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-24 10:22:59,224 (6582/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-24 10:48:14,456 (8362/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-24 10:48:14,456 (8362/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-24 11:45:58,658 (8362/MainThread) pgcli.pgexecute ERROR - sql: 'select * from auth_user', error: AdminShutdown('terminating connection due to unexpected postmaster exit\n') -2022-03-24 11:45:58,660 (8362/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.AdminShutdown: terminating connection due to unexpected postmaster exit\n\n' -2022-03-24 11:45:58,660 (8362/MainThread) pgcli.main ERROR - sql: 'select * from auth_user', error: AdminShutdown('terminating connection due to unexpected postmaster exit\n') -2022-03-24 11:45:58,661 (8362/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 748, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 1007, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.AdminShutdown: terminating connection due to unexpected postmaster exit\n\n' -2022-03-24 11:46:44,630 (11895/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-24 11:46:44,631 (11895/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-24 11:46:47,868 (11895/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "sql_dash_read_only"\n\n' -2022-03-24 11:56:21,417 (12566/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-24 11:56:21,418 (12566/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-24 11:56:26,258 (12566/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: role "sql_dash_read_only" is not permitted to log in\n\n' -2022-03-24 11:56:29,193 (12570/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-24 11:56:29,194 (12570/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-24 13:04:26,705 (13035/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-24 13:04:26,705 (13035/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-24 13:04:36,749 (13035/MainThread) pgcli.pgexecute ERROR - sql: 'select * from auth_user', error: InsufficientPrivilege('permission denied for table auth_user\n') -2022-03-24 13:04:36,750 (13035/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.InsufficientPrivilege: permission denied for table auth_user\n\n' -2022-03-24 13:04:49,053 (13040/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-24 13:04:49,054 (13040/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-24 13:04:52,720 (13040/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n') -2022-03-24 13:04:52,721 (13040/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n' -2022-03-24 14:14:27,434 (13040/MainThread) pgcli.pgexecute ERROR - sql: 'select * from information_schema.enabled_roles', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2022-03-24 14:14:27,434 (13040/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2022-03-24 14:14:27,435 (13040/MainThread) pgcli.main ERROR - sql: 'select * from information_schema.enabled_roles', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2022-03-24 14:14:27,435 (13040/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 748, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 1007, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2022-03-24 14:24:17,423 (15980/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-24 14:24:17,424 (15980/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-24 14:24:23,082 (15980/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "sql_dash_read_only"\n\n' -2022-03-24 14:25:31,298 (16055/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-24 14:25:31,299 (16055/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-24 14:30:53,474 (16557/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-24 14:30:53,475 (16557/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-24 14:31:00,312 (16557/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "sql_dash_read_only"\n\n' -2022-03-24 14:31:05,054 (16567/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-24 14:31:05,054 (16567/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-24 14:42:33,791 (18382/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-24 14:42:33,793 (18382/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-30 15:13:19,575 (60634/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-30 15:13:19,576 (60634/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-30 15:13:24,839 (60634/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n' -2022-03-30 15:17:28,270 (62392/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-30 15:17:28,271 (62392/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-30 15:19:29,643 (63258/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-30 15:19:29,644 (63258/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-30 15:19:32,519 (63258/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n' -2022-03-30 15:19:51,397 (63440/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-30 15:19:51,397 (63440/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-30 15:19:53,887 (63440/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n' -2022-03-30 15:19:55,727 (63495/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-30 15:19:55,727 (63495/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-30 15:19:57,036 (63495/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n' -2022-03-30 15:23:43,841 (65093/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-30 15:23:43,842 (65093/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-30 15:23:45,391 (65093/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n' -2022-03-30 15:24:09,098 (65300/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-30 15:24:09,099 (65300/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-30 15:24:10,842 (65300/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n' -2022-03-30 15:28:34,348 (67343/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-30 15:28:34,349 (67343/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-30 15:28:37,648 (67343/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n' -2022-03-30 15:35:56,248 (70428/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-30 15:35:56,249 (70428/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-30 15:36:01,366 (70428/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n' -2022-03-30 15:36:16,486 (70596/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-03-30 15:36:16,487 (70596/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-03-30 15:36:17,841 (70596/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n' -2022-04-05 13:07:11,436 (25940/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-05 13:07:11,437 (25940/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-05 13:07:11,457 (25940/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\nconnection to server at "localhost" (127.0.0.1), port 5432 failed: Connection refused\n\tIs the server running on that host and accepting TCP/IP connections?\n\n' -2022-04-05 13:07:55,050 (26136/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-05 13:07:55,050 (26136/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-05 13:07:55,163 (26136/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2022-04-05 14:54:20,493 (52223/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-05 14:54:20,493 (52223/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-05 14:54:41,820 (52304/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-05 14:54:41,820 (52304/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-05 14:54:41,878 (52304/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: could not translate host name "pgsql" to address: nodename nor servname provided, or not known\n\n' -2022-04-05 14:54:49,787 (52396/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-05 14:54:49,787 (52396/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-05 14:54:49,840 (52396/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: could not translate host name "postgresql" to address: nodename nor servname provided, or not known\n\n' -2022-04-05 15:33:23,657 (55856/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-05 15:33:23,658 (55856/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-05 15:33:23,665 (55856/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: could not translate host name "postgresql" to address: nodename nor servname provided, or not known\n\n' -2022-04-05 15:33:29,698 (55876/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-05 15:33:29,699 (55876/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-05 15:33:46,534 (55897/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-05 15:33:46,535 (55897/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-05 15:36:35,422 (55951/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-05 15:36:35,422 (55951/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-05 15:40:12,210 (56074/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-05 15:40:12,210 (56074/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-05 15:40:13,138 (56074/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "this"\n\n' -2022-04-05 15:42:38,636 (56135/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-05 15:42:38,636 (56135/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-05 15:42:40,188 (56135/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 664, in connect\n passwd = click.prompt(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/click/termui.py", line 166, in prompt\n value = prompt_func(prompt)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/click/termui.py", line 149, in prompt_func\n raise Abort() from None\nclick.exceptions.Abort\n' -2022-04-05 15:42:42,194 (56156/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-05 15:42:42,194 (56156/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-05 15:42:42,996 (56156/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "this"\n\n' -2022-04-05 15:42:47,005 (56176/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-05 15:42:47,006 (56176/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-05 15:42:49,408 (56176/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "localhost" (::1), port 5432 failed: FATAL: password authentication failed for user "postgres"\n\n' -2022-04-05 15:42:53,119 (56195/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-05 15:42:53,119 (56195/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-05 15:56:37,228 (56781/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-05 15:56:37,229 (56781/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-05 16:11:31,900 (57287/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-05 16:11:31,901 (57287/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-05 16:41:56,400 (59595/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-05 16:41:56,401 (59595/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-06 10:27:09,242 (71051/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-06 10:27:09,242 (71051/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-06 10:27:15,537 (71051/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n') -2022-04-06 10:27:15,539 (71051/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n' -2022-04-06 14:16:41,182 (82821/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-06 14:16:41,182 (82821/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-06 14:16:44,387 (82821/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n' -2022-04-06 14:16:46,657 (82842/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-06 14:16:46,658 (82842/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-06 14:51:10,164 (82842/MainThread) pgcli.pgexecute ERROR - sql: 'select name, refund_verbiage from orders', error: UndefinedColumn('column "name" does not exist\nLINE 1: select name, refund_verbiage from orders\n ^\n') -2022-04-06 14:51:10,166 (82842/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "name" does not exist\nLINE 1: select name, refund_verbiage from orders\n ^\n\n' -2022-04-06 14:51:14,168 (82842/MainThread) pgcli.pgexecute ERROR - sql: 'select name, refund_verbiage from tenants', error: UndefinedColumn('column "refund_verbiage" does not exist\nLINE 1: select name, refund_verbiage from tenants\n ^\nHINT: Perhaps you meant to reference the column "tenants.refund_verbage".\n') -2022-04-06 14:51:14,168 (82842/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "refund_verbiage" does not exist\nLINE 1: select name, refund_verbiage from tenants\n ^\nHINT: Perhaps you meant to reference the column "tenants.refund_verbage".\n\n' -2022-04-06 14:53:50,717 (92733/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-06 14:53:50,718 (92733/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-06 14:53:50,753 (92733/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: could not translate host name "postgres-uat.cluster-cq0jzbj6xbcq.us-east-1.rds.amazonaws.com/api-uat" to address: nodename nor servname provided, or not known\n\n' -2022-04-06 14:54:13,771 (92805/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-06 14:54:13,771 (92805/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-06 14:54:16,153 (92805/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-uat.cluster-cq0jzbj6xbcq.us-east-1.rds.amazonaws.com" (10.254.188.8), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-uat.cluster-cq0jzbj6xbcq.us-east-1.rds.amazonaws.com" (10.254.188.8), port 5432 failed: FATAL: password authentication failed for user "api-uat"\nconnection to server at "postgres-uat.cluster-cq0jzbj6xbcq.us-east-1.rds.amazonaws.com" (10.254.188.8), port 5432 failed: FATAL: password authentication failed for user "api-uat"\n\n' -2022-04-06 14:54:36,493 (92877/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-06 14:54:36,493 (92877/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-06 15:13:15,963 (97712/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-06 15:13:15,964 (97712/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-08 10:23:39,332 (32368/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-08 10:23:39,332 (32368/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-08 10:33:40,308 (32822/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-08 10:33:40,309 (32822/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-08 10:33:53,748 (32822/MainThread) pgcli.pgexecute ERROR - sql: 'select table_name from information_schema.tables \\copy', error: SyntaxError('syntax error at or near "\\"\nLINE 1: select table_name from information_schema.tables \\copy\n ^\n') -2022-04-08 10:33:53,750 (32822/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "\\"\nLINE 1: select table_name from information_schema.tables \\copy\n ^\n\n' -2022-04-08 10:34:14,793 (32822/MainThread) pgcli.main ERROR - sql: '\\copy select table_name from information_schema.tables', error: Exception('Enclose filename in single quotes') -2022-04-08 10:34:14,795 (32822/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 748, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 1007, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 463, in run\n response = pgspecial.execute(cur, sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgspecial/main.py", line 117, in execute\n return special_cmd.handler(cur=cur, pattern=pattern, verbose=verbose)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgspecial/iocommands.py", line 172, in copy\n raise Exception("Enclose filename in single quotes")\nException: Enclose filename in single quotes\n' -2022-04-08 10:34:58,235 (32822/MainThread) pgcli.main ERROR - sql: '\\e select table_name from information_schema.tables', error: RuntimeError('Error reading file: select.') -2022-04-08 10:34:58,236 (32822/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 836, in run_cli\n text = self.handle_editor_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 722, in handle_editor_command\n raise RuntimeError(message)\nRuntimeError: Error reading file: select.\n' -2022-04-08 10:35:41,256 (32822/MainThread) pgcli.main ERROR - sql: '\\ef select table_name from information_schema.tables', error: RuntimeError('Function select does not exist.') -2022-04-08 10:35:41,257 (32822/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 576, in function_definition\n cur.execute(sql, (spec,))\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedFunction: function "select" does not exist\nLINE 3: (SELECT \'select\'::pg_catalog.regproc::pg_catalog...\n ^\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 836, in run_cli\n text = self.handle_editor_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 718, in handle_editor_command\n query = self.pgexecute.function_definition(spec)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 580, in function_definition\n raise RuntimeError(f"Function {spec} does not exist.")\nRuntimeError: Function select does not exist.\n' -2022-04-08 10:35:56,982 (32822/MainThread) pgcli.main ERROR - sql: '\\e select table_name from information_schema.tables', error: RuntimeError('Error reading file: select.') -2022-04-08 10:35:56,983 (32822/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 836, in run_cli\n text = self.handle_editor_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 722, in handle_editor_command\n raise RuntimeError(message)\nRuntimeError: Error reading file: select.\n' -2022-04-08 10:37:42,839 (32822/MainThread) pgcli.pgexecute ERROR - sql: 'select table_name from information_schema.tables \\o ~/tendenci_tables.txt', error: SyntaxError('syntax error at or near "\\"\nLINE 1: select table_name from information_schema.tables \\o ~/tenden...\n ^\n') -2022-04-08 10:37:42,840 (32822/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "\\"\nLINE 1: select table_name from information_schema.tables \\o ~/tenden...\n ^\n\n' -2022-04-08 10:41:12,825 (33066/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-08 10:41:12,825 (33066/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-08 10:56:29,695 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'grant select * on certification_certifications to this', error: SyntaxError('syntax error at or near "*"\nLINE 1: grant select * on certification_certifications to this\n ^\n') -2022-04-08 10:56:29,697 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "*"\nLINE 1: grant select * on certification_certifications to this\n ^\n\n' -2022-04-08 10:56:36,816 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'grant select on certification_certifications to this', error: UndefinedTable('relation "certification_certifications" does not exist\n') -2022-04-08 10:56:36,816 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "certification_certifications" does not exist\n\n' -2022-04-08 11:11:57,679 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'select 1 from pg_roles where rolname="None"', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2022-04-08 11:11:57,680 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2022-04-08 11:11:57,680 (33066/MainThread) pgcli.main ERROR - sql: 'select 1 from pg_roles where rolname="None"', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2022-04-08 11:11:57,682 (33066/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 748, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 1007, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2022-04-08 11:11:57,819 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'select 1 from pg_roles where rolname="None"', error: UndefinedColumn('column "None" does not exist\nLINE 1: select 1 from pg_roles where rolname="None"\n ^\n') -2022-04-08 11:11:57,819 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 748, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 1007, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "None" does not exist\nLINE 1: select 1 from pg_roles where rolname="None"\n ^\n\n' -2022-04-08 11:12:00,823 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'select 1 from pg_roles where rolname=None', error: UndefinedColumn('column "none" does not exist\nLINE 1: select 1 from pg_roles where rolname=None\n ^\n') -2022-04-08 11:12:00,823 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "none" does not exist\nLINE 1: select 1 from pg_roles where rolname=None\n ^\n\n' -2022-04-08 11:12:34,301 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'select 1 from pg_roles where rolname="none"', error: UndefinedColumn('column "none" does not exist\nLINE 1: select 1 from pg_roles where rolname="none"\n ^\n') -2022-04-08 11:12:34,302 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "none" does not exist\nLINE 1: select 1 from pg_roles where rolname="none"\n ^\n\n' -2022-04-08 11:12:38,215 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'select 1 from pg_roles where rolname="this"', error: UndefinedColumn('column "this" does not exist\nLINE 1: select 1 from pg_roles where rolname="this"\n ^\n') -2022-04-08 11:12:38,216 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "this" does not exist\nLINE 1: select 1 from pg_roles where rolname="this"\n ^\n\n' -2022-04-08 11:13:14,258 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'select * from pg_roles where rolname="this"', error: UndefinedColumn('column "this" does not exist\nLINE 1: select * from pg_roles where rolname="this"\n ^\n') -2022-04-08 11:13:14,258 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "this" does not exist\nLINE 1: select * from pg_roles where rolname="this"\n ^\n\n' -2022-04-08 11:13:42,725 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'select 1 from pg_roles where rolname="this"', error: UndefinedColumn('column "this" does not exist\nLINE 1: select 1 from pg_roles where rolname="this"\n ^\n') -2022-04-08 11:13:42,725 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "this" does not exist\nLINE 1: select 1 from pg_roles where rolname="this"\n ^\n\n' -2022-04-08 11:14:09,120 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'select 1 from pg_roles where rolname=None', error: UndefinedColumn('column "none" does not exist\nLINE 1: select 1 from pg_roles where rolname=None\n ^\n') -2022-04-08 11:14:09,121 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "none" does not exist\nLINE 1: select 1 from pg_roles where rolname=None\n ^\n\n' -2022-04-08 11:14:11,234 (33066/MainThread) pgcli.pgexecute ERROR - sql: 'select 1 from pg_roles where rolname=none', error: UndefinedColumn('column "none" does not exist\nLINE 1: select 1 from pg_roles where rolname=none\n ^\n') -2022-04-08 11:14:11,234 (33066/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "none" does not exist\nLINE 1: select 1 from pg_roles where rolname=none\n ^\n\n' -2022-04-12 10:51:11,155 (2315/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-12 10:51:11,156 (2315/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-12 10:51:27,258 (2315/MainThread) pgcli.pgexecute ERROR - sql: 'select * information_schema.tables', error: SyntaxError('syntax error at or near "information_schema"\nLINE 1: select * information_schema.tables\n ^\n') -2022-04-12 10:51:27,259 (2315/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "information_schema"\nLINE 1: select * information_schema.tables\n ^\n\n' -2022-04-12 10:51:29,981 (2315/MainThread) pgcli.pgexecute ERROR - sql: 'select * information_schema.table', error: SyntaxError('syntax error at or near "information_schema"\nLINE 1: select * information_schema.table\n ^\n') -2022-04-12 10:51:29,982 (2315/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "information_schema"\nLINE 1: select * information_schema.table\n ^\n\n' -2022-04-12 10:51:43,146 (2315/MainThread) pgcli.pgexecute ERROR - sql: 'select * information_schema', error: SyntaxError('syntax error at or near "information_schema"\nLINE 1: select * information_schema\n ^\n') -2022-04-12 10:51:43,146 (2315/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "information_schema"\nLINE 1: select * information_schema\n ^\n\n' -2022-04-12 10:55:39,774 (2315/MainThread) pgcli.pgexecute ERROR - sql: 'select * from V_payment_details', error: UndefinedTable('relation "v_payment_details" does not exist\nLINE 1: select * from V_payment_details\n ^\n') -2022-04-12 10:55:39,775 (2315/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "v_payment_details" does not exist\nLINE 1: select * from V_payment_details\n ^\n\n' -2022-04-13 14:47:52,287 (50411/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-13 14:47:52,288 (50411/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-15 13:31:14,397 (24981/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-15 13:31:14,398 (24981/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-15 13:32:12,604 (25292/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-15 13:32:12,605 (25292/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-15 13:37:34,831 (27071/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-15 13:37:34,832 (27071/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-21 14:40:39,742 (34321/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-21 14:40:39,742 (34321/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-21 14:41:21,552 (34321/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n' -2022-04-21 14:41:45,779 (34813/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-21 14:41:45,779 (34813/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-21 14:41:54,559 (34813/MainThread) pgcli.pgexecute ERROR - sql: 'select * from tenant', error: UndefinedTable('relation "tenant" does not exist\nLINE 1: select * from tenant\n ^\n') -2022-04-21 14:41:54,561 (34813/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "tenant" does not exist\nLINE 1: select * from tenant\n ^\n\n' -2022-04-21 17:05:35,245 (27370/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-21 17:05:35,246 (27370/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-21 17:05:49,068 (27370/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-test.cluster-cp1xmzmrla9x.us-east-1.rds.amazonaws.com" (172.31.253.74), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-test.cluster-cp1xmzmrla9x.us-east-1.rds.amazonaws.com" (172.31.253.74), port 5432 failed: FATAL: password authentication failed for user "auroraadmin"\nconnection to server at "postgres-test.cluster-cp1xmzmrla9x.us-east-1.rds.amazonaws.com" (172.31.253.74), port 5432 failed: FATAL: password authentication failed for user "auroraadmin"\n\n' -2022-04-21 17:05:52,734 (27585/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-21 17:05:52,735 (27585/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-21 17:06:02,439 (27585/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-test.cluster-cp1xmzmrla9x.us-east-1.rds.amazonaws.com" (172.31.253.74), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-test.cluster-cp1xmzmrla9x.us-east-1.rds.amazonaws.com" (172.31.253.74), port 5432 failed: FATAL: password authentication failed for user "auroraadmin"\nconnection to server at "postgres-test.cluster-cp1xmzmrla9x.us-east-1.rds.amazonaws.com" (172.31.253.74), port 5432 failed: FATAL: password authentication failed for user "auroraadmin"\n\n' -2022-04-21 17:09:29,367 (30205/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-21 17:09:29,368 (30205/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-21 17:09:58,302 (30205/MainThread) pgcli.pgexecute ERROR - sql: 'create extension dblink', error: InsufficientPrivilege('permission denied to create extension "dblink"\nHINT: Must be superuser to create this extension.\n') -2022-04-21 17:09:58,303 (30205/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.InsufficientPrivilege: permission denied to create extension "dblink"\nHINT: Must be superuser to create this extension.\n\n' -2022-04-21 17:12:10,982 (32154/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-21 17:12:10,983 (32154/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-22 11:24:54,396 (71059/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-22 11:24:54,396 (71059/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-22 11:25:31,880 (71059/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n' -2022-04-22 11:25:40,244 (71618/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-22 11:25:40,245 (71618/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-22 14:07:47,215 (71618/MainThread) pgcli.pgexecute ERROR - sql: 'select top 1 from tenants', error: SyntaxError('syntax error at or near "1"\nLINE 1: select top 1 from tenants\n ^\n') -2022-04-22 14:07:47,218 (71618/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "1"\nLINE 1: select top 1 from tenants\n ^\n\n' -2022-04-22 14:09:29,648 (71618/MainThread) pgcli.pgexecute ERROR - sql: 'update tenants set reporting_groups = { "group_1", "group_2" } where id=2', error: SyntaxError('syntax error at or near "{"\nLINE 1: update tenants set reporting_groups = { "group_1", "group_2"...\n ^\n') -2022-04-22 14:09:29,649 (71618/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "{"\nLINE 1: update tenants set reporting_groups = { "group_1", "group_2"...\n ^\n\n' -2022-04-22 14:35:03,896 (71618/MainThread) pgcli.pgexecute ERROR - sql: "select column from information_schema.tables where table_name like 'courses'", error: SyntaxError('syntax error at or near "column"\nLINE 1: select column from information_schema.tables where table_nam...\n ^\n') -2022-04-22 14:35:03,897 (71618/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "column"\nLINE 1: select column from information_schema.tables where table_nam...\n ^\n\n' -2022-04-22 14:35:07,675 (71618/MainThread) pgcli.pgexecute ERROR - sql: "select column_name from information_schema.tables where table_name like 'courses'", error: UndefinedColumn('column "column_name" does not exist\nLINE 1: select column_name from information_schema.tables where tabl...\n ^\n') -2022-04-22 14:35:07,675 (71618/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "column_name" does not exist\nLINE 1: select column_name from information_schema.tables where tabl...\n ^\n\n' -2022-04-22 16:09:26,666 (7589/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-22 16:09:26,667 (7589/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-22 16:16:36,779 (7589/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses where reporting_group', error: DatatypeMismatch('argument of WHERE must be type boolean, not type character varying\nLINE 1: select * from courses where reporting_group\n ^\n') -2022-04-22 16:16:36,781 (7589/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.DatatypeMismatch: argument of WHERE must be type boolean, not type character varying\nLINE 1: select * from courses where reporting_group\n ^\n\n' -2022-04-22 16:23:27,087 (7589/MainThread) pgcli.pgexecute ERROR - sql: 'select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, \' \', e2.mailing_address_2, \' \',e2.city, \' \',e2.state, \' \', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa\n join courses c\n on qa.moodle_course_id = c.moodle_course_id\n join enrolments e\n on qa.enrolment_id = e.id\n join enrolees e2\n on e.enrolee_id = e2.id\n join orders o\n on o.id = e.order_id\n where qa.batch_date = %s\n and qa.tenant_id = %s\n and c.tenant_id = %s\n and qa.status != %s\n and c.reporting_group = \'group_1\'', error: SyntaxError('syntax error at or near "%"\nLINE 10: where qa.batch_date = %s\n ^\n') -2022-04-22 16:23:27,087 (7589/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "%"\nLINE 10: where qa.batch_date = %s\n ^\n\n' -2022-04-26 16:07:28,155 (1837/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-26 16:07:28,156 (1837/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-26 16:07:29,713 (1837/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n' -2022-04-26 16:07:49,687 (1918/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-26 16:07:49,687 (1918/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-27 08:41:16,632 (26618/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-27 08:41:16,632 (26618/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-27 11:07:27,267 (26618/MainThread) pgcli.pgexecute ERROR - sql: 'select course, id from courses', error: UndefinedColumn('column "course" does not exist\nLINE 1: select course, id from courses\n ^\n') -2022-04-27 11:07:27,268 (26618/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "course" does not exist\nLINE 1: select course, id from courses\n ^\n\n' -2022-04-27 11:17:46,772 (26618/MainThread) pgcli.pgexecute ERROR - sql: "delete from courses where course_name='big course'", error: UndefinedColumn('column "course_name" does not exist\nLINE 1: delete from courses where course_name=\'big course\'\n ^\n') -2022-04-27 11:17:46,773 (26618/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "course_name" does not exist\nLINE 1: delete from courses where course_name=\'big course\'\n ^\n\n' -2022-04-28 11:01:48,641 (2588/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-04-28 11:01:48,641 (2588/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-04-28 14:10:10,599 (2588/MainThread) pgcli.pgexecute ERROR - sql: "update tenants set reporting_groups = ['test'] where name = 'dev'", error: SyntaxError('syntax error at or near "["\nLINE 1: update tenants set reporting_groups = [\'test\'] where name = ...\n ^\n') -2022-04-28 14:10:10,601 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "["\nLINE 1: update tenants set reporting_groups = [\'test\'] where name = ...\n ^\n\n' -2022-04-28 15:09:04,121 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, \' \', e2.mailing_address_2, \' \',e2.city, \' \',e2.state, \' \', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa\n join courses c\n on qa.moodle_course_id = c.moodle_course_id\n join enrolments e\n on qa.enrolment_id = e.id\n join enrolees e2\n on e.enrolee_id = e2.id\n join orders o\n on o.id = e.order_id where', error: SyntaxError('syntax error at end of input\nLINE 9: on o.id = e.order_id where\n ^\n') -2022-04-28 15:09:04,122 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at end of input\nLINE 9: on o.id = e.order_id where\n ^\n\n' -2022-04-28 15:09:18,769 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, \' \', e2.mailing_address_2, \' \',e2.city, \' \',e2.state, \' \', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa\n join courses c\n on qa.moodle_course_id = c.moodle_course_id\n join enrolments e\n on qa.enrolment_id = e.id\n join enrolees e2\n on e.enrolee_id = e2.id\n join orders o\n on o.id = e.order_id where', error: SyntaxError('syntax error at end of input\nLINE 9: on o.id = e.order_id where\n ^\n') -2022-04-28 15:09:18,769 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at end of input\nLINE 9: on o.id = e.order_id where\n ^\n\n' -2022-04-28 15:09:42,096 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, \' \', e2.mailing_address_2, \' \',e2.city, \' \',e2.state, \' \', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa\n join courses c\n on qa.moodle_course_id = c.moodle_course_id\n join enrolments e\n on qa.enrolment_id = e.id\n join enrolees e2\n on e.enrolee_id = e2.id\n join orders o\n on o.id = e.order_id where', error: SyntaxError('syntax error at end of input\nLINE 9: on o.id = e.order_id where\n ^\n') -2022-04-28 15:09:42,096 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at end of input\nLINE 9: on o.id = e.order_id where\n ^\n\n' -2022-04-28 15:10:13,567 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, \' \', e2.mailing_address_2, \' \',e2.city, \' \',e2.state, \' \', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa\n join courses c\n on qa.moodle_course_id = c.moodle_course_id\n join enrolments e\n on qa.enrolment_id = e.id\n join enrolees e2\n on e.enrolee_id = e2.id\n join orders o\n on o.id = e.order_id where qa.attempt_date = \'2022-04-22\'', error: InvalidTextRepresentation('invalid input syntax for integer: "2022-04-22"\nLINE 9: ... on o.id = e.order_id where qa.attempt_date = \'2022-04-2...\n ^\n') -2022-04-28 15:10:13,568 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.InvalidTextRepresentation: invalid input syntax for integer: "2022-04-22"\nLINE 9: ... on o.id = e.order_id where qa.attempt_date = \'2022-04-2...\n ^\n\n' -2022-04-28 15:10:24,845 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, \' \', e2.mailing_address_2, \' \',e2.city, \' \',e2.state, \' \', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa\n join courses c\n on qa.moodle_course_id = c.moodle_course_id\n join enrolments e\n on qa.enrolment_id = e.id\n join enrolees e2\n on e.enrolee_id = e2.id\n join orders o\n on o.id = e.order_id where qa.attempt_date = \'2022-04-22\'', error: InvalidTextRepresentation('invalid input syntax for integer: "2022-04-22"\nLINE 9: ... on o.id = e.order_id where qa.attempt_date = \'2022-04-2...\n ^\n') -2022-04-28 15:10:24,846 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.InvalidTextRepresentation: invalid input syntax for integer: "2022-04-22"\nLINE 9: ... on o.id = e.order_id where qa.attempt_date = \'2022-04-2...\n ^\n\n' -2022-04-28 15:10:40,918 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, \' \', e2.mailing_address_2, \' \',e2.city, \' \',e2.state, \' \', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa\n join courses c\n on qa.moodle_course_id = c.moodle_course_id\n join enrolments e\n on qa.enrolment_id = e.id\n join enrolees e2\n on e.enrolee_id = e2.id\n join orders o\n on o.id = e.order_id where qa.attempt_date = date(\'2022-04-22\')', error: UndefinedFunction("operator does not exist: integer = date\nLINE 9: ... on o.id = e.order_id where qa.attempt_date = date('20...\n ^\nHINT: No operator matches the given name and argument type(s). You might need to add explicit type casts.\n") -2022-04-28 15:10:40,918 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedFunction: operator does not exist: integer = date\nLINE 9: ... on o.id = e.order_id where qa.attempt_date = date(\'20...\n ^\nHINT: No operator matches the given name and argument type(s). You might need to add explicit type casts.\n\n' -2022-04-29 14:13:29,777 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select * from tenants', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n') -2022-04-29 14:13:29,778 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n' -2022-04-29 14:13:30,966 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select * from tenant', error: OperationalError('SSL SYSCALL error: EOF detected\n') -2022-04-29 14:13:30,966 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: SSL SYSCALL error: EOF detected\n\n' -2022-04-29 14:13:30,966 (2588/MainThread) pgcli.main ERROR - sql: 'select * from tenant', error: OperationalError('SSL SYSCALL error: EOF detected\n') -2022-04-29 14:13:30,968 (2588/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 748, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 1007, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: SSL SYSCALL error: EOF detected\n\n' -2022-04-29 14:13:34,627 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select * from tenant', error: UndefinedTable('relation "tenant" does not exist\nLINE 1: select * from tenant\n ^\n') -2022-04-29 14:13:34,627 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 748, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 1007, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: SSL SYSCALL error: EOF detected\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "tenant" does not exist\nLINE 1: select * from tenant\n ^\n\n' -2022-04-29 14:13:36,603 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select * from tenant', error: UndefinedTable('relation "tenant" does not exist\nLINE 1: select * from tenant\n ^\n') -2022-04-29 14:13:36,603 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "tenant" does not exist\nLINE 1: select * from tenant\n ^\n\n' -2022-04-29 14:13:51,654 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select base_url from tenants', error: UndefinedColumn('column "base_url" does not exist\nLINE 1: select base_url from tenants\n ^\n') -2022-04-29 14:13:51,654 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "base_url" does not exist\nLINE 1: select base_url from tenants\n ^\n\n' -2022-04-29 14:14:02,552 (2588/MainThread) pgcli.pgexecute ERROR - sql: 'select tenant_url from tenants', error: UndefinedColumn('column "tenant_url" does not exist\nLINE 1: select tenant_url from tenants\n ^\n') -2022-04-29 14:14:02,553 (2588/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "tenant_url" does not exist\nLINE 1: select tenant_url from tenants\n ^\n\n' -2022-05-03 09:46:57,410 (2706/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-03 09:46:57,411 (2706/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-03 15:11:10,254 (4677/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-03 15:11:10,255 (4677/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-03 15:15:01,048 (4677/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n') -2022-05-03 15:15:01,050 (4677/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n' -2022-05-03 16:57:21,582 (4677/MainThread) pgcli.pgexecute ERROR - sql: "delete from courses where name='big course'\\", error: SyntaxError('syntax error at or near "\\"\nLINE 1: delete from courses where name=\'big course\'\\\n ^\n') -2022-05-03 16:57:21,583 (4677/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "\\"\nLINE 1: delete from courses where name=\'big course\'\\\n ^\n\n' -2022-05-04 14:26:03,419 (92146/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-04 14:26:03,419 (92146/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-04 14:28:33,458 (92146/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: Operation timed out\n\tIs the server running on that host and accepting TCP/IP connections?\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: Operation timed out\n\tIs the server running on that host and accepting TCP/IP connections?\n\n' -2022-05-04 14:29:00,762 (92176/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-04 14:29:00,763 (92176/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-04 14:31:30,815 (92176/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: Operation timed out\n\tIs the server running on that host and accepting TCP/IP connections?\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: Operation timed out\n\tIs the server running on that host and accepting TCP/IP connections?\n\n' -2022-05-04 16:06:18,184 (97891/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-04 16:06:18,184 (97891/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-05 13:17:44,175 (97891/MainThread) pgcli.pgexecute ERROR - sql: "delete from courses where name='big course'", error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n') -2022-05-05 13:17:44,178 (97891/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n' -2022-05-05 13:17:51,420 (56662/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-05 13:17:51,420 (56662/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-09 14:14:04,919 (32623/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-09 14:14:04,920 (32623/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-09 14:14:19,544 (32623/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses', error: UndefinedTable('relation "courses" does not exist\nLINE 1: select * from courses\n ^\n') -2022-05-09 14:14:19,545 (32623/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "courses" does not exist\nLINE 1: select * from courses\n ^\n\n' -2022-05-09 14:43:22,969 (56662/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n') -2022-05-09 14:43:22,970 (56662/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n' -2022-05-09 14:43:26,767 (40416/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-09 14:43:26,767 (40416/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-12 07:50:04,801 (99382/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-12 07:50:04,801 (99382/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-12 07:50:06,178 (99382/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\n\n' -2022-05-12 07:50:25,166 (99445/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-12 07:50:25,166 (99445/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-12 07:51:34,438 (99445/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses', error: UndefinedTable('relation "courses" does not exist\nLINE 1: select * from courses\n ^\n') -2022-05-12 07:51:34,438 (99445/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "courses" does not exist\nLINE 1: select * from courses\n ^\n\n' -2022-05-12 07:51:50,602 (99718/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-12 07:51:50,602 (99718/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-12 07:52:17,196 (99718/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\n\n' -2022-05-12 07:52:24,878 (99855/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-12 07:52:24,878 (99855/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-12 07:52:46,018 (99855/MainThread) pgcli.pgexecute ERROR - sql: 'select id from tenants where name like "dev"', error: UndefinedColumn('column "dev" does not exist\nLINE 1: select id from tenants where name like "dev"\n ^\n') -2022-05-12 07:52:46,019 (99855/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "dev" does not exist\nLINE 1: select id from tenants where name like "dev"\n ^\n\n' -2022-05-12 07:55:08,082 (99855/MainThread) pgcli.pgexecute ERROR - sql: '# select id, name, description, customer_price_cents, everblue_price_cents, course_status, moodle_course_id, tenant, customer_provided_identifier from course where tenant_id = 1', error: SyntaxError('syntax error at or near "#"\nLINE 1: # select id, name, description, customer_price_cents, everbl...\n ^\n') -2022-05-12 07:55:08,082 (99855/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "#"\nLINE 1: # select id, name, description, customer_price_cents, everbl...\n ^\n\n' -2022-05-12 07:55:15,623 (99855/MainThread) pgcli.pgexecute ERROR - sql: 'select id, name, description, customer_price_cents, everblue_price_cents, course_status, moodle_course_id, tenant, customer_provided_identifier from course where tenant_id = 1', error: UndefinedTable('relation "course" does not exist\nLINE 1: ...rse_id, tenant, customer_provided_identifier from course whe...\n ^\n') -2022-05-12 07:55:15,623 (99855/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "course" does not exist\nLINE 1: ...rse_id, tenant, customer_provided_identifier from course whe...\n ^\n\n' -2022-05-12 07:55:28,482 (99855/MainThread) pgcli.pgexecute ERROR - sql: 'select id, name, description, customer_price_cents, everblue_price_cents, course_status, moodle_course_id, tenant, customer_provided_identifier from courses where tenant_id = 1', error: UndefinedColumn('column "tenant" does not exist\nLINE 1: ...lue_price_cents, course_status, moodle_course_id, tenant, cu...\n ^\nHINT: Perhaps you meant to reference the column "courses.tenant_id".\n') -2022-05-12 07:55:28,482 (99855/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "tenant" does not exist\nLINE 1: ...lue_price_cents, course_status, moodle_course_id, tenant, cu...\n ^\nHINT: Perhaps you meant to reference the column "courses.tenant_id".\n\n' -2022-05-16 13:22:06,673 (48827/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-16 13:22:06,674 (48827/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-16 13:23:03,722 (49236/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-16 13:23:03,723 (49236/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-16 13:25:57,675 (49773/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-16 13:25:57,675 (49773/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-16 13:26:02,505 (49773/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\n\n' -2022-05-16 13:27:07,697 (50016/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-16 13:27:07,697 (50016/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-16 13:30:42,417 (50826/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-16 13:30:42,418 (50826/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-16 13:31:30,925 (51065/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-16 13:31:30,925 (51065/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-16 13:31:31,954 (51065/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\n\n' -2022-05-16 13:31:34,972 (51115/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-16 13:31:34,972 (51115/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-16 13:36:13,291 (51115/MainThread) pgcli.pgexecute ERROR - sql: 'select c.name, c.id, cc.timecompleted from mdl_course c join mdl_course_completions cc on cc.id = c.id', error: UndefinedColumn('column c.name does not exist\nLINE 1: select c.name, c.id, cc.timecompleted from mdl_course c join...\n ^\n') -2022-05-16 13:36:13,292 (51115/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column c.name does not exist\nLINE 1: select c.name, c.id, cc.timecompleted from mdl_course c join...\n ^\n\n' -2022-05-16 13:37:53,994 (51115/MainThread) pgcli.pgexecute ERROR - sql: 'select c.fullname, c.id, date(cc.timeenrolled) from mdl_course c join mdl_course_completions cc on cc.id = c.id', error: UndefinedFunction('function date(bigint) does not exist\nLINE 1: select c.fullname, c.id, date(cc.timeenrolled) from mdl_cour...\n ^\nHINT: No function matches the given name and argument types. You might need to add explicit type casts.\n') -2022-05-16 13:37:53,994 (51115/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedFunction: function date(bigint) does not exist\nLINE 1: select c.fullname, c.id, date(cc.timeenrolled) from mdl_cour...\n ^\nHINT: No function matches the given name and argument types. You might need to add explicit type casts.\n\n' -2022-05-17 11:23:22,155 (49236/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n') -2022-05-17 11:23:22,159 (49236/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n' -2022-05-17 11:23:54,076 (49236/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses', error: OperationalError('another command is already in progress\n') -2022-05-17 11:23:54,076 (49236/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: another command is already in progress\n\n' -2022-05-17 11:23:55,325 (49236/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses', error: OperationalError('another command is already in progress\n') -2022-05-17 11:23:55,325 (49236/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: another command is already in progress\n\n' -2022-05-17 11:24:02,013 (1287/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-17 11:24:02,014 (1287/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-17 11:24:05,443 (1287/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n' -2022-05-17 11:24:08,300 (1326/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-17 11:24:08,301 (1326/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-17 15:26:23,305 (1326/MainThread) pgcli.pgexecute ERROR - sql: "update courses set email_passed=False where name='dwd'", error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n') -2022-05-17 15:26:23,308 (1326/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n' -2022-05-17 15:26:28,661 (1326/MainThread) pgcli.pgexecute ERROR - sql: "update courses set email_passed=False where name='dwd'", error: OperationalError('SSL SYSCALL error: EOF detected\n') -2022-05-17 15:26:28,661 (1326/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: SSL SYSCALL error: EOF detected\n\n' -2022-05-17 15:26:28,661 (1326/MainThread) pgcli.main ERROR - sql: "update courses set email_passed=False where name='dwd'", error: OperationalError('SSL SYSCALL error: EOF detected\n') -2022-05-17 15:26:28,662 (1326/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 748, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 1007, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: SSL SYSCALL error: EOF detected\n\n' -2022-05-18 08:31:32,750 (1326/MainThread) pgcli.pgexecute ERROR - sql: 'update courses set email_passed=True where id=36', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\nserver closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\nserver closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2022-05-18 08:31:32,753 (1326/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\nserver closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\nserver closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2022-05-18 08:31:32,753 (1326/MainThread) pgcli.main ERROR - sql: 'update courses set email_passed=True where id=36', error: OperationalError('server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\nserver closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\nserver closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n') -2022-05-18 08:31:32,753 (1326/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 748, in execute_command\n output, query = self._evaluate_command(text)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 1007, in _evaluate_command\n for title, cur, headers, status, sql, success, is_special in res:\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: server closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\nserver closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\nserver closed the connection unexpectedly\n\tThis probably means the server terminated abnormally\n\tbefore or while processing the request.\n\n' -2022-05-18 08:35:43,784 (51115/MainThread) pgcli.pgexecute ERROR - sql: 'select * from mdl_course', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n') -2022-05-18 08:35:43,784 (51115/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n' -2022-05-18 08:35:48,842 (10212/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-18 08:35:48,843 (10212/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-18 08:37:32,125 (10212/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses', error: UndefinedTable('relation "courses" does not exist\nLINE 1: select * from courses\n ^\n') -2022-05-18 08:37:32,126 (10212/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "courses" does not exist\nLINE 1: select * from courses\n ^\n\n' -2022-05-18 08:37:59,799 (10631/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-18 08:37:59,799 (10631/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-18 08:38:11,274 (10631/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n' -2022-05-18 08:38:13,478 (10692/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-18 08:38:13,478 (10692/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-18 08:40:46,308 (10692/MainThread) pgcli.pgexecute ERROR - sql: 'select * from mdl_course', error: UndefinedTable('relation "mdl_course" does not exist\nLINE 1: select * from mdl_course\n ^\n') -2022-05-18 08:40:46,309 (10692/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "mdl_course" does not exist\nLINE 1: select * from mdl_course\n ^\n\n' -2022-05-18 08:40:51,609 (11198/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-18 08:40:51,610 (11198/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-18 08:40:56,320 (11198/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\n\n' -2022-05-18 08:41:11,227 (11277/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-18 08:41:11,227 (11277/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-19 13:39:47,694 (1326/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n') -2022-05-19 13:39:47,697 (1326/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n' -2022-05-19 13:39:52,927 (50352/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-19 13:39:52,927 (50352/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-19 13:40:17,338 (50352/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "api-dev"\n\n' -2022-05-19 13:40:18,719 (50470/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-19 13:40:18,719 (50470/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-19 14:25:40,357 (50470/MainThread) pgcli.pgexecute ERROR - sql: 'select * from mdl_course', error: UndefinedTable('relation "mdl_course" does not exist\nLINE 1: select * from mdl_course\n ^\n') -2022-05-19 14:25:40,359 (50470/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "mdl_course" does not exist\nLINE 1: select * from mdl_course\n ^\n\n' -2022-05-19 14:25:45,873 (50470/MainThread) pgcli.pgexecute ERROR - sql: 'select * from course', error: UndefinedTable('relation "course" does not exist\nLINE 1: select * from course\n ^\n') -2022-05-19 14:25:45,873 (50470/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "course" does not exist\nLINE 1: select * from course\n ^\n\n' -2022-05-20 13:20:39,803 (17284/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-20 13:20:39,804 (17284/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-20 13:21:37,290 (11277/MainThread) pgcli.pgexecute ERROR - sql: 'select * from mdl_course', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n') -2022-05-20 13:21:37,292 (11277/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n' -2022-05-20 13:23:31,729 (17284/MainThread) pgcli.pgexecute ERROR - sql: '/d courses', error: SyntaxError('syntax error at or near "/"\nLINE 1: /d courses\n ^\n') -2022-05-20 13:23:31,730 (17284/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "/"\nLINE 1: /d courses\n ^\n\n' -2022-05-20 16:30:44,833 (17284/MainThread) pgcli.pgexecute ERROR - sql: 'delete from courses where id = 698', error: ForeignKeyViolation('update or delete on table "courses" violates foreign key constraint "enrolments_course_id_fkey" on table "enrolments"\nDETAIL: Key (id)=(698) is still referenced from table "enrolments".\n') -2022-05-20 16:30:44,835 (17284/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.ForeignKeyViolation: update or delete on table "courses" violates foreign key constraint "enrolments_course_id_fkey" on table "enrolments"\nDETAIL: Key (id)=(698) is still referenced from table "enrolments".\n\n' -2022-05-23 10:12:51,327 (17284/MainThread) pgcli.pgexecute ERROR - sql: 'select * from courses', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n') -2022-05-23 10:12:51,329 (17284/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n' -2022-05-23 10:12:55,533 (97962/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-23 10:12:55,533 (97962/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-23 10:39:48,202 (97962/MainThread) pgcli.pgexecute ERROR - sql: 'ls', error: SyntaxError('syntax error at or near "ls"\nLINE 1: ls\n ^\n') -2022-05-23 10:39:48,204 (97962/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "ls"\nLINE 1: ls\n ^\n\n' -2022-05-25 08:13:49,656 (56324/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-25 08:13:49,657 (56324/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-25 08:14:38,955 (56324/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.151.204), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\n\n' -2022-05-25 08:14:41,533 (56491/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-25 08:14:41,534 (56491/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-25 08:14:42,799 (56491/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: fe_sendauth: no password supplied\n\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 670, in connect\n pgexecute = PGExecute(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\nconnection to server at "postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com" (10.252.233.165), port 5432 failed: FATAL: password authentication failed for user "dev-dev"\n\n' -2022-05-25 08:14:51,040 (56522/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-25 08:14:51,040 (56522/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-25 08:14:54,810 (56522/MainThread) pgcli.pgexecute ERROR - sql: 'clear', error: SyntaxError('syntax error at or near "clear"\nLINE 1: clear\n ^\n') -2022-05-25 08:14:54,811 (56522/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "clear"\nLINE 1: clear\n ^\n\n' -2022-05-25 10:42:06,677 (56522/MainThread) pgcli.pgexecute ERROR - sql: 'select tenant from courses', error: UndefinedColumn('column "tenant" does not exist\nLINE 1: select tenant from courses\n ^\nHINT: Perhaps you meant to reference the column "courses.tenant_id".\n') -2022-05-25 10:42:06,677 (56522/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "tenant" does not exist\nLINE 1: select tenant from courses\n ^\nHINT: Perhaps you meant to reference the column "courses.tenant_id".\n\n' -2022-05-25 13:52:32,995 (56522/MainThread) pgcli.pgexecute ERROR - sql: 'insert into tenant_default_settings(tenant_id, customer_price_cents_email_passed) values(1, 199, True)', error: UndefinedColumn('column "customer_price_cents_email_passed" of relation "tenant_default_settings" does not exist\nLINE 1: insert into tenant_default_settings(tenant_id, customer_pric...\n ^\n') -2022-05-25 13:52:32,996 (56522/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedColumn: column "customer_price_cents_email_passed" of relation "tenant_default_settings" does not exist\nLINE 1: insert into tenant_default_settings(tenant_id, customer_pric...\n ^\n\n' -2022-05-26 08:56:14,126 (56522/MainThread) pgcli.pgexecute ERROR - sql: 'delete from tenan_default_settings where id=1', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n') -2022-05-26 08:56:14,126 (56522/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n' -2022-05-26 08:56:18,213 (37517/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-26 08:56:18,213 (37517/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-26 08:56:41,789 (37517/MainThread) pgcli.pgexecute ERROR - sql: 'delete from tenan_default_settings where id=1', error: UndefinedTable('relation "tenan_default_settings" does not exist\nLINE 1: delete from tenan_default_settings where id=1\n ^\n') -2022-05-26 08:56:41,791 (37517/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.UndefinedTable: relation "tenan_default_settings" does not exist\nLINE 1: delete from tenan_default_settings where id=1\n ^\n\n' -2022-05-26 15:38:08,818 (37517/MainThread) pgcli.pgexecute ERROR - sql: 'delete * from tenant_default_settings', error: SyntaxError('syntax error at or near "*"\nLINE 1: delete * from tenant_default_settings\n ^\n') -2022-05-26 15:38:08,818 (37517/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.SyntaxError: syntax error at or near "*"\nLINE 1: delete * from tenant_default_settings\n ^\n\n' -2022-05-26 15:38:20,397 (37517/MainThread) pgcli.pgexecute ERROR - sql: 'delete from courses where moodle_course_id = 5', error: ForeignKeyViolation('update or delete on table "courses" violates foreign key constraint "enrolments_course_id_fkey" on table "enrolments"\nDETAIL: Key (id)=(6) is still referenced from table "enrolments".\n') -2022-05-26 15:38:20,398 (37517/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.ForeignKeyViolation: update or delete on table "courses" violates foreign key constraint "enrolments_course_id_fkey" on table "enrolments"\nDETAIL: Key (id)=(6) is still referenced from table "enrolments".\n\n' -2022-05-26 15:38:25,477 (37517/MainThread) pgcli.pgexecute ERROR - sql: 'delete from courses where moodle_course_id = 6', error: ForeignKeyViolation('update or delete on table "courses" violates foreign key constraint "enrolments_course_id_fkey" on table "enrolments"\nDETAIL: Key (id)=(670) is still referenced from table "enrolments".\n') -2022-05-26 15:38:25,477 (37517/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.errors.ForeignKeyViolation: update or delete on table "courses" violates foreign key constraint "enrolments_course_id_fkey" on table "enrolments"\nDETAIL: Key (id)=(670) is still referenced from table "enrolments".\n\n' -2022-05-27 09:06:02,323 (37517/MainThread) pgcli.pgexecute ERROR - sql: '\\d tenant_default_settings', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n') -2022-05-27 09:06:02,333 (37517/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 463, in run\n response = pgspecial.execute(cur, sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgspecial/main.py", line 117, in execute\n return special_cmd.handler(cur=cur, pattern=pattern, verbose=verbose)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgspecial/dbcommands.py", line 896, in describe_table_details\n cur.execute(sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n' -2022-05-27 09:08:51,502 (37517/MainThread) pgcli.pgexecute ERROR - sql: 'select * from tenant_default_settings', error: OperationalError('another command is already in progress\n') -2022-05-27 09:08:51,502 (37517/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: another command is already in progress\n\n' -2022-05-27 09:08:56,670 (45056/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-27 09:08:56,671 (45056/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-27 12:41:33,213 (7995/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-27 12:41:33,213 (7995/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-27 12:41:33,259 (7995/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: could not translate host name "postgresql://api-dev:tM54ynHFY2TsQeBW@postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com/api-dev" to address: nodename nor servname provided, or not known\n\n' -2022-05-27 12:41:44,057 (8050/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-27 12:41:44,058 (8050/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-27 12:41:44,115 (8050/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: could not translate host name "postgresql://api-dev:tM54ynHFY2TsQeBW@postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com/" to address: nodename nor servname provided, or not known\n\n' -2022-05-27 12:42:16,022 (8071/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-27 12:42:16,023 (8071/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-27 12:42:41,271 (8127/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-27 12:42:41,271 (8127/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-27 12:52:31,277 (9141/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-27 12:52:31,278 (9141/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-27 12:54:33,601 (9920/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-27 12:54:33,602 (9920/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-27 12:54:33,605 (9920/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 674, in connect\n raise e\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 661, in connect\n pgexecute = PGExecute(database, user, passwd, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 267, in __init__\n self.connect(database, user, password, host, port, dsn, **kwargs)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 313, in connect\n conn = psycopg2.connect(**conn_params)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/psycopg2/__init__.py", line 122, in connect\n conn = _connect(dsn, connection_factory=connection_factory, **kwasync)\npsycopg2.OperationalError: connection to server on socket "/tmp/.s.PGSQL.5432" failed: No such file or directory\n\tIs the server running locally and accepting connections on that socket?\n\n' -2022-05-27 13:00:14,425 (11518/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-27 13:00:14,425 (11518/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-27 13:04:05,629 (12417/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-27 13:04:05,629 (12417/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-27 13:28:45,218 (26312/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-27 13:28:45,220 (26312/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-27 13:28:45,343 (26404/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-27 13:28:45,343 (26404/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-27 13:29:05,162 (26404/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 664, in connect\n passwd = click.prompt(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/click/termui.py", line 166, in prompt\n value = prompt_func(prompt)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/click/termui.py", line 149, in prompt_func\n raise Abort() from None\nclick.exceptions.Abort\n' -2022-05-27 13:29:56,020 (27777/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-27 13:29:56,021 (27777/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-27 13:29:56,063 (27788/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-27 13:29:56,064 (27788/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-27 13:30:43,029 (27788/MainThread) pgcli.main ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/main.py", line 664, in connect\n passwd = click.prompt(\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/click/termui.py", line 166, in prompt\n value = prompt_func(prompt)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/click/termui.py", line 149, in prompt_func\n raise Abort() from None\nclick.exceptions.Abort\n' -2022-05-27 13:31:36,390 (29196/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-27 13:31:36,390 (29196/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-27 13:31:36,480 (29271/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-27 13:31:36,481 (29271/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-27 14:07:01,098 (36616/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-27 14:07:01,099 (36616/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-27 14:07:01,440 (36666/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-27 14:07:01,440 (36666/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-27 15:12:45,563 (54578/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-27 15:12:45,563 (54578/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-27 15:12:45,984 (54655/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-27 15:12:45,984 (54655/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-31 07:27:59,189 (54578/MainThread) pgcli.pgexecute ERROR - sql: 'select * from tenant_default_settings', error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n') -2022-05-31 07:27:59,193 (54578/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n' -2022-05-31 07:28:03,038 (73365/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-31 07:28:03,038 (73365/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-05-31 07:28:05,731 (73396/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-05-31 07:28:05,732 (73396/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-01 07:43:47,215 (73364/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-01 07:43:47,215 (73412/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-01 07:43:47,216 (73364/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-01 07:43:47,216 (73412/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-01 07:46:45,714 (75670/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-01 07:46:45,715 (75670/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-01 07:46:46,160 (75747/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-01 07:46:46,160 (75747/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-03 14:31:22,418 (90402/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-03 14:31:22,418 (90477/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-03 14:31:22,419 (90402/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-03 14:31:22,419 (90477/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-03 14:36:12,744 (92449/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-03 14:36:12,744 (92449/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-03 14:36:12,762 (92462/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-03 14:36:12,763 (92462/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-03 14:40:38,255 (94423/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-03 14:40:38,255 (94416/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-03 14:40:38,256 (94423/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-03 14:40:38,256 (94416/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-03 14:48:10,485 (98056/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-03 14:48:10,485 (98087/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-03 14:48:10,485 (98056/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-03 14:48:10,485 (98087/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-03 14:49:31,325 (99851/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-03 14:49:31,325 (99851/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-03 14:49:31,536 (99911/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-03 14:49:31,537 (99911/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-03 14:57:46,548 (5070/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-03 14:57:46,548 (5070/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-03 14:57:46,717 (5154/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-03 14:57:46,718 (5154/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-03 14:59:55,471 (7375/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-03 14:59:55,471 (7375/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-03 14:59:55,607 (7458/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-03 14:59:55,608 (7458/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-05 19:42:20,712 (96995/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-05 19:42:20,713 (96995/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-05 19:42:20,725 (97070/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-05 19:42:20,725 (97070/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-06 14:32:43,758 (96995/MainThread) pgcli.pgexecute ERROR - sql: "delete from courses where name='Question workflow'", error: OperationalError('could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n') -2022-06-06 14:32:43,762 (96995/MainThread) pgcli.pgexecute ERROR - traceback: 'Traceback (most recent call last):\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 480, in run\n yield self.execute_normal_sql(sql) + (sql, True, False)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 515, in execute_normal_sql\n cur.execute(split_sql)\n File "/usr/local/Cellar/pgcli/3.4.1/libexec/lib/python3.9/site-packages/pgcli/pgexecute.py", line 175, in execute\n psycopg2.extensions.cursor.execute(self, sql, args)\npsycopg2.OperationalError: could not receive data from server: Operation timed out\nSSL SYSCALL error: Operation timed out\n\n' -2022-06-06 14:32:48,060 (42811/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-06 14:32:48,060 (42811/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-06 15:15:29,165 (53842/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-06 15:15:29,165 (53842/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'"). -2022-06-07 09:08:01,588 (94207/MainThread) pgcli.main INFO - No default pager found in environment. Using os default pager -2022-06-07 09:08:01,589 (94207/MainThread) pgcli.main WARNING - import keyring failed: ModuleNotFoundError("No module named 'keyring'").