.config directory

This commit is contained in:
Ian Keane 2022-06-07 13:17:40 -04:00
parent 66dffa8efe
commit d9d326eaa1
38 changed files with 5655 additions and 304 deletions

43
.config/.jira/.config.yml Normal file
View file

@ -0,0 +1,43 @@
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

View file

1
.config/base16-shell Submodule

@ -0,0 +1 @@
Subproject commit ce8e1e540367ea83cc3e01eec7b2a11783b3f9e1

View file

@ -0,0 +1,3 @@
#Auto-Complete function for AWSume
complete --command awsume --arguments '(awsume-autocomplete)'

View file

@ -0,0 +1,7 @@
complete --command fisher --exclusive --long help --description "Print help"
complete --command fisher --exclusive --long version --description "Print version"
complete --command fisher --exclusive --condition __fish_use_subcommand --arguments install --description "Install plugins"
complete --command fisher --exclusive --condition __fish_use_subcommand --arguments update --description "Update installed plugins"
complete --command fisher --exclusive --condition __fish_use_subcommand --arguments remove --description "Remove installed plugins"
complete --command fisher --exclusive --condition __fish_use_subcommand --arguments list --description "List installed plugins matching regex"
complete --command fisher --exclusive --condition "__fish_seen_subcommand_from update remove" --arguments "(fisher list)"

View file

@ -0,0 +1,19 @@
complete --command nvm --exclusive --long version --description "Print version"
complete --command nvm --exclusive --long help --description "Print help"
complete --command nvm --exclusive --condition __fish_use_subcommand --arguments install --description "Download and activate the specified Node version"
complete --command nvm --exclusive --condition __fish_use_subcommand --arguments use --description "Activate a version in the current shell"
complete --command nvm --exclusive --condition __fish_use_subcommand --arguments list --description "List installed versions"
complete --command nvm --exclusive --condition __fish_use_subcommand --arguments list-remote --description "List versions available to install matching optional regex"
complete --command nvm --exclusive --condition __fish_use_subcommand --arguments current --description "Print the currently-active version"
complete --command nvm --exclusive --condition "__fish_seen_subcommand_from install" --arguments "(
test -e $nvm_data && string split ' ' <$nvm_data/.index
)"
complete --command nvm --exclusive --condition "__fish_seen_subcommand_from use" --arguments "(_nvm_list | string split ' ')"
complete --command nvm --exclusive --condition __fish_use_subcommand --arguments uninstall --description "Uninstall a version"
complete --command nvm --exclusive --condition "__fish_seen_subcommand_from uninstall" --arguments "(
_nvm_list | string split ' ' | string replace system ''
)"
complete --command nvm --exclusive --condition "__fish_seen_subcommand_from use uninstall" --arguments "(
set --query nvm_default_version && echo default
)"

View file

@ -0,0 +1,189 @@
# copy this into ~/.config/fish/completions/ to enable autocomplete for the watson time tracker
#
function __fish_watson_needs_sub -d "provides a list of sub commands"
set cmd (commandline -opc)
if [ (count $cmd) -eq 1 -a $cmd[1] = 'watson' ]
return 0
end
return 1
end
function __fish_watson_using_command -d "determine if watson is using the passed command"
set cmd (commandline -opc)
if [ (count $cmd) -ge 2 -a $cmd[1] = 'watson' ]
if [ $argv[1] = $cmd[2] ]
return 0
end
return 1
end
return 1
end
function __fish_watson_get_projects -d "return a list of projects"
command watson projects
end
function __fish_watson_get_tags -d "return a list of tags"
command watson tags
end
function __fish_watson_has_project -d "determine if watson is using a passed command and if it has a project"
set cmd (commandline -opc)
if [ (count $cmd) -gt 2 -a $cmd[1] = 'watson' ]
if [ $argv[1] = $cmd[2] ]
if contains "$cmd[3]" (__fish_watson_get_projects)
return 0
end
end
end
return 1
end
function __fish_watson_has_from -d "determine if watson is using a passed command and if it is using from"
set cmd (commandline -opc)
if [ (count $cmd) -gt 2 -a $cmd[1] = 'watson' ]
if [ $argv[1] = $cmd[2] ]
if contains -- "$cmd[3]" -f --from
return 0
end
end
end
return 1
end
function __fish_watson_get_frames -d "return a list of frames" #TODO, use watson logs to get more info
command watson frames
end
function __fish_watson_needs_project -d "check if we need a project"
set cmd (commandline -opc)
if [ (count $cmd) -ge 2 -a $cmd[1] = 'watson' ]
if [ $argv[1] = $cmd[2] ]
for i in $cmd
if contains $i (__fish_watson_get_projects)
return 1 # return 1 because we alredy have a project
end
end
return 0 # we are using $argv as our command and the command does not contain any projects
end
end
return 1
end
# if a backend.url is set, use it in the command description
if [ -e ~/.config/watson/config ]
set url_string (command watson config backend.url 2> /dev/null)
if test -n "$url_string"
set url $url_string
end
else
set url "a remote Crick server"
end
# ungrouped
complete -f -c watson -n '__fish_watson_needs_sub' -a cancel -d "Cancel the last start command"
complete -f -c watson -n '__fish_watson_needs_sub' -a frames -d "Display the list of all frame IDs"
complete -f -c watson -n '__fish_watson_needs_sub' -a help -d "Display help information"
complete -f -c watson -n '__fish_watson_needs_sub' -a projects -d "Display the list of projects"
complete -f -c watson -n '__fish_watson_needs_sub' -a sync -d "sync your work with $url"
complete -f -c watson -n '__fish_watson_needs_sub' -a tags -d "Display the list of tags"
# add
complete -f -c watson -n '__fish_watson_needs_sub' -a add -d "Add time for project with tag(s) that was not tracked live"
complete -f -c watson -n '__fish_watson_using_command add' -s f -l from -d "Start date for add"
complete -f -c watson -n '__fish_watson_has_from add' -s t -l to -d "end date for add"
complete -f -c watson -n '__fish_watson_using_command add' -s c -l confirm-new-project -d "Confirm addition of new project"
complete -f -c watson -n '__fish_watson_using_command add' -s b -l confirm-new-tag -d "Confirm addition of new tag"
# aggregate
complete -f -c watson -n '__fish_watson_needs_sub' -a aggregate -d "Display a report of the time spent on each project aggregated by day"
complete -f -c watson -n '__fish_watson_using_command aggregate' -s c -l current -d "include the running frame"
complete -f -c watson -n '__fish_watson_using_command aggregate' -s C -l no-current -d "exclude the running frame (default)"
complete -f -c watson -n '__fish_watson_using_command aggregate' -s f -l from -d "Start date for aggregate"
complete -f -c watson -n '__fish_watson_has_from aggregate' -s t -l to -d "end date for aggregate"
complete -f -c watson -n '__fish_watson_using_command aggregate' -s p -l project -d "restrict to project" -a "(__fish_watson_get_projects)"
complete -f -c watson -n '__fish_watson_using_command aggregate' -s T -l tag -d "restrict to tag" -a "(__fish_watson_get_tags)"
complete -f -c watson -n '__fish_watson_using_command aggregate' -s j -l json -d "output json"
complete -f -c watson -n '__fish_watson_using_command aggregate' -s s -l csv -d "output csv"
complete -f -c watson -n '__fish_watson_using_command aggregate' -s g -l pager -d "view through pager"
complete -f -c watson -n '__fish_watson_using_command aggregate' -s G -l no-pager -d "don't vew through pager"
# config
complete -f -c watson -n '__fish_watson_needs_sub' -a config -d "Get and set configuration options"
complete -f -c watson -n '__fish_watson_using_command config' -s e -l edit -d "Edit the config with an editor"
# edit
complete -f -c watson -n '__fish_watson_needs_sub' -a edit -d "Edit a frame"
complete -f -c watson -n '__fish_watson_using_command edit' -a "(__fish_watson_get_frames)"
# log
complete -f -c watson -n '__fish_watson_needs_sub' -a log -d "Display sessions during the given timespan"
complete -f -c watson -n '__fish_watson_using_command log' -s c -l current -d "include the running frame"
complete -f -c watson -n '__fish_watson_using_command log' -s C -l no-current -d "exclude the running frame (default)"
complete -f -c watson -n '__fish_watson_using_command log' -s f -l from -d "Start date for log"
complete -f -c watson -n '__fish_watson_has_from log' -s t -l to -d "end date for log"
complete -f -c watson -n '__fish_watson_using_command log' -s y -l year -d "show the last year"
complete -f -c watson -n '__fish_watson_using_command log' -s m -l month -d "show the last month"
complete -f -c watson -n '__fish_watson_using_command log' -s l -l luna -d "show the last lunar cycle"
complete -f -c watson -n '__fish_watson_using_command log' -s w -l week -d "show week-to-day"
complete -f -c watson -n '__fish_watson_using_command log' -s d -l day -d "show today"
complete -f -c watson -n '__fish_watson_using_command log' -s a -l all -d "show all"
complete -f -c watson -n '__fish_watson_using_command log' -s p -l project -d "restrict to project" -a "(__fish_watson_get_projects)"
complete -f -c watson -n '__fish_watson_using_command log' -s T -l tag -d "restrict to tag" -a "(__fish_watson_get_tags)"
complete -f -c watson -n '__fish_watson_using_command log' -s j -l json -d "output json"
complete -f -c watson -n '__fish_watson_using_command log' -s s -l csv -d "output csv"
complete -f -c watson -n '__fish_watson_using_command log' -s g -l pager -d "view through pager"
complete -f -c watson -n '__fish_watson_using_command log' -s G -l no-pager -d "don't vew through pager"
# merge
complete -f -c watson -n '__fish_watson_needs_sub' -a merge -d "merge existing frames with conflicting ones"
complete -f -c watson -n '__fish_watson_using_command merge' -s f -l force -d "silently merge"
# remove
complete -f -c watson -n '__fish_watson_needs_sub' -a remove -d "Remove a frame"
complete -f -c watson -n '__fish_watson_using_command remove' -a "(__fish_watson_get_frames)"
complete -f -c watson -n '__fish_watson_using_command remove' -s f -l force -d "silently remove"
# rename
complete -f -c watson -n '__fish_watson_needs_sub' -a rename -d "Rename a project or tag"
complete -f -c watson -n '__fish_watson_using_command rename' -a "(__fish_watson_get_projects) (__fish_watson_get_tags)"
# report
complete -f -c watson -n '__fish_watson_needs_sub' -a report -d "Display a report of time spent"
complete -f -c watson -n '__fish_watson_using_command report' -s c -l current -d "include the running frame"
complete -f -c watson -n '__fish_watson_using_command report' -s C -l no-current -d "exclude the running frame (default)"
complete -f -c watson -n '__fish_watson_using_command report' -s f -l from -d "Start date for report"
complete -f -c watson -n '__fish_watson_has_from report' -s t -l to -d "end date for report"
complete -f -c watson -n '__fish_watson_using_command report' -s y -l year -d "show the last year"
complete -f -c watson -n '__fish_watson_using_command report' -s m -l month -d "show the last month"
complete -f -c watson -n '__fish_watson_using_command report' -s l -l luna -d "show the last lunar cycle"
complete -f -c watson -n '__fish_watson_using_command report' -s w -l week -d "show week-to-day"
complete -f -c watson -n '__fish_watson_using_command report' -s d -l day -d "show today"
complete -f -c watson -n '__fish_watson_using_command report' -s a -l all -d "show all"
complete -f -c watson -n '__fish_watson_using_command report' -s p -l project -d "restrict to project" -a "(__fish_watson_get_projects)"
complete -f -c watson -n '__fish_watson_using_command report' -s T -l tag -d "restrict to tag" -a "(__fish_watson_get_tags)"
complete -f -c watson -n '__fish_watson_using_command report' -s j -l json -d "output json"
complete -f -c watson -n '__fish_watson_using_command report' -s s -l csv -d "output csv"
complete -f -c watson -n '__fish_watson_using_command report' -s g -l pager -d "view through pager"
complete -f -c watson -n '__fish_watson_using_command report' -s G -l no-pager -d "don't vew through pager"
# restart
complete -f -c watson -n '__fish_watson_needs_sub' -a restart -d "Restart monitoring time for a stopped project"
complete -f -c watson -n '__fish_watson_using_command restart' -s s -l stop -d "stop running project"
complete -f -c watson -n '__fish_watson_using_command restart' -s S -l no-stop -d "do not stop running project"
complete -f -c watson -n '__fish_watson_using_command restart' -a "(__fish_watson_get_frames)"
# start
complete -f -c watson -n '__fish_watson_needs_sub' -a start -d "Start monitoring time for a project"
complete -f -c watson -n '__fish_watson_needs_project start' -a "(__fish_watson_get_projects)"
complete -f -c watson -n '__fish_watson_has_project start' -a "+(__fish_watson_get_tags)"
# status
complete -f -c watson -n '__fish_watson_needs_sub' -a status -d "Display when the current project was started and time spent"
complete -f -c watson -n '__fish_watson_using_command status' -s p -l project -d "only show project"
complete -f -c watson -n '__fish_watson_using_command status' -s t -l tags -d "only show tags"
complete -f -c watson -n '__fish_watson_using_command status' -s e -l elapsed -d "only show elapsed time"
# stop
complete -f -c watson -n '__fish_watson_needs_sub' -a stop -d "Stop monitoring time for the current project"
complete -f -c watson -n '__fish_watson_using_command stop' -l at -d "Stop frame at this time (YYYY-MM-DDT)?HH:MM(:SS)?"

View file

@ -0,0 +1,28 @@
function _nvm_install --on-event nvm_install
set --query XDG_DATA_HOME || set --local XDG_DATA_HOME ~/.local/share
set --universal nvm_data $XDG_DATA_HOME/nvm
set --query nvm_mirror || set --universal nvm_mirror https://nodejs.org/dist
test ! -d $nvm_data && command mkdir -p $nvm_data
echo "Downloading the Node distribution index..." 2>/dev/null
_nvm_index_update $nvm_mirror $nvm_data/.index
end
function _nvm_update --on-event nvm_update
set --query XDG_DATA_HOME || set --local XDG_DATA_HOME ~/.local/share
set --universal nvm_data $XDG_DATA_HOME/nvm
set --query nvm_mirror || set --universal nvm_mirror https://nodejs.org/dist
end
function _nvm_uninstall --on-event nvm_uninstall
command rm -rf $nvm_data
set --query nvm_current_version && _nvm_version_deactivate $nvm_current_version
set --names | string replace --filter --regex -- "^nvm" "set --erase nvm" | source
functions --erase (functions --all | string match --entire --regex -- "^_nvm_")
end
if status is-interactive && set --query nvm_default_version && ! set --query nvm_current_version
nvm use $nvm_default_version >/dev/null
end

View file

@ -0,0 +1,7 @@
# Path to Oh My Fish install.
set -q XDG_DATA_HOME
and set -gx OMF_PATH "$XDG_DATA_HOME/omf"
or set -gx OMF_PATH "$HOME/.local/share/omf"
# Load Oh My Fish configuration.
source $OMF_PATH/init.fish

8
.config/fish/config.fish Normal file
View file

@ -0,0 +1,8 @@
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"
end

View file

@ -0,0 +1,2 @@
jorgebucaran/fisher
jorgebucaran/nvm.fish

View file

@ -0,0 +1,39 @@
# 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 JIRA_API_TOKEN:GeyxpLU08UNJaFgMX5qZ5A78
SETUVAR __fish_initialized:3100
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 nvm_data:/Users/iankeane/\x2elocal/share/nvm
SETUVAR nvm_mirror:https\x3a//nodejs\x2eorg/dist

View file

@ -0,0 +1,16 @@
function _nvm_index_update --argument-names mirror index
if not command curl --location --silent $mirror/index.tab >$index.temp
command rm -f $index.temp
echo "nvm: Can't update index, host unavailable: \"$mirror\"" >&2
return 1
end
command awk -v OFS=\t '
/v0.9.12/ { exit } # Unsupported
NR > 1 {
print $1 (NR == 2 ? " latest" : $10 != "-" ? " lts/" tolower($10) : "")
}
' $index.temp >$index
command rm -f $index.temp
end

View file

