diff --git a/.config/.jira/.config.yml b/.config/.jira/.config.yml new file mode 100644 index 0000000..015918a --- /dev/null +++ b/.config/.jira/.config.yml @@ -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 diff --git a/.config/.jira/.config.yml.bkp b/.config/.jira/.config.yml.bkp new file mode 100644 index 0000000..e69de29 diff --git a/.config/base16-shell b/.config/base16-shell new file mode 160000 index 0000000..ce8e1e5 --- /dev/null +++ b/.config/base16-shell @@ -0,0 +1 @@ +Subproject commit ce8e1e540367ea83cc3e01eec7b2a11783b3f9e1 diff --git a/.config/fish/completions/awsume.fish b/.config/fish/completions/awsume.fish new file mode 100644 index 0000000..69cbcba --- /dev/null +++ b/.config/fish/completions/awsume.fish @@ -0,0 +1,3 @@ + +#Auto-Complete function for AWSume +complete --command awsume --arguments '(awsume-autocomplete)' diff --git a/.config/fish/completions/fisher.fish b/.config/fish/completions/fisher.fish new file mode 100644 index 0000000..6d23ce4 --- /dev/null +++ b/.config/fish/completions/fisher.fish @@ -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)" diff --git a/.config/fish/completions/nvm.fish b/.config/fish/completions/nvm.fish new file mode 100644 index 0000000..e94e50c --- /dev/null +++ b/.config/fish/completions/nvm.fish @@ -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 +)" diff --git a/.config/fish/completions/watson.fish b/.config/fish/completions/watson.fish new file mode 100644 index 0000000..e2cf7ce --- /dev/null +++ b/.config/fish/completions/watson.fish @@ -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)?" diff --git a/.config/fish/conf.d/nvm.fish b/.config/fish/conf.d/nvm.fish new file mode 100644 index 0000000..347c2bd --- /dev/null +++ b/.config/fish/conf.d/nvm.fish @@ -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 diff --git a/.config/fish/conf.d/omf.fish b/.config/fish/conf.d/omf.fish new file mode 100644 index 0000000..3e0f6d6 --- /dev/null +++ b/.config/fish/conf.d/omf.fish @@ -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 diff --git a/.config/fish/config.fish b/.config/fish/config.fish new file mode 100644 index 0000000..2b313c5 --- /dev/null +++ b/.config/fish/config.fish @@ -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 diff --git a/.config/fish/fish_plugins b/.config/fish/fish_plugins new file mode 100644 index 0000000..9673b42 --- /dev/null +++ b/.config/fish/fish_plugins @@ -0,0 +1,2 @@ +jorgebucaran/fisher +jorgebucaran/nvm.fish diff --git a/.config/fish/fish_variables b/.config/fish/fish_variables new file mode 100644 index 0000000..9961f16 --- /dev/null +++ b/.config/fish/fish_variables @@ -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 diff --git a/.config/fish/functions/_nvm_index_update.fish b/.config/fish/functions/_nvm_index_update.fish new file mode 100644 index 0000000..0ba3305 --- /dev/null +++ b/.config/fish/functions/_nvm_index_update.fish @@ -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 diff --git a/.config/fish/functions/_nvm_list.fish b/.config/fish/functions/_nvm_list.fish new file mode 100644 index 0000000..fb5ab0e --- /dev/null +++ b/.config/fish/functions/_nvm_list.fish @@ -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 diff --git a/.config/fish/functions/_nvm_version_activate.fish b/.config/fish/functions/_nvm_version_activate.fish new file mode 100644 index 0000000..b2aee92 --- /dev/null +++ b/.config/fish/functions/_nvm_version_activate.fish @@ -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 diff --git a/.config/fish/functions/_nvm_version_deactivate.fish b/.config/fish/functions/_nvm_version_deactivate.fish new file mode 100644 index 0000000..540f697 --- /dev/null +++ b/.config/fish/functions/_nvm_version_deactivate.fish @@ -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 diff --git a/.config/fish/functions/awsume.fish b/.config/fish/functions/awsume.fish new file mode 100644 index 0000000..1e4fbe4 --- /dev/null +++ b/.config/fish/functions/awsume.fish @@ -0,0 +1,3 @@ + +#AWSume alias to source the AWSume script +alias awsume="source (which awsume.fish)" diff --git a/.config/fish/functions/br.fish b/.config/fish/functions/br.fish new file mode 100644 index 0000000..d815b33 --- /dev/null +++ b/.config/fish/functions/br.fish @@ -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 diff --git a/.config/fish/functions/fish_mode_prompt.fish b/.config/fish/functions/fish_mode_prompt.fish new file mode 100644 index 0000000..d551f17 --- /dev/null +++ b/.config/fish/functions/fish_mode_prompt.fish @@ -0,0 +1,3 @@ +function fish_mode_prompt + # NOOP - Disable vim mode indicator +end diff --git a/.config/fish/functions/fish_prompt.fish b/.config/fish/functions/fish_prompt.fish new file mode 100644 index 0000000..ad3ce72 --- /dev/null +++ b/.config/fish/functions/fish_prompt.fish @@ -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 diff --git a/.config/fish/functions/fisher.fish b/.config/fish/functions/fisher.fish new file mode 100644 index 0000000..72203a2 --- /dev/null +++ b/.config/fish/functions/fisher.fish @@ -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 Install plugins" + echo " fisher remove Remove installed plugins" + echo " fisher update Update installed plugins" + echo " fisher update Update all installed plugins" + echo " fisher list [] 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 diff --git a/.config/fish/functions/mediamount.fish b/.config/fish/functions/mediamount.fish new file mode 100644 index 0000000..5ee5d36 --- /dev/null +++ b/.config/fish/functions/mediamount.fish @@ -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 diff --git a/.config/fish/functions/nvm.fish b/.config/fish/functions/nvm.fish new file mode 100644 index 0000000..e06a06d --- /dev/null +++ b/.config/fish/functions/nvm.fish @@ -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 Download and activate the specified Node version" + echo " nvm install Install version from nearest .nvmrc file" + echo " nvm use 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 List versions matching a given regular expression" + echo " nvm current Print the currently-active version" + echo " nvm uninstall 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(?\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 diff --git a/.config/fish/functions/w.fish b/.config/fish/functions/w.fish new file mode 100644 index 0000000..40872ac --- /dev/null +++ b/.config/fish/functions/w.fish @@ -0,0 +1,3 @@ +function w --wraps=watson --description 'alias w=watson' + watson $argv; +end diff --git a/.config/omf/bundle b/.config/omf/bundle new file mode 100644 index 0000000..61ca302 --- /dev/null +++ b/.config/omf/bundle @@ -0,0 +1,3 @@ +theme default +theme pie +theme spacefish diff --git a/.config/omf/channel b/.config/omf/channel new file mode 100644 index 0000000..2bf5ad0 --- /dev/null +++ b/.config/omf/channel @@ -0,0 +1 @@ +stable diff --git a/.config/omf/theme b/.config/omf/theme new file mode 100644 index 0000000..821cbda --- /dev/null +++ b/.config/omf/theme @@ -0,0 +1 @@ +pie diff --git a/.config/pgcli/config b/.config/pgcli/config new file mode 100644 index 0000000..bf9267a --- /dev/null +++ b/.config/pgcli/config @@ -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 = '' + +# 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 = "" diff --git a/.config/pgcli/history b/.config/pgcli/history new file mode 100644 index 0000000..e0ecd60 --- /dev/null +++ b/.config/pgcli/history @@ -0,0 +1,3097 @@ + +# 2021-06-01 14:31:05.506385 ++select * from auth_user + +# 2021-06-01 14:32:28.416061 ++exit + +# 2021-07-21 13:15:07.942929 ++\dt + +# 2021-07-21 13:15:32.935310 ++\d certifications_requirementfield + +# 2021-07-21 13:15:49.392824 ++\e vim + +# 2021-07-21 13:15:57.449990 ++\d certifications_requirementfield + +# 2021-07-21 13:16:12.794964 ++\d certifications_requirementfieldentry + +# 2021-07-21 13:16:24.598346 ++\dt certifications_requirementfieldentry + +# 2021-07-21 13:16:36.549003 ++\d certifications_requirementfieldentry + +# 2021-07-21 13:17:43.367454 ++\h + +# 2021-07-21 13:17:58.812243 ++select * from certifications_requirementfield + +# 2021-07-21 13:18:22.564939 ++select * from certifications_requirementfield \e + +# 2021-07-21 13:20:02.138237 ++select * from certifications_requirementfield \o + +# 2021-07-21 13:20:08.425302 ++select * from certifications_requirementfield \ef + +# 2021-07-21 13:20:10.329200 ++select * from certifications_requirementfield \e + +# 2021-07-21 13:20:15.177330 ++select * from certifications_requirementfield + +# 2021-07-21 13:26:54.184837 ++select * from certifications_certificationfieldentry + +# 2021-07-21 13:27:17.829256 ++select * from certifications_certificationtype + +# 2021-07-21 15:24:49.255100 ++\dt information_schema + +# 2021-07-21 15:57:40.425505 ++select * from certifications_requirementfieldentry + +# 2021-07-27 09:05:17.481432 ++select * from certifications_certificationtype + +# 2021-07-27 09:05:37.326694 ++select name from certifications_certificationtype + +# 2021-07-27 15:09:38.700670 ++select * from certifications_requirementfieldentry + +# 2021-07-27 15:12:21.944445 ++select * from certifications_requirementfieldentry where id=14 + +# 2021-07-27 15:16:57.924709 ++select * from certification + +# 2021-07-27 15:17:06.335020 ++select * from certifications_certification + +# 2021-07-27 15:30:45.082826 ++select * from certifications_requirementfieldentry where user=12 + +# 2021-07-27 15:31:02.165795 ++select * from certifications_requirementfieldentry where id=14 + +# 2021-07-27 15:32:36.365115 ++select * from certifications_certification + +# 2021-07-27 15:33:36.100486 ++select user_id from certifications_certification + +# 2021-07-27 15:33:42.244867 ++select user_id from certifications_certification where id=8 + +# 2021-07-27 15:33:54.248492 ++select * from auth_user where id=12 + +# 2021-07-27 15:34:56.187613 ++select * from certifications_certificationfieldentry + +# 2021-07-27 15:41:15.656404 ++select * from auth_user where id=14 + +# 2021-07-27 15:41:22.686042 ++select user_id from certifications_certification where id=8 + +# 2021-07-27 15:42:41.022480 ++select user_id from certifications_certification where id=77 + +# 2021-07-27 15:47:36.858762 ++select user_id from certifications_certification + +# 2021-07-27 15:47:48.128940 ++select id,user_id from certifications_certification + +# 2021-07-27 15:47:56.068617 ++select id,user_id from certifications_certification where user_id=14 + +# 2021-07-28 15:45:18.719787 ++select name from certifications_certificationtype + +# 2021-07-30 08:48:07.187034 ++select * from certifications_certificationfieldentry + +# 2021-07-30 08:48:11.715351 ++select * from certifications_certificationfield + +# 2021-07-30 08:48:21.529747 ++select * from certifications_certification + +# 2021-07-30 09:40:44.827498 ++select * from certifications_requirementfield + +# 2021-08-02 16:31:53.774268 ++select name from certifications_certificationtype + +# 2021-08-04 08:41:18.309156 ++\e + +# 2021-08-04 08:41:27.627789 ++BEGIN; ++SELECT setval(pg_get_serial_sequence('"certifications_notice"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_notice"; ++SELECT setval(pg_get_serial_sequence('"certifications_noticelog"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_noticelog"; ++SELECT setval(pg_get_serial_sequence('"certifications_noticedefaultlogrecord"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_noticedefaultlogrecord"; ++SELECT setval(pg_get_serial_sequence('"certifications_requirementfield_statuses"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_requirementfield_statuses"; ++SELECT setval(pg_get_serial_sequence('"certifications_requirementfield"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_requirementfield"; ++SELECT setval(pg_get_serial_sequence('"certifications_requirementfieldentry"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_requirementfieldentry"; ++SELECT setval(pg_get_serial_sequence('"certifications_certificationtype"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationtype"; ++SELECT setval(pg_get_serial_sequence('"certifications_accountnumber"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_accountnumber"; ++SELECT setval(pg_get_serial_sequence('"certifications_certificationrep"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationrep"; ++SELECT setval(pg_get_serial_sequence('"certifications_certification"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certification"; ++SELECT setval(pg_get_serial_sequence('"certifications_statusreport"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusreport"; ++SELECT setval(pg_get_serial_sequence('"certifications_certificationapp_payment_methods"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp_payment_methods"; ++SELECT setval(pg_get_serial_sequence('"certifications_certificationapp"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp"; ++SELECT setval(pg_get_serial_sequence('"certifications_certificationappfield"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationappfield"; ++SELECT setval(pg_get_serial_sequence('"certifications_certificationfieldentry"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationfieldentry"; ++SELECT setval(pg_get_serial_sequence('"certifications_statusfield"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusfield"; ++SELECT setval(pg_get_serial_sequence('"certifications_statusfieldentry"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusfieldentry"; ++SELECT setval(pg_get_serial_sequence('"certifications_certificationimport"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationimport"; ++SELECT setval(pg_get_serial_sequence('"certifications_certificationimportdata"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationimportdata"; ++COMMIT; + +# 2021-08-04 08:41:57.875948 ++select name from certifications_certificationtype + +# 2021-08-04 08:42:23.033642 ++exit + +# 2021-08-04 08:42:31.758051 ++select name from certifications_certificationtype + +# 2021-08-06 11:07:27.191921 ++BEGIN; ++SELECT setval(pg_get_serial_sequence('"search_unindexeditem"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "search_unindexeditem"; ++COMMIT; + +# 2021-08-06 11:10:30.961633 ++SELECT setval(pg_get_serial_sequence('"certifications_statusfield"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusfield"; ++SELECT setval(pg_get_serial_sequence('"certifications_statusfieldentry"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusfieldentry"; ++ + +# 2021-08-06 11:14:15.328369 ++BEGIN; ++SELECT setval(pg_get_serial_sequence('"directories_category"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_category"; ++SELECT setval(pg_get_serial_sequence('"directories_directory_cats"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_directory_cats"; ++SELECT setval(pg_get_serial_sequence('"directories_directory_sub_cats"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_directory_sub_cats"; ++SELECT setval(pg_get_serial_sequence('"directories_directory"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_directory"; ++SELECT setval(pg_get_serial_sequence('"directories_affiliateship"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_affiliateship"; ++SELECT setval(pg_get_serial_sequence('"directories_directorypricing"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_directorypricing"; ++SELECT setval(pg_get_serial_sequence('"directories_affiliaterequest"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_affiliaterequest"; ++SELECT setval(pg_get_serial_sequence('"directories_requestemail"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_requestemail"; ++SELECT setval(pg_get_serial_sequence('"directories_connection_affliated_cats"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_connection_affliated_cats"; ++SELECT setval(pg_get_serial_sequence('"directories_connection"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "directories_connection"; ++COMMIT; + +# 2021-08-06 11:50:48.672752 ++ ++BEGIN; ++SELECT setval(pg_get_serial_sequence('"certifications_notice"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_notice"; ++SELECT setval(pg_get_serial_sequence('"certifications_noticelog"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_noticelog"; ++SELECT setval(pg_get_serial_sequence('"certifications_noticedefaultlogrecord"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_noticedefaultlogrecord"; ++SELECT setval(pg_get_serial_sequence('"certifications_requirementfield_statuses"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_requirementfield_statuses"; ++SELECT setval(pg_get_serial_sequence('"certifications_requirementfield"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_requirementfield"; ++SELECT setval(pg_get_serial_sequence('"certifications_requirementfieldentry"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_requirementfieldentry"; ++SELECT setval(pg_get_serial_sequence('"certifications_certificationtype"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationtype"; ++SELECT setval(pg_get_serial_sequence('"certifications_accountnumber"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_accountnumber"; ++SELECT setval(pg_get_serial_sequence('"certifications_certificationrep"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationrep"; ++SELECT setval(pg_get_serial_sequence('"certifications_certification"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certification"; ++SELECT setval(pg_get_serial_sequence('"certifications_statusreport"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusreport"; ++SELECT setval(pg_get_serial_sequence('"certifications_certificationapp_payment_methods"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp_payment_methods"; ++SELECT setval(pg_get_serial_sequence('"certifications_certificationapp"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp"; ++SELECT setval(pg_get_serial_sequence('"certifications_certificationappfield"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationappfield"; ++SELECT setval(pg_get_serial_sequence('"certifications_certificationfieldentry"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationfieldentry"; ++SELECT setval(pg_get_serial_sequence('"certifications_statusfield"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusfield"; ++SELECT setval(pg_get_serial_sequence('"certifications_statusfieldentry"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_statusfieldentry"; ++SELECT setval(pg_get_serial_sequence('"certifications_certificationimport"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationimport"; ++SELECT setval(pg_get_serial_sequence('"certifications_certificationimportdata"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationimportdata"; ++COMMIT; + +# 2021-08-06 11:51:50.807563 ++SELECT setval(pg_get_serial_sequence('"certifications_certificationapp"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp"; + +# 2021-08-06 11:52:26.146287 ++SELECT setval(pg_get_serial_sequence('"certifications_certificationapp"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp" + +# 2021-08-06 11:54:40.492257 ++end + +# 2021-08-06 11:54:43.058382 ++SELECT setval(pg_get_serial_sequence('"certifications_certificationapp"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp" + +# 2021-08-06 11:56:17.039563 ++SELECT setval(pg_get_serial_sequence('"certifications_certificationapp_payment_methods"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationapp_payment_methods"; ++ + +# 2021-08-09 13:06:45.785388 ++select * from forms_fieldentry + +# 2021-08-09 13:06:54.924999 ++select * from forms_formentry + +# 2021-08-09 13:08:13.178256 ++select * from information_schema.columns + +# 2021-08-09 13:08:33.544740 ++select * from information_schema.columns where column_name like '%form%' + +# 2021-08-09 13:10:57.886508 ++select * from certifications_certificationapp + +# 2021-08-09 13:11:11.086678 ++select * from certifications_certificationapp /e + +# 2021-08-09 13:11:14.265879 ++select * from certifications_certificationapp + +# 2021-08-09 13:11:40.432622 ++select certification_type_id,form_2nd_conf_text, form_2nd_desc, form_2nd_name from certifications_certificationapp + +# 2021-08-09 15:11:44.295917 ++select * from information_schema.columns where column_name like '%form%' + +# 2021-08-09 15:18:54.717259 ++select * from forms_fieldentry + +# 2021-08-09 15:19:08.326394 ++select * from forms_formentry + +# 2021-08-09 15:20:03.364528 ++select * from forms_field + +# 2021-08-09 15:20:09.194795 ++select * from forms_form + +# 2021-08-09 15:20:39.029139 ++select * from information_schema.columns where column_name like '%form%' + +# 2021-08-09 15:25:13.569566 ++SELECT setval(pg_get_serial_sequence('"certifications_certificationappfield"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "certifications_certificationappfield"; ++ + +# 2021-08-09 15:29:20.392012 ++select * from certifications_certificationfieldentry + +# 2021-08-09 15:31:02.564406 ++select * from certifications_certificationapp + +# 2021-08-09 15:31:32.168869 ++select columns from information_schema where table="certifications_certificationapp" + +# 2021-08-09 15:31:44.077459 ++select columns from information_schema where table_name="certifications_certificationapp" + +# 2021-08-09 15:31:48.184193 ++select * from information_schema + +# 2021-08-09 15:32:10.950383 ++select columns from information_schema.columns where table_name="certifications_certificationapp" + +# 2021-08-09 15:32:34.426934 ++select columns from information_schema.columns where table_name='certifications_certificationapp' + +# 2021-08-09 15:32:50.927496 ++clear + +# 2021-08-09 15:32:53.802623 ++cls + +# 2021-08-09 15:52:48.372390 ++select * from certifications_certificationfieldentry + +# 2021-08-09 16:06:42.018945 ++select * from certifications_certificationfieldentry + +# 2021-08-11 11:28:05.007916 ++select * from certifications_certificationfieldentry + +# 2021-08-11 11:28:29.191111 ++select * from certifications_certificationfield + +# 2021-08-11 11:28:41.000599 ++select * from certifications_certificationappfield + +# 2021-08-11 11:30:58.974048 ++select columns from information_schema.columns where table_name='certification_certificationappfield' + +# 2021-08-11 11:31:24.007474 ++select columns from information_schema.columns where table_name='certifications_certificationappfield' + +# 2021-08-11 11:32:50.195924 ++select * from certifications_certificationappfield + +# 2021-08-11 11:34:55.940204 ++select * from certifications_certificationappfieldentry + +# 2021-08-11 11:35:13.363084 ++select * from certifications_certificationfieldentry + +# 2021-08-11 11:35:32.776901 ++select * from certifications_certificationappfieldentry + +# 2021-08-11 11:35:36.669744 ++select * from certifications_certificationfieldentry + +# 2021-08-11 11:35:41.850831 ++select * from certifications_certificationappfield + +# 2021-08-11 11:36:00.462370 ++select * from certifications_certificationfieldentry + +# 2021-08-11 17:14:21.462151 ++select * from certifications_certificationfield + +# 2021-08-11 17:14:39.342389 ++select * from certifications_certificationappfield + +# 2021-08-12 13:10:57.074542 ++select * from certifications_certificationfieldentry + +# 2021-08-16 10:21:28.382606 ++ls + +# 2021-08-16 10:21:36.073995 ++exit + +# 2021-08-18 13:22:35.114817 ++select * from contacts_company + +# 2021-08-18 13:22:44.537553 ++select * from contacts_company_urls + +# 2021-08-18 13:23:02.020874 ++select * from corporate_memberships_corpmembershipapp_corp_memb_type + +# 2021-08-18 13:23:40.810371 ++select * from corporate_memberships_corpprofile + +# 2021-08-19 08:03:21.965558 ++select * from directories_directory + +# 2021-08-19 08:27:50.146779 ++select * from categories_category + +# 2021-08-19 08:46:41.790093 ++select * from directories_directory + +# 2021-08-19 08:50:45.146416 ++select * from directories_category + +# 2021-08-19 08:51:01.266105 ++select * from directories_directory_cats + +# 2021-08-19 09:33:49.048193 ++select * from directories_category + +# 2021-08-19 09:39:58.984656 ++select * from categories_category + +# 2021-08-19 09:40:11.586033 ++select * from categories_categoryitem + +# 2021-08-19 09:55:48.948346 ++select * from directories_category + +# 2021-08-19 10:06:59.769160 ++select * from directories_directory_cats + +# 2021-08-19 10:42:57.917546 ++select * from directories_directory + +# 2021-08-24 17:07:50.176758 ++select * from directories_directory_cats + +# 2021-08-24 17:08:10.713052 ++select * from directories_directory + +# 2021-10-01 14:44:34.155617 ++exit + +# 2021-10-01 14:44:50.230109 ++select * from certification_extension_castle_id + +# 2021-10-01 15:01:25.610623 ++exit + +# 2021-10-01 15:01:37.668511 ++select * from certification_extension_castle_id + +# 2021-10-01 15:21:54.934629 ++exit + +# 2021-10-01 15:24:24.719616 ++select * from certification_extension_scantron + +# 2021-10-04 08:36:48.710958 ++exit + +# 2021-10-04 08:41:29.244466 ++select * from certifications_accountnumber + +# 2021-10-04 08:49:43.028732 ++select * from certification_extension_castle_id + +# 2021-10-04 08:57:38.559559 ++exit + +# 2021-10-04 09:41:06.514555 ++select * from certifications_accountnumber + +# 2021-10-04 09:41:14.654266 ++cert + +# 2021-10-04 09:42:08.908343 ++select * from certification_extension_castle_id + +# 2021-10-04 09:43:10.977806 ++exit + +# 2021-10-04 09:43:25.160593 ++select * from certification_extension_castle_id + +# 2021-10-04 09:52:43.073288 ++select * from certification_extension_castleid + +# 2021-10-04 09:52:46.546151 ++exit + +# 2021-10-04 09:53:10.946414 ++select * from certification_extension_castleid + +# 2021-10-04 09:53:14.203940 ++exit + +# 2021-10-04 09:54:02.968865 ++select * from certification_extension_castleid + +# 2021-10-04 10:07:38.282864 ++exit + +# 2021-10-04 10:08:41.209214 ++select * from certification_extension_scantron + +# 2021-10-04 10:12:36.419387 ++exit + +# 2021-10-04 13:06:52.179988 ++select * from certification_extension_scantron + +# 2021-10-04 14:29:09.582729 ++exit + +# 2021-10-05 14:46:07.108772 ++select * from certification_extension_scantron + +# 2021-10-05 14:53:39.177877 ++select * from certifications_certificationapp + +# 2021-10-05 14:53:59.129676 ++select * from certifications_certificationapp_payment_methods + +# 2021-10-05 14:54:07.402597 ++select * from certifications_certificationapp + +# 2021-10-05 15:56:35.929478 ++select * from corporate_memberships_corpmembershipapp_corp_memb_type + +# 2021-10-05 15:58:05.724535 ++select * from certifications_requirementfield_statuses + +# 2021-10-05 16:05:18.129052 ++exit + +# 2021-10-05 16:05:38.079111 ++select * from certification_extension_scantron + +# 2021-10-05 16:05:53.155076 ++exit + +# 2021-10-05 16:06:29.206854 ++select * from certification_extension_scantron + +# 2021-10-05 16:07:59.003589 ++drop database postgres + +# 2021-10-05 16:08:11.924733 ++close database postgres + +# 2021-10-05 16:08:24.366940 ++exit + +# 2021-10-05 16:09:00.645677 ++drop database postgres + +# 2021-10-05 16:27:20.240269 ++exit + +# 2021-10-05 16:28:07.615906 ++select * from certification_extension_answer + +# 2021-10-05 16:28:14.138794 ++select * from certification_extension_answer_exam + +# 2021-10-05 16:29:30.788015 ++select * from certifications_requirementfield_statuses + +# 2021-10-05 16:39:52.061767 ++exit + +# 2021-10-06 11:39:01.784858 ++ls + +# 2021-10-06 11:39:09.562237 ++select * from certification_extension_scantronprofile + +# 2021-10-06 11:50:55.925603 ++select * from certification_extension_scantronexam + +# 2021-10-06 11:54:56.293573 ++select * from certification_extension_scantronexamanswer + +# 2021-10-06 11:58:07.269719 ++select * from examlevel + +# 2021-10-06 11:58:12.545770 ++select * from certification_extension_scantronexamlevel + +# 2021-10-06 14:27:14.482877 ++select * from certification_extension_scantronprofile + +# 2021-10-06 14:30:23.320306 ++select * from certification_extension_scantronexam + +# 2021-10-06 14:34:09.231122 ++select * from certification_extension_scantronprofile + +# 2021-10-06 14:38:20.142185 ++select * from certification_extension_scantronexam + +# 2021-10-06 14:49:19.365019 ++select * from certification_extension_scantronexamlevel + +# 2021-10-06 14:56:56.957600 ++select * from certification_extension_scantronexamanswer + +# 2021-10-06 14:58:06.225959 ++select * from certification_extension_scantronprofile + +# 2021-10-06 14:58:15.331788 ++select * from certification_extension_scantronexam + +# 2021-10-06 14:58:22.172360 ++select * from examlevel + +# 2021-10-06 14:58:26.102142 ++select * from certification_extension_scantronexamlevel + +# 2021-10-06 14:58:33.521553 ++select * from certification_extension_scantronexamanswer + +# 2021-10-06 15:02:48.499763 ++select * from certification_extension_scantronexam + +# 2021-10-06 15:06:06.935513 ++clear + +# 2021-10-06 15:06:08.394084 ++cls + +# 2021-10-06 15:06:11.162807 ++exit + +# 2021-10-06 15:06:28.262655 ++select * from certification_extension_scantronprofile + +# 2021-10-06 15:06:34.971952 ++select * from certification_extension_scantronexam + +# 2021-10-06 15:06:44.637435 ++select * from certification_extension_scantronexamanswer + +# 2021-10-06 15:06:52.471025 ++select * from certification_extension_scantronexamlevel + +# 2021-10-06 15:21:38.073063 ++select * from certification_extension_scantronexamanswer + +# 2021-10-06 16:15:47.573776 ++select * from certification_extension_scantronprofile + +# 2021-10-06 16:15:58.945115 ++select * from certification_extension_scantronexam + +# 2021-10-06 16:16:39.859597 ++select * from certification_extension_scantronexamanswer + +# 2021-10-06 16:17:02.677854 ++select * from certification_extension_scantronexamlevel + +# 2021-10-06 16:25:35.090931 ++select * from certification_extension_scantronprofile + +# 2021-10-07 09:16:52.356096 ++select * from certification_extension_scantronexamlevel + +# 2021-10-07 09:19:07.230518 ++exit + +# 2021-10-07 09:19:13.898359 ++select * from certification_extension_scantronexamlevel + +# 2021-10-07 09:38:05.729141 ++select * from certification_extension_scantronexamanswer + +# 2021-10-07 11:15:16.170252 ++select * from certification_extension_scantronexam + +# 2021-10-07 11:36:54.192736 ++select * from certification_extension_scantronexamanswer + +# 2021-10-07 11:37:30.780826 ++select * from certification_extension_scantronexamlevel + +# 2021-10-07 11:42:08.029065 ++select * from certification_extension_scantronexam + +# 2021-10-07 11:44:46.339112 ++select * from certification_extension_scantronexamanswer + +# 2021-10-07 11:44:51.716572 ++select * from certification_extension_scantronexam + +# 2021-10-07 11:44:56.608229 ++select * from certification_extension_scantronexamlevel + +# 2021-10-07 11:44:59.733059 ++select * from certification_extension_scantronexamanswer + +# 2021-10-07 11:49:56.705740 ++select * from certification_extension_scantronexamlevel + +# 2021-10-07 11:50:05.198693 ++select * from certification_extension_scantronexam + +# 2021-10-07 13:20:04.024643 ++select * from certification_extension_scantronexamlevel + +# 2021-10-07 14:11:39.556347 ++select * from certification_extension_scantronexamanswer + +# 2021-10-07 14:21:53.982240 ++select * from certification_extension_scantronexam + +# 2021-10-07 14:24:47.141684 ++select * from certification_extension_scantronexamlevel + +# 2021-10-07 14:25:34.940640 ++select * from certification_extension_scantronexamanswer + +# 2021-10-07 14:40:52.149012 ++select * from certification_extension_scantronexam + +# 2021-10-07 14:41:17.845509 ++truncate table certification_extension_scantronexam + +# 2021-10-07 14:41:26.739905 ++select * from certification_extension_scantronexam + +# 2021-10-07 14:41:44.192285 ++truncate table certification_extension_scantronexam + +# 2021-10-07 14:41:58.546613 ++truncate table certification_extension_scantronexam cascade + +# 2021-10-07 14:42:09.526060 ++select * from certification_extension_scantronexam + +# 2021-10-07 14:42:13.074057 ++select * from certification_extension_scantronexamanswer + +# 2021-10-07 14:42:15.705004 ++select * from certification_extension_scantronexamlevel + +# 2021-10-07 14:43:10.278132 ++select * from certification_extension_scantronexam + +# 2021-10-07 14:44:57.360238 ++select * from certification_extension_scantronexamlevel + +# 2021-10-07 14:45:01.527682 ++select * from certification_extension_scantronexamanswer + +# 2021-10-07 14:45:06.341583 ++select * from certification_extension_scantronexam + +# 2021-10-07 14:48:15.300875 ++exit + +# 2021-10-07 14:48:57.142209 ++select * from certification_extension_scantronexam + +# 2021-10-07 14:50:07.987741 ++select * from certification_extension_scantronexamanswer + +# 2021-10-07 14:50:20.027474 ++select * from certification_extension_scantronexamlevel + +# 2021-10-07 14:50:39.373974 ++select * from certification_extension_scantronexamanswer + +# 2021-10-07 14:50:42.012904 ++select * from certification_extension_scantronexamlevel + +# 2021-10-07 14:50:45.661599 ++select * from certification_extension_scantronexam + +# 2021-10-07 14:51:18.909221 ++select * from certification_extension_scantronexamlevel + +# 2021-10-07 14:51:26.255442 ++select * from certification_extension_scantronexamanswer + +# 2021-10-07 17:03:49.026906 ++select * from certification_extension_scantronexam + +# 2021-10-07 17:06:32.728603 ++select * from certification_extension_scantronexamanswer + +# 2021-10-07 17:06:36.308761 ++select * from certification_extension_scantronexamlevel + +# 2021-10-07 17:06:49.791388 ++select * from certification_extension_scantronexam + +# 2021-10-07 17:07:58.876538 ++select * from certification_extension_scantronexamlevel + +# 2021-10-07 17:08:17.277743 ++select * from certification_extension_scantronexamanswer + +# 2021-10-12 14:20:39.069064 ++select * from certification_extension_scantronexam + +# 2021-10-14 11:36:25.850235 ++select * from scan + +# 2021-10-14 11:36:28.378577 ++exit + +# 2021-10-14 11:37:36.152966 ++ls + +# 2021-10-14 11:37:43.232390 ++select * from certification_extension_scantronexam + +# 2021-10-14 12:02:38.545073 ++select * from certifications_certificationimport + +# 2021-10-14 12:02:54.486435 ++select * from accountnumber + +# 2021-10-14 12:02:57.587171 ++select * from certifications_accountnumber + +# 2021-10-14 12:03:17.664286 ++select * from certifications_certificationrep + +# 2021-10-14 12:03:43.464142 ++select * from statusreport + +# 2021-10-14 12:10:23.986399 ++select * from corporate_memberships_creator + +# 2021-10-14 12:10:31.675412 ++select * from freepasses + +# 2021-10-14 12:10:35.043268 ++select * from corporate_memberships_freepassesstat + +# 2021-10-14 12:11:04.685876 ++select * from corporate_memberships_indivemailverification + +# 2021-10-14 12:11:30.743032 ++select * from corporate_memberships_corpmembershipimport + +# 2021-10-14 13:02:17.078775 ++select * from payments_payment + +# 2021-10-14 13:06:41.691606 ++select type(payment_id) from payments_payment + +# 2021-10-14 13:07:32.938968 ++select data_type from information_schema.columns where table_name = 'payments_payment' + +# 2021-10-14 13:08:09.163817 ++select data_type from information_schema.columns where table_name = 'payments_payment' and column_name= + +# 2021-10-14 13:08:11.645199 ++select * from payments_payment + +# 2021-10-14 13:08:32.548276 ++select data_type from information_schema.columns where table_name = 'payments_payment' and column_name=guid + +# 2021-10-14 13:08:38.457477 ++select data_type from information_schema.columns where table_name = 'payments_payment' and column_name='guid' + +# 2021-10-14 13:08:51.811472 ++select * from payments_payment + +# 2021-10-14 13:09:07.353934 ++select length('80eff2d9-3a67-4e3c-853a-aa52f858e536') + +# 2021-10-14 13:10:18.946287 ++select * from payments_payment + +# 2021-10-14 13:10:26.522124 ++select data_type from information_schema.columns where table_name = 'payments_payment' and column_name='amount' + +# 2021-10-14 14:21:28.386710 ++select * from payments_payment + +# 2021-10-15 14:16:49.920012 ++exit + +# 2021-10-15 14:42:42.016654 ++ls + +# 2021-10-15 15:30:35.564336 ++exit + +# 2021-10-18 08:07:14.577679 ++select * from billable + +# 2021-10-18 08:07:19.983110 ++select * from certification_extension_billableevent + +# 2021-10-18 08:28:13.789177 ++vim + +# 2021-10-18 08:28:16.638426 ++exit + +# 2021-10-18 08:35:15.386215 ++select * from categories_category + +# 2021-10-18 08:35:22.006018 ++exit + +# 2021-10-18 09:59:27.890545 ++select * from payments_paymentmethod + +# 2021-10-19 09:13:55.841116 ++exit + +# 2021-10-21 14:41:10.688202 ++select * from certifications_certification + +# 2021-10-21 14:42:21.560197 ++select * from information_schema.columns + +# 2021-10-21 14:42:40.747616 ++select column_name from information_schema.columns + +# 2021-10-21 14:42:53.907411 ++select column_name from information_schema.columns where table_name like '*certification*' + +# 2021-10-21 14:42:59.556493 ++select column_name from information_schema.columns where table_name like '%certification%' + +# 2021-10-21 14:43:17.653877 ++select column_name, table_name from information_schema.columns where table_name like '%certification%' + +# 2021-10-21 14:54:51.313796 ++select * from certifications_certification + +# 2021-10-22 10:27:53.547123 ++exit + +# 2021-10-22 10:47:25.982149 ++select id, create_date from certifications_certification + +# 2021-10-22 10:47:35.289254 ++select id, create_dt from certifications_certification + +# 2021-10-22 10:47:40.723587 ++select id, create_dt from certifications_certification order by id + +# 2021-10-22 10:48:06.297312 ++select id, create_dt, renewal from certifications_certification order by id + +# 2021-10-22 10:48:45.568981 ++select id, create_dt from certifications_certification order by id + +# 2021-10-22 10:48:52.918306 ++select * from certifications_certification + +# 2021-10-22 10:52:17.018733 ++select id, create_dt, status from certifications_certification order by id + +# 2021-10-22 10:54:50.862210 ++select id, create_dt, renewal, status from certifications_certification order by id + +# 2021-10-25 11:23:25.750836 ++select * from payments_paymentmethod + +# 2021-10-25 11:36:41.782157 ++select * from auth_user + +# 2021-10-25 11:43:52.542898 ++select * from certifications_requirementfield + +# 2021-10-25 11:44:12.031191 ++select * from certifications_requirementfield_statuses + +# 2021-10-25 11:44:34.190046 ++select * from certifications_statusfield + +# 2021-10-25 11:53:40.366639 ++select * from certifications_requirementfield + +# 2021-10-25 11:56:22.488356 ++select * from certifications_requirementfieldentry + +# 2021-10-25 11:56:39.413319 ++select * from certifications_statusfieldentry + +# 2021-10-25 11:57:24.655246 ++select * from certifications_requirementfield + +# 2021-10-25 11:57:42.058000 ++select * from certifications_requirementfield_statuses + +# 2021-10-25 12:13:35.663332 ++select * from certifications_requirementfieldentry + +# 2021-10-25 14:20:12.076871 ++select * from certification_extension_billableevent + +# 2021-10-27 14:16:38.056418 ++exit + +# 2021-10-27 14:17:02.887320 ++select * from ltp_answerbase + +# 2021-10-27 14:17:17.148999 ++select * from ltp_course + +# 2021-10-27 14:33:57.713153 ++select * from ltp_review + +# 2021-11-04 09:04:28.194401 ++exit + +# 2021-11-04 09:08:57.016999 ++select * from certification_extension_scantronexamanswer + +# 2021-11-04 09:43:57.969078 ++exit + +# 2021-11-04 09:44:05.606720 ++select * from certification_extension_billableevent + +# 2021-11-05 08:30:01.436790 ++exit + +# 2021-11-05 08:30:07.209876 ++select * from certification_extension_billableevent + +# 2021-11-05 08:35:41.072042 ++\d certification_extension_billableevent + +# 2021-11-05 08:36:23.963944 ++select * from pg_catalog.pg_constraint + +# 2021-11-05 08:36:44.210891 ++select * from pg_catalog.pg_constraint where conname like '%bill%' + +# 2021-11-05 08:47:47.057196 ++exit + +# 2021-11-05 08:50:22.987019 ++ls + +# 2021-11-05 08:50:33.972312 ++select * from certification_extension_billableevent + +# 2021-11-05 08:57:05.579219 ++exit + +# 2021-11-05 08:57:31.501150 ++select * from certification_extension_billableevent + +# 2021-11-05 08:57:37.234308 ++\d certification_extension_billableevent + +# 2021-11-05 08:59:22.255574 ++select * from certification_extension_billableevent + +# 2021-11-08 08:55:16.125981 ++ls + +# 2021-11-08 08:55:29.765641 ++exit + +# 2021-11-08 10:22:28.029804 ++select * from certification_extension_billableevent + +# 2021-11-08 10:28:19.489904 ++\d certification_extension_billableevent + +# 2021-11-08 10:36:22.695610 ++drop table certification_extension_billableevent, certification_extension_scantronexam, certification_extension_scantronexamanswer, certification_extension_scantronprofile + +# 2021-11-08 10:37:15.099372 ++select * from certification_extension_scantronprofile + +# 2021-11-08 10:37:38.848256 ++select * from certification_extension_billableevent + +# 2021-11-08 10:37:42.416874 ++drop table certification_extension_billableevent, certification_extension_scantronexam, certification_extension_scantronexamanswer, certification_extension_scantronprofile + +# 2021-11-08 10:37:52.495003 ++drop table certification_extension_billableevent, certification_extension_scantronexamanswer, certification_extension_scantronprofile + +# 2021-11-08 10:38:03.817568 ++drop table certification_extension_billableevent + +# 2021-11-08 10:38:18.116473 ++drop table certification_extension_scantronprofile + +# 2021-11-08 10:40:15.104535 ++\d certification_extension_billableevent + +# 2021-11-08 10:40:55.516563 ++select * from certification_extension_billableevent + +# 2021-11-08 10:46:04.242158 ++\d certification_extension_billableevent + +# 2021-11-08 10:52:13.748194 ++select * from certification_extension_billableevent + +# 2021-11-08 11:02:58.252424 ++ls + +# 2021-11-08 11:03:16.658752 ++exit + +# 2021-11-08 13:34:30.176018 ++select * from djangoreact_movie + +# 2021-11-08 13:34:32.634956 ++exit + +# 2021-11-08 13:37:41.584063 ++select * from djangoreact_movie + +# 2021-11-08 13:37:50.055166 ++exit + +# 2021-11-08 14:08:23.767897 ++\d certification_extension_billableevent + +# 2021-11-08 14:28:04.900736 ++ls + +# 2021-11-08 14:29:57.707462 ++\d certification_extension_billableevent + +# 2021-11-08 14:34:59.792969 ++select * from certification_extension_billableevent + +# 2021-11-08 14:35:10.315880 ++drop table certification_extension_billableevent + +# 2021-11-08 14:35:15.716353 ++select * from certification_extension_billableevent + +# 2021-11-08 14:40:11.864329 ++exit + +# 2021-11-09 14:58:57.955186 ++\d certification_extension_billableevent + +# 2021-11-09 14:59:00.885634 ++ls + +# 2021-11-09 14:59:03.291155 ++select * from certification_extension_billableevent + +# 2021-11-09 14:59:47.497440 ++\d + +# 2021-11-09 14:59:52.161382 ++\d certification_extension_billableevent + +# 2021-11-10 13:49:15.039603 ++exit + +# 2021-11-10 13:49:36.219730 ++select * from certification_extension_scantrontransaction + +# 2021-11-10 13:49:43.652313 ++select * from certification_extension_scantronprofile + +# 2021-11-11 08:22:17.085418 ++select * from certification_extension_scantrontransaction + +# 2021-11-11 08:38:42.461534 ++select * from certification_extension_scantronpackage + +# 2021-11-11 13:07:49.516035 ++exit + +# 2021-11-11 14:13:10.725821 ++select * from certification_extension_scantronexamregistration + +# 2021-11-12 08:47:02.196995 ++exit + +# 2021-11-12 08:47:20.500881 ++select * from certification_extension_scantronexamregistration + +# 2021-11-12 14:22:56.844317 ++select * from certification_extension_scantronexamregistration \ + +# 2021-11-12 14:22:58.467115 ++select * from certification_extension_scantronexamregistration + +# 2021-11-15 16:11:38.640681 ++drop table certification_extension_scantronexamregistration + +# 2021-11-15 16:37:48.029576 ++exit + +# 2021-11-15 16:39:27.907573 ++select * from certification_extension_scantronexamregistration + +# 2021-11-16 14:19:11.458256 ++select * from certification_extension_scantronexam + +# 2021-11-16 15:05:46.680430 ++select * from certification_extension_scantronexamregistration + +# 2021-11-16 15:32:42.797692 ++exit + +# 2021-11-16 15:32:53.521020 ++select * from certification_extension_scantronexamregistration + +# 2021-11-17 08:12:01.526134 ++exit + +# 2021-11-17 08:12:10.390392 ++select * from certification_extension_scantronexamregistration + +# 2021-11-17 14:40:01.409277 ++select * from certification_extension_scantronexam + +# 2021-11-22 14:36:27.815626 ++exit + +# 2021-11-22 14:36:39.170186 ++select * from certification_extension_scantronexam + +# 2021-11-22 14:36:50.468194 ++select * from certification_extension_scantronexamregistration + +# 2021-11-22 15:01:49.132600 ++select * from certification_extension_scantronprofile + +# 2021-11-23 15:18:49.040372 ++select * from certification_extension_scantronexam + +# 2021-11-23 15:31:56.880615 ++select * from certification_extension_scantronexamanswer + +# 2021-11-23 15:32:05.321218 ++select * from certification_extension_scantronexam + +# 2021-11-23 15:39:30.473714 ++select * from certification_extension_scantronexamanswer + +# 2021-11-23 15:39:38.629217 ++select * from certification_extension_scantronexamlevel + +# 2021-11-23 15:41:22.760906 ++exit + +# 2021-11-29 10:42:15.553022 ++select * from certification_extension_scantronexamregistration + +# 2021-11-29 13:23:37.532740 ++truncate table certification_extension_scantronexamregistration + +# 2021-11-29 13:23:40.207615 ++select * from certification_extension_scantronexamregistration + +# 2021-11-29 14:04:51.944136 ++\d certification_extension_scantronexamregistration + +# 2021-11-29 14:05:07.934591 ++\d certification_extension_scantronexam + +# 2021-11-29 14:17:06.623742 ++select * from certification_extension_scantronexamregistration + +# 2021-11-29 16:12:05.161018 ++truncate table certification_extension_scantronexamregistration + +# 2021-11-29 16:12:08.705644 ++select * from certification_extension_scantronexamregistration + +# 2021-11-29 16:12:57.622225 ++truncate table certification_extension_scantronexamregistration + +# 2021-11-29 16:13:31.463723 ++select * from certification_extension_scantronexamregistration + +# 2021-12-01 08:39:46.312939 ++truncate table certification_extension_scantronexamregistration + +# 2021-12-01 08:39:57.300471 ++select * from certification_extension_scantronexamregistration + +# 2021-12-01 08:41:12.278551 ++truncate table certification_extension_scantronexamregistration + +# 2021-12-01 08:41:40.237812 ++select * from certification_extension_scantronexamregistration + +# 2021-12-01 08:43:35.020354 ++truncate table certification_extension_scantronexamregistration + +# 2021-12-01 08:44:17.249536 ++select * from certification_extension_scantronexamregistration + +# 2021-12-01 08:45:21.998856 ++truncate table certification_extension_scantronexamregistration + +# 2021-12-01 08:45:50.216408 ++select * from certification_extension_scantronexamregistration + +# 2021-12-01 08:54:48.865348 ++truncate table certification_extension_scantronexamregistration + +# 2021-12-01 08:55:40.034021 ++select * from certification_extension_scantronexamregistration + +# 2021-12-01 14:16:59.365229 ++truncate table certification_extension_scantronexamregistration + +# 2021-12-01 14:18:14.151915 ++select * from certification_extension_scantronexamregistration + +# 2021-12-07 07:13:06.768518 ++truncate table certification_extension_scantronexamregistration + +# 2021-12-07 07:13:21.962859 ++select * from certification_extension_scantronexam + +# 2021-12-07 07:13:26.846483 ++select * from certification_extension_scantronexamanswer + +# 2021-12-07 07:13:33.378609 ++select * from certification_extension_scantronexamlevel + +# 2021-12-07 07:14:29.347559 ++select * from certification_extension_scantronexam + +# 2021-12-07 07:19:28.868610 ++select * from certification_extension_scantronexamregistration + +# 2021-12-07 07:19:32.153797 ++truncate table certification_extension_scantronexamregistration + +# 2021-12-07 07:21:53.470862 ++select * from certification_extension_scantronexamregistration + +# 2021-12-07 08:09:19.970499 ++truncate table certification_extension_scantronexamregistration + +# 2021-12-07 08:13:09.186000 ++select * from certification_extension_scantronexamregistration + +# 2021-12-07 08:15:04.357926 ++truncate table certification_extension_scantronexamregistration + +# 2021-12-07 08:15:08.053537 ++select * from certification_extension_scantronexamregistration + +# 2021-12-07 08:17:11.802353 ++truncate table certification_extension_scantronexamregistration + +# 2021-12-07 08:19:36.630480 ++select * from certification_extension_scantronexamregistration + +# 2021-12-07 08:20:43.278727 ++truncate table certification_extension_scantronexamregistration + +# 2021-12-07 08:20:49.803360 ++select * from certification_extension_scantronexamregistration + +# 2021-12-07 08:45:35.478234 ++select * from certification_extension_scantronexam + +# 2021-12-07 08:50:38.449185 ++select * from profiles_profile + +# 2021-12-07 08:53:00.445051 ++select * from certification_extension_scantronexam + +# 2021-12-07 08:53:39.213491 ++select * from profiles_profile + +# 2021-12-07 14:16:11.396288 ++select * from certification_extension_scantronprofile + +# 2021-12-07 14:18:38.908963 ++select * from certification_extension_scantronexam + +# 2021-12-07 14:21:27.781969 ++select * from certification_extension_scantronexamanswer + +# 2021-12-07 14:21:45.014891 ++select * from certification_extension_scantronexamlevel + +# 2021-12-09 16:14:46.236789 ++select * from certification_extension_scantronexam + +# 2021-12-09 16:15:42.700655 ++select * from certification_extension_scantronexamregistration + +# 2021-12-10 07:55:31.941680 ++select * from certification_extension_scantronexamanswer + +# 2021-12-10 08:17:50.878321 ++select * from certification_extension_scantronprofile + +# 2021-12-10 15:58:26.605262 ++select * from certifications_requirementfield + +# 2021-12-13 10:21:28.707622 ++select * from certifications_requirementfieldentry + +# 2021-12-13 16:25:29.274501 ++exit + +# 2021-12-13 16:25:42.398764 ++select * from certifications_certification + +# 2021-12-14 13:30:06.231165 ++exit + +# 2021-12-14 13:30:15.308107 ++select * from certification_extension_scantronexam + +# 2021-12-15 17:02:35.865043 ++exit + +# 2021-12-15 17:03:17.671736 ++select * from certification_extension_scantronexam + +# 2021-12-15 17:03:42.085646 ++select * from requirementfieldentry + +# 2021-12-15 17:03:56.133966 ++exit + +# 2021-12-15 17:08:57.138321 ++select * from certifications_requirementfieldentry + +# 2021-12-15 17:09:07.902527 ++select * from certifications_requirementfield + +# 2021-12-15 17:09:35.065418 ++select * from certifications_certification + +# 2021-12-15 17:09:54.405378 ++select * from certifications_requirementfieldentry + +# 2021-12-15 17:09:57.711258 ++select * from certifications_requirementfield + +# 2021-12-15 17:15:33.728896 ++select * from certifications_requirementfieldentry + +# 2021-12-17 11:28:51.194391 ++ls + +# 2021-12-17 11:28:58.214980 ++select * from certification_extension_scantronexam + +# 2021-12-17 15:09:20.578076 ++ps -aux + +# 2021-12-17 15:09:25.070835 ++ps -a + +# 2021-12-17 15:09:26.166188 ++ps + +# 2021-12-17 15:09:29.254379 ++exit + +# 2021-12-21 15:47:40.521963 ++select * from certifications_requirementfieldentry + +# 2021-12-21 15:47:44.202826 ++select * from certifications_requirementfield + +# 2021-12-30 11:24:34.538064 ++ls + +# 2021-12-30 11:25:22.982902 ++select * from certification_extension_scantronprofile + +# 2022-01-05 10:20:01.645994 ++select * from certification_extension_scantronexamregistration + +# 2022-01-05 10:40:56.289489 ++truncate table certification_extension_scantronexamregistration + +# 2022-01-05 10:55:03.875392 ++select * from certification_extension_scantronexamregistration + +# 2022-01-05 15:25:20.122846 ++select * from certification_extension_scantronprofile + +# 2022-01-06 13:13:19.665214 ++select * from certification_extension_scantronexamregistration + +# 2022-01-24 14:00:49.935696 ++select * from fobi_formelement + +# 2022-01-31 11:50:07.078758 ++select * from certification_extension_scantronexam + +# 2022-02-11 07:09:46.243445 ++select * from fobi_formelement + +# 2022-02-11 07:09:53.083344 ++select * from fobi_formentry + +# 2022-02-11 07:10:18.622344 ++select * from fobi_formelemententry + +# 2022-02-11 07:11:05.771581 ++select * from fobi_formfieldsetentry + +# 2022-02-11 07:13:31.844075 ++select from forms_form + +# 2022-02-11 07:13:53.841194 ++select * from fobi_formelement + +# 2022-02-11 07:13:58.181994 ++select * from fobi_formelemententry + +# 2022-02-11 07:14:24.272535 ++select * from fobi_formhandler + +# 2022-02-11 07:14:40.327292 ++select * from fobi_formhandlerentry + +# 2022-02-11 07:15:22.478427 ++select * from fobi_formwizardhandlerentry + +# 2022-02-11 07:25:34.307384 ++select * from forms_form + +# 2022-02-11 07:25:51.143820 ++select * from forms_formentry + +# 2022-02-11 07:30:34.811475 ++select * from db_store_savedformdataentry + +# 2022-02-11 07:30:58.079102 ++select * from db_store_savedformwizarddataentry + +# 2022-02-11 07:31:00.508138 ++select * from db_store_savedformdataentry + +# 2022-02-16 15:30:29.948513 ++exit + +# 2022-03-09 13:14:01.907032 ++select * from certification_extension_scantronexamregistration + +# 2022-03-09 13:14:30.301044 ++select * from certification_extension_scantronprofile + +# 2022-03-09 13:14:33.244161 ++select * from certification_extension_scantronexamregistration + +# 2022-03-24 10:10:38.962668 ++select schema_name from information_schema.schemata + +# 2022-03-24 10:11:26.009227 ++create role sql-dash-read-only + +# 2022-03-24 10:11:36.718076 ++create role sql_dash_read_only + +# 2022-03-24 10:14:35.595372 ++GRANT SELECT( ++ id, last_login, is_superuser, username, first_name, ++ last_name, email, is_staff, is_active, date_joined ++) ON auth_user TO sql_dash_read_only; ++ + +# 2022-03-24 10:14:46.785992 ++select * from auth_user + +# 2022-03-24 10:23:09.868794 ++create role sql_dash_read_only + +# 2022-03-24 10:23:12.254707 ++GRANT SELECT( ++ id, last_login, is_superuser, username, first_name, ++ last_name, email, is_staff, is_active, date_joined ++) ON auth_user TO sql_dash_read_only; ++ + +# 2022-03-24 10:24:22.771974 ++exit + +# 2022-03-24 10:25:41.273222 ++select * from auth_user + +# 2022-03-24 10:48:13.003214 ++exit + +# 2022-03-24 10:48:22.218745 ++select * from auth_user + +# 2022-03-24 11:46:16.958633 ++select * from information_schema.enabled_roles + +# 2022-03-24 11:46:33.638457 ++exit + +# 2022-03-24 11:56:46.097536 ++alter role sql_dash_read_only with login + +# 2022-03-24 13:04:24.015395 ++exit + +# 2022-03-24 13:04:36.737679 ++select * from auth_user + +# 2022-03-24 13:04:43.899639 ++exit + +# 2022-03-24 13:04:52.714487 ++ls + +# 2022-03-24 14:14:27.428162 ++select * from information_schema.enabled_roles + +# 2022-03-24 14:24:14.612117 ++exit + +# 2022-03-30 15:18:04.392068 ++select * from information_schema.tables + +# 2022-03-30 15:19:05.022931 ++select * from information_schema.enabled_roles + +# 2022-03-30 15:19:20.653131 ++exit + +# 2022-04-05 15:36:42.358833 ++select * from information_schema.enabled_roles + +# 2022-04-05 15:39:59.420038 ++exit + +# 2022-04-05 15:43:09.917492 ++select * from information_schema.applicable_roles + +# 2022-04-05 15:43:14.761171 ++select * from information_schema.enabled_roles + +# 2022-04-05 15:43:28.637067 ++select * from information_schema.role_column_grants + +# 2022-04-05 15:46:49.182441 ++select * from pg_roles + +# 2022-04-05 15:47:01.880391 ++create role this + +# 2022-04-05 15:47:06.914437 ++select * from pg_roles + +# 2022-04-05 15:55:22.911753 ++exit + +# 2022-04-05 15:56:42.883276 ++select * from pg_roles + +# 2022-04-05 16:00:05.184218 ++select * from information_schema.enabled_roles + +# 2022-04-05 16:04:47.868954 ++exit + +# 2022-04-05 16:11:37.746797 ++select * from information_schema.enabled_roles + +# 2022-04-05 16:11:40.153145 ++exit + +# 2022-04-05 16:42:57.431441 ++select * from information_schema.enabled_roles + +# 2022-04-06 10:27:07.755205 ++exit + +# 2022-04-06 10:27:15.531539 ++ls + +# 2022-04-06 10:27:33.436949 ++select * from information_schema.enabled_roles + +# 2022-04-06 10:30:34.001979 ++exit + +# 2022-04-06 14:17:08.832089 ++select * from information_schema.enabled_roles + +# 2022-04-06 14:17:29.757111 ++select * from courses + +# 2022-04-06 14:50:33.499072 ++select * from tenants + +# 2022-04-06 14:51:10.114918 ++select name, refund_verbiage from orders + +# 2022-04-06 14:51:14.135476 ++select name, refund_verbiage from tenants + +# 2022-04-06 14:51:18.634647 ++select name, refund_verbage from tenants + +# 2022-04-06 14:52:46.343070 ++exit + +# 2022-04-06 14:54:43.219419 ++select name, refund_verbage from tenants + +# 2022-04-06 15:13:11.245542 ++exit + +# 2022-04-06 15:13:50.818159 ++select * from tenants + +# 2022-04-06 15:15:03.995255 ++select email_enrolment from tenants + +# 2022-04-08 10:24:00.686800 ++select table_name from information_schema.tables + +# 2022-04-08 10:31:38.884060 ++exit + +# 2022-04-08 10:33:44.979995 ++select table_name from information_schema.tables + +# 2022-04-08 10:33:53.742598 ++select table_name from information_schema.tables \copy + +# 2022-04-08 10:34:14.788905 ++\copy select table_name from information_schema.tables + +# 2022-04-08 10:34:55.363641 ++\e select table_name from information_schema.tables + +# 2022-04-08 10:35:41.251830 ++\ef select table_name from information_schema.tables + +# 2022-04-08 10:35:54.546118 ++\e select table_name from information_schema.tables + +# 2022-04-08 10:37:08.005728 ++\o ~/tendenci_tables.txt select table_name from information_schema.tables + +# 2022-04-08 10:37:42.832913 ++select table_name from information_schema.tables \o ~/tendenci_tables.txt + +# 2022-04-08 10:38:34.345452 ++select table_name from information_schema.tables + +# 2022-04-08 10:38:43.673836 ++\o ~/tendenci_tables.txt + +# 2022-04-08 10:38:58.959431 ++select table_name from information_schema.tables + +# 2022-04-08 10:40:52.141272 ++select * from user_groups_group + +# 2022-04-08 10:41:11.272873 ++\q + +# 2022-04-08 10:41:21.275607 ++select * from user_groups_group + +# 2022-04-08 10:41:38.941669 ++select * from user_groups_group_permissions + +# 2022-04-08 10:42:21.369767 ++select * from user_groups_groupmembership + +# 2022-04-08 10:55:51.288972 ++select * from information_schema.enabled_roles + +# 2022-04-08 10:56:29.687980 ++grant select * on certification_certifications to this + +# 2022-04-08 10:56:36.809862 ++grant select on certification_certifications to this + +# 2022-04-08 10:56:59.822134 ++select * from certifications_certification + +# 2022-04-08 10:57:11.321845 ++grant select on certifications_certification to this + +# 2022-04-08 11:11:57.673581 ++select 1 from pg_roles where rolname="None" + +# 2022-04-08 11:12:00.812261 ++select 1 from pg_roles where rolname=None + +# 2022-04-08 11:12:28.962316 ++select 1 from pg_roles + +# 2022-04-08 11:12:34.296932 ++select 1 from pg_roles where rolname="none" + +# 2022-04-08 11:12:38.211024 ++select 1 from pg_roles where rolname="this" + +# 2022-04-08 11:12:59.872743 ++select * from pg_roles + +# 2022-04-08 11:13:14.252184 ++select * from pg_roles where rolname="this" + +# 2022-04-08 11:13:42.719117 ++select 1 from pg_roles where rolname="this" + +# 2022-04-08 11:13:57.838352 ++select 1 from pg_roles where rolname='this' + +# 2022-04-08 11:14:04.924369 ++select 1 from pg_roles where rolname='none' + +# 2022-04-08 11:14:09.114760 ++select 1 from pg_roles where rolname=None + +# 2022-04-08 11:14:11.228555 ++select 1 from pg_roles where rolname=none + +# 2022-04-08 11:14:16.658298 ++select 1 from pg_roles where rolname='None' + +# 2022-04-12 10:51:27.252536 ++select * information_schema.tables + +# 2022-04-12 10:51:29.976716 ++select * information_schema.table + +# 2022-04-12 10:51:43.142689 ++select * information_schema + +# 2022-04-12 10:51:49.621462 ++select table_name from information_schema.tables + +# 2022-04-12 10:52:04.514670 ++select table_name from information_schema.tables where table_name like '%profile%' + +# 2022-04-12 10:55:39.769387 ++select * from V_payment_details + +# 2022-04-13 14:49:25.725014 ++select * from quiz_attempts where id = 1292 + +# 2022-04-13 15:08:56.971210 ++select * from courses + +# 2022-04-15 13:31:23.646508 ++exit + +# 2022-04-15 13:37:48.417183 ++select * from pg_roles + +# 2022-04-15 13:38:29.251900 ++exit + +# 2022-04-21 14:41:54.525179 ++select * from tenant + +# 2022-04-21 14:41:56.033363 ++select * from tenants + +# 2022-04-21 14:42:18.903086 ++select * from courses + +# 2022-04-21 14:42:49.776872 ++select * from tenants + +# 2022-04-21 17:09:58.241955 ++create extension dblink; + +# 2022-04-21 17:10:11.754499 ++select * from pg_roles + +# 2022-04-21 17:11:32.208122 ++exit + +# 2022-04-21 17:12:25.900187 ++create extension dblink; + +# 2022-04-21 17:12:44.933165 ++exit + +# 2022-04-22 11:25:55.592489 ++select * from tenants + +# 2022-04-22 11:32:09.297783 ++select column_name from information_schema.columns where table_name like '%quiz_attempts%' + +# 2022-04-22 11:40:07.844070 ++\d+ quiz_attempts + +# 2022-04-22 14:04:53.413258 ++\d+ tenants + +# 2022-04-22 14:07:47.181818 ++select top 1 from tenants + +# 2022-04-22 14:07:52.225077 ++select 1 from tenants + +# 2022-04-22 14:08:00.359402 ++select * from tenants + +# 2022-04-22 14:09:16.681989 ++update tenants set reporting_groups = { "group_1", "group_2" } where id=2 + +# 2022-04-22 14:10:05.214611 ++update tenants set reporting_groups = '{ group_1, group_2 }' where id=2 + +# 2022-04-22 14:10:11.372197 ++select * from tenants + +# 2022-04-22 14:31:43.596069 ++select name from tenants + +# 2022-04-22 14:34:52.792907 ++select table_name from information_schema.tables where table_name like 'courses' + +# 2022-04-22 14:35:03.864021 ++select column from information_schema.tables where table_name like 'courses' + +# 2022-04-22 14:35:07.607673 ++select column_name from information_schema.tables where table_name like 'courses' + +# 2022-04-22 14:35:14.887183 ++select column_name from information_schema.columns where table_name like 'courses' + +# 2022-04-22 14:35:26.409623 ++select * from courses + +# 2022-04-22 14:41:51.506048 ++select * from tenants + +# 2022-04-22 14:42:19.876518 ++select name from tenants + +# 2022-04-22 14:42:51.195560 ++select name, id from tenants + +# 2022-04-22 14:43:08.091264 ++update tenants set reporting_groups = '{ group_1, group_2 }' where id=1 + +# 2022-04-22 14:43:18.621067 ++select name, reporting_groups from tenants + +# 2022-04-22 14:50:36.832027 ++select * from courses where name like 'test course' + +# 2022-04-22 14:53:34.448191 ++update courses set reporting_group = 'group_1' where name='test course' + +# 2022-04-22 14:53:37.900208 ++select * from courses where name like 'test course' + +# 2022-04-22 15:14:01.638320 ++select reporting_groups from tenants + +# 2022-04-22 16:10:08.697978 ++select * from courses + +# 2022-04-22 16:11:01.301533 ++select * from quiz_attempts where batch_date='2022-04-22' + +# 2022-04-22 16:12:07.717859 ++select * from courses + +# 2022-04-22 16:13:01.799313 ++select * from courses where moodle_course_id in (2, 4, 6) + +# 2022-04-22 16:13:42.915073 ++update courses set reporting_group='group_1' where moodle_course_id = 1 + +# 2022-04-22 16:13:51.278307 ++update courses set reporting_group='group_2' where moodle_course_id = 2 + +# 2022-04-22 16:13:55.915895 ++select * from courses where moodle_course_id in (2, 4, 6) + +# 2022-04-22 16:14:31.023740 ++update courses set reporting_group='group_1' where moodle_course_id = 4 + +# 2022-04-22 16:14:37.248352 ++select * from courses + +# 2022-04-22 16:14:41.278395 ++select * from courses where moodle_course_id in (2, 4, 6) + +# 2022-04-22 16:16:22.537844 ++select * from courses where reporting_group is Null + +# 2022-04-22 16:16:36.743912 ++select * from courses where reporting_group + +# 2022-04-22 16:16:46.014599 ++select * from courses + +# 2022-04-22 16:16:49.929742 ++select * from courses where reporting_group is Null + +# 2022-04-22 16:23:26.992007 ++select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa ++ join courses c ++ on qa.moodle_course_id = c.moodle_course_id ++ join enrolments e ++ on qa.enrolment_id = e.id ++ join enrolees e2 ++ on e.enrolee_id = e2.id ++ join orders o ++ on o.id = e.order_id ++ where qa.batch_date = %s ++ and qa.tenant_id = %s ++ and c.tenant_id = %s ++ and qa.status != %s ++ and c.reporting_group = 'group_1' + +# 2022-04-22 16:23:43.549045 ++select * from courses where reporting_group = 'group_1' + +# 2022-04-22 16:24:15.142148 ++select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa ++ join courses c ++ on qa.moodle_course_id = c.moodle_course_id ++ join enrolments e ++ on qa.enrolment_id = e.id ++ join enrolees e2 ++ on e.enrolee_id = e2.id ++ join orders o ++ on o.id = e.order_id ++ where qa.batch_date = '2022-04-22' ++ and qa.tenant_id = 1 ++ and c.reporting_group = 'group_1' + +# 2022-04-22 16:24:29.881319 ++select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa ++ join courses c ++ on qa.moodle_course_id = c.moodle_course_id ++ join enrolments e ++ on qa.enrolment_id = e.id ++ join enrolees e2 ++ on e.enrolee_id = e2.id ++ join orders o ++ on o.id = e.order_id ++ where qa.batch_date = '2022-04-22' ++ and qa.tenant_id = 1 ++ and c.reporting_group = 'group_2' + +# 2022-04-22 16:24:40.682859 ++select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa ++ join courses c ++ on qa.moodle_course_id = c.moodle_course_id ++ join enrolments e ++ on qa.enrolment_id = e.id ++ join enrolees e2 ++ on e.enrolee_id = e2.id ++ join orders o ++ on o.id = e.order_id ++ where qa.batch_date = '2022-04-22' ++ and qa.tenant_id = 2 ++ and c.reporting_group = 'group_2' + +# 2022-04-22 16:25:08.633149 ++select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa ++ join courses c ++ on qa.moodle_course_id = c.moodle_course_id ++ join enrolments e ++ on qa.enrolment_id = e.id ++ join enrolees e2 ++ on e.enrolee_id = e2.id ++ join orders o ++ on o.id = e.order_id ++ where qa.batch_date = '2022-04-22' ++ and qa.tenant_id = 4 ++ and c.reporting_group = 'group_2' + +# 2022-04-22 16:25:11.310696 ++select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa ++ join courses c ++ on qa.moodle_course_id = c.moodle_course_id ++ join enrolments e ++ on qa.enrolment_id = e.id ++ join enrolees e2 ++ on e.enrolee_id = e2.id ++ join orders o ++ on o.id = e.order_id ++ where qa.batch_date = '2022-04-22' ++ and qa.tenant_id = 6 ++ and c.reporting_group = 'group_2' + +# 2022-04-22 16:25:14.450909 ++select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa ++ join courses c ++ on qa.moodle_course_id = c.moodle_course_id ++ join enrolments e ++ on qa.enrolment_id = e.id ++ join enrolees e2 ++ on e.enrolee_id = e2.id ++ join orders o ++ on o.id = e.order_id ++ where qa.batch_date = '2022-04-22' ++ and c.reporting_group = 'group_2' + +# 2022-04-22 16:25:36.187524 ++select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa ++ join courses c ++ on qa.moodle_course_id = c.moodle_course_id ++ join enrolments e ++ on qa.enrolment_id = e.id ++ join enrolees e2 ++ on e.enrolee_id = e2.id ++ join orders o ++ on o.id = e.order_id ++ where c.reporting_group = 'group_2' + +# 2022-04-26 16:08:04.390304 ++select * from courses where reporting_group = 'group_1' + +# 2022-04-26 16:08:15.457671 ++select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa ++ join courses c ++ on qa.moodle_course_id = c.moodle_course_id ++ join enrolments e ++ on qa.enrolment_id = e.id ++ join enrolees e2 ++ on e.enrolee_id = e2.id ++ join orders o ++ on o.id = e.order_id ++ where c.reporting_group = 'group_2' + +# 2022-04-26 16:08:43.363973 ++select * from courses + +# 2022-04-26 16:08:54.710952 ++select id, name, reporting_group from courses + +# 2022-04-26 16:13:46.878474 ++select * from quiz_attempts where batch_date='2022-04-22' + +# 2022-04-27 08:40:32.364436 ++ls + +# 2022-04-27 08:42:27.090450 ++select name, id from tenants + +# 2022-04-27 08:43:19.678517 ++update tenants set reporting_groups = Null where id=2 + +# 2022-04-27 08:43:32.229107 ++select name, id, reporting_groups from tenants + +# 2022-04-27 11:02:30.432988 ++select name, id, reporting_group from courses + +# 2022-04-27 11:04:28.333200 ++select name, id, tenant_id, reporting_group from courses + +# 2022-04-27 11:07:27.231222 ++select course, id from courses + +# 2022-04-27 11:07:41.156213 ++select name, id from courses + +# 2022-04-27 11:07:50.193373 ++select name, id, tenant_id from courses + +# 2022-04-27 11:16:48.039365 ++select name, id, tenant_id, moodle_course_id from courses + +# 2022-04-27 11:17:22.816270 ++select name, tenant_id, moodle_course_id from courses + +# 2022-04-27 11:17:45.868329 ++delete from courses where course_name='big course' + +# 2022-04-27 11:17:54.136804 ++delete from courses where name='big course' + +# 2022-04-27 11:25:20.650676 ++select name, tenant_id, moodle_course_id from courses + +# 2022-04-27 11:25:35.738927 ++select * from courses where moodle_course_id = 36 + +# 2022-04-27 13:18:44.253773 ++delete from courses where name='course with reporting group' + +# 2022-04-27 13:20:53.086943 ++select * from courses where moodle_course_id = 36 + +# 2022-04-27 15:01:00.132517 ++select * from tenants + +# 2022-04-27 15:01:34.775660 ++select name, tenant_id, moodle_course_id from courses + +# 2022-04-27 15:01:54.539776 ++select name, tenant_id, moodle_course_id, reporting_group from courses + +# 2022-04-27 16:10:27.502013 ++select * from tenants + +# 2022-04-27 16:19:12.843297 ++select * from courses + +# 2022-04-28 11:03:04.638366 ++select name, tenant_id, moodle_course_id, reporting_group from courses + +# 2022-04-28 11:03:23.363305 ++delete from courses where name='big course' + +# 2022-04-28 11:05:07.497658 ++select name, tenant_id, moodle_course_id, reporting_group from courses + +# 2022-04-28 11:21:44.797410 ++delete from courses where name='big course' + +# 2022-04-28 11:23:11.932702 ++select name, tenant_id, moodle_course_id, reporting_group from courses + +# 2022-04-28 11:23:16.858023 ++delete from courses where name='big course' + +# 2022-04-28 11:28:53.017899 ++select name, reporting_groups from tenants + +# 2022-04-28 11:44:25.117264 ++delete from courses where name='big course' + +# 2022-04-28 11:45:14.240313 ++select name, reporting_groups from tenants + +# 2022-04-28 12:06:58.162344 ++delete from courses where name='big course' + +# 2022-04-28 12:13:04.048113 ++select name, reporting_groups from tenants + +# 2022-04-28 13:04:05.481549 ++delete from courses where name='big course' + +# 2022-04-28 13:05:15.835799 ++select name, reporting_groups from tenants + +# 2022-04-28 13:44:49.912497 ++select * from quiz_attempts where batch_date='2022-04-22' + +# 2022-04-28 13:45:33.194608 ++select * from courses where moodle_course_id in (13, 26, 207) + +# 2022-04-28 13:45:41.486576 ++select * from courses + +# 2022-04-28 13:46:07.152102 ++select * from courses where moodle_course_id in (6, 4, 2) + +# 2022-04-28 14:08:08.500491 ++select name, reporting_groups from tenants + +# 2022-04-28 14:10:09.819598 ++update tenants set reporting_groups = ['test'] where name = 'dev' + +# 2022-04-28 14:11:09.711161 ++update tenants set reporting_groups = '{ group_1, group_2 }' where name='dev' + +# 2022-04-28 14:11:16.719685 ++select name, reporting_groups from tenants + +# 2022-04-28 15:06:22.828646 ++select * from quiz_attempts where batch_date='2022-04-22' + +# 2022-04-28 15:06:55.415041 ++select name, reporting_group from courses where moodle_course_id in (2,4,6) + +# 2022-04-28 15:07:05.928991 ++select name, reporting_group, moodle_course_id from courses where moodle_course_id in (2,4,6) + +# 2022-04-28 15:07:15.330078 ++select name, reporting_group, moodle_course_id from courses where moodle_course_id in (2,4,6) order by moodle_course_id + +# 2022-04-28 15:07:37.951239 ++select * from quiz_attempts where batch_date='2022-04-22' + +# 2022-04-28 15:08:38.032551 ++select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa ++ join courses c ++ on qa.moodle_course_id = c.moodle_course_id ++ join enrolments e ++ on qa.enrolment_id = e.id ++ join enrolees e2 ++ on e.enrolee_id = e2.id ++ join orders o ++ on o.id = e.order_id + +# 2022-04-28 15:08:55.942274 ++select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa ++ join courses c ++ on qa.moodle_course_id = c.moodle_course_id ++ join enrolments e ++ on qa.enrolment_id = e.id ++ join enrolees e2 ++ on e.enrolee_id = e2.id ++ join orders o ++ on o.id = e.order_id + +# 2022-04-28 15:09:04.022099 ++select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa ++ join courses c ++ on qa.moodle_course_id = c.moodle_course_id ++ join enrolments e ++ on qa.enrolment_id = e.id ++ join enrolees e2 ++ on e.enrolee_id = e2.id ++ join orders o ++ on o.id = e.order_id where + +# 2022-04-28 15:09:44.522907 ++select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa ++ join courses c ++ on qa.moodle_course_id = c.moodle_course_id ++ join enrolments e ++ on qa.enrolment_id = e.id ++ join enrolees e2 ++ on e.enrolee_id = e2.id ++ join orders o ++ on o.id = e.order_id + +# 2022-04-28 15:10:13.469081 ++select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa ++ join courses c ++ on qa.moodle_course_id = c.moodle_course_id ++ join enrolments e ++ on qa.enrolment_id = e.id ++ join enrolees e2 ++ on e.enrolee_id = e2.id ++ join orders o ++ on o.id = e.order_id where qa.attempt_date = '2022-04-22' + +# 2022-04-28 15:10:40.837611 ++select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa ++ join courses c ++ on qa.moodle_course_id = c.moodle_course_id ++ join enrolments e ++ on qa.enrolment_id = e.id ++ join enrolees e2 ++ on e.enrolee_id = e2.id ++ join orders o ++ on o.id = e.order_id where qa.attempt_date = date('2022-04-22') + +# 2022-04-28 15:10:51.017197 ++select * from quiz_attempts where batch_date='2022-04-22' + +# 2022-04-28 15:11:07.196746 ++select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa ++ join courses c ++ on qa.moodle_course_id = c.moodle_course_id ++ join enrolments e ++ on qa.enrolment_id = e.id ++ join enrolees e2 ++ on e.enrolee_id = e2.id ++ join orders o ++ on o.id = e.order_id where qa.batch_date= '2022-04-22' + +# 2022-04-28 15:11:28.449094 ++select name, reporting_group, moodle_course_id from courses where moodle_course_id in (2,4,6) order by moodle_course_id + +# 2022-04-28 15:11:39.755298 ++select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa ++ join courses c ++ on qa.moodle_course_id = c.moodle_course_id ++ join enrolments e ++ on qa.enrolment_id = e.id ++ join enrolees e2 ++ on e.enrolee_id = e2.id ++ join orders o ++ on o.id = e.order_id where qa.batch_date= '2022-04-22' + +# 2022-04-28 15:18:36.204187 ++select name, reporting_group, moodle_course_id from courses where moodle_course_id in (2,4,6) order by moodle_course_id + +# 2022-04-28 15:18:46.049292 ++select * from quiz_attempts where batch_date='2022-04-22' + +# 2022-04-28 15:21:00.206485 ++select name, reporting_group, moodle_course_id from courses where moodle_course_id in (2,4,6) order by moodle_course_id + +# 2022-04-28 15:21:10.726611 ++select given_name as "first" , family_name as "last" , username as "username", email , name , e.customer_provided_identifier altId, to_timestamp(qa.attempt_date) "attempt date", score, score, qa.attempt_number "attempt number", e2.social_security "social security" , concat(e2.mailing_address, ' ', e2.mailing_address_2, ' ',e2.city, ' ',e2.state, ' ', e2.zipcode) address , qa.moodle_id "moodle_id" from quiz_attempts qa ++ join courses c ++ on qa.moodle_course_id = c.moodle_course_id ++ join enrolments e ++ on qa.enrolment_id = e.id ++ join enrolees e2 ++ on e.enrolee_id = e2.id ++ join orders o ++ on o.id = e.order_id where qa.batch_date= '2022-04-22' + +# 2022-04-28 15:21:21.666118 ++select name, reporting_group, moodle_course_id from courses where moodle_course_id in (2,4,6) order by moodle_course_id + +# 2022-04-28 15:21:34.508822 ++select * from quiz_attempts where batch_date='2022-04-22' + +# 2022-04-28 15:21:53.407232 ++select name, reporting_group, moodle_course_id from courses where moodle_course_id in (2,4,6) order by moodle_course_id + +# 2022-04-28 15:25:08.739317 ++select name, reporting_group, moodle_course_id, tenant_id from courses where moodle_course_id in (2,4,6) order by moodle_course_id + +# 2022-04-29 14:13:29.772976 ++select * from tenants + +# 2022-04-29 14:13:30.962223 ++select * from tenant + +# 2022-04-29 14:13:39.253259 ++select * from tenants + +# 2022-04-29 14:13:51.623102 ++select base_url from tenants + +# 2022-04-29 14:14:02.512224 ++select tenant_url from tenants + +# 2022-04-29 14:41:28.218822 ++select name, reporting_group, moodle_course_id from courses where moodle_course_id in (2,4,6) order by moodle_course_id + +# 2022-04-29 14:41:37.022139 ++select name, reporting_groups from tenants + +# 2022-04-29 15:47:08.570163 ++select name, reporting_group, moodle_course_id from courses where moodle_course_id in (2,4,6) order by moodle_course_id + +# 2022-04-29 15:47:20.946765 ++select name, reporting_group, moodle_course_id from courses + +# 2022-04-29 15:47:24.247775 ++delete from courses where name='big course' + +# 2022-04-29 15:50:44.520484 ++select name, reporting_groups from tenants + +# 2022-05-03 15:14:12.341620 ++delete from courses where name='big course' + +# 2022-05-03 15:14:29.274908 ++select name, reporting_groups from tenants + +# 2022-05-03 15:14:46.184255 ++select * from courses + +# 2022-05-03 15:15:01.015148 ++ls + +# 2022-05-03 15:18:30.732071 ++delete from courses where name='big course' + +# 2022-05-03 15:22:41.898709 ++select name, reporting_groups from tenants + +# 2022-05-03 15:24:33.621246 ++delete from courses where name='big course' + +# 2022-05-03 16:56:05.577773 ++select * from courses + +# 2022-05-03 16:56:22.006404 ++select name, reporting_groups from tenants + +# 2022-05-03 16:57:20.163124 ++delete from courses where name='big course'\ + +# 2022-05-03 16:57:23.182568 ++delete from courses where name='big course' + +# 2022-05-03 16:57:53.081548 ++select name, reporting_groups from tenants + +# 2022-05-04 14:25:17.943190 ++exit + +# 2022-05-04 16:06:27.633944 ++select name, reporting_groups from tenants + +# 2022-05-04 16:07:09.801632 ++delete from courses where name='big course' + +# 2022-05-04 16:08:04.532965 ++select name, reporting_groups from tenants + +# 2022-05-04 16:08:33.269082 ++select * from courses where moodle_course_id = 36 + +# 2022-05-04 16:08:44.460772 ++delete from courses where name='big course' + +# 2022-05-04 16:09:04.258842 ++select * from courses where moodle_course_id = 36 + +# 2022-05-04 16:09:48.144946 ++delete from courses where name='big course' + +# 2022-05-04 16:10:51.160262 ++select * from courses where moodle_course_id = 36 + +# 2022-05-04 16:11:26.104408 ++delete from courses where name='big course' + +# 2022-05-04 16:11:35.517024 ++select name, reporting_groups from tenants + +# 2022-05-05 13:17:43.235749 ++delete from courses where name='big course' + +# 2022-05-05 13:17:49.495543 ++exit + +# 2022-05-05 13:18:16.242126 ++delete from courses where name='big course' + +# 2022-05-05 13:18:53.328676 ++select * from courses where moodle_course_id = 36 + +# 2022-05-05 13:19:37.470179 ++select name, reporting_groups from tenants + +# 2022-05-05 13:20:15.862766 ++update tenants set reporting_groups = null where name='dev' + +# 2022-05-05 13:20:18.307494 ++select name, reporting_groups from tenants + +# 2022-05-05 13:20:26.645168 ++delete from courses where name='big course' + +# 2022-05-05 13:32:36.047445 ++select name, reporting_groups from tenants + +# 2022-05-05 13:32:41.969125 ++select * from courses where moodle_course_id = 36 + +# 2022-05-05 13:32:59.205796 ++delete from courses where name='big course' + +# 2022-05-05 13:33:23.917660 ++select name, reporting_groups from tenants + +# 2022-05-05 13:33:32.740985 ++select * from courses where moodle_course_id = 36 + +# 2022-05-05 13:38:54.007911 ++delete from courses where name='big course' + +# 2022-05-05 13:38:56.767587 ++select name, reporting_groups from tenants + +# 2022-05-05 13:39:34.321865 ++select * from courses where moodle_course_id = 36 + +# 2022-05-05 13:39:38.172798 ++delete from courses where name='big course' + +# 2022-05-05 13:42:33.359624 ++select * from courses where moodle_course_id = 36 + +# 2022-05-05 13:42:38.815687 ++select name, reporting_groups from tenants + +# 2022-05-05 13:46:02.465897 ++delete from courses where name='big course' + +# 2022-05-05 13:46:17.493097 ++update tenants set reporting_groups = null where name='dev' + +# 2022-05-05 13:46:22.501086 ++select name, reporting_groups from tenants + +# 2022-05-05 13:47:15.855841 ++select * from courses where moodle_course_id = 36 + +# 2022-05-05 13:47:58.817517 ++select name, reporting_groups from tenants + +# 2022-05-05 13:48:05.523036 ++delete from courses where name='big course' + +# 2022-05-05 13:48:35.797264 ++select name, reporting_groups from tenants + +# 2022-05-05 13:48:38.070821 ++select * from courses where moodle_course_id = 36 + +# 2022-05-09 14:14:19.497807 ++select * from courses + +# 2022-05-09 14:14:39.253165 ++select * from mdl_course + +# 2022-05-09 14:43:22.966058 ++select * from courses + +# 2022-05-09 14:43:25.479744 ++exit + +# 2022-05-09 14:44:11.975392 ++select * from courses + +# 2022-05-09 15:44:39.917937 ++delete from courses where name='big course' + +# 2022-05-12 07:51:34.378440 ++select * from courses + +# 2022-05-12 07:51:43.892346 ++exit + +# 2022-05-12 07:52:31.085224 ++select * from courses + +# 2022-05-12 07:52:45.974216 ++select id from tenants where name like "dev" + +# 2022-05-12 07:52:51.031739 ++select id from tenants where name like 'dev' + +# 2022-05-12 07:55:08.043383 ++# select id, name, description, customer_price_cents, everblue_price_cents, course_status, moodle_course_id, tenant, customer_provided_identifier from course where tenant_id = 1 ++ + +# 2022-05-12 07:55:15.554922 ++select id, name, description, customer_price_cents, everblue_price_cents, course_status, moodle_course_id, tenant, customer_provided_identifier from course where tenant_id = 1 ++ + +# 2022-05-12 07:55:28.445738 ++select id, name, description, customer_price_cents, everblue_price_cents, course_status, moodle_course_id, tenant, customer_provided_identifier from courses where tenant_id = 1 ++ + +# 2022-05-12 07:55:42.289409 ++select id, name, description, customer_price_cents, everblue_price_cents, course_status, moodle_course_id, tenant_id, customer_provided_identifier from courses where tenant_id = 1 ++ + +# 2022-05-16 13:23:14.444556 ++select * from courses + +# 2022-05-16 13:27:01.180606 ++select * from information_schema.columns where column_name like '%complet%' + +# 2022-05-16 13:27:41.852428 ++select * from mdl_course + +# 2022-05-16 13:29:34.617503 ++exit + +# 2022-05-16 13:32:00.090158 ++select * from mdl_course + +# 2022-05-16 13:32:49.972254 ++select * from information_schema.columns where column_name like '%complet%' + +# 2022-05-16 13:33:11.742642 ++select * from mdl_course_completions + +# 2022-05-16 13:34:06.720955 ++\d mdl_course_completions + +# 2022-05-16 13:35:56.642877 ++select * from mdl_course c join mdl_course_completions cc on cc.id = c.id + +# 2022-05-16 13:36:13.231240 ++select c.name, c.id, cc.timecompleted from mdl_course c join mdl_course_completions cc on cc.id = c.id + +# 2022-05-16 13:36:24.392445 ++select c.fullname, c.id, cc.timecompleted from mdl_course c join mdl_course_completions cc on cc.id = c.id + +# 2022-05-16 13:37:44.758265 ++select c.fullname, c.id, cc.timeenrolled from mdl_course c join mdl_course_completions cc on cc.id = c.id + +# 2022-05-16 13:37:53.959424 ++select c.fullname, c.id, date(cc.timeenrolled) from mdl_course c join mdl_course_completions cc on cc.id = c.id + +# 2022-05-16 13:38:02.732149 ++select c.fullname, c.id, cc.timeenrolled as date from mdl_course c join mdl_course_completions cc on cc.id = c.id + +# 2022-05-16 13:38:47.977596 ++select c.fullname, c.id, TO_TIMESTAMP(cc.timeenrolled) as date from mdl_course c join mdl_course_completions cc on cc.id = c.id + +# 2022-05-16 13:39:15.508893 ++select c.fullname, c.id, TO_TIMESTAMP(cc.timeenrolled) from mdl_course c join mdl_course_completions cc on cc.id = c.id + +# 2022-05-16 13:39:28.647655 ++select c.fullname, c.id, TO_TIMESTAMP(cc.timeenrolled) as timecompleted from mdl_course c join mdl_course_completions cc on cc.id = c.id + +# 2022-05-16 13:52:20.470295 ++select * from courses + +# 2022-05-16 14:02:44.767235 ++\d courses + +# 2022-05-17 10:36:14.732888 ++select * from courses + +# 2022-05-17 10:36:34.528454 ++select * from information_schema.columns where column_name like '%email%' + +# 2022-05-17 10:37:05.555984 ++select * from information_schema.tables where table_name like '%email%' + +# 2022-05-17 10:38:03.298037 ++select * from mdl_course_completions + +# 2022-05-17 10:38:13.122229 ++select * from mdl_course + +# 2022-05-17 10:38:30.311807 ++select * from information_schema.columns where column_name like '%email%' + +# 2022-05-17 10:40:03.977167 ++\d courses + +# 2022-05-17 10:59:08.319619 ++select * from courses + +# 2022-05-17 11:01:16.998178 ++select * from information_schema.columns where column_name like '%email%' + +# 2022-05-17 11:01:20.023366 ++select * from courses + +# 2022-05-17 15:26:22.219478 ++update courses set email_passed=False where name='dwd' + +# 2022-05-17 15:26:32.763392 ++select * from courses + +# 2022-05-17 15:26:54.246204 ++update courses set email_failed=False where name='Test Course 4' + +# 2022-05-17 15:27:15.558059 ++update courses set email_failed=False where name='Test Course 2' + +# 2022-05-17 15:27:25.644568 ++update courses set email_failed=False where name='test course' + +# 2022-05-17 15:27:34.423660 ++update courses set email_passed=False where name='test course' + +# 2022-05-18 08:31:31.583251 ++update courses set email_passed=True where id=36 + +# 2022-05-18 08:32:31.152253 ++select * from courses + +# 2022-05-18 08:35:47.160245 ++exit + +# 2022-05-18 08:37:32.092529 ++select * from courses + +# 2022-05-18 08:37:50.056977 ++exit + +# 2022-05-18 08:40:15.159798 ++select * from courses + +# 2022-05-18 08:40:46.269041 ++select * from mdl_course + +# 2022-05-18 08:40:48.026013 ++exit + +# 2022-05-18 08:41:18.074439 ++select * from mdl_course + +# 2022-05-19 13:39:51.213235 ++exit + +# 2022-05-19 13:40:42.364344 ++delete from courses where moodle_course_id = 36 + +# 2022-05-19 14:25:40.317131 ++select * from mdl_course + +# 2022-05-19 14:25:45.832221 ++select * from course + +# 2022-05-19 14:25:47.177054 ++select * from courses + +# 2022-05-20 09:04:43.018788 ++delete from courses where moodle_course_id = 36 + +# 2022-05-20 11:29:47.692453 ++select * from courses + +# 2022-05-20 13:22:30.721683 ++delete from courses where moodle_course_id = 36 + +# 2022-05-20 13:23:24.355566 ++select * from courses + +# 2022-05-20 13:23:31.692285 ++/d courses + +# 2022-05-20 13:23:34.219105 ++\d courses + +# 2022-05-20 14:49:52.102200 ++select * from courses + +# 2022-05-20 16:12:31.382942 ++delete from courses where moodle_course_id = 36 + +# 2022-05-20 16:12:35.771746 ++select * from courses + +# 2022-05-20 16:18:10.550696 ++delete from courses where moodle_course_id = 36 + +# 2022-05-20 16:18:12.850341 ++select * from courses + +# 2022-05-20 16:28:10.430490 ++delete from courses where moodle_course_id = 36 + +# 2022-05-20 16:30:14.669880 ++select * from courses + +# 2022-05-20 16:30:43.629200 ++delete from courses where id = 698 + +# 2022-05-20 16:36:37.423163 ++select * from courses + +# 2022-05-20 16:45:12.707622 ++delete from courses where moodle_course_id = 36 + +# 2022-05-23 10:12:51.320217 ++select * from courses + +# 2022-05-23 10:12:52.705567 ++exit + +# 2022-05-23 10:39:48.165200 ++ls + +# 2022-05-23 10:39:53.578033 ++delete from courses where moodle_course_id = 36 + +# 2022-05-23 15:04:26.685395 ++select * from courses + +# 2022-05-25 08:14:54.771669 ++clear + +# 2022-05-25 08:14:58.083295 ++select * from courses + +# 2022-05-25 10:27:42.281061 ++select * from tenants + +# 2022-05-25 10:41:45.857370 ++select * from courses + +# 2022-05-25 10:42:06.638801 ++select tenant from courses + +# 2022-05-25 11:22:59.507673 ++select * from tenant_default_settings + +# 2022-05-25 13:16:45.090262 ++\d tenant_default_settings + +# 2022-05-25 13:50:57.543132 ++select id from tenants + +# 2022-05-25 13:51:00.521158 ++select id from tenants where name like 'dev' + +# 2022-05-25 13:51:04.497656 ++\d tenant_default_settings + +# 2022-05-25 13:52:32.959524 ++insert into tenant_default_settings(tenant_id, customer_price_cents_email_passed) values(1, 199, True) + +# 2022-05-25 13:52:54.798356 ++insert into tenant_default_settings(tenant_id, customer_price_cents, email_passed) values(1, 199, True) + +# 2022-05-25 13:52:59.355512 ++select * from tenant_default_settings + +# 2022-05-26 08:56:13.061852 ++delete from tenan_default_settings where id=1 + +# 2022-05-26 08:56:16.595885 ++exit + +# 2022-05-26 08:56:41.022751 ++delete from tenan_default_settings where id=1 + +# 2022-05-26 08:56:49.717558 ++delete from tenant_default_settings where id=1 + +# 2022-05-26 09:23:07.578193 ++select * from tenant_default_settings + +# 2022-05-26 11:19:32.904573 ++insert into tenant_default_settings(tenant_id, customer_price_cents, email_passed) values(1, 199, True) + +# 2022-05-26 11:24:28.820656 ++select * from tenant_default_settings + +# 2022-05-26 11:59:41.108730 ++delete from tenant_default_settings where id=1 + +# 2022-05-26 12:00:51.456853 ++select * from tenant_default_settings + +# 2022-05-26 12:00:55.101252 ++delete from tenant_default_settings where id=2 + +# 2022-05-26 13:26:48.210222 ++select * from tenant_default_settings + +# 2022-05-26 15:01:37.940323 ++delete from tenant_default_settings where id=2 + +# 2022-05-26 15:01:46.509931 ++delete from tenant_default_settings where id=3 + +# 2022-05-26 15:02:33.604536 ++delete from tenant_default_settings where id=4 + +# 2022-05-26 15:04:41.790755 ++select * from tenant_default_settings + +# 2022-05-26 15:14:41.816200 ++delete from courses where moodle_course_id = 36 + +# 2022-05-26 15:15:00.051708 ++select * from courses + +# 2022-05-26 15:29:31.524138 ++select * from tenant_default_settings + +# 2022-05-26 15:38:07.873405 ++delete * from tenant_default_settings + +# 2022-05-26 15:38:18.668191 ++delete from courses where moodle_course_id = 5 + +# 2022-05-26 15:38:22.601620 ++delete from courses where moodle_course_id = 6 + +# 2022-05-26 15:38:39.090050 ++delete from tenant_default_settings where id=5 + +# 2022-05-26 15:38:41.945048 ++delete from tenant_default_settings where id=6 + +# 2022-05-26 15:38:45.300750 ++delete from tenant_default_settings where id=7 + +# 2022-05-26 15:42:42.766866 ++select * from tenant_default_settings + +# 2022-05-26 15:58:58.690623 ++delete from tenant_default_settings where id=8 + +# 2022-05-26 15:59:02.527948 ++delete from tenant_default_settings where id=9 + +# 2022-05-26 15:59:07.902033 ++delete from tenant_default_settings where id=10 + +# 2022-05-26 15:59:55.814325 ++select * from tenant_default_settings + +# 2022-05-26 16:04:03.741602 ++delete from tenant_default_settings where id=11 + +# 2022-05-26 16:04:23.976508 ++select * from tenant_default_settings + +# 2022-05-26 16:04:56.960213 ++delete from tenant_default_settings where id=12 + +# 2022-05-26 16:05:02.057169 ++delete from tenant_default_settings where id=13 + +# 2022-05-26 16:05:10.424758 ++select * from tenant_default_settings + +# 2022-05-26 16:13:15.585955 ++\d tenant_default_settings + +# 2022-05-27 09:08:51.497364 ++select * from tenant_default_settings + +# 2022-05-27 09:08:54.234413 ++exit + +# 2022-05-27 09:09:31.470678 ++select * from tenant_default_settings + +# 2022-05-27 09:09:41.550411 ++delete from tenant_default_settings where id=14 + +# 2022-05-27 09:09:44.884313 ++delete from tenant_default_settings where id=15 + +# 2022-05-27 09:10:24.821565 ++select * from tenant_default_settings + +# 2022-05-27 12:52:40.423369 ++exit + +# 2022-05-27 13:04:15.897211 ++select * from mdl_course + +# 2022-05-27 13:30:31.988212 ++exit + +# 2022-05-27 14:07:16.615330 ++select * from courses + +# 2022-05-27 14:07:19.827391 ++select * from mdl_course + +# 2022-05-27 14:14:36.052804 ++select * from tenant_default_settings + +# 2022-05-27 14:14:54.417342 ++delete from tenant_default_settings where id=16 + +# 2022-05-27 14:15:22.639036 ++select * from tenant_default_settings + +# 2022-05-31 07:28:01.852668 ++exit + +# 2022-05-31 07:28:04.795941 ++exit + +# 2022-05-31 07:28:11.387235 ++select * from tenant_default_settings + +# 2022-06-01 14:52:50.935504 ++select * from courses + +# 2022-06-03 15:44:14.287608 ++select * from courses where tenant_id = 1 + +# 2022-06-05 20:14:50.054728 ++select * from courses + +# 2022-06-05 20:15:12.089553 ++select * from courses where tenant_id = 1 + +# 2022-06-05 20:46:39.676457 ++delete from courses where name='Question workflow' + +# 2022-06-06 14:32:46.710437 ++exit + +# 2022-06-06 14:33:00.646667 ++delete from courses where name='Question workflow' + +# 2022-06-06 14:34:59.724610 ++select * from courses where tenant_id = 1 + +# 2022-06-06 14:35:11.211359 ++delete from courses where id=830 + +# 2022-06-06 14:36:26.310018 ++delete from courses where name='Question workflow' + +# 2022-06-06 14:38:34.917956 ++delete from courses where id=830 + +# 2022-06-06 14:38:56.625400 ++select * from courses where tenant_id = 1 + +# 2022-06-06 14:39:04.433622 ++delete from courses where id=832 + +# 2022-06-06 14:39:25.370411 ++select * from courses where tenant_id = 1 + +# 2022-06-06 14:51:06.031378 ++delete from courses where name='Question workflow' + +# 2022-06-06 14:55:48.898732 ++select * from courses where tenant_id = 1 + +# 2022-06-06 14:55:53.825153 ++delete from courses where id=835 + +# 2022-06-06 14:56:24.376316 ++delete from courses where name='Question workflow' + +# 2022-06-06 15:13:11.094503 ++\d courses + +# 2022-06-06 15:15:22.884819 ++delete from courses where name='Question workflow' + +# 2022-06-06 15:15:33.050139 ++select * from courses where tenant_id = 1 + +# 2022-06-06 15:39:43.056894 ++select * from courses diff --git a/.config/pgcli/log b/.config/pgcli/log new file mode 100644 index 0000000..d522df7 --- /dev/null +++ b/.config/pgcli/log @@ -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'"). diff --git a/.config/ranger/rc.conf b/.config/ranger/rc.conf new file mode 100644 index 0000000..ca99503 --- /dev/null +++ b/.config/ranger/rc.conf @@ -0,0 +1 @@ +map bw shell wal -i %s diff --git a/.config/ranger/rifle.conf b/.config/ranger/rifle.conf new file mode 100644 index 0000000..a388b59 --- /dev/null +++ b/.config/ranger/rifle.conf @@ -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: +# , , ... = 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 | The regexp matches $1 +# ext | The regexp matches the extension of $1 +# mime | The regexp matches the mime type of $1 +# name | The regexp matches the basename of $1 +# path | The regexp matches the absolute path of $1 +# has | The program is installed (i.e. located in $PATH) +# env | The environment variable "variable" is non-empty +# file | $1 is a file +# directory | $1 is a directory +# number | 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 | Change how the program is run. See below. +# label