mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 20:32:43 +00:00
Fixed bugs
This commit is contained in:
parent
baf1bb4b58
commit
6a5762d86c
@ -906,6 +906,7 @@ readTextWithSuffix(T & x, ReadBuffer & buf)
|
||||
{
|
||||
assertEOF(buf);
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 'M':
|
||||
{
|
||||
@ -923,6 +924,7 @@ readTextWithSuffix(T & x, ReadBuffer & buf)
|
||||
{
|
||||
assertEOF(buf);
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 'G':
|
||||
{
|
||||
@ -939,6 +941,7 @@ readTextWithSuffix(T & x, ReadBuffer & buf)
|
||||
{
|
||||
assertEOF(buf);
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 'T':
|
||||
{
|
||||
@ -955,6 +958,11 @@ readTextWithSuffix(T & x, ReadBuffer & buf)
|
||||
{
|
||||
assertEOF(buf);
|
||||
}
|
||||
break;
|
||||
}
|
||||
default:
|
||||
{
|
||||
assertEOF(buf);
|
||||
}
|
||||
}
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user