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