Skip to content

Commit

Permalink
Fix create_changelist udoc command
Browse files Browse the repository at this point in the history
  • Loading branch information
orhankislal committed Jul 18, 2022
1 parent 8a24663 commit 954d0f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/madpack/create_changelist.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@

os.system("""psql {database} -c "SELECT get_udocs('__tmp__madlib__', 'madlib_old_vers', '{t}')" > /dev/null """.format(**locals()))

os.system("""psql {database} -x -c "SELECT opfamily_name, index_method FROM __tmp__madlib__ ORDER BY name DESC" > /tmp/madlib_tmp_typedep_udoc.txt """.format(**locals()))
os.system("""psql {database} -x -c "SELECT opfamily_name, index_method FROM __tmp__madlib__ ORDER BY opfamily_name DESC" > /tmp/madlib_tmp_typedep_udoc.txt """.format(**locals()))

os.system("""psql {database} -c "DROP TABLE IF EXISTS __tmp__madlib__ " > /dev/null """.format(**locals()))

Expand Down

0 comments on commit 954d0f7

Please sign in to comment.