switch where wrapping order to look better (and make DBIC oraclejoin.t happy)
[dbsrgits/Data-Query.git] / lib / Data / Query / Constants.pm
index 0850fbb..f4fed77 100644 (file)
@@ -15,9 +15,13 @@ use constant +{
     DQ_ORDER => 'Order',
     DQ_WHERE => 'Where',
     DQ_DELETE => 'Delete',
+    DQ_UPDATE => 'Update',
+    DQ_INSERT => 'Insert',
+    DQ_GROUP => 'Group',
+    DQ_SLICE => 'Slice',
   ))
 };
 
-our @EXPORT_OK = keys our %CONST;
+our @EXPORT = keys our %CONST;
 
 1;