Can't use distinct, fix double-hashing bug
remove distinctness, make printing the SQL query part of describe clean up quadstore a bit, add noSizes as an external option
This commit is contained in:
parent
fab8cd64b3
commit
ebaf8b2a98
5 changed files with 31 additions and 55 deletions
|
|
@ -290,7 +290,7 @@ func (it *SQLIterator) makeCursor(next bool, value graph.Value) error {
|
|||
}
|
||||
var q string
|
||||
var values []string
|
||||
q, values = it.sql.buildSQL(next, value, true)
|
||||
q, values = it.sql.buildSQL(next, value)
|
||||
q = convertToPostgres(q, values)
|
||||
ivalues := make([]interface{}, 0, len(values))
|
||||
for _, v := range values {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue