Add validation for remote JSON

This commit is contained in:
Vikram Rangnekar
2019-06-04 10:54:51 -04:00
parent 8b06473e58
commit 2f55131315
9 changed files with 487 additions and 51 deletions

View File

@ -132,6 +132,7 @@ func (c *Compiler) getTable(sel *qcode.Select) (*DBTableInfo, error) {
if tn, ok := c.tmap[sel.Table]; ok {
return c.schema.GetTable(tn)
}
return c.schema.GetTable(sel.Table)
}