ClickHouse/tests/queries/0_stateless/02551_ipv4_implicit_uint64.sql

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

5 lines
145 B
MySQL
Raw Normal View History

CREATE TABLE ip4test (ip IPv4) ENGINE=Memory;
INSERT INTO ip4test VALUES (22906492245), (2319771222);
SELECT * FROM ip4test;
DROP TABLE ip4test;