Merging upstream version 10.0.8.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
407314e8d2
commit
efc1e37108
67 changed files with 2461 additions and 840 deletions
|
@ -37,6 +37,10 @@ class SchemaError(SqlglotError):
|
|||
pass
|
||||
|
||||
|
||||
class ExecuteError(SqlglotError):
|
||||
pass
|
||||
|
||||
|
||||
def concat_errors(errors: t.Sequence[t.Any], maximum: int) -> str:
|
||||
msg = [str(e) for e in errors[:maximum]]
|
||||
remaining = len(errors) - maximum
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue