Skip to content

Commit

Permalink
Update schema.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisCarriere authored Oct 19, 2023
1 parent a732b4c commit dfc588b
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions schema.sql
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
CREATE TABLE IF NOT EXISTS Clock (
id FixedString(40),
number String,
seconds String,
nanos String,
timestamp String
seconds UInt32,
nanos UInt16,
)
ENGINE = ReplacingMergeTree()
ORDER BY (id)
ENGINE = MergeTree()
ORDER BY (seconds)

0 comments on commit dfc588b

Please sign in to comment.