You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A couple of inconsistencies in CREATE INDEX syntax are observed:
Contrary to the existing CREATE KEYSPACE and CREATE TABLE syntax where the WITH <properties> clause is at the end of the statement, the WITH CLUSTERING ORDER BY clause is not positioned at the end of the statement.
The covered columns are denoted using the COVERING keyword. This compares to PostgreSQL and Microsoft SQL Server where they are denoted using the INCLUDE keyword.
The text was updated successfully, but these errors were encountered:
Summary:
Make a couple of changes to the CREATE INDEX sytax:
1. To be consistent with the existing CREATE KEYSPACE and CREATE TABLE syntax, move the "WITH CLUSTERING ORDER BY" clause to the end of the statement.
2. To be consistent with other databases, define covering columns using the "INCLUDE" keyword. The existing "COVERING" keyword is kept for compatibility.
Test Plan: Jenkins
Reviewers: mihnea
Reviewed By: mihnea
Subscribers: bogdan, yql, bharat
Differential Revision: https://phabricator.dev.yugabyte.com/D5086
…iew. (#352)
* PG-543: pg_stat_monitor: PostgreSQL's pg_stat_statements compatible view.
The view now carries all the columns as pg_stat_statements. This required fixing
data types of some of the columns, renaming a few, as well inclusion of new
columns to make the view fully compatible with pg_stat_statements.
* PG-543: pg_stat_monitor: PostgreSQL's pg_stat_statements compatible view.
Updating the upgrade sql file from 1.0 to 2.0 version linked with this issue
changes.
* PG-543: pg_stat_monitor: PostgreSQL's pg_stat_statements compatible view.
Updating datum calls to use UInt64 rather than Int64.
A couple of inconsistencies in CREATE INDEX syntax are observed:
WITH <properties>
clause is at the end of the statement, theWITH CLUSTERING ORDER BY
clause is not positioned at the end of the statement.COVERING
keyword. This compares to PostgreSQL and Microsoft SQL Server where they are denoted using theINCLUDE
keyword.The text was updated successfully, but these errors were encountered: