Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
ad17ff95
Commit
ad17ff95
authored
Aug 02, 2010
by
Robert Haas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add btree_gist support for searching on "not equals".
Jeff Davis, with slight editorialization by me.
parent
98c2383b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
72 additions
and
5 deletions
+72
-5
contrib/btree_gist/btree_gist.h
contrib/btree_gist/btree_gist.h
+3
-1
contrib/btree_gist/btree_gist.sql.in
contrib/btree_gist/btree_gist.sql.in
+23
-1
contrib/btree_gist/btree_utils_num.c
contrib/btree_gist/btree_utils_num.c
+5
-1
contrib/btree_gist/btree_utils_var.c
contrib/btree_gist/btree_utils_var.c
+4
-1
doc/src/sgml/btree-gist.sgml
doc/src/sgml/btree-gist.sgml
+37
-1
No files found.
contrib/btree_gist/btree_gist.h
View file @
ad17ff95
/*
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_gist.h,v 1.
9 2009/06/11 14:48:50 momjian
Exp $
* $PostgreSQL: pgsql/contrib/btree_gist/btree_gist.h,v 1.
10 2010/08/02 16:26:48 rhaas
Exp $
*/
*/
#ifndef __BTREE_GIST_H__
#ifndef __BTREE_GIST_H__
#define __BTREE_GIST_H__
#define __BTREE_GIST_H__
...
@@ -9,6 +9,8 @@
...
@@ -9,6 +9,8 @@
#include "access/itup.h"
#include "access/itup.h"
#include "access/nbtree.h"
#include "access/nbtree.h"
#define BtreeGistNotEqualStrategyNumber 6
/* indexed types */
/* indexed types */
enum
gbtree_type
enum
gbtree_type
...
...
contrib/btree_gist/btree_gist.sql.in
View file @
ad17ff95
/* $PostgreSQL: pgsql/contrib/btree_gist/btree_gist.sql.in,v 1.2
1 2009/06/11 18:30:03 tgl
Exp $ */
/* $PostgreSQL: pgsql/contrib/btree_gist/btree_gist.sql.in,v 1.2
2 2010/08/02 16:26:48 rhaas
Exp $ */
-- Adjust this setting to control where the objects get created.
-- Adjust this setting to control where the objects get created.
SET search_path = public;
SET search_path = public;
...
@@ -143,6 +143,7 @@ AS
...
@@ -143,6 +143,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_oid_consistent (internal, oid, int2, oid, internal),
FUNCTION 1 gbt_oid_consistent (internal, oid, int2, oid, internal),
FUNCTION 2 gbt_oid_union (bytea, internal),
FUNCTION 2 gbt_oid_union (bytea, internal),
FUNCTION 3 gbt_oid_compress (internal),
FUNCTION 3 gbt_oid_compress (internal),
...
@@ -200,6 +201,7 @@ AS
...
@@ -200,6 +201,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_int2_consistent (internal, int2, int2, oid, internal),
FUNCTION 1 gbt_int2_consistent (internal, int2, int2, oid, internal),
FUNCTION 2 gbt_int2_union (bytea, internal),
FUNCTION 2 gbt_int2_union (bytea, internal),
FUNCTION 3 gbt_int2_compress (internal),
FUNCTION 3 gbt_int2_compress (internal),
...
@@ -256,6 +258,7 @@ AS
...
@@ -256,6 +258,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_int4_consistent (internal, int4, int2, oid, internal),
FUNCTION 1 gbt_int4_consistent (internal, int4, int2, oid, internal),
FUNCTION 2 gbt_int4_union (bytea, internal),
FUNCTION 2 gbt_int4_union (bytea, internal),
FUNCTION 3 gbt_int4_compress (internal),
FUNCTION 3 gbt_int4_compress (internal),
...
@@ -312,6 +315,7 @@ AS
...
@@ -312,6 +315,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_int8_consistent (internal, int8, int2, oid, internal),
FUNCTION 1 gbt_int8_consistent (internal, int8, int2, oid, internal),
FUNCTION 2 gbt_int8_union (bytea, internal),
FUNCTION 2 gbt_int8_union (bytea, internal),
FUNCTION 3 gbt_int8_compress (internal),
FUNCTION 3 gbt_int8_compress (internal),
...
@@ -369,6 +373,7 @@ AS
...
@@ -369,6 +373,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_float4_consistent (internal, float4, int2, oid, internal),
FUNCTION 1 gbt_float4_consistent (internal, float4, int2, oid, internal),
FUNCTION 2 gbt_float4_union (bytea, internal),
FUNCTION 2 gbt_float4_union (bytea, internal),
FUNCTION 3 gbt_float4_compress (internal),
FUNCTION 3 gbt_float4_compress (internal),
...
@@ -428,6 +433,7 @@ AS
...
@@ -428,6 +433,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_float8_consistent (internal, float8, int2, oid, internal),
FUNCTION 1 gbt_float8_consistent (internal, float8, int2, oid, internal),
FUNCTION 2 gbt_float8_union (bytea, internal),
FUNCTION 2 gbt_float8_union (bytea, internal),
FUNCTION 3 gbt_float8_compress (internal),
FUNCTION 3 gbt_float8_compress (internal),
...
@@ -495,6 +501,7 @@ AS
...
@@ -495,6 +501,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_ts_consistent (internal, timestamp, int2, oid, internal),
FUNCTION 1 gbt_ts_consistent (internal, timestamp, int2, oid, internal),
FUNCTION 2 gbt_ts_union (bytea, internal),
FUNCTION 2 gbt_ts_union (bytea, internal),
FUNCTION 3 gbt_ts_compress (internal),
FUNCTION 3 gbt_ts_compress (internal),
...
@@ -514,6 +521,7 @@ AS
...
@@ -514,6 +521,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_tstz_consistent (internal, timestamptz, int2, oid, internal),
FUNCTION 1 gbt_tstz_consistent (internal, timestamptz, int2, oid, internal),
FUNCTION 2 gbt_ts_union (bytea, internal),
FUNCTION 2 gbt_ts_union (bytea, internal),
FUNCTION 3 gbt_tstz_compress (internal),
FUNCTION 3 gbt_tstz_compress (internal),
...
@@ -581,6 +589,7 @@ AS
...
@@ -581,6 +589,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_time_consistent (internal, time, int2, oid, internal),
FUNCTION 1 gbt_time_consistent (internal, time, int2, oid, internal),
FUNCTION 2 gbt_time_union (bytea, internal),
FUNCTION 2 gbt_time_union (bytea, internal),
FUNCTION 3 gbt_time_compress (internal),
FUNCTION 3 gbt_time_compress (internal),
...
@@ -598,6 +607,7 @@ AS
...
@@ -598,6 +607,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_timetz_consistent (internal, timetz, int2, oid, internal),
FUNCTION 1 gbt_timetz_consistent (internal, timetz, int2, oid, internal),
FUNCTION 2 gbt_time_union (bytea, internal),
FUNCTION 2 gbt_time_union (bytea, internal),
FUNCTION 3 gbt_timetz_compress (internal),
FUNCTION 3 gbt_timetz_compress (internal),
...
@@ -655,6 +665,7 @@ AS
...
@@ -655,6 +665,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_date_consistent (internal, date, int2, oid, internal),
FUNCTION 1 gbt_date_consistent (internal, date, int2, oid, internal),
FUNCTION 2 gbt_date_union (bytea, internal),
FUNCTION 2 gbt_date_union (bytea, internal),
FUNCTION 3 gbt_date_compress (internal),
FUNCTION 3 gbt_date_compress (internal),
...
@@ -717,6 +728,7 @@ AS
...
@@ -717,6 +728,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_intv_consistent (internal, interval, int2, oid, internal),
FUNCTION 1 gbt_intv_consistent (internal, interval, int2, oid, internal),
FUNCTION 2 gbt_intv_union (bytea, internal),
FUNCTION 2 gbt_intv_union (bytea, internal),
FUNCTION 3 gbt_intv_compress (internal),
FUNCTION 3 gbt_intv_compress (internal),
...
@@ -773,6 +785,7 @@ AS
...
@@ -773,6 +785,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_cash_consistent (internal, money, int2, oid, internal),
FUNCTION 1 gbt_cash_consistent (internal, money, int2, oid, internal),
FUNCTION 2 gbt_cash_union (bytea, internal),
FUNCTION 2 gbt_cash_union (bytea, internal),
FUNCTION 3 gbt_cash_compress (internal),
FUNCTION 3 gbt_cash_compress (internal),
...
@@ -829,6 +842,7 @@ AS
...
@@ -829,6 +842,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_macad_consistent (internal, macaddr, int2, oid, internal),
FUNCTION 1 gbt_macad_consistent (internal, macaddr, int2, oid, internal),
FUNCTION 2 gbt_macad_union (bytea, internal),
FUNCTION 2 gbt_macad_union (bytea, internal),
FUNCTION 3 gbt_macad_compress (internal),
FUNCTION 3 gbt_macad_compress (internal),
...
@@ -897,6 +911,7 @@ AS
...
@@ -897,6 +911,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_text_consistent (internal, text, int2, oid, internal),
FUNCTION 1 gbt_text_consistent (internal, text, int2, oid, internal),
FUNCTION 2 gbt_text_union (bytea, internal),
FUNCTION 2 gbt_text_union (bytea, internal),
FUNCTION 3 gbt_text_compress (internal),
FUNCTION 3 gbt_text_compress (internal),
...
@@ -916,6 +931,7 @@ AS
...
@@ -916,6 +931,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_bpchar_consistent (internal, bpchar , int2, oid, internal),
FUNCTION 1 gbt_bpchar_consistent (internal, bpchar , int2, oid, internal),
FUNCTION 2 gbt_text_union (bytea, internal),
FUNCTION 2 gbt_text_union (bytea, internal),
FUNCTION 3 gbt_bpchar_compress (internal),
FUNCTION 3 gbt_bpchar_compress (internal),
...
@@ -973,6 +989,7 @@ AS
...
@@ -973,6 +989,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_bytea_consistent (internal, bytea, int2, oid, internal),
FUNCTION 1 gbt_bytea_consistent (internal, bytea, int2, oid, internal),
FUNCTION 2 gbt_bytea_union (bytea, internal),
FUNCTION 2 gbt_bytea_union (bytea, internal),
FUNCTION 3 gbt_bytea_compress (internal),
FUNCTION 3 gbt_bytea_compress (internal),
...
@@ -1030,6 +1047,7 @@ AS
...
@@ -1030,6 +1047,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_numeric_consistent (internal, numeric, int2, oid, internal),
FUNCTION 1 gbt_numeric_consistent (internal, numeric, int2, oid, internal),
FUNCTION 2 gbt_numeric_union (bytea, internal),
FUNCTION 2 gbt_numeric_union (bytea, internal),
FUNCTION 3 gbt_numeric_compress (internal),
FUNCTION 3 gbt_numeric_compress (internal),
...
@@ -1085,6 +1103,7 @@ AS
...
@@ -1085,6 +1103,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_bit_consistent (internal, bit, int2, oid, internal),
FUNCTION 1 gbt_bit_consistent (internal, bit, int2, oid, internal),
FUNCTION 2 gbt_bit_union (bytea, internal),
FUNCTION 2 gbt_bit_union (bytea, internal),
FUNCTION 3 gbt_bit_compress (internal),
FUNCTION 3 gbt_bit_compress (internal),
...
@@ -1104,6 +1123,7 @@ AS
...
@@ -1104,6 +1123,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_bit_consistent (internal, bit, int2, oid, internal),
FUNCTION 1 gbt_bit_consistent (internal, bit, int2, oid, internal),
FUNCTION 2 gbt_bit_union (bytea, internal),
FUNCTION 2 gbt_bit_union (bytea, internal),
FUNCTION 3 gbt_bit_compress (internal),
FUNCTION 3 gbt_bit_compress (internal),
...
@@ -1162,6 +1182,7 @@ AS
...
@@ -1162,6 +1182,7 @@ AS
OPERATOR 3 = ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
OPERATOR 5 > ,
OPERATOR 6 <> ,
FUNCTION 1 gbt_inet_consistent (internal, inet, int2, oid, internal),
FUNCTION 1 gbt_inet_consistent (internal, inet, int2, oid, internal),
FUNCTION 2 gbt_inet_union (bytea, internal),
FUNCTION 2 gbt_inet_union (bytea, internal),
FUNCTION 3 gbt_inet_compress (internal),
FUNCTION 3 gbt_inet_compress (internal),
...
@@ -1180,6 +1201,7 @@ AS
...
@@ -1180,6 +1201,7 @@ AS
OPERATOR 3 = (inet, inet) ,
OPERATOR 3 = (inet, inet) ,
OPERATOR 4 >= (inet, inet) ,
OPERATOR 4 >= (inet, inet) ,
OPERATOR 5 > (inet, inet) ,
OPERATOR 5 > (inet, inet) ,
OPERATOR 6 <> (inet, inet) ,
FUNCTION 1 gbt_inet_consistent (internal, inet, int2, oid, internal),
FUNCTION 1 gbt_inet_consistent (internal, inet, int2, oid, internal),
FUNCTION 2 gbt_inet_union (bytea, internal),
FUNCTION 2 gbt_inet_union (bytea, internal),
FUNCTION 3 gbt_inet_compress (internal),
FUNCTION 3 gbt_inet_compress (internal),
...
...
contrib/btree_gist/btree_utils_num.c
View file @
ad17ff95
/*
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_num.c,v 1.1
2 2009/06/11 14:48:50 momjian
Exp $
* $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_num.c,v 1.1
3 2010/08/02 16:26:48 rhaas
Exp $
*/
*/
#include "btree_gist.h"
#include "btree_gist.h"
#include "btree_utils_num.h"
#include "btree_utils_num.h"
...
@@ -225,6 +225,10 @@ gbt_num_consistent(
...
@@ -225,6 +225,10 @@ gbt_num_consistent(
case
BTGreaterEqualStrategyNumber
:
case
BTGreaterEqualStrategyNumber
:
retval
=
(
*
tinfo
->
f_le
)
(
query
,
key
->
upper
);
retval
=
(
*
tinfo
->
f_le
)
(
query
,
key
->
upper
);
break
;
break
;
case
BtreeGistNotEqualStrategyNumber
:
retval
=
!
((
*
tinfo
->
f_eq
)
(
query
,
key
->
lower
)
&&
(
*
tinfo
->
f_eq
)
(
query
,
key
->
upper
));
break
;
default:
default:
retval
=
FALSE
;
retval
=
FALSE
;
}
}
...
...
contrib/btree_gist/btree_utils_var.c
View file @
ad17ff95
/*
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_var.c,v 1.2
3 2010/02/26 02:00:32 momjian
Exp $
* $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_var.c,v 1.2
4 2010/08/02 16:26:48 rhaas
Exp $
*/
*/
#include "btree_gist.h"
#include "btree_gist.h"
...
@@ -596,6 +596,9 @@ gbt_var_consistent(
...
@@ -596,6 +596,9 @@ gbt_var_consistent(
retval
=
(
*
tinfo
->
f_cmp
)
((
bytea
*
)
query
,
key
->
upper
)
<=
0
retval
=
(
*
tinfo
->
f_cmp
)
((
bytea
*
)
query
,
key
->
upper
)
<=
0
||
gbt_var_node_pf_match
(
key
,
query
,
tinfo
);
||
gbt_var_node_pf_match
(
key
,
query
,
tinfo
);
break
;
break
;
case
BtreeGistNotEqualStrategyNumber
:
retval
=
!
((
*
tinfo
->
f_eq
)
(
query
,
key
->
lower
)
&&
(
*
tinfo
->
f_eq
)
(
query
,
key
->
upper
));
break
;
default:
default:
retval
=
FALSE
;
retval
=
FALSE
;
}
}
...
...
doc/src/sgml/btree-gist.sgml
View file @
ad17ff95
<!-- $PostgreSQL: pgsql/doc/src/sgml/btree-gist.sgml,v 1.
5 2010/03/17 17:12:31 petere
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/btree-gist.sgml,v 1.
6 2010/08/02 16:26:48 rhaas
Exp $ -->
<sect1 id="btree-gist">
<sect1 id="btree-gist">
<title>btree_gist</title>
<title>btree_gist</title>
...
@@ -27,15 +27,51 @@
...
@@ -27,15 +27,51 @@
GiST operator classes.
GiST operator classes.
</para>
</para>
<para>
In addition to the typical btree search operators, btree_gist also
provides search operators for <literal><></literal> ("not
equals"). This may be useful in combination with an
<link linkend="SQL-CREATETABLE-EXCLUDE">Exclusion Constraint</link>,
as descibed below.
</para>
<sect2>
<sect2>
<title>Example usage</title>
<title>Example usage</title>
<para>
Simple example using btree_gist instead of btree:
</para>
<programlisting>
<programlisting>
CREATE TABLE test (a int4);
CREATE TABLE test (a int4);
-- create index
-- create index
CREATE INDEX testidx ON test USING gist (a);
CREATE INDEX testidx ON test USING gist (a);
-- query
-- query
SELECT * FROM test WHERE a < 10;
SELECT * FROM test WHERE a < 10;
</programlisting>
<para>
Example using an <link linkend="SQL-CREATETABLE-EXCLUDE">Exclusion
Constraint</link> to enforce the constraint that a cage at a zoo
can contain only one kind of animal:
</para>
<programlisting>
=> CREATE TABLE zoo (
cage INTEGER,
animal TEXT,
EXCLUDE USING gist (cage WITH =, animal WITH <>)
);
=> INSERT INTO zoo VALUES(123, 'zebra');
INSERT 0 1
=> INSERT INTO zoo VALUES(123, 'zebra');
INSERT 0 1
=> INSERT INTO zoo VALUES(123, 'lion');
ERROR: conflicting key value violates exclusion constraint "zoo_cage_animal_excl"
DETAIL: Key (cage, animal)=(123, lion) conflicts with existing key (cage, animal)=(123, zebra).
=> INSERT INTO zoo VALUES(124, 'lion');
INSERT 0 1
</programlisting>
</programlisting>
</sect2>
</sect2>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment