Skip to content
This repository was archived by the owner on Jun 7, 2021. It is now read-only.

Conversation

@liuyu000
Copy link
Contributor

@liuyu000 liuyu000 commented Nov 6, 2018

IS_IPV6:

SQL>SELECT IS_IPV6('10.0.5.9'), IS_IPV6('::1') from dual;

(EXPR) (EXPR)
------ ------
     0      1

--- 1 row(s) selected.

INET_ATON:

SQL>SELECT INET_ATON('10.0.5.9') from dual;

(EXPR)
----------
 151322634

--- 1 row(s) selected.

INET_NTOA:

SQL>SELECT INET_NTOA(167773449) from dual;

(EXPR)
---------------
9.5.0.10       

--- 1 row(s) selected.

ALTER TABLE Statement:

SQL>showddl float_1;

 
CREATE TABLE TRAFODION.SCH.FLOAT_1
  ( 
    A                                DOUBLE PRECISION DEFAULT NULL NOT
      SERIALIZED
  )
 ATTRIBUTES ALIGNED FORMAT 
;
 
-- GRANT SELECT, INSERT, DELETE, UPDATE, REFERENCES ON TRAFODION.SCH.FLOAT_1 TO DB__ROOT WITH GRANT OPTION;

--- SQL operation complete.
SQL>alter table FLOAT_1 alter column a REAL;

--- SQL operation complete.

@Traf-Jenkins
Copy link

Check Test Started: https://jenkins.esgyn.com/job/Check-PR-master/3023/

@Traf-Jenkins
Copy link

Copy link
Contributor

@DaveBirdsall DaveBirdsall left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1 Looks good to me.

@asfgit asfgit merged commit 66fb2f6 into apache:master Nov 7, 2018
@liuyu000
Copy link
Contributor Author

liuyu000 commented Nov 7, 2018

@DaveBirdsall Thanks Dave, I've merged this PR and published website udpates 😁

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants