projects
/
dbsrgits/SQL-Abstract.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
07d7c35
)
Stupid omission
Peter Rabbitson [Mon, 26 Apr 2010 07:54:59 +0000 (07:54 +0000)]
lib/SQL/Abstract.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/SQL/Abstract.pm
b/lib/SQL/Abstract.pm
index
7ebae43
..
610da72
100644
(file)
--- a/
lib/SQL/Abstract.pm
+++ b/
lib/SQL/Abstract.pm
@@
-1170,7
+1170,7
@@
sub _refkind {
$n_steps++ if $ref;
}
- return $ref . ('REF' x $n_steps);
+ return ($ref||'SCALAR') . ('REF' x $n_steps);
}
sub _try_refkind {