-
Notifications
You must be signed in to change notification settings - Fork 900
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -160,10 +160,10 @@ AS '@MODULE_PATHNAME@', 'ts_hypercore_handler' LANGUAGE C; | |
CREATE OR REPLACE FUNCTION @[email protected]_hypercore_proxy_handler(internal) RETURNS index_am_handler | ||
AS '@MODULE_PATHNAME@', 'ts_hypercore_proxy_handler' LANGUAGE C; | ||
|
||
CREATE ACCESS METHOD hypercore TYPE TABLE HANDLER ts_hypercore_handler; | ||
CREATE ACCESS METHOD hypercore TYPE TABLE HANDLER @extschema@.ts_hypercore_handler; | ||
COMMENT ON ACCESS METHOD hypercore IS 'Storage engine using hybrid row/columnar compression'; | ||
|
||
CREATE ACCESS METHOD hypercore_proxy TYPE INDEX HANDLER ts_hypercore_proxy_handler; | ||
CREATE ACCESS METHOD hypercore_proxy TYPE INDEX HANDLER @extschema@.ts_hypercore_proxy_handler; | ||
COMMENT ON ACCESS METHOD hypercore_proxy IS 'Hypercore proxy index access method'; | ||
|
||
CREATE OPERATOR CLASS int4_ops | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
-- Hypercore AM | ||
DROP ACCESS METHOD IF EXISTS hypercore_proxy; | ||
DROP FUNCTION IF EXISTS ts_hypercore_proxy_handler; | ||
DROP FUNCTION IF EXISTS @extschema@.ts_hypercore_proxy_handler; | ||
DROP ACCESS METHOD IF EXISTS hypercore; | ||
DROP FUNCTION IF EXISTS ts_hypercore_handler; | ||
DROP FUNCTION IF EXISTS @extschema@.ts_hypercore_handler; | ||
DROP FUNCTION IF EXISTS _timescaledb_debug.is_compressed_tid; | ||
|
||
DROP FUNCTION IF EXISTS @[email protected]_chunk(uncompressed_chunk REGCLASS, if_not_compressed BOOLEAN, recompress BOOLEAN, hypercore_use_access_method BOOL); | ||
|