@ -0,0 +1,11 @@
function _nvm_list
set --local versions $nvm_data/*
set --query versions[1] &&
string match --entire --regex -- (string match --regex -- "v\d.+" $versions |
string escape --style=regex |
string join "|"
) <$nvm_data/.index
command --all node |
string match --quiet --invert --regex -- "^$nvm_data" && echo system
end

View file

@ -0,0 +1,4 @@
function _nvm_version_activate --argument-names v
set --global --export nvm_current_version $v
set --prepend PATH $nvm_data/$v/bin
end

View file

@ -0,0 +1,5 @@
function _nvm_version_deactivate --argument-names v
test "$nvm_current_version" = "$v" && set --erase nvm_current_version
set --local index (contains --index -- $nvm_data/$v/bin $PATH) &&
set --erase PATH[$index]
end

View file

@ -0,0 +1,3 @@
#AWSume alias to source the AWSume script
alias awsume="source (which awsume.fish)"

View file

@ -0,0 +1,19 @@
# This script was automatically generated by the broot program
# More information can be found in https://github.com/Canop/broot
# This function starts broot and executes the command
# it produces, if any.
# It's needed because some shell commands, like `cd`,
# have no useful effect if executed in a subshell.
function br --wraps=broot
set -l cmd_file (mktemp)
if broot --outcmd $cmd_file $argv
read --local --null cmd < $cmd_file
rm -f $cmd_file
eval $cmd
else
set -l code $status
rm -f $cmd_file
return $code
end
end

View file

@ -0,0 +1,3 @@
function fish_mode_prompt
# NOOP - Disable vim mode indicator
end

View file

@ -0,0 +1,48 @@
function fish_prompt
set -l last_command_status $status
set -l symbol 'π'
set -l normal_color (set_color normal)
set -l branch_color (set_color yellow)
set -l meta_color (set_color red)
set -l symbol_color (set_color blue -o)
set -l error_color (set_color red -o)
if git_is_repo
echo -n -s $branch_color (git_branch_name) $normal_color
set -l git_meta ""
if test (command git ls-files --others --exclude-standard | wc -w 2> /dev/null) -gt 0
set git_meta "$git_meta?"
end
if test (command git rev-list --walk-reflogs --count refs/stash 2> /dev/null)
set git_meta "$git_meta\$"
end
if git_is_touched
git_is_dirty && set git_meta "$git_meta"
git_is_staged && set git_meta "$git_meta"
end
set -l commit_count (command git rev-list --count --left-right (git remote)/(git_branch_name)"...HEAD" 2> /dev/null)
if test $commit_count
set -l behind (echo $commit_count | cut -f 1)
set -l ahead (echo $commit_count | cut -f 2)
if test $behind -gt 0
set git_meta "$git_meta🠋"
end
if test $ahead -gt 0
set git_meta "$git_meta🠉"
end
end
if test $git_meta
echo -n -s $meta_color " " $git_meta " " $normal_color
else
echo -n -s " "
end
end
if test $last_command_status -eq 0
echo -n -s $symbol_color $symbol " " $normal_color
else
echo -n -s $error_color $symbol " " $normal_color
end
end

View file

@ -0,0 +1,211 @@
function fisher --argument-names cmd --description "A plugin manager for Fish"
set --query fisher_path || set --local fisher_path $__fish_config_dir
set --local fisher_version 4.3.1
set --local fish_plugins $__fish_config_dir/fish_plugins
switch "$cmd"
case -v --version
echo "fisher, version $fisher_version"
case "" -h --help
echo "Usage: fisher install <plugins...> Install plugins"
echo " fisher remove <plugins...> Remove installed plugins"
echo " fisher update <plugins...> Update installed plugins"
echo " fisher update Update all installed plugins"
echo " fisher list [<regex>] List installed plugins matching regex"
echo "Options:"
echo " -v or --version Print version"
echo " -h or --help Print this help message"
echo "Variables:"
echo " \$fisher_path Plugin installation path. Default: ~/.config/fish"
case ls list
string match --entire --regex -- "$argv[2]" $_fisher_plugins
case install update remove
isatty || read --local --null --array stdin && set --append argv $stdin
set --local install_plugins
set --local update_plugins
set --local remove_plugins
set --local arg_plugins $argv[2..-1]
set --local old_plugins $_fisher_plugins
set --local new_plugins
if ! set --query argv[2]
if test "$cmd" != update
echo "fisher: Not enough arguments for command: \"$cmd\"" >&2 && return 1
else if test ! -e $fish_plugins
echo "fisher: \"$fish_plugins\" file not found: \"$cmd\"" >&2 && return 1
end
set arg_plugins (string match --regex -- '^[^\s]+$' <$fish_plugins)
end
for plugin in $arg_plugins
test -e "$plugin" && set plugin (realpath $plugin)
contains -- "$plugin" $new_plugins || set --append new_plugins $plugin
end
if set --query argv[2]
for plugin in $new_plugins
if contains -- "$plugin" $old_plugins
test "$cmd" = remove &&
set --append remove_plugins $plugin ||
set --append update_plugins $plugin
else if test "$cmd" = install
set --append install_plugins $plugin
else
echo "fisher: Plugin not installed: \"$plugin\"" >&2 && return 1
end
end
else
for plugin in $new_plugins
contains -- "$plugin" $old_plugins &&
set --append update_plugins $plugin ||
set --append install_plugins $plugin
end
for plugin in $old_plugins
contains -- "$plugin" $new_plugins || set --append remove_plugins $plugin
end
end
set --local pid_list
set --local source_plugins
set --local fetch_plugins $update_plugins $install_plugins
echo (set_color --bold)fisher $cmd version $fisher_version(set_color normal)
for plugin in $fetch_plugins
set --local source (command mktemp -d)
set --append source_plugins $source
command mkdir -p $source/{completions,conf.d,functions}
fish --command "
if test -e $plugin
command cp -Rf $plugin/* $source
else
set temp (command mktemp -d)
set name (string split \@ $plugin) || set name[2] HEAD
set url https://codeload.github.com/\$name[1]/tar.gz/\$name[2]
echo Fetching (set_color --underline)\$url(set_color normal)
if curl --silent \$url | tar -xzC \$temp -f - 2>/dev/null
command cp -Rf \$temp/*/* $source
else
echo fisher: Invalid plugin name or host unavailable: \\\"$plugin\\\" >&2
command rm -rf $source
end
command rm -rf \$temp
end
set files $source/* && string match --quiet --regex -- .+\.fish\\\$ \$files
" &
set --append pid_list (jobs --last --pid)
end
wait $pid_list 2>/dev/null
for plugin in $fetch_plugins
if set --local source $source_plugins[(contains --index -- "$plugin" $fetch_plugins)] && test ! -e $source
if set --local index (contains --index -- "$plugin" $install_plugins)
set --erase install_plugins[$index]
else
set --erase update_plugins[(contains --index -- "$plugin" $update_plugins)]
end
end
end
for plugin in $update_plugins $remove_plugins
if set --local index (contains --index -- "$plugin" $_fisher_plugins)
set --local plugin_files_var _fisher_(string escape --style=var -- $plugin)_files
if contains -- "$plugin" $remove_plugins
for name in (string replace --filter --regex -- '.+/conf\.d/([^/]+)\.fish$' '$1' $$plugin_files_var)
emit {$name}_uninstall
end
printf "%s\n" Removing\ (set_color red --bold)$plugin(set_color normal) " "$$plugin_files_var
end
command rm -rf $$plugin_files_var
functions --erase (string replace --filter --regex -- '.+/functions/([^/]+)\.fish$' '$1' $$plugin_files_var)
for name in (string replace --filter --regex -- '.+/completions/([^/]+)\.fish$' '$1' $$plugin_files_var)
complete --erase --command $name
end
set --erase _fisher_plugins[$index]
set --erase $plugin_files_var
end
end
if set --query update_plugins[1] || set --query install_plugins[1]
command mkdir -p $fisher_path/{functions,conf.d,completions}
end
for plugin in $update_plugins $install_plugins
set --local source $source_plugins[(contains --index -- "$plugin" $fetch_plugins)]
set --local files $source/{functions,conf.d,completions}/*
if set --local index (contains --index -- $plugin $install_plugins)
set --local user_files $fisher_path/{functions,conf.d,completions}/*
set --local conflict_files
for file in (string replace -- $source/ $fisher_path/ $files)
contains -- $file $user_files && set --append conflict_files $file
end
if set --query conflict_files[1] && set --erase install_plugins[$index]
echo -s "fisher: Cannot install \"$plugin\": please remove or move conflicting files first:" \n" "$conflict_files >&2
continue
end
end
for file in (string replace -- $source/ "" $files)
command cp -Rf $source/$file $fisher_path/$file
end
set --local plugin_files_var _fisher_(string escape --style=var -- $plugin)_files
set --query files[1] && set --universal $plugin_files_var (string replace -- $source $fisher_path $files)
contains -- $plugin $_fisher_plugins || set --universal --append _fisher_plugins $plugin
contains -- $plugin $install_plugins && set --local event install || set --local event update
printf "%s\n" Installing\ (set_color --bold)$plugin(set_color normal) " "$$plugin_files_var
for file in (string match --regex -- '.+/[^/]+\.fish$' $$plugin_files_var)
source $file
if set --local name (string replace --regex -- '.+conf\.d/([^/]+)\.fish$' '$1' $file)
emit {$name}_$event
end
end
end
command rm -rf $source_plugins
set --query _fisher_plugins[1] || set --erase _fisher_plugins
set --query _fisher_plugins &&
printf "%s\n" $_fisher_plugins >$fish_plugins ||
command rm -f $fish_plugins
set --local total (count $install_plugins) (count $update_plugins) (count $remove_plugins)
test "$total" != "0 0 0" && echo (string join ", " (
test $total[1] = 0 || echo "Installed $total[1]") (
test $total[2] = 0 || echo "Updated $total[2]") (
test $total[3] = 0 || echo "Removed $total[3]")
) plugin/s
case \*
echo "fisher: Unknown command: \"$cmd\"" >&2 && return 1
end
end
## Migrations ##
function _fisher_fish_postexec --on-event fish_postexec
if functions --query _fisher_list
fisher update >/dev/null 2>/dev/null
set --query XDG_DATA_HOME || set --local XDG_DATA_HOME ~/.local/share
test -e $XDG_DATA_HOME/fisher && command rm -rf $XDG_DATA_HOME/fisher
functions --erase _fisher_list _fisher_plugin_parse
set --erase fisher_data
end
functions --erase _fisher_fish_postexec
end

View file

@ -0,0 +1,3 @@
function mediamount --wraps='mount_smbfs //wizard:Dexter706@tower/media mnt/media' --description 'alias mediamount=mount_smbfs //wizard:Dexter706@tower/media mnt/media'
mount_smbfs //wizard:Dexter706@tower/media mnt/media $argv;
end

View file

@ -0,0 +1,206 @@
function nvm --argument-names cmd v --description "Node version manager"
if test -z "$v" && contains -- "$cmd" install use
for file in .nvmrc .node-version
set file (_nvm_find_up $PWD $file) && read v <$file && break
end
if test -z "$v"
echo "nvm: Invalid version or missing \".nvmrc\" file" >&2
return 1
end
end
switch "$cmd"
case -v --version
echo "nvm, version 2.2.6"
case "" -h --help
echo "Usage: nvm install <version> Download and activate the specified Node version"
echo " nvm install Install version from nearest .nvmrc file"
echo " nvm use <version> Activate a version in the current shell"
echo " nvm use Activate version from nearest .nvmrc file"
echo " nvm list List installed versions"
echo " nvm list-remote List versions available to install"
echo " nvm list-remote <regex> List versions matching a given regular expression"
echo " nvm current Print the currently-active version"
echo " nvm uninstall <version> Uninstall a version"
echo "Options:"
echo " -v or --version Print version"
echo " -h or --help Print this help message"
echo "Variables:"
echo " nvm_arch Override architecture, e.g. x64-musl"
echo " nvm_mirror Set the Node download mirror"
echo " nvm_default_version Set the default version for new shells"
case install
_nvm_index_update $nvm_mirror $nvm_data/.index || return
string match --entire --regex -- (_nvm_version_match $v) <$nvm_data/.index | read v alias
if ! set --query v[1]
echo "nvm: Invalid version number or alias: \"$argv[2..-1]\"" >&2
return 1
end
if test ! -e $nvm_data/$v
set --local os (command uname -s | string lower)
set --local ext tar.gz
set --local arch (command uname -m)
switch $os
case aix
set arch ppc64
case sunos
case linux
case darwin
case {MSYS_NT,MINGW\*_NT}\*
set os win
set ext zip
case \*
echo "nvm: Unsupported operating system: \"$os\"" >&2
return 1
end
switch $arch
case i\*86
set arch x86
case x86_64
set arch x64
case arm64
string match --regex --quiet "v(?<major>\d+)" $v
if test "$os" = darwin -a $major -lt 16
set arch x64
end
case armv6 armv6l
set arch armv6l
case armv7 armv7l
set arch armv7l
case armv8 armv8l aarch64
set arch arm64
end
set --query nvm_arch && set arch $nvm_arch
set --local dir "node-$v-$os-$arch"
set --local url $nvm_mirror/$v/$dir.$ext
command mkdir -p $nvm_data/$v
echo -e "Installing Node \x1b[1m$v\x1b[22m $alias"
echo -e "Fetching \x1b[4m$url\x1b[24m\x1b[7m"
if ! command curl --progress-bar --location $url \
| command tar --extract --gzip --directory $nvm_data/$v 2>/dev/null
command rm -rf $nvm_data/$v
echo -e "\033[F\33[2K\x1b[0mnvm: Invalid mirror or host unavailable: \"$url\"" >&2
return 1
end
echo -en "\033[F\33[2K\x1b[0m"
if test "$os" = win
command mv $nvm_data/$v/$dir $nvm_data/$v/bin
else
command mv $nvm_data/$v/$dir/* $nvm_data/$v
command rm -rf $nvm_data/$v/$dir
end
end
if test $v != "$nvm_current_version"
set --query nvm_current_version && _nvm_version_deactivate $nvm_current_version
_nvm_version_activate $v
end
printf "Now using Node %s (npm %s) %s\n" (_nvm_node_info)
case use
test $v = default && set v $nvm_default_version
_nvm_list | string match --entire --regex -- (_nvm_version_match $v) | read v __
if ! set --query v[1]
echo "nvm: Can't use Node \"$argv[2..-1]\", version must be installed first" >&2
return 1
end
if test $v != "$nvm_current_version"
set --query nvm_current_version && _nvm_version_deactivate $nvm_current_version
test $v != system && _nvm_version_activate $v
end
printf "Now using Node %s (npm %s) %s\n" (_nvm_node_info)
case uninstall
if test -z "$v"
echo "nvm: Not enough arguments for command: \"$cmd\"" >&2
return 1
end
test $v = default && test ! -z "$nvm_default_version" && set v $nvm_default_version
_nvm_list | string match --entire --regex -- (_nvm_version_match $v) | read v __
if ! set -q v[1]
echo "nvm: Node version not installed or invalid: \"$argv[2..-1]\"" >&2
return 1
end
printf "Uninstalling Node %s %s\n" $v (string replace ~ \~ "$nvm_data/$v/bin/node")
_nvm_version_deactivate $v
command rm -rf $nvm_data/$v
case current
_nvm_current
case ls list
_nvm_list | _nvm_list_format (_nvm_current) $argv[2]
case lsr {ls,list}-remote
_nvm_index_update $nvm_mirror $nvm_data/.index || return
_nvm_list | command awk '
FILENAME == "-" && (is_local[$1] = FNR == NR) { next } {
print $0 (is_local[$1] ? " ✓" : "")
}
' - $nvm_data/.index | _nvm_list_format (_nvm_current) $argv[2]
case \*
echo "nvm: Unknown command or option: \"$cmd\" (see nvm -h)" >&2
return 1
end
end
function _nvm_find_up --argument-names path file
test -e "$path/$file" && echo $path/$file || begin
test "$path" != / || return
_nvm_find_up (command dirname $path) $file
end
end
function _nvm_version_match --argument-names v
string replace --regex -- '^v?(\d+|\d+\.\d+)$' 'v$1.' $v |
string replace --filter --regex -- '^v?(\d+)' 'v$1' |
string escape --style=regex ||
string lower '\b'$v'(?:/\w+)?$'
end
function _nvm_list_format --argument-names current regex
command awk -v current="$current" -v regex="$regex" '
$0 ~ regex {
aliases[versions[i++] = $1] = $2 " " $3
pad = (n = length($1)) > pad ? n : pad
}
END {
if (!i) exit 1
while (i--)
printf((current == versions[i] ? " ▶ " : " ") "%"pad"s %s\n",
versions[i], aliases[versions[i]])
}
'
end
function _nvm_current
command --search --quiet node || return
set --query nvm_current_version && echo $nvm_current_version || echo system
end
function _nvm_node_info
set --local npm_path (string replace bin/npm-cli.js "" (realpath (command --search npm)))
test -f $npm_path/package.json || set --local npm_version_default (command npm --version)
command node --eval "
console.log(process.version)
console.log('$npm_version_default' ? '$npm_version_default': require('$npm_path/package.json').version)
console.log(process.execPath.replace(require('os').homedir(), '~'))
"
end

View file

@ -0,0 +1,3 @@
function w --wraps=watson --description 'alias w=watson'
watson $argv;
end

3
.config/omf/bundle Normal file
View file

@ -0,0 +1,3 @@
theme default
theme pie
theme spacefish

1
.config/omf/channel Normal file
View file

@ -0,0 +1 @@
stable

1
.config/omf/theme Normal file
View file

@ -0,0 +1 @@
pie

195
.config/pgcli/config Normal file
View file

@ -0,0 +1,195 @@
# vi: ft=dosini
[main]
# Enables context sensitive auto-completion. If this is disabled, all
# possible completions will be listed.
smart_completion = True
# Display the completions in several columns. (More completions will be
# visible.)
wider_completion_menu = False
# Multi-line mode allows breaking up the sql statements into multiple lines. If
# this is set to True, then the end of the statements must have a semi-colon.
# If this is set to False then sql statements can't be split into multiple
# lines. End of line (return) is considered as the end of the statement.
multi_line = False
# If multi_line_mode is set to "psql", in multi-line mode, [Enter] will execute
# the current input if the input ends in a semicolon.
# If multi_line_mode is set to "safe", in multi-line mode, [Enter] will always
# insert a newline, and [Esc] [Enter] or [Alt]-[Enter] must be used to execute
# a command.
multi_line_mode = psql
# Destructive warning mode will alert you before executing a sql statement
# that may cause harm to the database such as "drop table", "drop database"
# or "shutdown".
destructive_warning = True
# Enables expand mode, which is similar to `\x` in psql.
expand = False
# Enables auto expand mode, which is similar to `\x auto` in psql.
auto_expand = False
# If set to True, table suggestions will include a table alias
generate_aliases = False
# log_file location.
# In Unix/Linux: ~/.config/pgcli/log
# In Windows: %USERPROFILE%\AppData\Local\dbcli\pgcli\log
# %USERPROFILE% is typically C:\Users\{username}
log_file = default
# keyword casing preference. Possible values: "lower", "upper", "auto"
keyword_casing = auto
# casing_file location.
# In Unix/Linux: ~/.config/pgcli/casing
# In Windows: %USERPROFILE%\AppData\Local\dbcli\pgcli\casing
# %USERPROFILE% is typically C:\Users\{username}
casing_file = default
# If generate_casing_file is set to True and there is no file in the above
# location, one will be generated based on usage in SQL/PLPGSQL functions.
generate_casing_file = False
# Casing of column headers based on the casing_file described above
case_column_headers = True
# history_file location.
# In Unix/Linux: ~/.config/pgcli/history
# In Windows: %USERPROFILE%\AppData\Local\dbcli\pgcli\history
# %USERPROFILE% is typically C:\Users\{username}
history_file = default
# Default log level. Possible values: "CRITICAL", "ERROR", "WARNING", "INFO"
# and "DEBUG". "NONE" disables logging.
log_level = INFO
# Order of columns when expanding * to column list
# Possible values: "table_order" and "alphabetic"
asterisk_column_order = table_order
# Whether to qualify with table alias/name when suggesting columns
# Possible values: "always", "never" and "if_more_than_one_table"
qualify_columns = if_more_than_one_table
# When no schema is entered, only suggest objects in search_path
search_path_filter = False
# Default pager.
# By default 'PAGER' environment variable is used
# pager = less -SRXF
# Timing of sql statements and table rendering.
timing = True
# Show/hide the informational toolbar with function keymap at the footer.
show_bottom_toolbar = True
# Table format. Possible values: psql, plain, simple, grid, fancy_grid, pipe,
# ascii, double, github, orgtbl, rst, mediawiki, html, latex, latex_booktabs,
# textile, moinmoin, jira, vertical, tsv, csv.
# Recommended: psql, fancy_grid and grid.
table_format = psql
# Syntax Style. Possible values: manni, igor, xcode, vim, autumn, vs, rrt,
# native, perldoc, borland, tango, emacs, friendly, monokai, paraiso-dark,
# colorful, murphy, bw, pastie, paraiso-light, trac, default, fruity
syntax_style = default
# Keybindings:
# When Vi mode is enabled you can use modal editing features offered by Vi in the REPL.
# When Vi mode is disabled emacs keybindings such as Ctrl-A for home and Ctrl-E
# for end are available in the REPL.
vi = True
# Error handling
# When one of multiple SQL statements causes an error, choose to either
# continue executing the remaining statements, or stopping
# Possible values "STOP" or "RESUME"
on_error = STOP
# Set threshold for row limit. Use 0 to disable limiting.
row_limit = 1000
# Skip intro on startup and goodbye on exit
less_chatty = False
# Postgres prompt
# \t - Current date and time
# \u - Username
# \h - Short hostname of the server (up to first '.')
# \H - Hostname of the server
# \d - Database name
# \p - Database port
# \i - Postgres PID
# \# - "@" sign if logged in as superuser, '>' in other case
# \n - Newline
# \dsn_alias - name of dsn alias if -D option is used (empty otherwise)
# \x1b[...m - insert ANSI escape sequence
# eg: prompt = '\x1b[35m\u@\x1b[32m\h:\x1b[36m\d>'
prompt = '\u@\h:\d> '
# Number of lines to reserve for the suggestion menu
min_num_menu_lines = 4
# Character used to left pad multi-line queries to match the prompt size.
multiline_continuation_char = ''
# The string used in place of a null value.
null_string = '<null>'
# manage pager on startup
enable_pager = True
# Use keyring to automatically save and load password in a secure manner
keyring = True
# Custom colors for the completion menu, toolbar, etc.
[colors]
completion-menu.completion.current = 'bg:#ffffff #000000'
completion-menu.completion = 'bg:#008888 #ffffff'
completion-menu.meta.completion.current = 'bg:#44aaaa #000000'
completion-menu.meta.completion = 'bg:#448888 #ffffff'
completion-menu.multi-column-meta = 'bg:#aaffff #000000'
scrollbar.arrow = 'bg:#003333'
scrollbar = 'bg:#00aaaa'
selected = '#ffffff bg:#6666aa'
search = '#ffffff bg:#4444aa'
search.current = '#ffffff bg:#44aa44'
bottom-toolbar = 'bg:#222222 #aaaaaa'
bottom-toolbar.off = 'bg:#222222 #888888'
bottom-toolbar.on = 'bg:#222222 #ffffff'
search-toolbar = 'noinherit bold'
search-toolbar.text = 'nobold'
system-toolbar = 'noinherit bold'
arg-toolbar = 'noinherit bold'
arg-toolbar.text = 'nobold'
bottom-toolbar.transaction.valid = 'bg:#222222 #00ff5f bold'
bottom-toolbar.transaction.failed = 'bg:#222222 #ff005f bold'
literal.string = '#ba2121'
literal.number = '#666666'
keyword = 'bold #008000'
# style classes for colored table output
output.header = "#00ff5f bold"
output.odd-row = ""
output.even-row = ""
output.null = "#808080"
# Named queries are queries you can execute by name.
[named queries]
# DSN to call by -D option
[alias_dsn]
# example_dsn = postgresql://[user[:password]@][netloc][:port][/dbname]
# Format for number representation
# for decimal "d" - 12345678, ",d" - 12,345,678
# for float "g" - 123456.78, ",g" - 123,456.78
[data_formats]
decimal = ""
float = ""

3097
.config/pgcli/history Normal file

File diff suppressed because it is too large Load diff

988
.config/pgcli/log Normal file
View file

@ -0,0 +1,988 @@
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'").

1
.config/ranger/rc.conf Normal file
View file

@ -0,0 +1 @@
map bw shell wal -i %s

264
.config/ranger/rifle.conf Normal file
View file

@ -0,0 +1,264 @@
# vim: ft=cfg
#
# This is the configuration file of "rifle", ranger's file executor/opener.
# Each line consists of conditions and a command. For each line the conditions
# are checked and if they are met, the respective command is run.
#
# Syntax:
# <condition1> , <condition2> , ... = command
#
# The command can contain these environment variables:
# $1-$9 | The n-th selected file
# $@ | All selected files
#
# If you use the special command "ask", rifle will ask you what program to run.
#
# Prefixing a condition with "!" will negate its result.
# These conditions are currently supported:
# match <regexp> | The regexp matches $1
# ext <regexp> | The regexp matches the extension of $1
# mime <regexp> | The regexp matches the mime type of $1
# name <regexp> | The regexp matches the basename of $1
# path <regexp> | The regexp matches the absolute path of $1
# has <program> | The program is installed (i.e. located in $PATH)
# env <variable> | The environment variable "variable" is non-empty
# file | $1 is a file
# directory | $1 is a directory
# number <n> | change the number of this command to n
# terminal | stdin, stderr and stdout are connected to a terminal
# X | $DISPLAY is not empty (i.e. Xorg runs)
#
# There are also pseudo-conditions which have a "side effect":
# flag <flags> | Change how the program is run. See below.
# label <label> | Assign a label or name to the command so it can
# | be started with :open_with <label> in ranger
# | or `rifle -p <label>` in the standalone executable.
# else | Always true.
#
# Flags are single characters which slightly transform the command:
# f | Fork the program, make it run in the background.
# | New command = setsid $command >& /dev/null &
# r | Execute the command with root permissions
# | New command = sudo $command
# t | Run the program in a new terminal. If $TERMCMD is not defined,
# | rifle will attempt to extract it from $TERM.
# | New command = $TERMCMD -e $command
# Note: The "New command" serves only as an illustration, the exact
# implementation may differ.
# Note: When using rifle in ranger, there is an additional flag "c" for
# only running the current file even if you have marked multiple files.
#-------------------------------------------
# Websites
#-------------------------------------------
# Rarely installed browsers get higher priority; It is assumed that if you
# install a rare browser, you probably use it. Firefox/konqueror/w3m on the
# other hand are often only installed as fallback browsers.
ext x?html?, has surf, X, flag f = surf -- file://"$1"
ext x?html?, has vimprobable, X, flag f = vimprobable -- "$@"
ext x?html?, has vimprobable2, X, flag f = vimprobable2 -- "$@"
ext x?html?, has qutebrowser, X, flag f = qutebrowser -- "$@"
ext x?html?, has dwb, X, flag f = dwb -- "$@"
ext x?html?, has jumanji, X, flag f = jumanji -- "$@"
ext x?html?, has luakit, X, flag f = luakit -- "$@"
ext x?html?, has uzbl, X, flag f = uzbl -- "$@"
ext x?html?, has uzbl-tabbed, X, flag f = uzbl-tabbed -- "$@"
ext x?html?, has uzbl-browser, X, flag f = uzbl-browser -- "$@"
ext x?html?, has uzbl-core, X, flag f = uzbl-core -- "$@"
ext x?html?, has midori, X, flag f = midori -- "$@"
ext x?html?, has chromium-browser, X, flag f = chromium-browser -- "$@"
ext x?html?, has chromium, X, flag f = chromium -- "$@"
ext x?html?, has google-chrome, X, flag f = google-chrome -- "$@"
ext x?html?, has opera, X, flag f = opera -- "$@"
ext x?html?, has firefox, X, flag f = firefox -- "$@"
ext x?html?, has seamonkey, X, flag f = seamonkey -- "$@"
ext x?html?, has iceweasel, X, flag f = iceweasel -- "$@"
ext x?html?, has epiphany, X, flag f = epiphany -- "$@"
ext x?html?, has konqueror, X, flag f = konqueror -- "$@"
ext x?html?, has elinks, terminal = elinks "$@"
ext x?html?, has links2, terminal = links2 "$@"
ext x?html?, has links, terminal = links "$@"
ext x?html?, has lynx, terminal = lynx -- "$@"
ext x?html?, has w3m, terminal = w3m "$@"
#-------------------------------------------
# Spreadsheets
#-------------------------------------------
ext csv = sc-im "$@"
ext xls = sc-im "$@"
ext xlsx = sc-im "$1"
#-------------------------------------------
# Misc
#-------------------------------------------
# Define the "editor" for text files as first action
mime ^text, label editor = ${VISUAL:-$EDITOR} -- "$@"
mime ^text, label pager = "$PAGER" -- "$@"
!mime ^text, label editor, ext xml|json|tex|py|pl|rb|js|sh|php = ${VISUAL:-$EDITOR} -- "$@"
!mime ^text, label pager, ext xml|json|tex|py|pl|rb|js|sh|php = "$PAGER" -- "$@"
ext 1 = man "$1"
ext s[wmf]c, has zsnes, X = zsnes "$1"
ext s[wmf]c, has snes9x-gtk,X = snes9x-gtk "$1"
ext nes, has fceux, X = fceux "$1"
ext exe = wine "$1"
name ^[mM]akefile$ = make
#--------------------------------------------
# Code
#-------------------------------------------
ext py = python -- "$1"
ext pl = perl -- "$1"
ext rb = ruby -- "$1"
ext js = node -- "$1"
ext sh = sh -- "$1"
ext php = php -- "$1"
#--------------------------------------------
# Audio without X
#-------------------------------------------
mime ^audio|ogg$, terminal, has mpv = mpv -- "$@"
mime ^audio|ogg$, terminal, has mplayer2 = mplayer2 -- "$@"
mime ^audio|ogg$, terminal, has mplayer = mplayer -- "$@"
ext midi?, terminal, has wildmidi = wildmidi -- "$@"
#--------------------------------------------
# Video/Audio with a GUI
#-------------------------------------------
mime ^video|audio, has gmplayer, X, flag f = gmplayer -- "$@"
mime ^video|audio, has smplayer, X, flag f = smplayer "$@"
mime ^video, has mpv, X, flag f = mpv -- "$@"
mime ^video, has mpv, X, flag f = mpv --fs -- "$@"
mime ^video, has mplayer2, X, flag f = mplayer2 -- "$@"
mime ^video, has mplayer2, X, flag f = mplayer2 -fs -- "$@"
mime ^video, has mplayer, X, flag f = mplayer -- "$@"
mime ^video, has mplayer, X, flag f = mplayer -fs -- "$@"
mime ^video|audio, has vlc, X, flag f = vlc -- "$@"
mime ^video|audio, has totem, X, flag f = totem -- "$@"
mime ^video|audio, has totem, X, flag f = totem --fullscreen -- "$@"
#--------------------------------------------
# Video without X:
#-------------------------------------------
mime ^video, terminal, !X, has mpv = mpv -- "$@"
mime ^video, terminal, !X, has mplayer2 = mplayer2 -- "$@"
mime ^video, terminal, !X, has mplayer = mplayer -- "$@"
#-------------------------------------------
# Documents
#-------------------------------------------
ext pdf, has llpp, X, flag f = llpp "$@"
ext pdf, has zathura, X, flag f = zathura -- "$@"
ext pdf, has mupdf, X, flag f = mupdf "$@"
ext pdf, has mupdf-x11,X, flag f = mupdf-x11 "$@"
ext pdf, has apvlv, X, flag f = apvlv -- "$@"
ext pdf, has xpdf, X, flag f = xpdf -- "$@"
ext pdf, has evince, X, flag f = evince -- "$@"
ext pdf, has atril, X, flag f = atril -- "$@"
ext pdf, has okular, X, flag f = okular -- "$@"
ext pdf, has epdfview, X, flag f = epdfview -- "$@"
ext pdf, has qpdfview, X, flag f = qpdfview "$@"
ext pdf, has open, X, flag f = open "$@"
ext docx?, has catdoc, terminal = catdoc -- "$@" | "$PAGER"
ext sxc|xlsx?|xlt|xlw|gnm|gnumeric, has gnumeric, X, flag f = gnumeric -- "$@"
ext sxc|xlsx?|xlt|xlw|gnm|gnumeric, has kspread, X, flag f = kspread -- "$@"
ext pptx?|od[dfgpst]|docx?|sxc|xlsx?|xlt|xlw|gnm|gnumeric, has libreoffice, X, flag f = libreoffice "$@"
ext pptx?|od[dfgpst]|docx?|sxc|xlsx?|xlt|xlw|gnm|gnumeric, has soffice, X, flag f = soffice "$@"
ext pptx?|od[dfgpst]|docx?|sxc|xlsx?|xlt|xlw|gnm|gnumeric, has ooffice, X, flag f = ooffice "$@"
ext djvu, has zathura,X, flag f = zathura -- "$@"
ext djvu, has evince, X, flag f = evince -- "$@"
ext djvu, has atril, X, flag f = atril -- "$@"
ext djvu, has djview, X, flag f = djview -- "$@"
ext epub, has ebook-viewer, X, flag f = ebook-viewer -- "$@"
ext mobi, has ebook-viewer, X, flag f = ebook-viewer -- "$@"
#-------------------------------------------
# Image Viewing:
#-------------------------------------------
mime ^image/svg, has inkscape, X, flag f = inkscape -- "$@"
mime ^image/svg, has display, X, flag f = display -- "$@"
mime ^image, has pqiv, X, flag f = pqiv -- "$@"
mime ^image, has sxiv, X, flag f = sxiv -- "$@"
mime ^image, has feh, X, flag f = feh -- "$@"
mime ^image, has mirage, X, flag f = mirage -- "$@"
mime ^image, has ristretto, X, flag f = ristretto "$@"
mime ^image, has eog, X, flag f = eog -- "$@"
mime ^image, has eom, X, flag f = eom -- "$@"
mime ^image, has nomacs, X, flag f = nomacs -- "$@"
mime ^image, has geeqie, X, flag f = geeqie -- "$@"
mime ^image, has gwenview, X, flag f = gwenview -- "$@"
mime ^image, has gimp, X, flag f = gimp -- "$@"
ext xcf, X, flag f = gimp -- "$@"
#-------------------------------------------
# Archives
#-------------------------------------------
# avoid password prompt by providing empty password
ext 7z, has 7z = 7z -p l "$@" | "$PAGER"
# This requires atool
ext ace|ar|arc|bz2?|cab|cpio|cpt|deb|dgc|dmg|gz, has atool = atool --list --each -- "$@" | "$PAGER"
ext iso|jar|msi|pkg|rar|shar|tar|tgz|xar|xpi|xz|zip, has atool = atool --list --each -- "$@" | "$PAGER"
ext 7z|ace|ar|arc|bz2?|cab|cpio|cpt|deb|dgc|dmg|gz, has atool = atool --extract --each -- "$@"
ext iso|jar|msi|pkg|rar|shar|tar|tgz|xar|xpi|xz|zip, has atool = atool --extract --each -- "$@"
# Listing and extracting archives without atool:
ext tar|gz|bz2|xz, has tar = tar vvtf "$1" | "$PAGER"
ext tar|gz|bz2|xz, has tar = for file in "$@"; do tar vvxf "$file"; done
ext bz2, has bzip2 = for file in "$@"; do bzip2 -dk "$file"; done
ext zip, has unzip = unzip -l "$1" | less
ext zip, has unzip = for file in "$@"; do unzip -d "${file%.*}" "$file"; done
ext ace, has unace = unace l "$1" | less
ext ace, has unace = for file in "$@"; do unace e "$file"; done
ext rar, has unrar = unrar l "$1" | less
ext rar, has unrar = for file in "$@"; do unrar x "$file"; done
#-------------------------------------------
# Flag t fallback terminals
#-------------------------------------------
# Rarely installed terminal emulators get higher priority; It is assumed that
# if you install a rare terminal emulator, you probably use it.
# gnome-terminal/konsole/xterm on the other hand are often installed as part of
# a desktop environment or as fallback terminal emulators.
mime ^ranger/x-terminal-emulator, has terminology = terminology -e "$@"
mime ^ranger/x-terminal-emulator, has kitty = kitty -- "$@"
mime ^ranger/x-terminal-emulator, has alacritty = alacritty -e "$@"
mime ^ranger/x-terminal-emulator, has sakura = sakura -e "$@"
mime ^ranger/x-terminal-emulator, has lilyterm = lilyterm -e "$@"
#mime ^ranger/x-terminal-emulator, has cool-retro-term = cool-retro-term -e "$@"
mime ^ranger/x-terminal-emulator, has termite = termite -x '"$@"'
#mime ^ranger/x-terminal-emulator, has yakuake = yakuake -e "$@"
mime ^ranger/x-terminal-emulator, has guake = guake -ne "$@"
mime ^ranger/x-terminal-emulator, has tilda = tilda -c "$@"
mime ^ranger/x-terminal-emulator, has st = st -e "$@"
mime ^ranger/x-terminal-emulator, has terminator = terminator -x "$@"
mime ^ranger/x-terminal-emulator, has urxvt = urxvt -e "$@"
mime ^ranger/x-terminal-emulator, has pantheon-terminal = pantheon-terminal -e "$@"
mime ^ranger/x-terminal-emulator, has lxterminal = lxterminal -e "$@"
mime ^ranger/x-terminal-emulator, has mate-terminal = mate-terminal -x "$@"
mime ^ranger/x-terminal-emulator, has xfce4-terminal = xfce4-terminal -x "$@"
mime ^ranger/x-terminal-emulator, has konsole = konsole -e "$@"
mime ^ranger/x-terminal-emulator, has gnome-terminal = gnome-terminal -- "$@"
mime ^ranger/x-terminal-emulator, has xterm = xterm -e "$@"
#-------------------------------------------
# Misc
#-------------------------------------------
label wallpaper, number 11, mime ^image, has feh, X = feh --bg-scale "$1"
label wallpaper, number 12, mime ^image, has feh, X = feh --bg-tile "$1"
label wallpaper, number 13, mime ^image, has feh, X = feh --bg-center "$1"
label wallpaper, number 14, mime ^image, has feh, X = feh --bg-fill "$1"
# Define the editor for non-text files + pager as last action
!mime ^text, !ext xml|json|csv|tex|py|pl|rb|js|sh|php = ask
label editor, !mime ^text, !ext xml|json|csv|tex|py|pl|rb|js|sh|php = ${VISUAL:-$EDITOR} -- "$@"
label pager, !mime ^text, !ext xml|json|csv|tex|py|pl|rb|js|sh|php = "$PAGER" -- "$@"
# The very last action, so that it's never triggered accidentally, is to execute a program:
mime application/x-executable = "$1"

View file

@ -0,0 +1,23 @@
# /Users/iankeane/.config/tmuxinator/tendenci-moodle-nifi.yml
name: rwa-api
root: ~/code/rwa/everblue-api
on_project_start: ~/export_secrets.fish
windows:
- editor:
layout: 1341,176x62,0,0[176x22,0,0{91x22,0,0,0,84x22,92,0,4},176x3,0,23,2,176x35,0,27,3]
panes:
- cd ./frontend/site && nvm use 14 && npm run dev
- cd ./api && awsume mt-dev && pipenv run chalice local --stage dev
- clear
- vim
- db:
layout: 0843,176x62,0,0[176x31,0,0,1,176x30,0,32,5]
panes:
- pgcli postgresql://api-dev:$DEV_RWA_DB_PASS@postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com/ -p 5432
- pgcli postgresql://dev-dev:$DEV_RWA_MOODLE_DB_PASS@postgres-dev.cluster-cp5bt6ypprun.us-east-1.rds.amazonaws.com/ -p 5432
- scratch:
panes:
- fish

View file

@ -0,0 +1,17 @@
# /Users/iankeane/.config/tmuxinator/tendenci-moodle-nifi.yml
name: tendenci-moodle-nifi
root: ~/code
windows:
- editor:
layout: tiled
panes:
- cd ./current/nifi-current/nifi && docker compose up
- cd ./current/tendenci-current && docker compose up
- cd ./current/moodle-current && docker compose up
- watch docker container list
- ld: lazydocker
- db: pgcli -U postgres -p 5432 -h localhost
# TODO: exec into each tendenci / moodle container

View file

@ -1 +1,3 @@
set EDITOR vim
set PAGER bat
set BROWSER firefox

View file

@ -1,13 +1,13 @@
set-option -g default-shell /bin/zsh
set-option -g default-shell /usr/local/bin/fish
set -g default-terminal "screen-256color"
# set-window-option -g mode-keys vi
# # set-window-option -g mode-keys vi
set-window-option -g automatic-rename on
set-window-option mode-keys vi
# set-window-option -g automatic-rename on
set-window-option -g mode-keys vi
bind h split-window -h -c "#{pane_current_path}"
bind v split-window -v -c "#{pane_current_path}"
bind w new-window
# bind h split-window -h -c "#{pane_current_path}"
# bind v split-window -v -c "#{pane_current_path}"
# bind w new-window
# Smart pane switching with awareness of Vim splits.
# See: https://github.com/christoomey/vim-tmux-navigator
@ -16,22 +16,11 @@ bind w new-window
is_vim="ps -o state= -o comm= -t '#{pane_tty}' \
| grep -iqE '^[^TXZ ]+ +(\\S+\\/)?g?(view|n?vim?x?)(diff)?$'"
is_fzf="ps -o state= -o comm= -t '#{pane_tty}' \
| grep -iqE '^[^TXZ ]+ +(\\S+\\/)?fzf$'"
bind-key -n 'C-h' if-shell "$is_vim" 'send-keys C-h' 'select-pane -L'
bind-key -n 'C-j' if-shell "$is_vim" 'send-keys C-j' 'select-pane -D'
bind-key -n 'C-k' if-shell "$is_vim" 'send-keys C-k' 'select-pane -U'
bind-key -n 'C-l' if-shell "$is_vim" 'send-keys C-l' 'select-pane -R'
bind -n C-h run "($is_vim && tmux send-keys C-h) || \
tmux select-pane -L"
bind -n C-j run "($is_vim && tmux send-keys C-j) || \
($is_fzf && tmux send-keys C-j) || \
tmux select-pane -D"
bind -n C-k run "($is_vim && tmux send-keys C-k) || \
($is_fzf && tmux send-keys C-k) || \
tmux select-pane -U"
bind -n C-l run "($is_vim && tmux send-keys C-l) || \
tmux select-pane -R"
# bind-key -n C-\ if-shell "$is_vim" "send-keys C-\\" "select-pane -l"
@ -42,7 +31,20 @@ bind -n C-S-Space previous-window
bind -n C-Space next-window
# Remove escape delay
set -s escape-time 0
set -g escape-time 0
# Enable mouse scroll
set -g mouse on
set-option -g status-right-length 140
set-option -g status-right "#(curl 'wttr.in/?format=%%c%%t%%20')|#[bg=default] %a %l:%M %p#[default]#(curl 'wttr.in/?format=%%20%%m%%20(%%M)%') |#(sugar --tmux)#[bg=default]"
set-option -g status-left-length 140
set-option -g status-left " Session: #[bold,fg=green,bg=black] #S #[fg=black,bg=green] "
set-option -g status-justify centre
set-option -g window-status-current-format '#[bold,fg=green,bg=black] #{window_name} '
set-option -g window-status-format '#{window_name}'
bind t popup "tmux new-session -A -s tasks 'vit list'"
bind j popup "tmux new-session -A -s jira 'jira issue list -a(jira me)'"

View file

@ -1,99 +1,99 @@
" vim-plug {{{
" Automatic installation
" Automatic installation
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
call plug#begin('~/.vim/plugins')
packloadall
Plug 'chriskempson/base16-vim'
Plug 'junegunn/vim-easy-align'
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --bin --all' }
" Plug 'https://gitlab.com/lstwn/broot.vim'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-commentary'
Plug 'w0rp/ale'
Plug 'dense-analysis/ale'
Plug 'airblade/vim-gitgutter'
Plug 'itchyny/lightline.vim'
Plug 'tpope/vim-repeat'
Plug 'haya14busa/incsearch.vim'
Plug 'gorodinskiy/vim-coloresque'
Plug 'sheerun/vim-polyglot'
Plug 'nvie/vim-flake8'
Plug 'KKPMW/sacredforest-vim'
Plug 'wolf-dog/lightline-sceaduhelm.vim'
" Plug 'unblevable/quick-scope'
Plug 'tpope/vim-fugitive'
" Plug 'l04m33/vlime', {'rtp': 'vim/'}
" Plug 'kovisoft/paredit'
Plug 'sainnhe/vim-color-forest-night'
Plug 'justinmk/vim-sneak'
Plug 'jgdavey/tslime.vim'
" Plug 'kovisoft/slimv'
Plug 'tpope/vim-vinegar'
Plug 'preservim/nerdtree'
Plug 'vimwiki/vimwiki'
Plug 'simnalamburt/vim-mundo'
Plug 'tpope/vim-dadbod'
Plug 'junegunn/gv.vim'
Plug 'rbong/vim-flog'
Plug 'tpope/vim-unimpaired'
" Clojure
Plug 'guns/vim-clojure-static' " syntax
Plug 'tpope/vim-fireplace'
Plug 'guns/vim-sexp'
Plug 'tpope/vim-sexp-mappings-for-regular-people'
"Plug 'dylanaraps/wal.vim'
Plug 'alvan/vim-closetag'
Plug 'mattn/emmet-vim'
" Plug 'tpope/vim-salve'
Plug 'chrisbra/colorizer'
" cljfold
Plug 'christoomey/vim-tmux-navigator'
Plug 'tpope/vim-rhubarb'
Plug 'zhaozg/vim-diagram'
Plug 'arcticicestudio/nord-vim'
Plug 'fatih/vim-go'
Plug 'diepm/vim-rest-console'
Plug 'pangloss/vim-javascript'
Plug 'leafgarland/typescript-vim'
Plug 'MaxMEllon/vim-jsx-pretty'
Plug 'peitalin/vim-jsx-typescript'
Plug 'jremmen/vim-ripgrep'
Plug 'francoiscabrol/ranger.vim'
Plug 'https://github.com/moll/vim-bbye'
Plug 'jlanzarotta/bufexplorer'
Plug 'dbeniamine/cheat.sh-vim'
" " Todo:
" "
call plug#end()
"}}}
" appearance {{{
colorscheme zenburn
" colorscheme wal
syntax on " Enable syntax
set encoding=utf-8 " Keep utf-8 encoding
set scrolloff=2 " Keep at least 3 lines above and below cursor
set showmode " Something something buffers
set showcmd " Show command in bottom bar
set wildmenu " Visual autocomplete for command menu
set wildmode=list:longest " Show all completions on tab
set laststatus=2 " Last window will always have statusline
set showmatch " Highlight matching [{()}]
set cursorline " Highlight current line
colorscheme base16-default-dark
let base16colorspace=256
syntax on " Enable syntax
set encoding=utf-8 " Keep utf-8 encoding
set scrolloff=2 " Keep at least 3 lines above and below cursor
set showmode " Something something buffers
set showcmd " Show command in bottom bar
set wildmenu " Visual autocomplete for command menu
set wildmode=list:longest " Show all completions on tab
set laststatus=2 " Last window will always have statusline
set showmatch " Highlight matching [{()}]
set cursorline " Highlight current line
highlight GitGutterAdd ctermbg=black guibg=black
highlight SignColumn guibg=black ctermbg=black
let g:ctrlsf_default_root="project"
" remove underline on current line number
hi CursorLineNr cterm=bold
" remove underline on current line number
hi CursorLineNr cterm=bold
" Lightline
let g:lightline = { 'colorscheme': 'sceaduhelm' }
set fillchars+=vert:│
" Lightline
let g:lightline = { 'colorscheme': 'sceaduhelm' }
set fillchars+=vert:│
command! LightlineReload call LightlineReload()
command! LightlineReload call LightlineReload()
function! LightlineReload()
function! LightlineReload()
call lightline#init()
call lightline#colorscheme()
call lightline#update()
endfunction
" }}}
endfunction
" Movement {{{
" TODO: map alt-j and k to move text lines vertically, maintaining indent
" }}}
" Invisible characters
set list
set listchars=tab:▸\ ,eol
" }}}
" Folding {{{
set foldenable " Enable folding
@ -110,19 +110,25 @@
set ttyfast " Improves smoothness and drawing
set backspace=indent,eol,start " Always allow backspacing
set undofile " Make .un file for persistent undo
" set relativenumber " Make numbers relative to current line
set number
set lazyredraw " Redraw only when necessary
set updatetime=100 " Make updates happen faster (gitgutter)
set splitright " Make split to right by default
set splitbelow
set winheight=30 " Soft minimum window height (active)
"set winminheight=10 " Hard minimum window height (inactive)
set winwidth=85 " Window width for current window
set winminheight=6 " Hard minimum window height (inactive)
set winwidth=90 " Window width for current window
set winminwidth=30 " Hard minimum for window width
set t_vb= " No visual bell ever
let g:sneak#use_ic_scs=1
set virtualedit=block
set noswapfile
set undodir=~/.vim/undo
let g:markdown_folding=1
au FileType markdown setlocal foldlevel=99
let g:bufExplorerSplitHorzSize=8 " New split window is n rows high.
let g:bufExplorerDefaultHelp=0 " Do not show default help.
"}}}
" searching {{{
@ -131,62 +137,18 @@
set smartcase " Case-specific only when uppercase
set hlsearch " Don't continue to highlight searched phrases.
set incsearch " But do search as characters are entered
" Remap tab to jump by brackets
" Nnoremap <tab> %
" Vnoremap <tab> %
" Remap tab to jump by window
"}}}
" tab settings {{{
set tabstop=4 " Number of visual spaces per tab
set tabstop=4 " Number of visual spaces per tab
set softtabstop=4 " Should always = tabstop
set shiftwidth=4 " Indent/outdent by 4 columns
set expandtab " Tabs are spaces
set shiftround " Always indent/outdent to the nearest tabstop
set shiftwidth=4 " Indent/outdent by 4 columns
set expandtab " Tabs are spaces
set shiftround " Always indent/outdent to the nearest tabstop
" Make search terms more visible
highlight Visual ctermbg=DarkGreen ctermfg=Black
set autoindent " Auto indentation
"}}}
" ruler settings {{{
set rulerformat=%l,%-2v\|%4L\ Lines " Display line, column, and total lines
set ruler " Turn on ruler
"}}}
" long line handling {{{
" set textwidth=79
" set fo=t
" set colorcolumn=85
"}}}
" leaders {{{
:let mapleader = ","
" Clear search highlighting with leader-space
nnoremap <leader><space> :noh<cr>
" Underline with line of the same length
nnoremap <leader>- yypv$r-
" Insert date on current line
nnoremap <leader>d k :r !date <cr>
nnoremap <leader>k :vert new ~/.vim/bindings.md <cr>
" tnoremap <leader><esc> <C-\><C-n>
vmap <leader>s <Plug>SendSelectionToTmux
nmap <leader>s <Plug>NormalModeSendToTmux
"nmap <leader>r <Plug>SetTmuxVars
"}}}
" invisible characters {{{
set list
set listchars=tab:▸\ ,eol
set autoindent " Auto indentation
"}}}
@ -200,113 +162,49 @@
inoremap <down> <nop>
inoremap <left> <nop>
inoremap <right> <nop>
" Disable h and l
" nnoremap h <nop>
" nnoremap l <nop>
" Make j and k move by screen line, not file line
nnoremap j gj
nnoremap k gk
"}}}
" slimv{{{
" let g:slimv_repl_split=2
" let g:slimv_repl_split_size=10
"}}}
" tslime{{{
let g:tslime_always_current_session = 1
let g:tslime_always_current_window = 1
let g:tslime_autoset_pane = 0
vmap <leader>r <Plug>SendSelectionToTmux
nmap <leader>r <Plug>NormalModeSendToTmux
" nmap <C-c>r <Plug>SetTmuxVars
" }}}
" {{{ web dev
autocmd FileType html set softtabstop=2
autocmd FileType html set ts=2
autocmd FileType html set shiftwidth=2
autocmd FileType css set softtabstop=2
autocmd FileType css set ts=2
autocmd FileType html set shiftwidth=2
autocmd FileType html,css,javascript,typescript,typescriptreact
\ set expandtab smarttab softtabstop=2 shiftwidth=2 tabstop=2
" Emmet tab size
let g:user_emmet_settings = {
\ 'indentation' : ' '
\}
" }}}
" clojure {{{
" TODO: make only work in clojure files
nnoremap <leader>e :Eval<CR> " eval form
nnoremap <leader>E :%Eval<CR> " eval file
" }}}
" split pane navigation {{{
" Map vertical split to \ w, switch to it, open explorer, prompt for filename
" TODO: make new window prompt use fzf
" nnoremap <leader>w <C-w>v<C-w>l:e <C-S-d><BS><BS>open
" Switch panes wit ctrl + h/j/k/l
nnoremap <C-h> <C-w>h
nnoremap <C-j> <C-w>j
nnoremap <C-k> <C-w>k
nnoremap <C-l> <C-w>l
" nnoremap <C-h> <C-w>h
" nnoremap <C-j> <C-w>j
" nnoremap <C-k> <C-w>k
" nnoremap <C-l> <C-w>l
nnoremap <C-c> :close <cr>
nnoremap <C-n> :bn <cr>
" Term mode
" tnoremap <C-h> <C-w>h
" tnoremap <C-j> <C-w>j
" tnoremap <C-k> <C-w>k
" tnoremap <C-l> <C-w>l
" tnoremap <C-c> :close <cr>
" tnoremap <C-n> :bn <cr>
" tnoremap <Esc> <C-\><C-n>
" TODO: remap pane resize to something else (leader?)
" quick-scope
" Trigger a highlight in the appropriate direction when pressing these keys:
let g:qs_highlight_on_keys = ['f', 'F', 't', 'T']
augroup qs_colors
autocmd!
autocmd ColorScheme * highlight QuickScopePrimary guifg='#afff5f' gui=underline ctermfg=155 cterm=underline
autocmd ColorScheme * highlight QuickScopeSecondary guifg='#5fffff' gui=underline ctermfg=81 cterm=underline
augroup END
nnoremap <c-s> gt
nnoremap <C-p> :bp <cr>
let g:tmux_navigator_disable_when_zoomed = 1
"}}}
" file specific {{{
" In markdown files, when writing add two spaces to each line to fix spacing
" In compiled version
" au BufWritePost *.md silent! %s/[^ ]\zs$/\1 /
" TODO: find a better solution
" Bold something in a markdown file
" :au FileType markdown nmap <leader>b i**<esc>ea**<esc>b
" Python
" au BufNewFile,BufRead *.py
"\ set tabstop=4
"\ set softtabstop=4
"\ set shiftwidth=4
"\ set textwidth=79
"\ set expandtab
"\ set autoindent
"\ set fileformat=unix
"" Webdev
" au BufNewFile,BufRead *.js, *.html, *.css
"\ set tabstop=2
"\ set softtabstop=2
"\ set shiftwidth=2
" git commands {{{
nmap ghv <Plug>(GitGutterPreviewHunk)
nmap ghn <Plug>(GitGutterNextHunk)
nmap ghp <Plug>(GitGutterPrevHunk)
nmap ghf <Plug>(GitGutterFold)
nmap ghs <Plug>(GitGutterStageHunk)
" Controls fugitive diff split direction
set diffopt=vertical
"}}}
" plugin modification {{{
" FZF
map <C-p> :FZF<cr>
map <C-s> :FZF<cr>
" map <C-s> :tabNext<cr>
" This is the default extra key bindings
let g:fzf_action = {
\ 'ctrl-t': 'tab split',
@ -341,114 +239,93 @@
"}}}
" git commands {{{
nmap ghv <Plug>(GitGutterPreviewHunk)
nmap ghn <Plug>(GitGutterNextHunk)
nmap ghp <Plug>(GitGutterPrevHunk)
nmap ghf <Plug>(GitGutterFold)
nmap ghs <Plug>(GitGutterStageHunk)
" Controls fugitive diff split direction
set diffopt=vertical
command! Gundo !git reset --soft HEAD~1
" vimwiki {{{
let g:vimwiki_list = [
\ {'name': 'work', 'path': '~/.vim/work'},
\ {'name': 'home', 'path': '~/.vim/home'},
\ {'name': 'blog', 'path': '~/.vim/blog'},
\ {'name': 'vim', 'path': '~/.vim/vim'},
\ ]
let g:vimwiki_syntax = 'markdown'
let g:vimwiki_ext = '.md'
let g:vimwiki_automatic_nested_syntaxes = 1
let g:vimwiki_links_space_char = '_'
"}}}
" fold search {{{
" diffs {{{
hi DiffAdd cterm=none ctermfg=DarkGray ctermbg=Green
hi DiffChange cterm=none ctermfg=DarkGray ctermbg=Yellow
hi DiffDelete cterm=bold ctermfg=DarkGray ctermbg=Red
hi DiffText cterm=none ctermfg=DarkGray ctermbg=LightBlue
" command to fold everything except what you searched for
command! -nargs=* Fs
\ if <q-args> != '' |
\ exe "normal /".<q-args>."\<CR>" |
\ endif |
\ if @/ != '' |
\ setlocal
\ foldexpr=FoldRegex(v:lnum,@/,2)
\ foldmethod=expr
\ foldlevel=0 |
\ endif
function! FoldRegex(lnum,pat,context)
" get start/end positions for context lines
let startline=a:lnum-a:context
while startline < 1
let startline+=1
endwhile
let endline=a:lnum+a:context
while endline > line('$')
let endline-=1
endwhile
let returnval = 2
let pos=getpos('.')
" search from current line to get matches ON the line
call cursor(a:lnum, 1)
let matchline=search(a:pat,'cW',endline)
if matchline==a:lnum
let returnval = 0
elseif matchline > 0
" if current line didn't match, there could have been a match within
" trailing context lines
let returnval = 1
else
" if no match at current line, search leading context lines for a match
call cursor(startline, 1)
let matchline=search(a:pat,'cW',a:lnum)
if matchline > 0
let returnval = 1
endif
endif
call setpos('.',pos)
return returnval
endfun
" better diffs
set diffopt+=internal,algorithm:patience
" }}}
" copy matches {{{
function! CopyMatches(reg)
let hits = []
%s//\=len(add(hits, submatch(0))) ? submatch(0) : ''/gne
let reg = empty(a:reg) ? '+' : a:reg
execute 'let @'.reg.' = join(hits, "\n") . "\n"'
endfunction
command! -register CopyMatches call CopyMatches(<q-reg>)
" }}}
" vimrc {{{
" source $MYVIMRC reloads the saved $MYVIMRC
:nmap <Leader>s :source $MYVIMRC
" opens $MYVIMRC for editing, or use :tabedit $MYVIMRC
:nmap <Leader>v :e $MYVIMRC
" buffers {{{
let g:bufExplorerDisableDefaultKeyMapping=1 " Disable mapping.
"}}}
" hi DiffAdd ctermfg=NONE ctermbg=darkgreen
" hi DiffChange ctermfg=NONE ctermbg=darkgrey
" hi DiffDelete ctermfg=None ctermbg=Red
" hi Search cterm=NONE ctermfg=black ctermbg=lightgray
" broot {{{
let g:broot_default_conf_path=expand('~/.config/broot/conf.hjson')
let g:broot_replace_netrw=1
let g:loaded_netrwPlugin=1 " use broot for :E/T/V/Hexplore
"}}}
" ALE {{{
let g:ale_linters = {'javascript': ['tsserver'],
\ 'typescript': ['tsserver'],
\ 'typescriptreact': ['tsserver'],
\ 'python': ['flake8'],
\ 'css': ['csslint'],
\ 'dockerfile': ['hadolint'],
\ 'yaml': ['yamllint'] }
let g:ale_fixers = {
\ '*': ['remove_trailing_lines', 'trim_whitespace'] }
" let g:ale_set_loclist = 0
" let g:ale_set_quickfix = 1
let g:ale_set_quickfix = 0
let g:ale_set_loclist = 0
let g:ale_fix_on_save = 1
"}}}
" leaders {{{
:let mapleader = ","
" Underline with line of the same length
nnoremap <leader>- yypv$r-
" Insert date on current line
nnoremap <leader>d k :r !date <cr>
nnoremap <leader>se :Explore<cr>
nnoremap <leader>st :Texplore<cr>
nnoremap <leader>sv :Vexplore<cr>
nnoremap <leader>sh :Hexplore<cr>
nmap <leader>h :map <leader><cr>
nnoremap <leader>ad :ALEDetail<cr>
nnoremap <leader>ag :ALEGoToDefinition<cr>
nnoremap <leader>al :ALEPopulateQuickfix<cr>
nnoremap <leader>an :ALENext<cr>
nnoremap <leader>ap :ALEPrevious<cr>
nnoremap <leader>ar :ALERename<cr>
nnoremap <leader>b :BufExplorerHorizontalSplit<cr>
"}}}
"
" highlight DiffAdd cterm=bold ctermfg=10 ctermbg=17 gui=none guifg=bg guibg=Red
" highlight DiffDelete cterm=bold ctermfg=10 ctermbg=17 gui=none guifg=bg guibg=Red
" highlight DiffChange cterm=bold ctermfg=10 ctermbg=17 gui=none guifg=bg guibg=Red
" highlight DiffText cterm=bold ctermfg=10 ctermbg=88 gui=none guifg=bg guibg=Red
hi DiffAdd cterm=none ctermfg=NONE ctermbg=Green
hi DiffChange cterm=none ctermfg=NONE ctermbg=Grey
hi DiffDelete cterm=bold ctermfg=NONE ctermbg=Red
hi DiffText cterm=none ctermfg=NONE ctermbg=Yellow
" better diffs
set diffopt+=internal,algorithm:patience
" TODO: rebind c-n
" TODO: change ,k to ,n and add notes to version control
" folding options, this must be last in file
" vim:foldmethod=marker:foldlevel=0
" folding options {{{
" folding options, this must be last in file
" vim:foldmethod=marker:foldlevel=0
" }}}

View file

@ -92,3 +92,5 @@ autoload -Uz compinit && compinit
compinit
complete -C '/usr/local/bin/aws_completer' aws
source /Users/iankeane/.config/broot/launcher/bash/br