ClickHouse/tests/queries/0_stateless/02713_ip4_uint_compare.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
236 B
MySQL
Raw Normal View History

2023-04-10 22:47:59 +00:00
WITH toIPv4('127.0.0.10') AS ip
SELECT
ip = 2130706442::UInt32,
ip = 0::UInt32,
ip < 2130706443::UInt32,
ip > 2130706441::UInt32,
ip <= 2130706442::UInt32,
ip >= 2130706442::UInt32,
ip != 2130706442::UInt32;