mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 14:07:55 +00:00
Fixed bug #49805: sql pg:////?'select 3' does not work.
This commit is contained in:
parent
5bbf0bbd80
commit
2dcc9db3ca
|
@ -230,6 +230,12 @@ Haiku of the month:
|
||||||
-- Ole Tange
|
-- Ole Tange
|
||||||
|
|
||||||
New in this release:
|
New in this release:
|
||||||
|
http://paperity.org/p/78557440/learning-string-distance-with-smoothing-for-ocr-spelling-correction
|
||||||
|
http://blog.genoglobe.com/2016/11/gnu-parallel.html
|
||||||
|
http://os.51cto.com/art/201612/524182.htm
|
||||||
|
http://tomkimpson.com/howto/gnuparallel/
|
||||||
|
https://gist.github.com/Brainiarc7/24c966c8a001061ee86cc4bc05826bf4
|
||||||
|
https://www.researchgate.net/publication/308186413_Determination_of_crystal_structures_of_proteins_of_unknown_identity_using_a_marathon_molecular_replacement_procedure_Structure_of_Stenotrophomonas_maltophilia_phosphate-binding_protein
|
||||||
https://www.msi.umn.edu/support/faq/how-can-i-use-gnu-parallel-run-lot-commands-parallel
|
https://www.msi.umn.edu/support/faq/how-can-i-use-gnu-parallel-run-lot-commands-parallel
|
||||||
https://cs.gmu.edu/~ygingold/singleimage/Decomposing%20Images%20into%20Layers%20via%20RGB-space%20Geometry%20(Tan%20et%20al%202016%20TOG)%20small.pdf
|
https://cs.gmu.edu/~ygingold/singleimage/Decomposing%20Images%20into%20Layers%20via%20RGB-space%20Geometry%20(Tan%20et%20al%202016%20TOG)%20small.pdf
|
||||||
https://arxiv.org/pdf/1511.02895v2.pdf
|
https://arxiv.org/pdf/1511.02895v2.pdf
|
||||||
|
|
2
src/sql
2
src/sql
|
@ -538,7 +538,7 @@ if($dburl{'query'}) {
|
||||||
}
|
}
|
||||||
|
|
||||||
do {
|
do {
|
||||||
if(@ARGV) {
|
if(@ARGV or $dburl{'query'}) {
|
||||||
$::opt_debug and print "$batch_command\n";
|
$::opt_debug and print "$batch_command\n";
|
||||||
$::opt_verbose and print "$batch_command\n";
|
$::opt_verbose and print "$batch_command\n";
|
||||||
open(M,"| $batch_command") || die("mysql/psql/sqlplus not in path");
|
open(M,"| $batch_command") || die("mysql/psql/sqlplus not in path");
|
||||||
|
|
Loading…
Reference in a new issue